diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 35ca6695a71..4b79b412e56 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -5,18 +5,34 @@ Description of changes. --- > [!IMPORTANT] -> Please, **don't forget to run `rush change`** for the commits that introduce **new features** 🙏 +> Please, **don't forget to run `rush change`** for the commits that introduce **new features** or **significant changes** 🙏 This information is used to generate the [change log](https://github.com/gooddata/gooddata-ui-sdk/blob/master/libs/sdk-ui-all/CHANGELOG.md). --- -Refer to [documentation](https://github.com/gooddata/gooddata-ui-sdk/blob/master/dev_docs/continuous_integration.md) to see how to run checks and tests in the pull request. This is the list of the most used commands: +### Run extended test by pull request comment + +Commands can be triggered by posting a comment with specific text on the pull request. It is possible to trigger multiple commands simultaneously. ``` -extended test - backstop +extended-test --backstop | --integrated | --isolated | --record [--filter ,,...,] ``` +#### Explanation + +- `--backstop` The command to run screen tests. +- `--integrated` The command to run integrated tests against the live backend. +- `--isolated` The command to run isolated tests against recordings. +- `--record` The command to create new recordings for isolated tests. +- `--filter` (Optional) A comma-separated list of test files to run. This parameter is valid only for the `--integrated`, `--isolated`, and `--record` commands. + +#### Examples + ``` -extended test - integrated -extended test - isolated -extended test - record +extended-test --backstop +extended-test --integrated +extended-test --integrated --filter test1.spec.ts,test2.spec.ts +extended-test --isolated +extended-test --isolated --filter test1.spec.ts,test2.spec.ts +extended-test --record +extended-test --record --filter test1.spec.ts,test2.spec.ts ``` diff --git a/.github/workflows/pull-request-comment.yaml b/.github/workflows/pull-request-comment.yaml index 4d16ba8fdf5..23da992b004 100644 --- a/.github/workflows/pull-request-comment.yaml +++ b/.github/workflows/pull-request-comment.yaml @@ -5,7 +5,7 @@ on: - created jobs: get-pr-info: - if: github.event.issue.pull_request != null && startsWith(github.event.comment.body, 'extended test') + if: github.event.issue.pull_request != null && startsWith(github.event.comment.body, 'extended-test') runs-on: group: infra1-runners-arc labels: runners-small @@ -27,7 +27,7 @@ jobs: command-started: needs: [get-pr-info] - if: ${{ startsWith(github.event.comment.body, 'extended test') }} + if: ${{ startsWith(github.event.comment.body, 'extended-test') }} permissions: pull-requests: write runs-on: @@ -51,9 +51,54 @@ jobs: env: COMMENT: ${{ github.event.comment.body }} - e2e-run-isolated: + extract-filter: needs: [get-pr-info] - if: ${{ github.event.comment.body == 'extended test - isolated' }} + outputs: + filter: ${{ steps.extract-filter.outputs.filter_output }} + runs-on: + group: infra1-runners-arc + labels: runners-small + steps: + - name: Extract filter + id: extract-filter + run: | + # Allowed commands + commands=("extended-test --isolated" "extended-test --integrated" "extended-test --record") + + # Check if the command matches one of the allowed commands + is_valid_command=false + for cmd in "${commands[@]}"; do + if [[ $command_string == $cmd* ]]; then + is_valid_command=true + break + fi + done + + # Initialize filter_value as empty + filter_value="" + + if $is_valid_command; then + # Extract the --filter value if present + filter_pattern="--filter ([^ ]+)" + if [[ $command_string =~ $filter_pattern ]]; then + filter_value=${BASH_REMATCH[1]} + fi + fi + + # Output the filter value if set + if [[ -n $filter_value ]]; then + echo "Filter value: $filter_value" + echo "filter_output=$filter_value" >> $GITHUB_OUTPUT + else + echo "No filter found." + fi + env: + command_string: ${{ github.event.comment.body }} + + + e2e-run-isolated: + needs: [get-pr-info,extract-filter] + if: ${{ startsWith(github.event.comment.body, 'extended-test --isolated') }} permissions: id-token: write contents: read @@ -61,11 +106,12 @@ jobs: uses: ./.github/workflows/rw-rush-build-e2e-tests.yml with: source-ref: ${{ needs.get-pr-info.outputs.sha }} + filter: ${{ needs.extract-filter.outputs.filter }} secrets: inherit e2e-record: - needs: [get-pr-info] - if: ${{ github.event.comment.body == 'extended test - record' }} + needs: [get-pr-info,extract-filter] + if: ${{ startsWith(github.event.comment.body, 'extended-test --record') }} permissions: id-token: write contents: read @@ -73,11 +119,12 @@ jobs: uses: ./.github/workflows/rw-rush-build-e2e-tests-record.yml with: source-ref: ${{ needs.get-pr-info.outputs.sha }} + filter: ${{ needs.extract-filter.outputs.filter }} secrets: inherit e2e-integrated: - needs: [get-pr-info] - if: ${{ github.event.comment.body == 'extended test - integrated' }} + needs: [get-pr-info,extract-filter] + if: ${{ startsWith(github.event.comment.body, 'extended-test --integrated') }} permissions: id-token: write contents: read @@ -85,11 +132,12 @@ jobs: uses: ./.github/workflows/rw-rush-build-e2e-tests-integrated.yml with: source-ref: ${{ needs.get-pr-info.outputs.sha }} + filter: ${{ needs.extract-filter.outputs.filter }} secrets: inherit e2e-backstop: needs: [get-pr-info] - if: ${{ github.event.comment.body == 'extended test - backstop' }} + if: ${{ startsWith(github.event.comment.body, 'extended-test --backstop') }} permissions: id-token: write contents: read @@ -103,7 +151,7 @@ jobs: permissions: pull-requests: write needs: [e2e-run-isolated,e2e-record,e2e-integrated,e2e-backstop] - if: ${{ !cancelled() && startsWith(github.event.comment.body, 'extended test') }} + if: ${{ !cancelled() && startsWith(github.event.comment.body, 'extended-test') }} runs-on: group: infra1-runners-arc labels: runners-small @@ -117,16 +165,16 @@ jobs: const url = `https://github.com/${repository.owner}/${repository.repo}/actions/runs/${context.runId}`; let testResult = "'command not recognized'"; - if (process.env.COMMENT === 'extended test - isolated') { + if (process.env.COMMENT?.startsWith('extended-test --isolated')) { testResult = process.env.TEST_RESULT_ISOLATED; } - if (process.env.COMMENT === 'extended test - record') { + if (process.env.COMMENT?.startsWith('extended-test --record')) { testResult = process.env.TEST_RESULT_RECORD; } - if (process.env.COMMENT === 'extended test - integrated') { + if (process.env.COMMENT?.startsWith('extended-test --integrated')) { testResult = process.env.TEST_RESULT_INTEGRATED; } - if (process.env.COMMENT === 'extended test - backstop') { + if (process.env.COMMENT?.startsWith('extended-test --backstop')) { testResult = process.env.TEST_RESULT_BACKSTOP; } diff --git a/.github/workflows/push-e2e-integrated-tests.yaml b/.github/workflows/push-e2e-integrated-tests.yaml index 55ac0fedfaf..ae6b056ec79 100644 --- a/.github/workflows/push-e2e-integrated-tests.yaml +++ b/.github/workflows/push-e2e-integrated-tests.yaml @@ -6,11 +6,44 @@ on: - release jobs: + pull-request-info: + if: ${{ !(startsWith(github.event.head_commit.message, format('chore{0} bump versions to', ':')) || startsWith(github.event.head_commit.message, format('chore{0} update Hugo version to', ':'))) }} + runs-on: [ubuntu-latest] + outputs: + author: ${{ steps.author.outputs.result }} + steps: + - uses: actions/github-script@v7 + id: author + with: + script: | + const pullRequests = await github.rest.repos.listPullRequestsAssociatedWithCommit({ + commit_sha: context.sha, + owner: context.repo.owner, + repo: context.repo.repo, + }); + + return pullRequests?.data[0]?.user?.login; + result-encoding: string + e2e-integrated: - if: ${{ !(startsWith(github.event.head_commit.message, 'Release ') || startsWith(github.event.head_commit.message, format('chore{0} bump versions to', ':'))) }} + needs: [pull-request-info] permissions: id-token: write contents: read pull-requests: read uses: ./.github/workflows/rw-rush-build-e2e-tests-integrated.yml secrets: inherit + + notify-failed-to-slack: + if: ${{ !cancelled() && needs.e2e-integrated.result == 'failure' }} + needs: [e2e-integrated,pull-request-info] + runs-on: [ubuntu-latest] + steps: + - name: Inform to slack when workflows failed + uses: slackapi/slack-github-action@v1.25.0 + with: + channel-id: "#javascript-notifications" + slack-message: ":warning: post merge e2e in *gooddata-sdk-ui* initiated by ${{env.AUTHOR}} encountered an error during execution. Check the *<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|log here>* for further information." + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} + AUTHOR: ${{ needs.pull-request-info.outputs.author }} diff --git a/.github/workflows/rw-rush-build-e2e-tests-backstop.yml b/.github/workflows/rw-rush-build-e2e-tests-backstop.yml index 95add225f72..d0b7f5df9ae 100644 --- a/.github/workflows/rw-rush-build-e2e-tests-backstop.yml +++ b/.github/workflows/rw-rush-build-e2e-tests-backstop.yml @@ -80,10 +80,14 @@ jobs: ./common/scripts/ci/run_backstop_tests.sh env: GH_RUN_ID: ${{ github.run_id }} + - name: Cleanup backstop artifacts + if: ${{ !cancelled() && failure() }} + run: | + node libs/sdk-ui-tests/backstop/backstop-cleanup-artifacts.cjs - name: Archive the cypress test artifacts uses: actions/upload-artifact@v4 if: ${{ !cancelled() && failure() }} with: - name: backstop-test-artifacts + name: backstop-test-artifacts-failed path: | libs/sdk-ui-tests/backstop/output/**/* diff --git a/.stylelintrc b/.stylelintrc index d953d796ef3..b4a8e0c1d12 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -4,6 +4,7 @@ "order/properties-order": null, "max-nesting-depth": 4, "value-keyword-case": ["lower", { "ignoreProperties": ["--gd-font-family"] }], - "color-hex-length": null + "color-hex-length": null, + "declaration-empty-line-before": null } } diff --git a/NOTICE b/NOTICE index e00aa2b8169..6ddcaa997c1 100644 --- a/NOTICE +++ b/NOTICE @@ -7,9 +7,9 @@ The following 3rd-party software packages may be used by or distributed with gooddata-ui-sdk. Any information relevant to third-party vendors listed below are collected using common, reasonable means. -Date generated: 2024-12-12 +Date generated: 2024-12-20 -Revision ID: 122ea873a7d2a0677994b41a1dd27ad5eee0f954 +Revision ID: 6544cd7bcc5304e094ab7788ea88129cbe5fbb6f ================================================================================ ================================================================================ @@ -206,6 +206,8 @@ Revision ID: 122ea873a7d2a0677994b41a1dd27ad5eee0f954 - @seznam/compose-react-refs (1.0.6) [ISC] - @sidvind/better-ajv-errors (2.1.3) [Apache-2.0] - @sinclair/typebox (0.27.8) [MIT] +- @tanstack/react-virtual (3.11.1) [MIT] +- @tanstack/virtual-core (3.10.9) [MIT] - @tootallnate/once (2.0.0) [MIT] - @ts-morph/common (0.12.3) [Apache-2.0, MIT] - @types/body-parser (1.19.5) [MIT] @@ -7897,6 +7899,78 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +Package Title: @tanstack/react-virtual (3.11.1) + +Package Locator: npm+@tanstack/react-virtual$3.11.1 + +Package Depth: Direct +-------------------------------------------------------------------------------- + +* Declared Licenses * +MIT + + +MIT License + +Copyright (c) 2021-present Tanner Linsley + +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. + + + +-------------------------------------------------------------------------------- +Package Title: @tanstack/virtual-core (3.10.9) + +Package Locator: npm+@tanstack/virtual-core$3.10.9 + +Package Depth: Transitive +-------------------------------------------------------------------------------- + +* Declared Licenses * +MIT + + +MIT License + +Copyright (c) 2021-present Tanner Linsley + +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. + + + -------------------------------------------------------------------------------- Package Title: @tootallnate/once (2.0.0) @@ -67710,6 +67784,31 @@ 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. +* MIT * + +MIT License + +Copyright (c) 2021-present Tanner Linsley + +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. + + * MIT * MIT License @@ -72561,4 +72660,4 @@ POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -Report Generated by FOSSA on 2024-12-12 +Report Generated by FOSSA on 2024-12-20 diff --git a/common/config/rush/browser-approved-packages.json b/common/config/rush/browser-approved-packages.json index 553d6b43185..2190045a82c 100644 --- a/common/config/rush/browser-approved-packages.json +++ b/common/config/rush/browser-approved-packages.json @@ -146,10 +146,6 @@ "name": "@gooddata/sdk-ui", "allowedCategories": [ "examples", "production", "tools" ] }, - { - "name": "@gooddata/sdk-ui-charts", - "allowedCategories": [ "examples", "production", "tools" ] - }, { "name": "@gooddata/sdk-ui-dashboard", "allowedCategories": [ "examples", "production", "tools" ] @@ -170,6 +166,10 @@ "name": "@gooddata/sdk-ui-geo", "allowedCategories": [ "examples", "production", "tools" ] }, + { + "name": "@gooddata/sdk-ui-charts", + "allowedCategories": [ "examples", "production", "tools" ] + }, { "name": "@gooddata/sdk-ui-kit", "allowedCategories": [ "examples", "production", "tools" ] @@ -250,6 +250,10 @@ "name": "@storybook/react-webpack5", "allowedCategories": [ "production" ] }, + { + "name": "@tanstack/react-virtual", + "allowedCategories": [ "production" ] + }, { "name": "@testing-library/dom", "allowedCategories": [ "production" ] @@ -522,10 +526,6 @@ "name": "case-sensitive-paths-webpack-plugin", "allowedCategories": [ "examples", "tools" ] }, - { - "name": "chokidar", - "allowedCategories": [ "tools" ] - }, { "name": "circular-dependency-plugin", "allowedCategories": [ "examples", "production" ] @@ -766,6 +766,10 @@ "name": "chalk", "allowedCategories": [ "production", "tools" ] }, + { + "name": "chokidar", + "allowedCategories": [ "tools" ] + }, { "name": "immer", "allowedCategories": [ "production" ] @@ -1022,10 +1026,6 @@ "name": "react-window", "allowedCategories": [ "production" ] }, - { - "name": "recharts", - "allowedCategories": [ "examples" ] - }, { "name": "redux-batched-actions", "allowedCategories": [ "production" ] @@ -1034,6 +1034,10 @@ "name": "redux-saga", "allowedCategories": [ "production" ] }, + { + "name": "recharts", + "allowedCategories": [ "examples" ] + }, { "name": "require-from-string", "allowedCategories": [ "production" ] @@ -1091,11 +1095,11 @@ "allowedCategories": [ "production" ] }, { - "name": "stylelint-checkstyle-formatter", + "name": "stylelint-config-prettier", "allowedCategories": [ "production" ] }, { - "name": "stylelint-config-prettier", + "name": "stylelint-checkstyle-formatter", "allowedCategories": [ "production" ] }, { diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 6187e16b7f8..16b73233632 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -2687,6 +2687,9 @@ importers: '@gooddata/sdk-ui-charts': specifier: workspace:* version: link:../sdk-ui-charts + '@gooddata/sdk-ui-filters': + specifier: workspace:* + version: link:../sdk-ui-filters '@gooddata/sdk-ui-geo': specifier: workspace:* version: link:../sdk-ui-geo @@ -2705,6 +2708,9 @@ importers: '@gooddata/util': specifier: workspace:* version: link:../util + '@tanstack/react-virtual': + specifier: ^3.11.1 + version: 3.11.1(react-dom@18.2.0)(react@18.2.0) classnames: specifier: ^2.3.1 version: 2.3.2 @@ -3576,6 +3582,9 @@ importers: react-intl: specifier: ^6.4.1 version: 6.5.5(react@18.2.0)(typescript@5.3.3) + react-loading-skeleton: + specifier: ^3.4.0 + version: 3.4.0(react@18.2.0) react-markdown: specifier: ^9.0.1 version: 9.0.1(@types/react@18.2.45)(react@18.2.0) @@ -4368,7 +4377,7 @@ importers: version: 5.62.0(eslint@8.55.0)(typescript@5.3.3) babel-loader: specifier: ^8.0.5 - version: 8.3.0(@babel/core@7.23.6)(webpack@5.89.0) + version: 8.3.0(@babel/core@7.23.6)(webpack@4.47.0) babel-plugin-require-context-hook: specifier: ^1.0.0 version: 1.0.0 @@ -11166,6 +11175,21 @@ packages: resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} dev: true + /@tanstack/react-virtual@3.11.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-orn2QNe5tF6SqjucHJ6cKTKcRDe3GG7bcYqPNn72Yejj7noECdzgAyRfGt2pGDPemhYim3d1HIR/dgruCnLfUA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + dependencies: + '@tanstack/virtual-core': 3.10.9 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@tanstack/virtual-core@3.10.9: + resolution: {integrity: sha512-kBknKOKzmeR7lN+vSadaKWXaLS0SZZG+oqpQ/k80Q6g9REn6zRHS/ZYdrIzHnpHgy/eWs00SujveUN/GJT2qTw==} + dev: false + /@testing-library/dom@9.2.0: resolution: {integrity: sha512-xTEnpUKiV/bMyEsE5bT4oYA0x0Z/colMtxzUY8bKyPXBNLn/e0V4ZjBZkEhms0xE4pv9QsPfSRu9AWS4y5wGvA==} engines: {node: '>=14'} diff --git a/dev_docs/continuous_integration.md b/dev_docs/continuous_integration.md deleted file mode 100644 index 8ca8d61bc09..00000000000 --- a/dev_docs/continuous_integration.md +++ /dev/null @@ -1,127 +0,0 @@ -# Continuous Integration - -The application primarily uses Jenkins for continuous integration. Some checks also run in GitHub actions in GitHub environment. - -## Triggering of CI commands from pull request - -Some CI jobs and checks can be triggered by posting a comment with a specific text to the pull request. -See the list of available commands in the next chapter. - -### Limiting commands by a test file name or AOI version - -Most of the commands below supports **filtering by spec files** (by a name of file with Cypress e2e tests). -Use the spec file name (delimited by comma in the case of multiple tests) in `` placeholder in the -commands in the table below. - -Example how to run test fixture recording with Tiger backend: - -``` -// for specific test files `dashboard.spec.ts` and `drilling.spec.ts` -extended test - tiger-cypress - record dashboard,drilling - -// for all spec tests in the suite use one of the following -extended test - tiger-cypress - record -extended test - tiger-cypress - record * -``` - -## List of available pull request commands - -### Run BackstopJS tests - -Run BackstopJS screenshot tests against recorded mock backend. - -The link to the tests result is posted to the PR once the tests finish. Use the result link to grab the -updated screenshots in the case the tests were run on PR that changes the functionality or design of -the tested UI components or when new BackstopJS tests were introduced by the PR. - -``` -extended test - backstop -``` - -### Run integrated tests - -Run integrated tests running against live backend. - -``` -// tiger platform -extended test - tiger-cypress - integrated -extended test - tiger-cypress - integrated - -// bear platform -extended test - cypress - integrated -extended test - cypress - integrated -``` - -### Run isolated tests - -Run isolated tests running against recorded backend. - -``` -// tiger platform -extended test - tiger-cypress - isolated -extended test - tiger-cypress - isolated - -// bear platform -extended test - cypress - isolated -extended test - cypress - isolated -``` - -### Record isolated tests - -Create a new recording for isolated tests. - -The recording will be posted to pull request as a link to Jenkins artifact. - -To record `editMode.spec.ts` test, set `editMode` as `` parameter value. - -To record all the tests, use `*` as `` parameter value. - -``` -// tiger platform -extended test - tiger-cypress - record -extended test - tiger-cypress - record * -extended test - tiger-cypress - record - -// bear platform -extended test - cypress - record -extended test - cypress - record * -extended test - cypress - record -``` - -### Run integrated compatibility matrix tests against AIO versions - -`` in commands is used to start test with multiple All-in-One (AIO) Tiger images - each -instance in triggered by one jenkins build. - -If `` parameter is empty, the versions are read from `./compTigerVersions.txt` file in -this repository. - -``` -// run the tests against image build from specific release streams, for example `master` and `stable` -extended test - matrix-test master,stable - -// run the tests against the latest AIO image -extended test - matrix-test latest - -// to run with specific version,ex: `2.3.0` and `2.3.1` -extended test - matrix-test 2.3.0,2.3.1 - -// run tests with versions specified in ./compTigerVersions.txt -extended test - matrix-test -``` - -### Run SonarQube scan - -Run SonarQube scan on the files in pull request. - -``` -extended check sonar -``` - -### Re-run basic check - -The basic checks are executed. These are the checks that are automatically started with each commit push into the pull request. However, sometimes they are not executed or they fail because of the error in CI and you need to re-run them because this check is required for the successful merge. - -``` -ok to test -``` diff --git a/libs/api-client-tiger/api/api-client-tiger.api.md b/libs/api-client-tiger/api/api-client-tiger.api.md index 9207d28ac37..e5ea0d21e98 100644 --- a/libs/api-client-tiger/api/api-client-tiger.api.md +++ b/libs/api-client-tiger/api/api-client-tiger.api.md @@ -2673,6 +2673,12 @@ export interface ChatResult { threadIdSuffix?: string; } +// @public +export interface ChatSuggestion { + label: string; + query: string; +} + // @public export interface ClusteringRequest { numberOfClusters: number; @@ -3039,6 +3045,7 @@ export interface CreatedVisualization { filters: Array; id: string; metrics: Array; + suggestions: Array; title: string; visualizationType: CreatedVisualizationVisualizationTypeEnum; } diff --git a/libs/api-client-tiger/src/generated/afm-rest-api/api.ts b/libs/api-client-tiger/src/generated/afm-rest-api/api.ts index 40079d01b05..736e5276558 100644 --- a/libs/api-client-tiger/src/generated/afm-rest-api/api.ts +++ b/libs/api-client-tiger/src/generated/afm-rest-api/api.ts @@ -1259,6 +1259,12 @@ export interface CreatedVisualization { filters: Array< AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter >; + /** + * Suggestions for next steps + * @type {Array} + * @memberof CreatedVisualization + */ + suggestions: Array; } export const CreatedVisualizationVisualizationTypeEnum = { @@ -3441,6 +3447,25 @@ export const SortKeyValueValueDirectionEnum = { export type SortKeyValueValueDirectionEnum = typeof SortKeyValueValueDirectionEnum[keyof typeof SortKeyValueValueDirectionEnum]; +/** + * Suggestions for next steps + * @export + * @interface Suggestion + */ +export interface Suggestion { + /** + * Suggestion query + * @type {string} + * @memberof Suggestion + */ + query: string; + /** + * Suggestion button label + * @type {string} + * @memberof Suggestion + */ + label: string; +} /** * Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension` * @export diff --git a/libs/api-client-tiger/src/generated/afm-rest-api/openapi-spec.json b/libs/api-client-tiger/src/generated/afm-rest-api/openapi-spec.json index 2e2976ec721..bdcbd9bd019 100644 --- a/libs/api-client-tiger/src/generated/afm-rest-api/openapi-spec.json +++ b/libs/api-client-tiger/src/generated/afm-rest-api/openapi-spec.json @@ -3212,7 +3212,15 @@ } }, "CreatedVisualization": { - "required": ["dimensionality", "filters", "id", "metrics", "title", "visualizationType"], + "required": [ + "dimensionality", + "filters", + "id", + "metrics", + "suggestions", + "title", + "visualizationType" + ], "type": "object", "properties": { "id": { @@ -3264,6 +3272,13 @@ } ] } + }, + "suggestions": { + "type": "array", + "description": "Suggestions for next steps", + "items": { + "$ref": "#/components/schemas/Suggestion" + } } }, "description": "List of created visualization objects" @@ -3448,6 +3463,21 @@ }, "description": "Question -> Use Case routing. May contain final answer is a special use case is not required." }, + "Suggestion": { + "required": ["label", "query"], + "type": "object", + "properties": { + "query": { + "type": "string", + "description": "Suggestion query" + }, + "label": { + "type": "string", + "description": "Suggestion button label" + } + }, + "description": "Suggestions for next steps" + }, "ChatResult": { "type": "object", "properties": { diff --git a/libs/api-client-tiger/src/index.ts b/libs/api-client-tiger/src/index.ts index 7f03a56d8be..fc4adfd4a1e 100644 --- a/libs/api-client-tiger/src/index.ts +++ b/libs/api-client-tiger/src/index.ts @@ -182,6 +182,7 @@ export type { ChatHistoryRequestUserFeedbackEnum, ChatHistoryInteraction, ChatHistoryInteractionUserFeedbackEnum, + Suggestion as ChatSuggestion, ActionsApiAiChatRequest, ActionsApiAiChatStreamRequest, ActionsApiAiChatHistoryRequest, diff --git a/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts b/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts index 80540606ad3..92cfc4f491c 100644 --- a/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts +++ b/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts @@ -648,6 +648,11 @@ function recordedDateFilterConfig(implConfig: RecordedBackendConfig): IDateFilte query(): Promise { const { dateFilterConfig } = implConfig; + return Promise.resolve(new InMemoryPaging(dateFilterConfig ? [dateFilterConfig] : [])); + }, + queryCustomDateFilterConfig(): Promise { + const { dateFilterConfig } = implConfig; + return Promise.resolve(new InMemoryPaging(dateFilterConfig ? [dateFilterConfig] : [])); }, }; diff --git a/libs/sdk-backend-spi/api/sdk-backend-spi.api.md b/libs/sdk-backend-spi/api/sdk-backend-spi.api.md index 416518bd531..c4c57d47f3c 100644 --- a/libs/sdk-backend-spi/api/sdk-backend-spi.api.md +++ b/libs/sdk-backend-spi/api/sdk-backend-spi.api.md @@ -545,6 +545,7 @@ export interface IDateDataset { // @alpha export interface IDateFilterConfigsQuery { query(): Promise; + queryCustomDateFilterConfig(): Promise; withLimit(limit: number): IDateFilterConfigsQuery; withOffset(offset: number): IDateFilterConfigsQuery; } @@ -892,6 +893,7 @@ export interface INotificationsQuery { queryAll(): Promise; withPage(page: number): INotificationsQuery; withSize(size: number): INotificationsQuery; + withStatus(status: "read" | "unread"): INotificationsQuery; withWorkspace(workspaceId: string): INotificationsQuery; } diff --git a/libs/sdk-backend-spi/src/organization/notifications/query.ts b/libs/sdk-backend-spi/src/organization/notifications/query.ts index d76938a050b..96593511698 100644 --- a/libs/sdk-backend-spi/src/organization/notifications/query.ts +++ b/libs/sdk-backend-spi/src/organization/notifications/query.ts @@ -36,6 +36,14 @@ export interface INotificationsQuery { */ withWorkspace(workspaceId: string): INotificationsQuery; + /** + * Filter notifications by read status. + * + * @param status - "read" or "unread" + * @returns notifications query + */ + withStatus(status: "read" | "unread"): INotificationsQuery; + /** * Starts the notifications query. * diff --git a/libs/sdk-backend-spi/src/workspace/dateFilterConfigs/index.ts b/libs/sdk-backend-spi/src/workspace/dateFilterConfigs/index.ts index 06ce64d5750..f224ef632d5 100644 --- a/libs/sdk-backend-spi/src/workspace/dateFilterConfigs/index.ts +++ b/libs/sdk-backend-spi/src/workspace/dateFilterConfigs/index.ts @@ -1,4 +1,4 @@ -// (C) 2019-2022 GoodData Corporation +// (C) 2019-2024 GoodData Corporation import { IDateFilterConfig } from "@gooddata/sdk-model"; import { IPagedResource } from "../../common/paging.js"; @@ -36,6 +36,13 @@ export interface IDateFilterConfigsQuery { * @returns promise of first page of the results */ query(): Promise; + + /** + * Starts the custom date filter confis by settings query. + * + * @returns promise of first page of the results + */ + queryCustomDateFilterConfig(): Promise; } /** diff --git a/libs/sdk-backend-tiger/src/backend/organization/notificationsQuery.ts b/libs/sdk-backend-tiger/src/backend/organization/notificationsQuery.ts index ec1d193f2fa..2b975da8442 100644 --- a/libs/sdk-backend-tiger/src/backend/organization/notificationsQuery.ts +++ b/libs/sdk-backend-tiger/src/backend/organization/notificationsQuery.ts @@ -13,6 +13,7 @@ export class NotificationsQuery implements INotificationsQuery { private page = 0; private workspaceId?: string; private totalCount: number | undefined = undefined; + private status: "read" | "unread" | undefined = undefined; constructor(public readonly authCall: TigerAuthenticatedCallGuard) {} @@ -35,16 +36,35 @@ export class NotificationsQuery implements INotificationsQuery { return this; } + withStatus(status: "read" | "unread"): INotificationsQuery { + this.status = status; + return this; + } + query(): Promise { return ServerPaging.for( async ({ limit, offset }) => { - const params: AutomationActionsApiGetNotificationsRequest = { + let params: AutomationActionsApiGetNotificationsRequest = { workspaceId: this.workspaceId, page: String(offset / limit), size: String(limit), metaInclude: ["total", "ALL"], }; + if (this.status) { + if (this.status === "read") { + params = { + ...params, + isRead: true, + }; + } else if (this.status === "unread") { + params = { + ...params, + isRead: false, + }; + } + } + const response = await this.authCall((client) => client.automation.getNotifications(params)); const items = response.data.data.map(convertNotificationFromBackend); @@ -53,7 +73,11 @@ export class NotificationsQuery implements INotificationsQuery { this.setTotalCount(totalCount); } - return { items, totalCount: this.totalCount! }; + return { + items, + totalCount: + this.status === "unread" ? response.data.meta.total?.unread ?? 0 : this.totalCount!, + }; }, this.size, this.page * this.size, diff --git a/libs/sdk-backend-tiger/src/backend/workspace/automations/index.ts b/libs/sdk-backend-tiger/src/backend/workspace/automations/index.ts index b4aea748d5b..e0a190991d4 100644 --- a/libs/sdk-backend-tiger/src/backend/workspace/automations/index.ts +++ b/libs/sdk-backend-tiger/src/backend/workspace/automations/index.ts @@ -29,6 +29,7 @@ export class TigerWorkspaceAutomationService implements IWorkspaceAutomationServ "notificationChannel", "recipients", "exportDefinitions", + "analyticalDashboard", ...(loadUserData ? (["createdBy", "modifiedBy"] as const) : []), ], origin: "NATIVE", // ensures that no inherited automations are returned @@ -60,6 +61,7 @@ export class TigerWorkspaceAutomationService implements IWorkspaceAutomationServ "notificationChannel", "recipients", "exportDefinitions", + "analyticalDashboard", ...(loadUserData ? (["createdBy", "modifiedBy"] as const) : []), ], }); diff --git a/libs/sdk-backend-tiger/src/backend/workspace/dateFilterConfigs/index.ts b/libs/sdk-backend-tiger/src/backend/workspace/dateFilterConfigs/index.ts index 9f24fdb8b92..f51d4846a6f 100644 --- a/libs/sdk-backend-tiger/src/backend/workspace/dateFilterConfigs/index.ts +++ b/libs/sdk-backend-tiger/src/backend/workspace/dateFilterConfigs/index.ts @@ -1,265 +1,21 @@ -// (C) 2019-2022 GoodData Corporation +// (C) 2019-2024 GoodData Corporation import { InMemoryPaging } from "@gooddata/sdk-backend-base"; import { IDateFilterConfigsQuery, IDateFilterConfigsQueryResult } from "@gooddata/sdk-backend-spi"; -import { idRef, IDateFilterConfig } from "@gooddata/sdk-model"; import { invariant } from "ts-invariant"; -const DefaultDateFilterConfig: IDateFilterConfig = { - ref: idRef("defaultDateFilterProjectConfig"), - selectedOption: "THIS_MONTH", - allTime: { - localIdentifier: "ALL_TIME", - type: "allTime", - name: "", - visible: true, - }, - absoluteForm: { - localIdentifier: "ABSOLUTE_FORM", - type: "absoluteForm", - name: "", - visible: true, - }, - relativeForm: { - type: "relativeForm", - // month has to be the first as it should be the default selected option - availableGranularities: [ - "GDC.time.month", - "GDC.time.minute", - "GDC.time.hour", - "GDC.time.date", - "GDC.time.week_us", - "GDC.time.quarter", - "GDC.time.year", - ], - localIdentifier: "RELATIVE_FORM", - name: "", - visible: true, - }, - relativePresets: [ - { - from: -14, - to: 0, - granularity: "GDC.time.minute", - localIdentifier: "LAST_15_MINUTES", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -29, - to: 0, - granularity: "GDC.time.minute", - localIdentifier: "LAST_30_MINUTES", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -44, - to: 0, - granularity: "GDC.time.minute", - localIdentifier: "LAST_45_MINUTES", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -59, - to: 0, - granularity: "GDC.time.minute", - localIdentifier: "LAST_60_MINUTES", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.hour", - localIdentifier: "LAST_HOUR", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -7, - to: 0, - granularity: "GDC.time.hour", - localIdentifier: "LAST_8_HOURS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -11, - to: 0, - granularity: "GDC.time.hour", - localIdentifier: "LAST_12_HOURS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -23, - to: 0, - granularity: "GDC.time.hour", - localIdentifier: "LAST_24_HOURS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: 0, - to: 0, - granularity: "GDC.time.week_us", - localIdentifier: "THIS_WEEK", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.week_us", - localIdentifier: "LAST_WEEK", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: 0, - granularity: "GDC.time.week_us", - localIdentifier: "LAST_2_WEEKS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: 0, - to: 0, - granularity: "GDC.time.date", - localIdentifier: "TODAY", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.date", - localIdentifier: "YESTERDAY", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -6, - to: 0, - granularity: "GDC.time.date", - localIdentifier: "LAST_7_DAYS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -29, - to: 0, - granularity: "GDC.time.date", - localIdentifier: "LAST_30_DAYS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -89, - to: 0, - granularity: "GDC.time.date", - localIdentifier: "LAST_90_DAYS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: 0, - to: 0, - granularity: "GDC.time.month", - localIdentifier: "THIS_MONTH", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.month", - localIdentifier: "LAST_MONTH", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -11, - to: 0, - granularity: "GDC.time.month", - localIdentifier: "LAST_12_MONTHS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: 0, - to: 0, - granularity: "GDC.time.quarter", - localIdentifier: "THIS_QUARTER", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.quarter", - localIdentifier: "LAST_QUARTER", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -3, - to: 0, - granularity: "GDC.time.quarter", - localIdentifier: "LAST_4_QUARTERS", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: 0, - to: 0, - granularity: "GDC.time.year", - localIdentifier: "THIS_YEAR", - type: "relativePreset", - visible: true, - name: "", - }, - { - from: -1, - to: -1, - granularity: "GDC.time.year", - localIdentifier: "LAST_YEAR", - type: "relativePreset", - visible: true, - name: "", - }, - ], - absolutePresets: [], -}; +import { TigerAuthenticatedCallGuard } from "../../../types/index.js"; +import { + DefaultDateFilterConfig, + convertDateFilterConfig, + IWrappedDateFilterConfig, +} from "../../../convertors/fromBackend/DateFilterConfigurationConverter.js"; export class TigerWorkspaceDateFilterConfigsQuery implements IDateFilterConfigsQuery { private limit: number | undefined; private offset: number | undefined; + constructor(private readonly authCall: TigerAuthenticatedCallGuard, private readonly workspace: string) {} + public withLimit(limit: number): IDateFilterConfigsQuery { invariant(limit > 0, `limit must be a positive number, got: ${limit}`); @@ -276,4 +32,21 @@ export class TigerWorkspaceDateFilterConfigsQuery implements IDateFilterConfigsQ public async query(): Promise { return new InMemoryPaging([DefaultDateFilterConfig], this.limit, this.offset); } + + public async queryCustomDateFilterConfig(): Promise { + const { data } = await this.authCall((sdk) => + sdk.actions.workspaceResolveSettings({ + workspaceId: this.workspace, + resolveSettingsRequest: { settings: ["DATE_FILTER_CONFIG"] }, + }), + ); + + const customDateFilterConfig = data[0].content as any; + + const dateFilterConfig = convertDateFilterConfig( + customDateFilterConfig.config as IWrappedDateFilterConfig, + ); + + return new InMemoryPaging([dateFilterConfig], this.limit, this.offset); + } } diff --git a/libs/sdk-backend-tiger/src/backend/workspace/index.ts b/libs/sdk-backend-tiger/src/backend/workspace/index.ts index 14126bd5672..fd4a290fcc8 100644 --- a/libs/sdk-backend-tiger/src/backend/workspace/index.ts +++ b/libs/sdk-backend-tiger/src/backend/workspace/index.ts @@ -164,7 +164,7 @@ export class TigerWorkspace implements IAnalyticalWorkspace { } public dateFilterConfigs(): IDateFilterConfigsQuery { - return new TigerWorkspaceDateFilterConfigsQuery(); + return new TigerWorkspaceDateFilterConfigsQuery(this.authCall, this.workspace); } public attributeHierarchies(): IAttributeHierarchiesService { diff --git a/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts b/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts new file mode 100644 index 00000000000..c103d888e3e --- /dev/null +++ b/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts @@ -0,0 +1,360 @@ +// (C) 2024 GoodData Corporation + +import { + IAbsoluteDateFilterPreset, + IRelativeDateFilterPreset, + IAbsoluteDateFilterForm, + IRelativeDateFilterForm, + IAllTimeDateFilterOption, + IDateFilterConfig, + DateFilterGranularity, + DateString, + idRef, + isDateFilterGranularity, +} from "@gooddata/sdk-model"; + +export const DefaultDateFilterConfig: IDateFilterConfig = { + ref: idRef("defaultDateFilterProjectConfig"), + selectedOption: "THIS_MONTH", + allTime: { + localIdentifier: "ALL_TIME", + type: "allTime", + name: "", + visible: true, + }, + absoluteForm: { + localIdentifier: "ABSOLUTE_FORM", + type: "absoluteForm", + name: "", + visible: true, + }, + relativeForm: { + type: "relativeForm", + // month has to be the first as it should be the default selected option + availableGranularities: [ + "GDC.time.month", + "GDC.time.minute", + "GDC.time.hour", + "GDC.time.date", + "GDC.time.week_us", + "GDC.time.quarter", + "GDC.time.year", + ], + localIdentifier: "RELATIVE_FORM", + name: "", + visible: true, + }, + relativePresets: [ + { + from: -14, + to: 0, + granularity: "GDC.time.minute", + localIdentifier: "LAST_15_MINUTES", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -29, + to: 0, + granularity: "GDC.time.minute", + localIdentifier: "LAST_30_MINUTES", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -44, + to: 0, + granularity: "GDC.time.minute", + localIdentifier: "LAST_45_MINUTES", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -59, + to: 0, + granularity: "GDC.time.minute", + localIdentifier: "LAST_60_MINUTES", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.hour", + localIdentifier: "LAST_HOUR", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -7, + to: 0, + granularity: "GDC.time.hour", + localIdentifier: "LAST_8_HOURS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -11, + to: 0, + granularity: "GDC.time.hour", + localIdentifier: "LAST_12_HOURS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -23, + to: 0, + granularity: "GDC.time.hour", + localIdentifier: "LAST_24_HOURS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: 0, + to: 0, + granularity: "GDC.time.week_us", + localIdentifier: "THIS_WEEK", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.week_us", + localIdentifier: "LAST_WEEK", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: 0, + granularity: "GDC.time.week_us", + localIdentifier: "LAST_2_WEEKS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: 0, + to: 0, + granularity: "GDC.time.date", + localIdentifier: "TODAY", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.date", + localIdentifier: "YESTERDAY", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -6, + to: 0, + granularity: "GDC.time.date", + localIdentifier: "LAST_7_DAYS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -29, + to: 0, + granularity: "GDC.time.date", + localIdentifier: "LAST_30_DAYS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -89, + to: 0, + granularity: "GDC.time.date", + localIdentifier: "LAST_90_DAYS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: 0, + to: 0, + granularity: "GDC.time.month", + localIdentifier: "THIS_MONTH", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.month", + localIdentifier: "LAST_MONTH", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -11, + to: 0, + granularity: "GDC.time.month", + localIdentifier: "LAST_12_MONTHS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: 0, + to: 0, + granularity: "GDC.time.quarter", + localIdentifier: "THIS_QUARTER", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.quarter", + localIdentifier: "LAST_QUARTER", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -3, + to: 0, + granularity: "GDC.time.quarter", + localIdentifier: "LAST_4_QUARTERS", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: 0, + to: 0, + granularity: "GDC.time.year", + localIdentifier: "THIS_YEAR", + type: "relativePreset", + visible: true, + name: "", + }, + { + from: -1, + to: -1, + granularity: "GDC.time.year", + localIdentifier: "LAST_YEAR", + type: "relativePreset", + visible: true, + name: "", + }, + ], + absolutePresets: [], +}; + +export interface IWrappedDateFilterConfig { + selectedOption: string; + allTime?: IDateFilterBase; + absoluteForm?: IDateFilterBase; + relativeForm?: IDateFilterRelativeForm; + absolutePresets?: IDateFilterAbsolutePreset[]; + relativePresets?: IDateFilterRelativePreset[]; +} + +interface IDateFilterBase { + localIdentifier: string; + name?: string; + visible: boolean; +} + +interface IDateFilterRelativePreset extends IDateFilterBase { + from: number; + to: number; + granularity: DateFilterGranularity; +} + +interface IDateFilterAbsolutePreset extends IDateFilterBase { + from: DateString; + to: DateString; +} + +interface IDateFilterRelativeForm extends IDateFilterBase { + granularities: DateFilterGranularity[]; +} + +const convertAllTime = (allTime: IDateFilterBase): IAllTimeDateFilterOption => { + return { + type: "allTime", + ...allTime, + }; +}; + +const convertAbsoluteForm = (absoluteForm: IDateFilterBase): IAbsoluteDateFilterForm => { + return { + type: "absoluteForm", + ...absoluteForm, + }; +}; + +const convertRelativeForm = (relativeForm: IDateFilterRelativeForm): IRelativeDateFilterForm => { + const { granularities: availableGranularities, ...other } = relativeForm; + + if (!availableGranularities) { + return DefaultDateFilterConfig.relativeForm!; + } + + const validGranularities: DateFilterGranularity[] = + availableGranularities.filter(isDateFilterGranularity); + + return { + type: "relativeForm", + availableGranularities: validGranularities, + ...other, + }; +}; + +const convertAbsolutePreset = (absolutePreset: IDateFilterAbsolutePreset): IAbsoluteDateFilterPreset => { + return { + type: "absolutePreset", + ...absolutePreset, + }; +}; + +const convertRelativePreset = (relativePreset: IDateFilterRelativePreset): IRelativeDateFilterPreset => { + return { + type: "relativePreset", + ...relativePreset, + }; +}; + +export const convertDateFilterConfig = (dateFilterConfig: IWrappedDateFilterConfig): IDateFilterConfig => { + if (!dateFilterConfig) { + return DefaultDateFilterConfig; + } + + const { selectedOption, allTime, absoluteForm, relativeForm, absolutePresets, relativePresets } = + dateFilterConfig; + + return { + ref: idRef("defaultDateFilterProjectConfig"), + selectedOption, + allTime: allTime && convertAllTime(allTime), + absoluteForm: absoluteForm && convertAbsoluteForm(absoluteForm), + relativeForm: relativeForm && convertRelativeForm(relativeForm), + absolutePresets: absolutePresets?.map(convertAbsolutePreset), + relativePresets: relativePresets?.map(convertRelativePreset), + }; +}; diff --git a/libs/sdk-backend-tiger/src/convertors/fromBackend/NotificationChannelsConvertor.ts b/libs/sdk-backend-tiger/src/convertors/fromBackend/NotificationChannelsConvertor.ts index 3b8ac795cd2..123002b202c 100644 --- a/libs/sdk-backend-tiger/src/convertors/fromBackend/NotificationChannelsConvertor.ts +++ b/libs/sdk-backend-tiger/src/convertors/fromBackend/NotificationChannelsConvertor.ts @@ -86,6 +86,7 @@ function convertCustomSmtpNotificationChannelFromBackend( return { ...shared, destinationType: "smtp", + sendInPlatformNotifications: channel.attributes?.inPlatformNotification === "ENABLED", destinationConfig: destination ? { type: "customSmtp", @@ -109,6 +110,7 @@ function convertDefaultSmtpNotificationChannelFromBackend( return { ...shared, destinationType: "smtp", + sendInPlatformNotifications: channel.attributes?.inPlatformNotification === "ENABLED", destinationConfig: destination ? { type: "defaultSmtp", @@ -128,6 +130,7 @@ function convertWebhookNotificationChannelFromBackend( return { ...shared, destinationType: "webhook", + sendInPlatformNotifications: channel.attributes?.inPlatformNotification === "ENABLED", destinationConfig: destination ? { endpoint: destination.url, diff --git a/libs/sdk-backend-tiger/src/convertors/tests/NotificationChannelsConvertor.test.ts b/libs/sdk-backend-tiger/src/convertors/tests/NotificationChannelsConvertor.test.ts index dcb4b118b83..0f42691dff7 100644 --- a/libs/sdk-backend-tiger/src/convertors/tests/NotificationChannelsConvertor.test.ts +++ b/libs/sdk-backend-tiger/src/convertors/tests/NotificationChannelsConvertor.test.ts @@ -12,6 +12,7 @@ describe("NotificationChannelsConvertor", () => { type: "notificationChannel", destinationType: "webhook", title: "name", + sendInPlatformNotifications: false, destinationConfig: { token: "token", endpoint: "endpoint", @@ -22,6 +23,7 @@ describe("NotificationChannelsConvertor", () => { expect(data).toEqual({ attributes: { name: "name", + inPlatformNotification: "DISABLED", destinationType: "WEBHOOK", destination: { type: "WEBHOOK", @@ -43,6 +45,7 @@ describe("NotificationChannelsConvertor", () => { name: "name", description: "description", destinationType: "WEBHOOK", + inPlatformNotification: "ENABLED", destination: { type: "WEBHOOK", url: "endpoint", @@ -60,6 +63,7 @@ describe("NotificationChannelsConvertor", () => { destinationType: "webhook", title: "name", description: "description", + sendInPlatformNotifications: true, destinationConfig: { endpoint: "endpoint", token: "token", diff --git a/libs/sdk-backend-tiger/src/convertors/toBackend/NotificationChannelsConvertor.ts b/libs/sdk-backend-tiger/src/convertors/toBackend/NotificationChannelsConvertor.ts index 042f215b4e4..7a5b927a1f7 100644 --- a/libs/sdk-backend-tiger/src/convertors/toBackend/NotificationChannelsConvertor.ts +++ b/libs/sdk-backend-tiger/src/convertors/toBackend/NotificationChannelsConvertor.ts @@ -104,6 +104,7 @@ function convertCustomSmtpNotificationChannelToBackend< attributes: { ...shared.attributes, destinationType: DeclarativeNotificationChannelDestinationTypeEnum.SMTP, + inPlatformNotification: channel.sendInPlatformNotifications ? "ENABLED" : "DISABLED", destination: config ? ({ type: "SMTP", @@ -130,6 +131,7 @@ function convertDefaultSmtpNotificationChannelToBackend< attributes: { ...shared.attributes, destinationType: DeclarativeNotificationChannelDestinationTypeEnum.DEFAULT_SMTP, + inPlatformNotification: channel.sendInPlatformNotifications ? "ENABLED" : "DISABLED", destination: config ? ({ type: "DEFAULT_SMTP", @@ -152,6 +154,7 @@ function convertWebhookNotificationChannelToBackend< attributes: { ...shared.attributes, destinationType: DeclarativeNotificationChannelDestinationTypeEnum.WEBHOOK, + inPlatformNotification: channel.sendInPlatformNotifications ? "ENABLED" : "DISABLED", destination: config ? ({ type: "WEBHOOK", diff --git a/libs/sdk-model/api/sdk-model.api.md b/libs/sdk-model/api/sdk-model.api.md index 9f3c32d70fe..7f29fde2e42 100644 --- a/libs/sdk-model/api/sdk-model.api.md +++ b/libs/sdk-model/api/sdk-model.api.md @@ -1994,6 +1994,12 @@ export interface IGenAIFoundObjects { reasoning: string; } +// @alpha +export type IGenAISuggestion = { + query: string; + label: string; +}; + // @alpha export interface IGenAIUserContext { activeObject: IGenAIActiveObject; @@ -2005,6 +2011,7 @@ export interface IGenAIVisualization { filters?: GenAIFilter[]; id: string; metrics: IGenAIVisualizationMetric[]; + suggestions?: IGenAISuggestion[]; title: string; visualizationType: GenAIVisualizationType; } @@ -3001,6 +3008,9 @@ export const isAbsoluteDateFilterPreset: (obj: unknown) => obj is IAbsoluteDateF // @public export function isAdhocMeasure(obj: unknown): obj is IMeasure; +// @alpha +export function isAlertNotification(notification: unknown): notification is IAlertNotification; + // @alpha export function isAllTimeDashboardDateFilter(obj: unknown): boolean; @@ -3551,6 +3561,7 @@ export interface ISmtpNotificationChannelMetadataObject extends INotificationCha destinationConfig?: ISmtpDestinationConfiguration; // (undocumented) destinationType: "smtp"; + sendInPlatformNotifications: boolean; // (undocumented) type: "notificationChannel"; } @@ -3564,6 +3575,9 @@ export function isNegativeAttributeFilter(obj: unknown): obj is INegativeAttribu // @alpha export function isNegativeDashboardAttributeFilter(filter: IDashboardAttributeFilter): boolean; +// @alpha +export function isNotification(notification: unknown): notification is INotification; + // @beta export function isNotificationChannelMetadataObject(obj: unknown): obj is INotificationChannelMetadataObject; @@ -3635,6 +3649,9 @@ export function isRichTextWidget(obj: unknown): obj is IRichTextWidget; // @alpha export function isRichTextWidgetDefinition(obj: unknown): obj is IRichTextWidgetDefinition; +// @alpha +export function isScheduleNotification(notification: unknown): notification is IScheduleNotification; + // @public export function isSimpleMeasure(obj: unknown): obj is IMeasure; @@ -3647,6 +3664,9 @@ export function isSingleSelectionFilter(filter: IDashboardAttributeFilter): bool // @alpha export function isTempFilterContext(obj: unknown): obj is ITempFilterContext; +// @alpha +export function isTestNotification(notification: unknown): notification is ITestNotification; + // @public export function isTotal(obj: unknown): obj is ITotal; @@ -4164,6 +4184,7 @@ export interface IWebhookNotificationChannelMetadataObject extends INotification destinationConfig?: IWebhookDestinationConfiguration; // (undocumented) destinationType: "webhook"; + sendInPlatformNotifications: boolean; // (undocumented) type: "notificationChannel"; } diff --git a/libs/sdk-model/src/genAI/chat.ts b/libs/sdk-model/src/genAI/chat.ts index 02d4f4a5ffc..9ed60f10d64 100644 --- a/libs/sdk-model/src/genAI/chat.ts +++ b/libs/sdk-model/src/genAI/chat.ts @@ -102,6 +102,10 @@ export interface IGenAIVisualization { * Filters used in the visualization. */ filters?: GenAIFilter[]; + /** + * Suggestions for the visualization. + */ + suggestions?: IGenAISuggestion[]; } /** @@ -174,6 +178,21 @@ export type GenAIFilter = | GenAIAbsoluteDateFilter | GenAIRelativeDateFilter; +/** + * Suggestion for the visualization. + * @alpha + */ +export type IGenAISuggestion = { + /** + * The actual suggestion. + */ + query: string; + /** + * The label of the suggestion. + */ + label: string; +}; + /** * Type of the visualization. * @alpha diff --git a/libs/sdk-model/src/index.ts b/libs/sdk-model/src/index.ts index fd5fd2947e2..01e12f0282a 100644 --- a/libs/sdk-model/src/index.ts +++ b/libs/sdk-model/src/index.ts @@ -78,6 +78,12 @@ export type { NotificationType, WebhookRecipient, } from "./notifications/index.js"; +export { + isAlertNotification, + isScheduleNotification, + isTestNotification, + isNotification, +} from "./notifications/index.js"; export type { ObjectType, @@ -1046,6 +1052,7 @@ export type { IGenAIVisualizationDimension, IGenAIVisualizationMetric, IGenAIActiveObject, + IGenAISuggestion, GenAIChatRoutingUseCase, GenAIChatInteractionUserFeedback, GenAIChatRole, diff --git a/libs/sdk-model/src/notificationChannels/index.ts b/libs/sdk-model/src/notificationChannels/index.ts index f5100b05ada..096a56581f5 100644 --- a/libs/sdk-model/src/notificationChannels/index.ts +++ b/libs/sdk-model/src/notificationChannels/index.ts @@ -56,6 +56,11 @@ export interface IWebhookNotificationChannelMetadataObject type: "notificationChannel"; destinationType: "webhook"; + /** + * Send also in-platform notifications for this channel. + */ + sendInPlatformNotifications: boolean; + /** * Configuration of the webhook, where the notifications are to be sent. */ @@ -98,6 +103,11 @@ export interface ISmtpNotificationChannelMetadataObject type: "notificationChannel"; destinationType: "smtp"; + /** + * Send also in-platform notifications for this channel. + */ + sendInPlatformNotifications: boolean; + /** * Configuration of the SMTP, where the notifications are to be sent. */ diff --git a/libs/sdk-model/src/notifications/index.ts b/libs/sdk-model/src/notifications/index.ts index 5e74594ef5e..1d5ef75c980 100644 --- a/libs/sdk-model/src/notifications/index.ts +++ b/libs/sdk-model/src/notifications/index.ts @@ -1,6 +1,7 @@ // (C) 2024 GoodData Corporation import { IExportResult } from "../exports/index.js"; import { IAutomationDetails } from "../automations/index.js"; +import isEmpty from "lodash/isEmpty.js"; /** * Type of the notification. @@ -388,3 +389,55 @@ export type AlertDescriptionStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "T * @alpha */ export type INotification = IAlertNotification | IScheduleNotification | ITestNotification; + +/** + * Type guard to check if the notification is an alert notification. + * + * @alpha + */ +export function isAlertNotification(notification: unknown): notification is IAlertNotification { + if (isEmpty(notification)) { + return false; + } + + return (notification as INotification).notificationType === "alertNotification"; +} + +/** + * Type guard to check if the notification is a schedule notification. + * + * @alpha + */ +export function isScheduleNotification(notification: unknown): notification is IScheduleNotification { + if (isEmpty(notification)) { + return false; + } + + return (notification as INotification).notificationType === "scheduleNotification"; +} + +/** + * Type guard to check if the notification is a test notification. + * + * @alpha + */ +export function isTestNotification(notification: unknown): notification is ITestNotification { + if (isEmpty(notification)) { + return false; + } + + return (notification as INotification).notificationType === "testNotification"; +} + +/** + * Type guard to check if the notification is a test notification. + * + * @alpha + */ +export function isNotification(notification: unknown): notification is INotification { + return ( + isAlertNotification(notification) || + isScheduleNotification(notification) || + isTestNotification(notification) + ); +} diff --git a/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md b/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md index ef8d54bc0f8..07a9449d64b 100644 --- a/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md +++ b/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md @@ -1530,7 +1530,7 @@ export interface DashboardCommandRejected extends IDashboardEvent { } // @public -export type DashboardCommands = InitializeDashboard | SaveDashboardAs | RequestAsyncRender | ResolveAsyncRender | ChangeFilterContextSelection | ChangeDateFilterSelection | ChangeAttributeFilterSelection | ChangeRenderMode | SaveDashboard | RenameDashboard | ResetDashboard | ExportDashboardToPdf | DeleteDashboard | TriggerEvent | UpsertExecutionResult | AddAttributeFilter | RemoveAttributeFilters | MoveAttributeFilter | SetAttributeFilterParents | SetAttributeFilterDependentDateFilters | AddLayoutSection | MoveLayoutSection | RemoveLayoutSection | ChangeLayoutSectionHeader | ResizeHeight | ResizeWidth | AddSectionItems | ReplaceSectionItem | MoveSectionItem | MoveSectionItemToNewSection | RemoveSectionItem | RemoveSectionItemByWidgetRef | UndoLayoutChanges | ChangeKpiWidgetHeader | ChangeKpiWidgetDescription | ChangeKpiWidgetConfiguration | ChangeKpiWidgetMeasure | ChangeKpiWidgetFilterSettings | ChangeKpiWidgetComparison | RefreshKpiWidget | SetDrillForKpiWidget | RemoveDrillForKpiWidget | ChangeInsightWidgetHeader | ChangeInsightWidgetDescription | ChangeInsightWidgetIgnoreCrossFiltering | ChangeInsightWidgetFilterSettings | ChangeInsightWidgetVisProperties | ChangeInsightWidgetVisConfiguration | ChangeInsightWidgetInsight | ModifyDrillsForInsightWidget | RemoveDrillsForInsightWidget | RefreshInsightWidget | ExportInsightWidget | CreateAlert | SaveAlert | CreateScheduledEmail | SaveScheduledEmail | ChangeSharing | SetAttributeFilterDisplayForm | SetAttributeFilterTitle | SetAttributeFilterSelectionMode | ChangeRichTextWidgetContent | AddVisualizationToVisualizationSwitcherWidgetContent | UpdateVisualizationsFromVisualizationSwitcherWidgetContent | Drill | DrillDown | DrillToAttributeUrl | DrillToCustomUrl | DrillToDashboard | DrillToInsight | DrillToLegacyDashboard | ChangeDrillableItems | AddDrillTargets | SetDashboardDateFilterConfigMode | SetDashboardAttributeFilterConfigMode | SetDashboardAttributeFilterConfigDisplayAsLabel | RemoveDrillDownForInsightWidget | AddDrillDownForInsightWidget | ModifyDrillDownForInsightWidget | CrossFiltering | AttributeHierarchyModified | AddDateFilter | RemoveDateFilters | MoveDateFilter | SetDashboardDateFilterWithDimensionConfigMode | SetDateFilterConfigTitle | InitializeAutomations | RefreshAutomations | SetAttributeFilterLimitingItems | SaveFilterView | DeleteFilterView | ApplyFilterView | SetFilterViewAsDefault | ReloadFilterViews | ToggleLayoutSectionHeaders | SetScreenSize; +export type DashboardCommands = InitializeDashboard | SaveDashboardAs | RequestAsyncRender | ResolveAsyncRender | ChangeFilterContextSelection | ChangeDateFilterSelection | ChangeAttributeFilterSelection | ChangeRenderMode | SaveDashboard | RenameDashboard | ResetDashboard | ExportDashboardToPdf | DeleteDashboard | TriggerEvent | UpsertExecutionResult | AddAttributeFilter | RemoveAttributeFilters | MoveAttributeFilter | SetAttributeFilterParents | SetAttributeFilterDependentDateFilters | AddLayoutSection | MoveLayoutSection | RemoveLayoutSection | ChangeLayoutSectionHeader | ResizeHeight | ResizeWidth | AddSectionItems | ReplaceSectionItem | MoveSectionItem | MoveSectionItemToNewSection | RemoveSectionItem | RemoveSectionItemByWidgetRef | UndoLayoutChanges | ChangeKpiWidgetHeader | ChangeKpiWidgetDescription | ChangeKpiWidgetConfiguration | ChangeKpiWidgetMeasure | ChangeKpiWidgetFilterSettings | ChangeKpiWidgetComparison | RefreshKpiWidget | SetDrillForKpiWidget | RemoveDrillForKpiWidget | ChangeInsightWidgetHeader | ChangeInsightWidgetDescription | ChangeInsightWidgetIgnoreCrossFiltering | ChangeInsightWidgetFilterSettings | ChangeInsightWidgetVisProperties | ChangeInsightWidgetVisConfiguration | ChangeInsightWidgetInsight | ModifyDrillsForInsightWidget | RemoveDrillsForInsightWidget | RefreshInsightWidget | ExportInsightWidget | CreateAlert | SaveAlert | CreateScheduledEmail | SaveScheduledEmail | ChangeSharing | SetAttributeFilterDisplayForm | SetAttributeFilterTitle | SetAttributeFilterSelectionMode | ChangeRichTextWidgetContent | AddVisualizationToVisualizationSwitcherWidgetContent | UpdateVisualizationsFromVisualizationSwitcherWidgetContent | Drill | DrillDown | DrillToAttributeUrl | DrillToCustomUrl | DrillToDashboard | DrillToInsight | DrillToLegacyDashboard | ChangeDrillableItems | AddDrillTargets | SetDashboardDateFilterConfigMode | SetDashboardAttributeFilterConfigMode | SetDashboardAttributeFilterConfigDisplayAsLabel | RemoveDrillDownForInsightWidget | AddDrillDownForInsightWidget | ModifyDrillDownForInsightWidget | CrossFiltering | AttributeHierarchyModified | AddDateFilter | RemoveDateFilters | MoveDateFilter | SetDashboardDateFilterWithDimensionConfigMode | SetDateFilterConfigTitle | InitializeAutomations | RefreshAutomations | SetAttributeFilterLimitingItems | SaveFilterView | DeleteFilterView | ApplyFilterView | SetFilterViewAsDefault | ReloadFilterViews | ToggleLayoutSectionHeaders | SetScreenSize | LoadAllWorkspaceUsers; // @beta export interface DashboardCommandStarted extends IDashboardEvent { @@ -1546,13 +1546,15 @@ export interface DashboardCommandStartedPayload void; onUpdate?: (alertingDefinition: IAutomationMetadataObject) => void; } @@ -3869,7 +3870,6 @@ export interface IAlertingManagementDialogProps { alertingDataError?: GoodDataSdkError; automations: IAutomationMetadataObject[]; isLoadingAlertingData: boolean; - isVisible?: boolean; onClose?: () => void; onDeleteError?: (error: GoodDataSdkError) => void; onDeleteSuccess?: (alert: IAutomationMetadataObject) => void; @@ -5229,7 +5229,6 @@ export interface IScheduledEmailDialogProps { dashboardFilters?: FilterContextItem[]; insight?: IInsight; isLoading?: boolean; - isVisible?: boolean; notificationChannels: INotificationChannelMetadataObject[]; onCancel?: () => void; onDeleteError?: (error: GoodDataSdkError) => void; @@ -5256,7 +5255,6 @@ export interface IScheduledEmailDialogPropsContext { export interface IScheduledEmailManagementDialogProps { automations: IAutomationMetadataObject[]; isLoadingScheduleData: boolean; - isVisible?: boolean; notificationChannels: INotificationChannelMetadataObject[]; onAdd?: () => void; onClose?: () => void; @@ -5992,6 +5990,15 @@ export interface LegacyDashboardsState { legacyDashboards?: ILegacyDashboard[]; } +// @internal +export interface LoadAllWorkspaceUsers extends IDashboardCommand { + // (undocumented) + readonly type: "GDC.DASH/CMD.USERS.LOAD_ALL"; +} + +// @internal +export function loadAllWorkspaceUsers(correlationId?: string): LoadAllWorkspaceUsers; + // @beta (undocumented) export interface LoadingState { // (undocumented) @@ -7029,7 +7036,7 @@ export interface ResolveAsyncRenderPayload { } // @public -export type ResolvedDashboardConfig = Omit, "mapboxToken" | "exportId"> & DashboardConfig; +export type ResolvedDashboardConfig = Omit, "mapboxToken" | "exportId" | "automationId"> & DashboardConfig; // @alpha (undocumented) export type ResolvedDateFilterValues = IResolvedDateFilterValue[]; @@ -7304,6 +7311,9 @@ export const selectAttributeFilterDisplayFormsMap: DashboardSelector; +// @beta +export const selectAutomationId: DashboardSelector; + // @alpha export const selectAutomationsError: DashboardSelector; @@ -7736,6 +7746,9 @@ export const selectEntitlementMinimumRecurrenceMinutes: DashboardSelector; +// @alpha +export const selectErrorUsers: DashboardSelector; + // @alpha (undocumented) export const selectExecutionResult: (state: DashboardState, id: EntityId) => IExecutionResultEnvelope | undefined; @@ -8057,6 +8070,12 @@ export const selectNotificationChannels: DashboardSelector; +// @alpha +export const selectNotificationChannelsCountForScheduledExports: DashboardSelector; + +// @alpha +export const selectNotificationChannelsForScheduledExports: DashboardSelector; + // @public export const selectObjectAvailabilityConfig: DashboardSelector; @@ -8151,7 +8170,10 @@ export const selectSupportsSingleSelectDependentFilters: DashboardSelector; // @alpha -export const selectUsers: DashboardSelector; +export const selectUsers: DashboardSelector; + +// @alpha +export const selectUsersLoadingStatus: DashboardSelector<"pending" | "loading" | "success" | "error">; // @internal (undocumented) export const selectValidConfiguredDrillsByWidgetRef: (ref: ObjRef) => DashboardSelector; @@ -9349,7 +9371,6 @@ export type UseDashboardQueryProcessingResult { scheduledExportToEdit: IAutomationMetadataObject | undefined; isInitialized: boolean; - users: IWorkspaceUser[]; notificationChannels: INotificationChannelMetadataObject[]; automations: IAutomationMetadataObject[]; automationsCount: number; @@ -9574,7 +9595,11 @@ export type UserInteractionType = UserInteractionPayload["interaction"]; // @alpha (undocumented) export interface UsersState { // (undocumented) - users: IWorkspaceUser[]; + error?: GoodDataSdkError; + // (undocumented) + status: "pending" | "loading" | "success" | "error"; + // (undocumented) + users?: IWorkspaceUser[]; } // @public (undocumented) @@ -9633,6 +9658,13 @@ export function useWidgetFilters(widget: FilterableDashboardWidget | undefined | // @internal (undocumented) export function useWidgetSelection(widgetRef?: ObjRef): IUseWidgetSelectionResult; +// @internal (undocumented) +export const useWorkspaceUsers: () => { + status: "error" | "loading" | "pending" | "success"; + usersError: GoodDataSdkError | undefined; + users: IWorkspaceUser[] | undefined; +}; + // @internal (undocumented) export type ValuesLimitingItem = IDashboardAttributeFilterParentItem | ObjRef | IDashboardDependentDateFilter; diff --git a/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/interfaces.ts b/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/interfaces.ts index 3e99f0d3782..776a4792499 100644 --- a/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/interfaces.ts +++ b/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/interfaces.ts @@ -65,7 +65,7 @@ export interface IDashboardLayoutItemsFacade { raw(): IDashboardLayoutItem[]; item(index: number): IDashboardLayoutItemFacade | undefined; all(): IDashboardLayoutItemFacade[]; - asGridRows(screen: ScreenSize, parentWidth?: number): IDashboardLayoutItemFacade[][]; + asGridRows(screen: ScreenSize): IDashboardLayoutItemFacade[][]; count(): number; flatMap(callback: (widgetFacade: IDashboardLayoutItemFacade) => TReturn[]): TReturn[]; map(callback: (item: IDashboardLayoutItemFacade) => TReturn): TReturn[]; diff --git a/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/items.ts b/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/items.ts index dacca3cc126..99ef5d2f351 100644 --- a/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/items.ts +++ b/libs/sdk-ui-dashboard/src/_staging/dashboard/flexibleLayout/facade/items.ts @@ -15,7 +15,10 @@ import { asLayoutItemPath } from "../../../layout/coordinates.js"; * @alpha */ export class DashboardLayoutItemsFacade implements IDashboardLayoutItemsFacade { - protected constructor(protected readonly itemFacades: IDashboardLayoutItemFacade[]) {} + protected constructor( + protected readonly sectionFacade: IDashboardLayoutSectionFacade, + protected readonly itemFacades: IDashboardLayoutItemFacade[], + ) {} public static for( sectionFacade: IDashboardLayoutSectionFacade, @@ -28,7 +31,7 @@ export class DashboardLayoutItemsFacade implements IDashboardLayoutItem asLayoutItemPath(sectionFacade.index(), index), ), ); - return new DashboardLayoutItemsFacade(itemFacades); + return new DashboardLayoutItemsFacade(sectionFacade, itemFacades); } public raw(): IDashboardLayoutItem[] { @@ -43,11 +46,10 @@ export class DashboardLayoutItemsFacade implements IDashboardLayoutItem return this.itemFacades; } - public asGridRows( - screen: ScreenSize, - parentWidth: number = DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT, - ): IDashboardLayoutItemFacade[][] { + public asGridRows(screen: ScreenSize): IDashboardLayoutItemFacade[][] { const renderedRows: IDashboardLayoutItemFacade[][] = []; + const parentWidth = + this.sectionFacade.layout().size()?.gridWidth ?? DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT; let currentRowWidth = 0; let currentRow: IDashboardLayoutItemFacade[] = []; diff --git a/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/defaultConfig.ts b/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/defaultConfig.ts index 4e11eaad96d..ea009546923 100644 --- a/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/defaultConfig.ts +++ b/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/defaultConfig.ts @@ -1,4 +1,4 @@ -// (C) 2021-2023 GoodData Corporation +// (C) 2021-2024 GoodData Corporation import { idRef, diff --git a/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/validation.ts b/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/validation.ts index 1d07123e5ed..691d459e368 100644 --- a/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/validation.ts +++ b/libs/sdk-ui-dashboard/src/_staging/dateFilterConfig/validation.ts @@ -1,4 +1,4 @@ -// (C) 2021-2022 GoodData Corporation +// (C) 2021-2024 GoodData Corporation import groupBy from "lodash/groupBy.js"; import isEmpty from "lodash/isEmpty.js"; import { @@ -139,7 +139,10 @@ export function filterOutWeeks(config: IDateFilterConfig): IDateFilterConfig { }; } -const FallbackToDefault: DateFilterConfigValidationResult[] = ["ConflictingIdentifiers", "NoVisibleOptions"]; +export const FallbackToDefault: DateFilterConfigValidationResult[] = [ + "ConflictingIdentifiers", + "NoVisibleOptions", +]; /** * Given the date filter config loaded from backend and the settings, this function will perform validation diff --git a/libs/sdk-ui-dashboard/src/_staging/layout/sizing.ts b/libs/sdk-ui-dashboard/src/_staging/layout/sizing.ts index d461dcae962..adbc72f53cd 100644 --- a/libs/sdk-ui-dashboard/src/_staging/layout/sizing.ts +++ b/libs/sdk-ui-dashboard/src/_staging/layout/sizing.ts @@ -349,7 +349,7 @@ function normalizeSizeToParent( return { xl: { gridHeight: itemSize.xl.gridHeight, // keep height untouched as container can be extended freely in this direction - gridWidth: width <= parentWidth ? width : itemMinWidth, + gridWidth: width <= parentWidth ? width : Math.max(parentWidth, itemMinWidth), }, }; } diff --git a/libs/sdk-ui-dashboard/src/model/commandHandlers/dashboard/initializeDashboardHandler/resolveDashboardConfig.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/dashboard/initializeDashboardHandler/resolveDashboardConfig.ts index 1e46927eb10..28d334e3981 100644 --- a/libs/sdk-ui-dashboard/src/model/commandHandlers/dashboard/initializeDashboardHandler/resolveDashboardConfig.ts +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/dashboard/initializeDashboardHandler/resolveDashboardConfig.ts @@ -1,12 +1,17 @@ // (C) 2021-2024 GoodData Corporation import { SagaIterator } from "redux-saga"; import { all, call, put } from "redux-saga/effects"; +import includes from "lodash/includes.js"; import { IDateFilterConfigsQueryResult, IUserWorkspaceSettings } from "@gooddata/sdk-backend-spi"; import { ILocale, resolveLocale } from "@gooddata/sdk-ui"; -import { IColorPalette, ISeparators, ISettings } from "@gooddata/sdk-model"; +import { IColorPalette, IDateFilterConfig, ISeparators, ISettings } from "@gooddata/sdk-model"; import { defaultDateFilterConfig } from "../../../../_staging/dateFilterConfig/defaultConfig.js"; -import { getValidDateFilterConfig } from "../../../../_staging/dateFilterConfig/validation.js"; +import { + FallbackToDefault, + getValidDateFilterConfig, + validateDateFilterConfig, +} from "../../../../_staging/dateFilterConfig/validation.js"; import { stripUserAndWorkspaceProps } from "../../../../_staging/settings/conversion.js"; import { InitializeDashboard } from "../../../commands/index.js"; import { dateFilterConfigActions } from "../../../store/dateFilterConfig/index.js"; @@ -45,6 +50,26 @@ function loadSettingsForCurrentUser(ctx: DashboardContext): Promise { + const { backend, workspace } = ctx; + + const customDateFilterConfig = await backend + .workspace(workspace) + .dateFilterConfigs() + .withLimit(1) + .queryCustomDateFilterConfig(); + + if (!customDateFilterConfig.items[0]) { + return undefined; + } + + const configValidation = validateDateFilterConfig(customDateFilterConfig.items[0]); + + const validConfig = !includes(FallbackToDefault, configValidation); + + return validConfig ? customDateFilterConfig.items[0] : undefined; +} + function loadColorPalette(ctx: DashboardContext): Promise { const { backend, workspace } = ctx; @@ -56,19 +81,31 @@ function* resolveDateFilterConfig(ctx: DashboardContext, config: DashboardConfig return config.dateFilterConfig; } - const result: PromiseFnReturnType = yield call(loadDateFilterConfig, ctx); + const customDateFilterConfig: PromiseFnReturnType = yield call( + loadCustomDateFilterConfig, + ctx, + ); - if ((result?.totalCount ?? 0) > 1) { - yield call(onDateFilterConfigValidationError, ctx, "TOO_MANY_CONFIGS", cmd.correlationId); - } + if (customDateFilterConfig) { + return customDateFilterConfig; + } else { + const result: PromiseFnReturnType = yield call( + loadDateFilterConfig, + ctx, + ); - const firstConfig = result?.items[0]; + if ((result?.totalCount ?? 0) > 1) { + yield call(onDateFilterConfigValidationError, ctx, "TOO_MANY_CONFIGS", cmd.correlationId); + } - if (!firstConfig) { - yield call(onDateFilterConfigValidationError, ctx, "NO_CONFIG", cmd.correlationId); - } + const firstConfig = result?.items[0]; - return result?.items[0] ?? defaultDateFilterConfig; + if (!firstConfig) { + yield call(onDateFilterConfigValidationError, ctx, "NO_CONFIG", cmd.correlationId); + } + + return result?.items[0] ?? defaultDateFilterConfig; + } } type UserSettings = { diff --git a/libs/sdk-ui-dashboard/src/model/commandHandlers/index.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/index.ts index e725a2c7062..afc7bb0bee4 100644 --- a/libs/sdk-ui-dashboard/src/model/commandHandlers/index.ts +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/index.ts @@ -101,6 +101,7 @@ import { import { changeInsightWidgetIgnoreCrossFilteringHandler } from "./widgets/changeInsightWidgetIgnoreCrossFilteringHandler.js"; import { setScreenSizeHandler } from "./layout/setScreenSizeHandler.js"; import { toggleLayoutSectionHeadersHandler } from "./layout/toggleLayoutSectionHeadersHandler.js"; +import { loadAllWorkspaceUsersHandler } from "./users/loadAllUsersHandler.js"; function* notImplementedCommand(ctx: DashboardContext, cmd: IDashboardCommand): SagaIterator { yield dispatchDashboardEvent(commandRejected(ctx, cmd.correlationId)); @@ -209,4 +210,5 @@ export const DefaultCommandHandlers: { "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.APPLY": applyFilterViewHandler, "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.CHANGE_DEFAULT_STATUS": setFilterViewAsDefaultHandler, "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.RELOAD": reloadFilterViewsHandler, + "GDC.DASH/CMD.USERS.LOAD_ALL": loadAllWorkspaceUsersHandler, }; diff --git a/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts index cf234ba59e5..d7e86165832 100644 --- a/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts @@ -7,6 +7,7 @@ import { DashboardContext } from "../../types/commonTypes.js"; import { PromiseFnReturnType } from "../../types/sagas.js"; import { InitializeAutomations } from "../../commands/scheduledEmail.js"; import { + selectAutomationId, selectEnableAutomations, selectEnableInPlatformNotifications, selectEnableScheduling, @@ -14,17 +15,27 @@ import { } from "../../store/config/configSelectors.js"; import { automationsActions } from "../../store/automations/index.js"; import { selectDashboardId } from "../../store/meta/metaSelectors.js"; -import { usersActions } from "../../store/users/index.js"; import { notificationChannelsActions } from "../../store/notificationChannels/index.js"; import { loadDashboardUserAutomations, loadWorkspaceAutomationsCount } from "./loadAutomations.js"; import { loadNotificationChannels } from "./loadNotificationChannels.js"; -import { loadWorkspaceUsers } from "./loadWorkspaceUsers.js"; import { selectCurrentUser } from "../../store/user/userSelectors.js"; import { selectAutomationsIsInitialized, selectAutomationsIsLoading, } from "../../store/automations/automationsSelectors.js"; import { selectCanManageWorkspace } from "../../store/permissions/permissionsSelectors.js"; +import { + filterLocalIdentifier, + filterObjRef, + idRef, + IFilter, + IInsight, + insightFilters, +} from "@gooddata/sdk-model"; +import { changeFilterContextSelectionHandler } from "../filterContext/changeFilterContextSelectionHandler.js"; +import { changeFilterContextSelection } from "../../commands/filters.js"; +import { IDashboardFilter, isDashboardFilter } from "../../../types.js"; +import { selectInsightByWidgetRef } from "../../store/insights/insightsSelectors.js"; export function* initializeAutomationsHandler( ctx: DashboardContext, @@ -47,6 +58,7 @@ export function* initializeAutomationsHandler( selectAutomationsIsLoading, ); const isReadOnly: ReturnType = yield select(selectIsReadOnly); + const automationId: ReturnType = yield select(selectAutomationId); if ( !dashboardId || @@ -62,18 +74,34 @@ export function* initializeAutomationsHandler( yield put(automationsActions.setAutomationsLoading(true)); try { - const [automations, allAutomationsCount, notificationChannels, users]: [ + const [automations, allAutomationsCount, notificationChannels]: [ PromiseFnReturnType, PromiseFnReturnType, PromiseFnReturnType, - PromiseFnReturnType, ] = yield all([ call(loadDashboardUserAutomations, ctx, dashboardId, user.login, !canManageAutomations), call(loadWorkspaceAutomationsCount, ctx), call(loadNotificationChannels, ctx, enableInPlatformNotifications), - call(loadWorkspaceUsers, ctx), ]); + // Set filters according to provided automationId + if (automationId) { + const targetAutomation = automations.find((a) => a.id === automationId); + const targetWidget = targetAutomation?.metadata?.widget; + const targetFilters = targetAutomation?.alert?.execution?.filters.filter(isDashboardFilter); + if (targetWidget && targetFilters) { + const insight: ReturnType> = yield select( + selectInsightByWidgetRef(idRef(targetWidget)), + ); + const filtersToSet = insight + ? getDashboardFiltersOnly(targetFilters, insight) + : targetFilters; + + const cmd = changeFilterContextSelection(filtersToSet, true, automationId); + yield call(changeFilterContextSelectionHandler, ctx, cmd); + } + } + yield put( batchActions([ automationsActions.setAutomationsInitialized(), @@ -81,7 +109,6 @@ export function* initializeAutomationsHandler( automationsActions.setUserAutomations(automations), automationsActions.setAllAutomationsCount(allAutomationsCount), notificationChannelsActions.setNotificationChannels(notificationChannels), - usersActions.setUsers(users), ]), ); } catch (e) { @@ -94,3 +121,28 @@ export function* initializeAutomationsHandler( ); } } + +/** + * Filter out insight filters from the list of filters + * @internal + */ +function getDashboardFiltersOnly(filters: IFilter[], insight: IInsight) { + return removeAlertFilters(filters).filter((f) => { + const insightFilter = insightFilters(insight).find((f2) => { + return filterLocalIdentifier(f) === filterLocalIdentifier(f2); + }); + + return !insightFilter; + }) as IDashboardFilter[]; +} + +/** + * Remove alert filters (these that are set during creation of the alert sliced by attribute) from the list of filters + * @internal + */ +function removeAlertFilters(filters: IFilter[]) { + return filters?.filter((f) => { + const objRef = filterObjRef(f); + return !!objRef; + }); +} diff --git a/libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadAllUsersHandler.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadAllUsersHandler.ts new file mode 100644 index 00000000000..456b83b8d7f --- /dev/null +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadAllUsersHandler.ts @@ -0,0 +1,31 @@ +// (C) 2021-2024 GoodData Corporation +import { SagaIterator } from "redux-saga"; +import { call, put } from "redux-saga/effects"; +import { DashboardContext } from "../../types/commonTypes.js"; +import { PromiseFnReturnType } from "../../types/sagas.js"; +import { usersActions } from "../../store/users/index.js"; +import { loadWorkspaceUsers } from "./loadWorkspaceUsers.js"; +import { LoadAllWorkspaceUsers } from "../../commands/users.js"; +import { convertError } from "@gooddata/sdk-ui"; +import { batchActions } from "redux-batched-actions"; + +export function* loadAllWorkspaceUsersHandler( + ctx: DashboardContext, + _cmd: LoadAllWorkspaceUsers, +): SagaIterator { + try { + yield put(usersActions.setUsersLoadingStatus("loading")); + + const users: PromiseFnReturnType = yield call(loadWorkspaceUsers, ctx); + yield put( + batchActions([usersActions.setUsers(users), usersActions.setUsersLoadingStatus("success")]), + ); + } catch (e) { + yield put( + batchActions([ + usersActions.setErrorUsers(convertError(e)), + usersActions.setUsersLoadingStatus("error"), + ]), + ); + } +} diff --git a/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/loadWorkspaceUsers.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadWorkspaceUsers.ts similarity index 100% rename from libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/loadWorkspaceUsers.ts rename to libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadWorkspaceUsers.ts diff --git a/libs/sdk-ui-dashboard/src/model/commands/base.ts b/libs/sdk-ui-dashboard/src/model/commands/base.ts index d0dce098a67..cd7914480ae 100644 --- a/libs/sdk-ui-dashboard/src/model/commands/base.ts +++ b/libs/sdk-ui-dashboard/src/model/commands/base.ts @@ -106,7 +106,9 @@ export type DashboardCommandType = | "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.DELETE" | "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.APPLY" | "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.CHANGE_DEFAULT_STATUS" - | "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.RELOAD"; + | "GDC.DASH/CMD.FILTER_CONTEXT.FILTER_VIEW.RELOAD" + // @internal + | "GDC.DASH/CMD.USERS.LOAD_ALL"; /** * @public diff --git a/libs/sdk-ui-dashboard/src/model/commands/index.ts b/libs/sdk-ui-dashboard/src/model/commands/index.ts index de77d9590e3..e72ab9fe875 100644 --- a/libs/sdk-ui-dashboard/src/model/commands/index.ts +++ b/libs/sdk-ui-dashboard/src/model/commands/index.ts @@ -110,6 +110,7 @@ import { import { AddDrillTargets } from "./drillTargets.js"; import { RequestAsyncRender, ResolveAsyncRender } from "./render.js"; import { ChangeRenderMode } from "./renderMode.js"; +import { LoadAllWorkspaceUsers } from "./users.js"; export type { DashboardCommandType, IDashboardCommand, CommandProcessingMeta } from "./base.js"; export type { @@ -453,6 +454,8 @@ export { exportInsightWidget, attributeHierarchyModified, } from "./insight.js"; +export { loadAllWorkspaceUsers } from "./users.js"; +export type { LoadAllWorkspaceUsers } from "./users.js"; export type { ChangeRichTextWidgetContent, ChangeRichTextWidgetContentPayload } from "./richText.js"; export { changeRichTextWidgetContent } from "./richText.js"; @@ -592,4 +595,5 @@ export type DashboardCommands = | ReloadFilterViews | ToggleLayoutSectionHeaders //internal - | SetScreenSize; + | SetScreenSize + | LoadAllWorkspaceUsers; diff --git a/libs/sdk-ui-dashboard/src/model/commands/users.ts b/libs/sdk-ui-dashboard/src/model/commands/users.ts new file mode 100644 index 00000000000..e212a62f8ec --- /dev/null +++ b/libs/sdk-ui-dashboard/src/model/commands/users.ts @@ -0,0 +1,26 @@ +// (C) 2021-2024 GoodData Corporation +import { IDashboardCommand } from "./base.js"; + +/** + * Loads all workspace users. + * + * @internal + */ +export interface LoadAllWorkspaceUsers extends IDashboardCommand { + readonly type: "GDC.DASH/CMD.USERS.LOAD_ALL"; +} + +/** + * Creates the LoadAllWorkspaceUsers command. + * + * @param correlationId - specify correlation id to use for this command. this will be included in all + * events that will be emitted during the command processing + * + * @internal + */ +export function loadAllWorkspaceUsers(correlationId?: string): LoadAllWorkspaceUsers { + return { + type: "GDC.DASH/CMD.USERS.LOAD_ALL", + correlationId, + }; +} diff --git a/libs/sdk-ui-dashboard/src/model/react/index.ts b/libs/sdk-ui-dashboard/src/model/react/index.ts index 13d416b6dff..72558c3f998 100644 --- a/libs/sdk-ui-dashboard/src/model/react/index.ts +++ b/libs/sdk-ui-dashboard/src/model/react/index.ts @@ -42,3 +42,4 @@ export type { IUseFiltersForWidgetScheduledExportProps } from "./useDasboardSche export { useDashboardScheduledEmailsFilters } from "./useDasboardScheduledEmails/useDashboardScheduledEmailsFilters.js"; export type { IUseDashboardScheduledEmailsFiltersProps } from "./useDasboardScheduledEmails/useDashboardScheduledEmailsFilters.js"; export { useDashboardAutomations } from "./useDasboardScheduledEmails/useDashboardAutomations.js"; +export { useWorkspaceUsers } from "./useWorkspaceUsers.js"; diff --git a/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmails.ts b/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmails.ts index d424e2536a8..d4f5d61adbb 100644 --- a/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmails.ts +++ b/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmails.ts @@ -21,7 +21,6 @@ export const useDashboardScheduledEmails = () => { const { // Data isInitialized, - users, automations, automationsLoading, automationsError, @@ -64,7 +63,6 @@ export const useDashboardScheduledEmails = () => { scheduledExportToEdit, // Data isInitialized, - users, notificationChannels, automations, automationsCount, diff --git a/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts b/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts index 02eb69a1a06..9004e70b009 100644 --- a/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts +++ b/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts @@ -12,7 +12,6 @@ import { selectMenuButtonItemsVisibility, selectEntitlementMaxAutomations, selectAllAutomationsCount, - selectUsers, selectAutomationsIsLoading, selectAutomationsError, selectDashboardUserAutomationSchedulesInContext, @@ -22,10 +21,10 @@ import { selectIsScheduleEmailDialogContext, selectIsScheduleEmailManagementDialogOpen, selectInsightByWidgetRef, - selectNotificationChannelsCount, - selectNotificationChannels, selectAutomationsIsInitialized, selectFilterableWidgetByRef, + selectNotificationChannelsForScheduledExports, + selectNotificationChannelsCountForScheduledExports, } from "../../store/index.js"; import { useDashboardSelector } from "../DashboardStoreProvider.js"; @@ -45,8 +44,6 @@ interface IUseDashboardScheduledEmailsDataProps { export const useDashboardScheduledEmailsData = ({ scheduledExportToEdit, }: IUseDashboardScheduledEmailsDataProps) => { - const users = useDashboardSelector(selectUsers); - const isInitialized = useDashboardSelector(selectAutomationsIsInitialized); const automations = useDashboardSelector(selectDashboardUserAutomationSchedulesInContext(undefined)); const automationsCount = useDashboardSelector(selectAllAutomationsCount); @@ -72,8 +69,10 @@ export const useDashboardScheduledEmailsData = ({ const unlimitedAutomationsEntitlement = useDashboardSelector(selectEntitlementUnlimitedAutomations); const maxAutomations = parseInt(maxAutomationsEntitlement?.value ?? DEFAULT_MAX_AUTOMATIONS, 10); - const notificationChannels = useDashboardSelector(selectNotificationChannels); - const numberOfAvailableDestinations = useDashboardSelector(selectNotificationChannelsCount); + const notificationChannels = useDashboardSelector(selectNotificationChannelsForScheduledExports); + const numberOfAvailableDestinations = useDashboardSelector( + selectNotificationChannelsCountForScheduledExports, + ); const maxAutomationsReached = automationsCount >= maxAutomations && !unlimitedAutomationsEntitlement; /** @@ -113,7 +112,6 @@ export const useDashboardScheduledEmailsData = ({ return { // Data isInitialized, - users, notificationChannels, automations, automationsLoading, diff --git a/libs/sdk-ui-dashboard/src/model/react/useWorkspaceUsers.ts b/libs/sdk-ui-dashboard/src/model/react/useWorkspaceUsers.ts new file mode 100644 index 00000000000..0ef57896078 --- /dev/null +++ b/libs/sdk-ui-dashboard/src/model/react/useWorkspaceUsers.ts @@ -0,0 +1,30 @@ +// (C) 2022-2024 GoodData Corporation +import { useEffect } from "react"; +import { useDashboardDispatch, useDashboardSelector } from "./DashboardStoreProvider.js"; +import { selectErrorUsers, selectUsersLoadingStatus, selectUsers } from "../store/users/usersSelectors.js"; +import { loadAllWorkspaceUsers } from "../commands/users.js"; + +/** + * @internal + */ +export const useWorkspaceUsers = () => { + const dispatch = useDashboardDispatch(); + const usersError = useDashboardSelector(selectErrorUsers); + const users = useDashboardSelector(selectUsers); + const status = useDashboardSelector(selectUsersLoadingStatus); + + useEffect(() => { + /** + * Load users only if they are not loaded yet + */ + if (status === "pending") { + dispatch(loadAllWorkspaceUsers()); + } + }, [status, dispatch]); + + return { + status, + usersError, + users, + }; +}; diff --git a/libs/sdk-ui-dashboard/src/model/store/config/configSelectors.ts b/libs/sdk-ui-dashboard/src/model/store/config/configSelectors.ts index 09c864cca82..ac52bf8f271 100644 --- a/libs/sdk-ui-dashboard/src/model/store/config/configSelectors.ts +++ b/libs/sdk-ui-dashboard/src/model/store/config/configSelectors.ts @@ -811,3 +811,15 @@ export const selectEnableInPlatformNotifications: DashboardSelector = c return state.settings?.enableInPlatformNotifications ?? false; }, ); + +/** + * Returns whether in-platform notifications are enabled. + * + * @beta + */ +export const selectAutomationId: DashboardSelector = createSelector( + selectConfig, + (state) => { + return state.automationId; + }, +); diff --git a/libs/sdk-ui-dashboard/src/model/store/index.ts b/libs/sdk-ui-dashboard/src/model/store/index.ts index 9118beb1789..de86fa2e050 100644 --- a/libs/sdk-ui-dashboard/src/model/store/index.ts +++ b/libs/sdk-ui-dashboard/src/model/store/index.ts @@ -99,6 +99,7 @@ export { selectEnableCrossFilteringAliasTitles, selectEnableFlexibleLayout, selectEnableInPlatformNotifications, + selectAutomationId, } from "./config/configSelectors.js"; export type { EntitlementsState } from "./entitlements/entitlementsState.js"; export { @@ -409,6 +410,8 @@ export { export { selectNotificationChannels, selectNotificationChannelsCount, + selectNotificationChannelsForScheduledExports, + selectNotificationChannelsCountForScheduledExports, } from "./notificationChannels/notificationChannelsSelectors.js"; export type { NotificationChannelsState } from "./notificationChannels/notificationChannelsState.js"; export type { AutomationsState } from "./automations/automationsState.js"; @@ -425,7 +428,7 @@ export { } from "./automations/automationsSelectors.js"; export type { UsersState } from "./users/usersState.js"; -export { selectUsers } from "./users/usersSelectors.js"; +export { selectUsers, selectErrorUsers, selectUsersLoadingStatus } from "./users/usersSelectors.js"; export type { IFilterViews, FilterViewsState } from "./filterViews/index.js"; export { selectFilterViews, selectFilterViewsAreLoading } from "./filterViews/index.js"; diff --git a/libs/sdk-ui-dashboard/src/model/store/notificationChannels/notificationChannelsSelectors.ts b/libs/sdk-ui-dashboard/src/model/store/notificationChannels/notificationChannelsSelectors.ts index 3a637e694ce..c01a1ac51f4 100644 --- a/libs/sdk-ui-dashboard/src/model/store/notificationChannels/notificationChannelsSelectors.ts +++ b/libs/sdk-ui-dashboard/src/model/store/notificationChannels/notificationChannelsSelectors.ts @@ -19,6 +19,29 @@ export const selectNotificationChannels: DashboardSelector = createSelector(selectSelf, (state) => { + return state.notificationChannels.filter((channel) => channel.destinationType !== "inPlatform"); +}); + +/** + * Returns notification channels suitable for scheduled exports. + * + * @alpha + */ +export const selectNotificationChannelsCountForScheduledExports: DashboardSelector = createSelector( + selectNotificationChannelsForScheduledExports, + (notificationChannels) => { + return notificationChannels.length; + }, +); + /** * Returns organization notification channels count. * diff --git a/libs/sdk-ui-dashboard/src/model/store/users/usersReducers.ts b/libs/sdk-ui-dashboard/src/model/store/users/usersReducers.ts index 1cbcec0f0eb..49d41324ba9 100644 --- a/libs/sdk-ui-dashboard/src/model/store/users/usersReducers.ts +++ b/libs/sdk-ui-dashboard/src/model/store/users/usersReducers.ts @@ -3,6 +3,7 @@ import { Action, CaseReducer, PayloadAction } from "@reduxjs/toolkit"; import { IWorkspaceUser } from "@gooddata/sdk-model"; import { UsersState } from "./usersState.js"; +import { GoodDataSdkError } from "@gooddata/sdk-ui"; type UsersReducer = CaseReducer; @@ -10,6 +11,19 @@ const setUsers: UsersReducer> = (state, action) state.users = action.payload; }; +const setUsersLoadingStatus: UsersReducer> = ( + state, + action, +) => { + state.status = action.payload; +}; + +const setErrorUsers: UsersReducer> = (state, action) => { + state.error = action.payload; +}; + export const usersReducers = { setUsers, + setUsersLoadingStatus, + setErrorUsers, }; diff --git a/libs/sdk-ui-dashboard/src/model/store/users/usersSelectors.ts b/libs/sdk-ui-dashboard/src/model/store/users/usersSelectors.ts index 72766ec90ef..cafc44651fe 100644 --- a/libs/sdk-ui-dashboard/src/model/store/users/usersSelectors.ts +++ b/libs/sdk-ui-dashboard/src/model/store/users/usersSelectors.ts @@ -1,19 +1,45 @@ // (C) 2024 GoodData Corporation import { createSelector } from "@reduxjs/toolkit"; -import { DashboardSelector, DashboardState } from "../types.js"; import { IWorkspaceUser } from "@gooddata/sdk-model"; +import { GoodDataSdkError } from "@gooddata/sdk-ui"; +import { DashboardSelector, DashboardState } from "../types.js"; const selectSelf = createSelector( (state: DashboardState) => state, (state) => state.users, ); +/** + * Returns true if users are loading. + * + * @alpha + */ +export const selectUsersLoadingStatus: DashboardSelector<"pending" | "loading" | "success" | "error"> = + createSelector(selectSelf, (state) => { + return state.status; + }); + +/** + * Returns error if users loading failed. + * + * @alpha + */ +export const selectErrorUsers: DashboardSelector = createSelector( + selectSelf, + (state) => { + return state.error; + }, +); + /** * Returns workspace users. * * @alpha */ -export const selectUsers: DashboardSelector = createSelector(selectSelf, (state) => { - return state.users; -}); +export const selectUsers: DashboardSelector = createSelector( + selectSelf, + (state) => { + return state.users; + }, +); diff --git a/libs/sdk-ui-dashboard/src/model/store/users/usersState.ts b/libs/sdk-ui-dashboard/src/model/store/users/usersState.ts index 64535a79d6d..0ee8229cbfd 100644 --- a/libs/sdk-ui-dashboard/src/model/store/users/usersState.ts +++ b/libs/sdk-ui-dashboard/src/model/store/users/usersState.ts @@ -1,11 +1,14 @@ // (C) 2024 GoodData Corporation import { IWorkspaceUser } from "@gooddata/sdk-model"; +import { GoodDataSdkError } from "@gooddata/sdk-ui"; /** * @alpha */ export interface UsersState { - users: IWorkspaceUser[]; + users?: IWorkspaceUser[]; + error?: GoodDataSdkError; + status: "pending" | "loading" | "success" | "error"; } -export const usersInitialState: UsersState = { users: [] }; +export const usersInitialState: UsersState = { users: undefined, error: undefined, status: "pending" }; diff --git a/libs/sdk-ui-dashboard/src/model/types/commonTypes.ts b/libs/sdk-ui-dashboard/src/model/types/commonTypes.ts index 8e5a5ee0c67..7930703e396 100644 --- a/libs/sdk-ui-dashboard/src/model/types/commonTypes.ts +++ b/libs/sdk-ui-dashboard/src/model/types/commonTypes.ts @@ -230,6 +230,14 @@ export interface DashboardConfig { * If set to false or not set, user filter reset will be enabled if the dashboard is configured to support it. */ disableUserFilterReset?: boolean; + + /** + * @beta + * If provided, the dashboard will be opened in the context of the given automation. + * This means, that target widget will be highlighted in the dashboard, + * and filter context will be set to the one used in the automation. + */ + automationId?: string; } /** @@ -245,7 +253,10 @@ export interface DashboardConfig { * * @public */ -export type ResolvedDashboardConfig = Omit, "mapboxToken" | "exportId"> & +export type ResolvedDashboardConfig = Omit< + Required, + "mapboxToken" | "exportId" | "automationId" +> & DashboardConfig; /** diff --git a/libs/sdk-ui-dashboard/src/presentation/alerting/DefaultAlertingDialog/DefaultAlertingDialog.tsx b/libs/sdk-ui-dashboard/src/presentation/alerting/DefaultAlertingDialog/DefaultAlertingDialog.tsx index 8947814e48d..10579f57954 100644 --- a/libs/sdk-ui-dashboard/src/presentation/alerting/DefaultAlertingDialog/DefaultAlertingDialog.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/alerting/DefaultAlertingDialog/DefaultAlertingDialog.tsx @@ -80,7 +80,7 @@ export const AlertingDialog: React.FC = (props) => { destinations={destinations} measures={supportedMeasures} attributes={supportedAttributes} - users={users} + users={users ?? []} onUpdate={(alert) => { updateExistingAlert(alert); onUpdate(alert); diff --git a/libs/sdk-ui-dashboard/src/presentation/alerting/types.ts b/libs/sdk-ui-dashboard/src/presentation/alerting/types.ts index 3e84d31afa4..1d082d0cfbf 100644 --- a/libs/sdk-ui-dashboard/src/presentation/alerting/types.ts +++ b/libs/sdk-ui-dashboard/src/presentation/alerting/types.ts @@ -11,11 +11,6 @@ import { GoodDataSdkError } from "@gooddata/sdk-ui"; * @alpha */ export interface IAlertingDialogProps { - /** - * Is alerting e-mail dialog visible? - */ - isVisible?: boolean; - /** * Callback to be called, when user save the existing alert. */ @@ -46,11 +41,6 @@ export interface IAlertingDialogProps { * @alpha */ export interface IAlertingManagementDialogProps { - /** - * Is alerting management dialog visible? - */ - isVisible?: boolean; - /** * Callback to be called, when user clicks alert item for editing. */ diff --git a/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/AlertingDialogProvider.tsx b/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/AlertingDialogProvider.tsx index 38b345910c1..c1e1058f351 100644 --- a/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/AlertingDialogProvider.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/AlertingDialogProvider.tsx @@ -33,7 +33,6 @@ export const AlertingDialogProvider = () => { <> {isAlertingManagementDialogOpen ? ( { anchorEl={alertingToEdit?.anchor} editAlert={alertingToEdit?.alert} editWidget={alertingToEdit?.widget} - isVisible={isAlertingDialogOpen} onCancel={onAlertingCancel} onUpdate={onAlertingUpdate} /> diff --git a/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.tsx b/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.tsx index d9af6ebcff8..c65beddc924 100644 --- a/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/dashboard/DashboardHeader/ScheduledEmailDialogProvider.tsx @@ -2,9 +2,17 @@ import React from "react"; -import { ScheduledEmailDialog, ScheduledEmailManagementDialog } from "../../scheduledEmail/index.js"; +import { + IScheduledEmailDialogProps, + ScheduledEmailDialog, + ScheduledEmailManagementDialog, +} from "../../scheduledEmail/index.js"; -import { useDashboardScheduledEmails, useDashboardScheduledEmailsFilters } from "../../../model/index.js"; +import { + useDashboardScheduledEmails, + useDashboardScheduledEmailsFilters, + useWorkspaceUsers, +} from "../../../model/index.js"; export const ScheduledEmailDialogProvider = () => { const { @@ -12,7 +20,6 @@ export const ScheduledEmailDialogProvider = () => { scheduledExportToEdit, // Data isInitialized, - users, widget, insight, automations, @@ -52,7 +59,6 @@ export const ScheduledEmailDialogProvider = () => { <> {isScheduleEmailingManagementDialogOpen ? ( { /> ) : null} {isScheduleEmailingDialogOpen ? ( - { ); }; + +/** + * Load users only if dialog is open + */ +function ScheduledEmailDialogWithUsers(props: Omit) { + const { users, status: usersStatus } = useWorkspaceUsers(); + + return ( + + ); +} diff --git a/libs/sdk-ui-dashboard/src/presentation/dashboard/components/DashboardRenderer.tsx b/libs/sdk-ui-dashboard/src/presentation/dashboard/components/DashboardRenderer.tsx index ba9da33f873..bd7302f32a2 100644 --- a/libs/sdk-ui-dashboard/src/presentation/dashboard/components/DashboardRenderer.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/dashboard/components/DashboardRenderer.tsx @@ -42,7 +42,11 @@ import { IDashboardProps } from "../types.js"; import { DashboardLoading } from "./DashboardLoading.js"; import { DndProvider } from "react-dnd"; import { HTML5Backend } from "react-dnd-html5-backend"; -import { DefaultEmptyLayoutDropZoneBody, LayoutResizeStateProvider } from "../../dragAndDrop/index.js"; +import { + DefaultEmptyLayoutDropZoneBody, + LayoutResizeStateProvider, + HoveredWidgetProvider, +} from "../../dragAndDrop/index.js"; import { RenderModeAwareDashboardSidebar } from "../DashboardSidebar/RenderModeAwareDashboardSidebar.js"; import { DASHBOARD_OVERLAYS_Z_INDEX } from "../../constants/index.js"; import { DashboardItemPathAndSizeProvider } from "./DashboardItemPathAndSizeContext.js"; @@ -170,7 +174,9 @@ export const DashboardRenderer: React.FC = (props: IDashboardPr - + + + diff --git a/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx new file mode 100644 index 00000000000..c9457b8fd70 --- /dev/null +++ b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx @@ -0,0 +1,54 @@ +// (C) 2024 GoodData Corporation +import { ObjRef, areObjRefsEqual } from "@gooddata/sdk-model"; +import React, { createContext, useContext, useState, ReactNode } from "react"; + +// Define the shape of the context state +interface HoveredWidgetContextState { + hoveredWidgets: ObjRef[] | null; + addHoveredWidget: (widgetRef: ObjRef | null) => void; + removeHoveredWidget: (widgetRef: ObjRef | null) => void; + isHovered: (widgetRef: ObjRef) => boolean; +} + +// Create the context with a default value +const HoveredWidgetContext = createContext(undefined); + +// Create the provider component +export const HoveredWidgetProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const [hoveredWidgets, setHoveredWidget] = useState([]); + + const addHoveredWidget = (widgetRef: ObjRef | null) => { + if (widgetRef && !hoveredWidgets?.some((ref) => areObjRefsEqual(ref, widgetRef))) { + setHoveredWidget((prevWidgets) => [...(prevWidgets || []), widgetRef]); + } + }; + + const removeHoveredWidget = (widgetRef: ObjRef | null) => { + if (widgetRef && hoveredWidgets) { + setHoveredWidget( + (prevWidgets) => prevWidgets?.filter((ref) => !areObjRefsEqual(ref, widgetRef)) ?? [], + ); + } + }; + + const isHovered = (widgetRef: ObjRef) => { + return hoveredWidgets?.some((ref) => areObjRefsEqual(ref, widgetRef)) || false; + }; + + return ( + + {children} + + ); +}; + +// Custom hook to use the HoveredWidgetContext +export const useHoveredWidget = (): HoveredWidgetContextState => { + const context = useContext(HoveredWidgetContext); + if (!context) { + throw new Error("useHoveredWidget must be used within a HoveredWidgetProvider"); + } + return context; +}; diff --git a/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/index.ts b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/index.ts index ca9332831fc..a9ce0b4d5e8 100644 --- a/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/index.ts +++ b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/index.ts @@ -13,3 +13,4 @@ export * from "./useDashboardDragScroll.js"; export * from "./LayoutResizeContext.js"; export * from "./WrapInsightListItemWithDrag.js"; export * from "./useCurrentDateFilterConfig.js"; +export * from "./HoveredWidgetContext.js"; diff --git a/libs/sdk-ui-dashboard/src/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.tsx b/libs/sdk-ui-dashboard/src/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.tsx index 013a2a45337..394a57d1f31 100644 --- a/libs/sdk-ui-dashboard/src/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/filterBar/dateFilter/DefaultDashboardDateFilter.tsx @@ -8,7 +8,11 @@ import { IDateFilterProps, IFilterConfigurationProps, } from "@gooddata/sdk-ui-filters"; -import { areObjRefsEqual, DashboardDateFilterConfigModeValues } from "@gooddata/sdk-model"; +import { + areObjRefsEqual, + DashboardDateFilterConfigModeValues, + DateFilterGranularity, +} from "@gooddata/sdk-model"; import { dateFilterOptionToDashboardDateFilter } from "../../../_staging/dashboard/dashboardFilterConverter.js"; import { matchDateFilterToDateFilterOptionWithPreference } from "../../../_staging/dateFilterConfig/dateFilterOptionMapping.js"; @@ -86,6 +90,14 @@ export const DefaultDashboardDateFilter = (props: IDashboardDateFilterProps): JS intl, ); + const hoursMinutesGranularities: DateFilterGranularity[] = ["GDC.time.minute", "GDC.time.hour"]; + const hasHoursMinutesGranularities = hoursMinutesGranularities.every((granularity) => + config.availableGranularities.includes(granularity), + ); + + const isTimeForAbsoluteRangeEnabled = + !!capabilities.supportsTimeGranularities && hasHoursMinutesGranularities; + const isConfigurationEnabled = isInEditMode && (!!capabilities.supportsHiddenAndLockedFiltersOnUI || !!capabilities.supportsMultipleDateFilters); @@ -118,7 +130,7 @@ export const DefaultDashboardDateFilter = (props: IDashboardDateFilterProps): JS onApply={onApply} dateFormat={dateFormat} locale={locale} - isTimeForAbsoluteRangeEnabled={!!capabilities.supportsTimeGranularities} + isTimeForAbsoluteRangeEnabled={isTimeForAbsoluteRangeEnabled} isEditMode={isInEditMode} openOnInit={autoOpen} weekStart={weekStart} diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx index c75ce25aba6..6fc8796add8 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx @@ -60,6 +60,7 @@ import { Hotspot } from "./dragAndDrop/draggableWidget/Hotspot.js"; import { useWidgetDragEndHandler } from "../dragAndDrop/draggableWidget/useWidgetDragEndHandler.js"; import { DashboardItemPathAndSizeProvider } from "../dashboard/components/DashboardItemPathAndSizeContext.js"; import { shouldShowRowEndDropZone } from "./dragAndDrop/draggableWidget/RowEndHotspot.js"; +import { HoverDetector } from "./dragAndDrop/Resize/HoverDetector.js"; /** * Tests in KD require widget index for css selectors. @@ -218,18 +219,20 @@ export const DashboardLayoutWidget: IDashboardLayoutWidgetRenderer< /> ) : null} - + + + {canShowHotspot && !isAnyPlaceholderWidget(widget) && isActive ? ( ) : null} {canShowHotspot && !isAnyPlaceholderWidget(widget) ? ( diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultDashboardLayoutRenderer/DashboardLayoutSection.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultDashboardLayoutRenderer/DashboardLayoutSection.tsx index 142a8a77f1d..b3207799fd0 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultDashboardLayoutRenderer/DashboardLayoutSection.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultDashboardLayoutRenderer/DashboardLayoutSection.tsx @@ -76,7 +76,7 @@ export function DashboardLayoutSection(props: IDashboardLayoutSectionPr if (renderMode === "edit") { const itemsInRowsByIndex = section .items() - .asGridRows(screen, parentLayoutItemSize?.[screen]?.gridWidth) + .asGridRows(screen) .map( (itemsInRow) => [getItemIndex(last(itemsInRow)!.index()), itemsInRow] as [ @@ -102,24 +102,21 @@ export function DashboardLayoutSection(props: IDashboardLayoutSectionPr ); } - return flatMap( - section.items().asGridRows(screen, parentLayoutItemSize?.[screen]?.gridWidth), - (itemsInRow, index) => { - return ( - - ); - }, - ); + return flatMap(section.items().asGridRows(screen), (itemsInRow, index) => { + return ( + + ); + }); }, [ getLayoutDimensions, gridRowRenderer, @@ -128,7 +125,6 @@ export function DashboardLayoutSection(props: IDashboardLayoutSectionPr renderMode, section, widgetRenderer, - parentLayoutItemSize, screen, ]); diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultFlexibleDashboardLayout.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultFlexibleDashboardLayout.tsx index f64a147a59d..79a0e418d38 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultFlexibleDashboardLayout.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DefaultFlexibleDashboardLayout.tsx @@ -7,7 +7,6 @@ import { isWidget, IDashboardLayout, IDashboardLayoutItem, - IDashboardLayoutSizeByScreenSize, } from "@gooddata/sdk-model"; import { LRUCache } from "lru-cache"; import max from "lodash/max.js"; @@ -38,7 +37,6 @@ import { EmptyDashboardLayout } from "./EmptyDashboardLayout.js"; import { EmptyDashboardNestedLayout } from "./EmptyDashboardNestedLayout.js"; import { useScreenSize } from "../dashboard/components/DashboardScreenSizeContext.js"; import { useDashboardItemPathAndSize } from "../dashboard/components/DashboardItemPathAndSizeContext.js"; -import { DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT } from "../../_staging/dashboard/flexibleLayout/index.js"; /** * Get dashboard layout for exports. @@ -50,15 +48,12 @@ import { DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT } from "../../_staging/dashboard/fl */ function getDashboardLayoutForExport( layout: IDashboardLayout, - parentSize: IDashboardLayoutSizeByScreenSize | undefined, ): IDashboardLayout { const dashLayout = DashboardLayoutBuilder.for(layout); const layoutFacade = dashLayout.facade(); const sections = layoutFacade.sections(); const screenSplitSections = sections.map((section) => ({ - items: section - .items() - .asGridRows("xl", parentSize?.["xl"].gridWidth ?? DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT), + items: section.items().asGridRows("xl"), header: section.header(), })); @@ -138,7 +133,7 @@ export const DefaultFlexibleDashboardLayout = (props: IDashboardLayoutProps): JS const transformedLayout = useMemo(() => { if (isExport) { - return getDashboardLayoutForExport(layout, itemSize); + return getDashboardLayoutForExport(layout); } return DashboardLayoutBuilder.for(layout, itemPath) @@ -146,7 +141,7 @@ export const DefaultFlexibleDashboardLayout = (props: IDashboardLayoutProps): JS section.modifyItems(sanitizeWidgets(getInsightByRef, enableWidgetCustomHeight)), ) .build(); - }, [isExport, layout, itemPath, itemSize, sanitizeWidgets, getInsightByRef, enableWidgetCustomHeight]); + }, [isExport, layout, itemPath, sanitizeWidgets, getInsightByRef, enableWidgetCustomHeight]); const widgetRenderer = useCallback>( (renderProps) => { diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/EmptyDashboardNestedLayout.ts b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/EmptyDashboardNestedLayout.ts index b716d8cff11..8be929f025d 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/EmptyDashboardNestedLayout.ts +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/EmptyDashboardNestedLayout.ts @@ -1,10 +1,9 @@ // (C) 2022-2024 GoodData Corporation import { renderModeAware } from "../componentDefinition/index.js"; - -import { EmptyDashboardError } from "./EmptyDashboardError.js"; +import { ViewModeEmptyNestedLayout } from "./ViewModeEmptyNestedLayout.js"; import { EmptyNestedLayoutDropZone } from "./dragAndDrop/draggableWidget/EmptyNestedLayoutDropZone.js"; export const EmptyDashboardNestedLayout = renderModeAware({ - view: EmptyDashboardError, + view: ViewModeEmptyNestedLayout, edit: EmptyNestedLayoutDropZone, }); diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/ViewModeEmptyNestedLayout.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/ViewModeEmptyNestedLayout.tsx new file mode 100644 index 00000000000..d51b7a2be63 --- /dev/null +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/ViewModeEmptyNestedLayout.tsx @@ -0,0 +1,19 @@ +// (C) 2022-2024 GoodData Corporation + +import React from "react"; +import cx from "classnames"; + +import { DashboardItem, DashboardItemBase } from "../presentationComponents/index.js"; +import { useScreenSize } from "../dashboard/components/DashboardScreenSizeContext.js"; + +/** + * @internal + */ +export const ViewModeEmptyNestedLayout: React.FC = () => { + const screen = useScreenSize(); + return ( + + {() =>
} + + ); +}; diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/HeightResizerDragPreview.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/HeightResizerDragPreview.tsx index 6546ac5a1df..1d4d7ddf7e0 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/HeightResizerDragPreview.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/HeightResizerDragPreview.tsx @@ -48,7 +48,10 @@ export const HeightResizerDragPreview = (props: HeightResizerDragPreviewProps) = }; return ( -
+
); diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/WidthResizerDragPreview.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/WidthResizerDragPreview.tsx index 7f68b0bf524..181259af19a 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/WidthResizerDragPreview.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/DragLayerPreview/WidthResizerDragPreview.tsx @@ -61,7 +61,10 @@ export function WidthResizerDragPreview(props: WidthResizerDragPreviewProps) { ]); return ( -
+
); diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizer.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizer.tsx index 478e2365baf..6853679bc2e 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizer.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizer.tsx @@ -6,10 +6,20 @@ import { ResizerProps } from "./types.js"; export const HeightResizer: React.FC = (props) => { const { status } = props; const boxClassName = cx("gd-fluidlayout-height-resizer", status, "s-gd-fluidlayout-height-resizer"); + const handlerClassName = cx("width-resizer-drag-handler", status); const lineClassName = cx("height-resizer-line", status); + + const showDragHandler = status === "active"; + return (
+ {showDragHandler ? ( + <> +
+
+ + ) : null}
); }; diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizerHotspot.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizerHotspot.tsx index e27b636630c..5975ca48f7a 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizerHotspot.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HeightResizerHotspot.tsx @@ -34,6 +34,7 @@ import cx from "classnames"; import { useScreenSize } from "../../../dashboard/components/DashboardScreenSizeContext.js"; import { useResizeContext } from "../../../dragAndDrop/index.js"; import { useDashboardItemPathAndSize } from "../../../dashboard/components/DashboardItemPathAndSizeContext.js"; +import { useHoveredWidget } from "../../../dragAndDrop/HoveredWidgetContext.js"; export type HeightResizerHotspotProps = { section: IDashboardLayoutSectionFacade; @@ -54,6 +55,10 @@ export function HeightResizerHotspot({ section, items, getLayoutDimensions }: He const widgetIdentifiers = useMemo(() => widgets.map((widget) => widget.identifier), [widgets]); const customWidgetsRestrictions = useMemo(() => getCustomWidgetRestrictions(items), [items]); + const { isHovered } = useHoveredWidget(); + + const showDefault = useMemo(() => widgets.some((widget) => isHovered(widget.ref)), [isHovered, widgets]); + const gridWidth = determineWidthForScreen(screen, itemSize); const [{ isDragging }, dragRef] = useDashboardDrag( @@ -117,7 +122,7 @@ export function HeightResizerHotspot({ section, items, getLayoutDimensions }: He const shouldRenderResizer = (areWidgetsResizing || isResizerVisible) && !isColumnResizing && !isOtherRowResizing; - const status = isDragging ? "muted" : "active"; + const status = isDragging ? "muted" : showDefault ? "default" : "active"; return (
+ {status === "default" ? ( +
+ {} +
+ ) : null} {customWidgetsRestrictions.allowHeightResize ? (
= ({ widgetRef, children }) => { + const { addHoveredWidget, removeHoveredWidget } = useHoveredWidget(); + const divRef = useRef(null); + + useEffect(() => { + const handleMouseEnter = () => { + addHoveredWidget(widgetRef); + }; + const handleMouseLeave = () => { + removeHoveredWidget(widgetRef); + }; + + const divElement = divRef.current; + if (divElement) { + divElement.addEventListener("mouseenter", handleMouseEnter); + divElement.addEventListener("mouseleave", handleMouseLeave); + } + + return () => { + if (divElement) { + divElement.removeEventListener("mouseenter", handleMouseEnter); + divElement.removeEventListener("mouseleave", handleMouseLeave); + } + }; + }, [addHoveredWidget, removeHoveredWidget, widgetRef]); + + return ( +
+ {children} +
+ ); +}; diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/ResizeOverlay.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/ResizeOverlay.tsx index c563a60c0f4..0069ecf1539 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/ResizeOverlay.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/ResizeOverlay.tsx @@ -23,6 +23,7 @@ export interface ResizeOverlayProps { isActive: boolean; reachedWidthLimit: ReachedResizingLimit; reachedHeightLimit: ReachedResizingLimit; + isOverNestedLayout?: boolean; } function getMessage({ @@ -68,6 +69,7 @@ function getStatus({ export function ResizeOverlay(props: ResizeOverlayProps) { const status = getStatus(props); + const { isOverNestedLayout = false } = props; if (status === ResizeOverlayStatus.None) { return null; @@ -79,6 +81,7 @@ export function ResizeOverlay(props: ResizeOverlayProps) { const classes = cx("gd-resize-overlay", { active: isActive, error: isInError, + squared: isOverNestedLayout, }); const message = getMessage({ diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizer.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizer.tsx index d1a178903cb..4803e86928e 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizer.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizer.tsx @@ -6,9 +6,21 @@ import { ResizerProps } from "./types.js"; export function WidthResizer({ status }: ResizerProps) { const boxClassName = cx("gd-fluidlayout-width-resizer", status, "s-gd-fluidlayout-width-resizer"); const lineClassName = cx("width-resizer-line", status); + const handlerClassName = cx("width-resizer-drag-handler", status); + + const showDragHandler = status === "active"; + return ( -
-
+
+
+
+ {showDragHandler ? ( + <> +
+
+ + ) : null} +
); } diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizerHotspot.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizerHotspot.tsx index 37b9e1506fd..6f58a00b711 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizerHotspot.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/WidthResizerHotspot.tsx @@ -15,6 +15,7 @@ import { getSizeAndXCoords } from "../DragLayerPreview/WidthResizerDragPreview.j import { useDashboardDrag, useResizeHandlers, useResizeWidthItemStatus } from "../../../dragAndDrop/index.js"; import { WidthResizer } from "./WidthResizer.js"; import { useScreenSize } from "../../../dashboard/components/DashboardScreenSizeContext.js"; +import { useHoveredWidget } from "../../../dragAndDrop/HoveredWidgetContext.js"; export type WidthResizerHotspotProps = { item: IDashboardLayoutItemFacade; @@ -37,6 +38,7 @@ export function WidthResizerHotspot({ const widget = useMemo(() => item.widget() as IWidget, [item]); const widgetIdentifier = widget.identifier; const { isWidthResizing, isActive } = useResizeWidthItemStatus(widgetIdentifier); + const { isHovered } = useHoveredWidget(); const [isResizerVisible, setResizerVisibility] = useState(false); const onMouseEnter = () => setResizerVisibility(true); @@ -94,7 +96,7 @@ export function WidthResizerHotspot({ const showHotspot = !isDragging || isWidthResizing || isResizerVisible; const showResizer = isResizerVisible || isThisResizing; - const status = isDragging ? "muted" : "active"; + const status = isDragging ? "muted" : isHovered(widget.ref) ? "default" : "active"; if (!showHotspot) { return null; @@ -102,6 +104,11 @@ export function WidthResizerHotspot({ return (
+ {status === "default" ? ( +
+ {} +
+ ) : null}
{ @@ -73,7 +74,7 @@ export const useEmptyContentHandlers = (sectionPath: ILayoutSectionPath) => { isKpiDraggableItem(item) || isRichTextDraggableItem(item) || isVisualizationSwitcherDraggableItem(item) || - isDashboardLayoutItem(item) + isDashboardLayoutDraggableItem(item) ) { moveWidgetToNewSection(item); } diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/rowEndHotspotHelper.ts b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/rowEndHotspotHelper.ts index 43cf369ffa1..28c61d5a585 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/rowEndHotspotHelper.ts +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/rowEndHotspotHelper.ts @@ -8,11 +8,12 @@ export function getRemainingWidthInRow( item: IDashboardLayoutItemFacade, screen: ScreenSize, ): number { + const parentWidth = item.section().layout().size()?.gridWidth ?? DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT; const rows = item.section().items().asGridRows(screen); const lastRow = rows[rows.length - 1]; const lastRowLength = lastRow.reduce( (acc, item) => acc + item.sizeForScreenWithFallback(screen).gridWidth, 0, ); - return (item.section().layout().size()?.gridWidth ?? DASHBOARD_LAYOUT_GRID_COLUMNS_COUNT) - lastRowLength; + return parentWidth - lastRowLength; } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/de-DE.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/de-DE.json index 1e42be691d4..67835e264da 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/de-DE.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/de-DE.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Für diesen Benutzer fehlt eine E-Mail-Adresse.", "insightAlert.config.for": "Für", "insightAlert.config.warning.destination": "Das ausgewählte Ziel unterstützt nur das Senden des Hinweises an Sie selbst.", - "insightAlert.config.selectAttribute": "Alle " + "insightAlert.config.selectAttribute": "Alle ", + "addPanel.dashboardLayout": "Container", + "addPanel.dashboardLayout.tooltip": "Mehrere Widgets gruppieren und zusammen anzeigen für ein flexibleres Layout.", + "nestedLayoutToolbar.remove": "Container und seinen Inhalt entfernen", + "nestedLayout.tab.title": "Container", + "nestedLayout.deleteDialog.header": "Container löschen?", + "nestedLayout.deleteDialog.message": "Der Container und sein gesamter Inhalt werden unwiderruflich gelöscht.", + "nestedLayout.emptyDropZone.message": "Hierher ziehen{br}, um den Container hinzuzufügen", + "insightAlert.config.and": "und", + "insightAlert.config.for.filter": "für {granularity}", + "insightAlert.config.compare_with_sp_granularity": "gleicher {period} im vorherigen Jahr", + "insightAlert.config.compare_with_pp_granularity": "vorheriger {period}", + "granularity.this_keyword": "Diese", + "granularity.year": "Jahr", + "granularity.week": "Woche", + "granularity.quarter": "Quartal", + "granularity.month": "Monat", + "granularity.date": "Tag", + "granularity.hour": "Stunde", + "granularity.minute": "Minute" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-AU.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-AU.json index 6b141f10c5a..de485a4bae0 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-AU.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-AU.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "This user is missing an email address.", "insightAlert.config.for": "For", "insightAlert.config.warning.destination": "The selected destination only supports sending the alert to yourself.", - "insightAlert.config.selectAttribute": "All" + "insightAlert.config.selectAttribute": "All", + "addPanel.dashboardLayout": "Container", + "addPanel.dashboardLayout.tooltip": "Group and display multiple widgets together for a more flexible layout.", + "nestedLayoutToolbar.remove": "Remove from dashboard.", + "nestedLayout.tab.title": "Container", + "nestedLayout.deleteDialog.header": "Delete container?", + "nestedLayout.deleteDialog.message": "The container and all of its content will be irreversibly deleted.", + "nestedLayout.emptyDropZone.message": "Drag here{br}to add to the container", + "insightAlert.config.and": "and", + "insightAlert.config.for.filter": "for {granularity}", + "insightAlert.config.compare_with_sp_granularity": "same {period} last year", + "insightAlert.config.compare_with_pp_granularity": "previous {period}", + "granularity.this_keyword": "This", + "granularity.year": "year", + "granularity.week": "week", + "granularity.quarter": "quarter", + "granularity.month": "month", + "granularity.date": "day", + "granularity.hour": "hour", + "granularity.minute": "minute" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-GB.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-GB.json index c9274693593..4cc058a0809 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-GB.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-GB.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "This user is missing an email address.", "insightAlert.config.for": "For", "insightAlert.config.warning.destination": "The selected destination only supports sending the alert to yourself.", - "insightAlert.config.selectAttribute": "All" + "insightAlert.config.selectAttribute": "All", + "addPanel.dashboardLayout": "Container", + "addPanel.dashboardLayout.tooltip": "Group and display multiple widgets together for a more flexible layout.", + "nestedLayoutToolbar.remove": "Remove from dashboard.", + "nestedLayout.tab.title": "Container", + "nestedLayout.deleteDialog.header": "Delete container?", + "nestedLayout.deleteDialog.message": "The container and all of its content will be irreversibly deleted.", + "nestedLayout.emptyDropZone.message": "Drag here{br}to add to the container", + "insightAlert.config.and": "and", + "insightAlert.config.for.filter": "for {granularity}", + "insightAlert.config.compare_with_sp_granularity": "same {period} last year", + "insightAlert.config.compare_with_pp_granularity": "previous {period}", + "granularity.this_keyword": "This", + "granularity.year": "year", + "granularity.week": "week", + "granularity.quarter": "quarter", + "granularity.month": "month", + "granularity.date": "day", + "granularity.hour": "hour", + "granularity.minute": "minute" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-US.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-US.json index 681c0d5f355..cc91026e527 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-US.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-US.json @@ -764,7 +764,7 @@ "limit": 0 }, "dialogs.alerting.management.delete.dialog.confirm": { - "value": "The alert will be permanently deleted.", + "value": "The alert will be permanently deleted, along with all its notifications.", "comment": "Do not translate html tags , ", "limit": 0 }, @@ -1106,14 +1106,12 @@ "options.menu.unsupported.schedulingForInsightNotEnabled": { "value": "You cannot schedule an export for this widget.", "comment": "Tooltip for the widget that does not support scheduling, because it's disabled on the insight.", - "limit": 0, - "translate": false + "limit": 0 }, "options.menu.unsupported.alertingForInsightNotEnabled": { "value": "You cannot create an alert for this widget.", "comment": "Tooltip for the widget that does not support alerting, because it's disabled on the insight.", - "limit": 0, - "translate": false + "limit": 0 }, "options.menu.unsupported.oldWidget": { "value": "Unable to schedule the export. Please resave the dashboard or contact your administrator.", @@ -3117,7 +3115,7 @@ "limit": 0 }, "insightAlert.config.delete.message": { - "value": "The alert for {title} will be permanently deleted.", + "value": "The alert for {title} will be permanently deleted, along with all its notifications.", "comment": "Do not translate html tags , or {title} placeholder", "limit": 0 }, diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-419.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-419.json index 6c5a3b53c53..04423b82747 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-419.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-419.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "A este usuario le falta una dirección de correo electrónico.", "insightAlert.config.for": "Para", "insightAlert.config.warning.destination": "El destino seleccionado solo admite el envío de la alerta a uno mismo.", - "insightAlert.config.selectAttribute": "Todo" + "insightAlert.config.selectAttribute": "Todo", + "addPanel.dashboardLayout": "Contenedor", + "addPanel.dashboardLayout.tooltip": "Combine y presente varios widgets juntos para una distribución más flexible.", + "nestedLayoutToolbar.remove": "Retirar el contenedor y su contenido", + "nestedLayout.tab.title": "Contenedor", + "nestedLayout.deleteDialog.header": "¿Eliminar el contenedor?", + "nestedLayout.deleteDialog.message": "El contenedor y todo su contenido serán eliminados de manera permanente.", + "nestedLayout.emptyDropZone.message": "Arrastre aquí{br}para añadir al contenedor", + "insightAlert.config.and": "y", + "insightAlert.config.for.filter": "para {granularity}", + "insightAlert.config.compare_with_sp_granularity": "mismo {period} año anterior", + "insightAlert.config.compare_with_pp_granularity": "anterior {period}", + "granularity.this_keyword": "Este/", + "granularity.year": "año", + "granularity.week": "semana", + "granularity.quarter": "trimestre", + "granularity.month": "mes", + "granularity.date": "día", + "granularity.hour": "hora", + "granularity.minute": "minuto" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-ES.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-ES.json index c296a197e0f..815a91f79a6 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-ES.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/es-ES.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "A este usuario le falta una dirección de correo electrónico.", "insightAlert.config.for": "Para", "insightAlert.config.warning.destination": "El destino seleccionado sólo admite el envío de la alerta a uno mismo.", - "insightAlert.config.selectAttribute": "Todo" + "insightAlert.config.selectAttribute": "Todo", + "addPanel.dashboardLayout": "Recipiente", + "addPanel.dashboardLayout.tooltip": "Agrupe y muestre varios widgets juntos para lograr un diseño más flexible. ", + "nestedLayoutToolbar.remove": "Retirar el recipiente y su contenido", + "nestedLayout.tab.title": "Recipiente", + "nestedLayout.deleteDialog.header": "¿Borrar contenedor?", + "nestedLayout.deleteDialog.message": "El contenedor y todo su contenido se eliminarán irreversiblemente.", + "nestedLayout.emptyDropZone.message": "Arrastre aquí{br}para añadir al contenedor", + "insightAlert.config.and": "y", + "insightAlert.config.for.filter": "para {granularity}", + "insightAlert.config.compare_with_sp_granularity": "mismo {period} año anterior", + "insightAlert.config.compare_with_pp_granularity": "anterior {period}", + "granularity.this_keyword": "Este/", + "granularity.year": "año", + "granularity.week": "semana", + "granularity.quarter": "trimestre", + "granularity.month": "mes", + "granularity.date": "día", + "granularity.hour": "hora", + "granularity.minute": "minuto" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fi-FI.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fi-FI.json index 38e84ab3b56..a9c65a35fd5 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fi-FI.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fi-FI.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Tältä käyttäjältä puuttuu sähköpostiosoite.", "insightAlert.config.for": "Kohteelle", "insightAlert.config.warning.destination": "Valittu kohde tukee vain hälytyksen lähettämistä itsellesi.", - "insightAlert.config.selectAttribute": "Kaikki" + "insightAlert.config.selectAttribute": "Kaikki", + "addPanel.dashboardLayout": "Säiliö", + "addPanel.dashboardLayout.tooltip": "Ryhmittele ja näytä useita pienoissovelluksia yhdessä joustavamman asettelun aikaansaamiseksi. ", + "nestedLayoutToolbar.remove": "Poista säiliö ja sen sisältö", + "nestedLayout.tab.title": "Säiliö", + "nestedLayout.deleteDialog.header": "Poistetaanko säiliö?", + "nestedLayout.deleteDialog.message": "Säiliö ja kaikki sen sisältö poistetaan peruuttamattomasti.", + "nestedLayout.emptyDropZone.message": " Vedä tästä{br}lisätäksesi säiliöön", + "insightAlert.config.and": "ja", + "insightAlert.config.for.filter": "kohteelle {granularity}", + "insightAlert.config.compare_with_sp_granularity": "sama {period} edellinen vuosi", + "insightAlert.config.compare_with_pp_granularity": "edellinen {period}", + "granularity.this_keyword": "Tämä ", + "granularity.year": "vuosi", + "granularity.week": "viikko", + "granularity.quarter": "vuosineljännes", + "granularity.month": "kuukausi", + "granularity.date": "päivä", + "granularity.hour": "tunti", + "granularity.minute": "minuutti" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-CA.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-CA.json index d475d24f195..f96620a5ac3 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-CA.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-CA.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Il manque une adresse e-mail à cet utilisateur.", "insightAlert.config.for": "Pour", "insightAlert.config.warning.destination": "La destination sélectionnée ne permet d'envoyer l'alerte qu'à vous-même.", - "insightAlert.config.selectAttribute": "Tout" + "insightAlert.config.selectAttribute": "Tout", + "addPanel.dashboardLayout": "Conteneur", + "addPanel.dashboardLayout.tooltip": "Grouper et afficher plusieurs widgets ensemble pour une mise en page plus souple. ", + "nestedLayoutToolbar.remove": "Retirer le conteneur et son contenu", + "nestedLayout.tab.title": "Conteneur", + "nestedLayout.deleteDialog.header": "Supprimer le conteneur?", + "nestedLayout.deleteDialog.message": "Le conteneur et tout son contenu seront irréversiblement supprimés.", + "nestedLayout.emptyDropZone.message": "Faire glisser ici{br}à ajouter au conteneur", + "insightAlert.config.and": "et", + "insightAlert.config.for.filter": "pour {granularity}", + "insightAlert.config.compare_with_sp_granularity": "même {period} année précédente", + "insightAlert.config.compare_with_pp_granularity": "précédent {period}", + "granularity.this_keyword": "Ce(tte)", + "granularity.year": "année", + "granularity.week": "semaine", + "granularity.quarter": "trimestre", + "granularity.month": "mois", + "granularity.date": "jour", + "granularity.hour": "heure", + "granularity.minute": "minute" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-FR.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-FR.json index 4b05ab59f2e..b1b1bc8d076 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-FR.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/fr-FR.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Il manque une adresse électronique à cet utilisateur.", "insightAlert.config.for": "Pour", "insightAlert.config.warning.destination": "La destination sélectionnée ne permet d’envoyer l’alerte qu’à soi-même.", - "insightAlert.config.selectAttribute": "Tout" + "insightAlert.config.selectAttribute": "Tout", + "addPanel.dashboardLayout": "Conteneur", + "addPanel.dashboardLayout.tooltip": "Regrouper et afficher plusieurs widgets ensemble pour une mise en page plus souple.", + "nestedLayoutToolbar.remove": "Retirer le conteneur et son contenu", + "nestedLayout.tab.title": "Conteneur", + "nestedLayout.deleteDialog.header": "Supprimer le conteneur ?", + "nestedLayout.deleteDialog.message": "Le conteneur et tout son contenu seront irréversiblement supprimés.", + "nestedLayout.emptyDropZone.message": "Faites glisser ici{br}pour l'ajouter au conteneur", + "insightAlert.config.and": "et", + "insightAlert.config.for.filter": "pour {granularity}", + "insightAlert.config.compare_with_sp_granularity": "même {period} que l'année précédente", + "insightAlert.config.compare_with_pp_granularity": "{period} précédent(e)", + "granularity.this_keyword": "Ce(tte)", + "granularity.year": "année", + "granularity.week": "semaine", + "granularity.quarter": "trimestre", + "granularity.month": "mois", + "granularity.date": "jour", + "granularity.hour": "heure", + "granularity.minute": "minute" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/it-IT.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/it-IT.json index 35bc78719bf..4dcb8fe1fae 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/it-IT.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/it-IT.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "A questo utente manca un indirizzo e-mail.", "insightAlert.config.for": "Per", "insightAlert.config.warning.destination": "La destinazione selezionata supporta solo l'invio dell'avviso a se stessi.", - "insightAlert.config.selectAttribute": "Tutto" + "insightAlert.config.selectAttribute": "Tutto", + "addPanel.dashboardLayout": "Contenitore", + "addPanel.dashboardLayout.tooltip": "Raggruppare e visualizzare più widget insieme per una disposizione più flessibile. ", + "nestedLayoutToolbar.remove": "Rimuovere il contenitore e il suo contenuto", + "nestedLayout.tab.title": "Contenitore", + "nestedLayout.deleteDialog.header": "Cancellare il contenitore?", + "nestedLayout.deleteDialog.message": "Il contenitore e tutto il suo contenuto saranno cancellati in modo irreversibile.", + "nestedLayout.emptyDropZone.message": "Trascinare qui{br}per aggiungere al contenitore", + "insightAlert.config.and": "e", + "insightAlert.config.for.filter": "per {granularity}", + "insightAlert.config.compare_with_sp_granularity": "stesso {period} dell'anno precedente", + "insightAlert.config.compare_with_pp_granularity": "precedente {period}", + "granularity.this_keyword": "Questo", + "granularity.year": "anno", + "granularity.week": "settimana", + "granularity.quarter": "trimestre", + "granularity.month": "mese", + "granularity.date": "giorno", + "granularity.hour": "ora", + "granularity.minute": "minuto" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/ja-JP.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/ja-JP.json index 14c53540a54..f2ccdcd1891 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/ja-JP.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/ja-JP.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "このユーザーにはメールアドレスがありません。", "insightAlert.config.for": "について", "insightAlert.config.warning.destination": "選択された送信先は、自分自身へのアラート送信にのみ対応しています。", - "insightAlert.config.selectAttribute": "すべて" + "insightAlert.config.selectAttribute": "すべて", + "addPanel.dashboardLayout": "コンテナ", + "addPanel.dashboardLayout.tooltip": "複数のウィジェットをまとめてグループ化して表示し、より柔軟なレイアウトを実現します。", + "nestedLayoutToolbar.remove": "コンテナとその内容を削除する", + "nestedLayout.tab.title": "コンテナ", + "nestedLayout.deleteDialog.header": "コンテナを削除しますか?", + "nestedLayout.deleteDialog.message": "コンテナとそのすべてのコンテンツは元に戻せない形で削除されます。", + "nestedLayout.emptyDropZone.message": "ここにドラッグ{br}コンテナに追加する", + "insightAlert.config.and": "および", + "insightAlert.config.for.filter": "にとって {granularity}", + "insightAlert.config.compare_with_sp_granularity": "{period} 前年同時期", + "insightAlert.config.compare_with_pp_granularity": "前期 {period}", + "granularity.this_keyword": "今", + "granularity.year": "年", + "granularity.week": "週", + "granularity.quarter": "四半期", + "granularity.month": "月", + "granularity.date": "日", + "granularity.hour": "時", + "granularity.minute": "分" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/nl-NL.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/nl-NL.json index c67855fdfa9..040eec6f442 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/nl-NL.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/nl-NL.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Deze gebruiker mist een e-mailadres.", "insightAlert.config.for": "Voor", "insightAlert.config.warning.destination": "De geselecteerde bestemming ondersteunt alleen het verzenden van de waarschuwing naar jezelf.", - "insightAlert.config.selectAttribute": "Alles" + "insightAlert.config.selectAttribute": "Alles", + "addPanel.dashboardLayout": "Container", + "addPanel.dashboardLayout.tooltip": "Groepeer en toon meerdere widgets samen voor een flexibelere lay-out. ", + "nestedLayoutToolbar.remove": "Container en inhoud verwijderen", + "nestedLayout.tab.title": "Container", + "nestedLayout.deleteDialog.header": "Container verwijderen?", + "nestedLayout.deleteDialog.message": "De container en al zijn inhoud worden onherroepelijk verwijderd.", + "nestedLayout.emptyDropZone.message": "Hierheen slepen{br}om toe te voegen aan de container", + "insightAlert.config.and": "en", + "insightAlert.config.for.filter": "voor {granularity}", + "insightAlert.config.compare_with_sp_granularity": "dezelfde {period} vorig jaar", + "insightAlert.config.compare_with_pp_granularity": "vorige {period}", + "granularity.this_keyword": "Dit", + "granularity.year": "jaar", + "granularity.week": "week", + "granularity.quarter": "kwartaal", + "granularity.month": "maand", + "granularity.date": "dag", + "granularity.hour": "uur", + "granularity.minute": "minuut" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-BR.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-BR.json index fd3f81986b7..fc6a0460352 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-BR.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-BR.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Este usuário não tem um endereço de e-mail.", "insightAlert.config.for": "Por", "insightAlert.config.warning.destination": "O destino selecionado só dá suporte ao envio do alerta para você mesmo.", - "insightAlert.config.selectAttribute": "Todos" + "insightAlert.config.selectAttribute": "Todos", + "addPanel.dashboardLayout": "Recipiente", + "addPanel.dashboardLayout.tooltip": "Agrupe e exiba vários widgets para um layout mais flexível. ", + "nestedLayoutToolbar.remove": "Remover contêiner e seu conteúdo", + "nestedLayout.tab.title": "Recipiente", + "nestedLayout.deleteDialog.header": "Excluir contêiner?", + "nestedLayout.deleteDialog.message": "O contêiner e todo o seu conteúdo serão excluídos irreversivelmente.", + "nestedLayout.emptyDropZone.message": "Arraste aqui{br}para adicionar ao contêiner", + "insightAlert.config.and": "e", + "insightAlert.config.for.filter": "durante {granularity}", + "insightAlert.config.compare_with_sp_granularity": "mesmo {period} ano anterior", + "insightAlert.config.compare_with_pp_granularity": "anterior {period}", + "granularity.this_keyword": "Este", + "granularity.year": "ano", + "granularity.week": "semana", + "granularity.quarter": "trimestre", + "granularity.month": "mês", + "granularity.date": "dia", + "granularity.hour": "hora", + "granularity.minute": "minuto" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-PT.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-PT.json index 6a6980c4f44..f7b28f7050b 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-PT.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/pt-PT.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "Este utilizador não tem um endereço de e-mail.", "insightAlert.config.for": "Por", "insightAlert.config.warning.destination": "O destino selecionado só dá suporte ao envio do alerta para si mesmo.", - "insightAlert.config.selectAttribute": "Todos" + "insightAlert.config.selectAttribute": "Todos", + "addPanel.dashboardLayout": "Recipiente", + "addPanel.dashboardLayout.tooltip": "Agrupe e apresente vários widgets para um esquema mais flexível. ", + "nestedLayoutToolbar.remove": "Remover o recipiente e o seu conteúdo", + "nestedLayout.tab.title": "Recipiente", + "nestedLayout.deleteDialog.header": "Excluir recipiente?", + "nestedLayout.deleteDialog.message": "O recipiente e todo o seu conteúdo serão eliminados de forma irreversível.", + "nestedLayout.emptyDropZone.message": "Arraste para aqui{br}para adicionar ao recipiente", + "insightAlert.config.and": "e", + "insightAlert.config.for.filter": "durante {granularity}", + "insightAlert.config.compare_with_sp_granularity": "mesmo {period} do ano anterior", + "insightAlert.config.compare_with_pp_granularity": "anterior {period}", + "granularity.this_keyword": "Este", + "granularity.year": "ano", + "granularity.week": "semana", + "granularity.quarter": "trimestre", + "granularity.month": "mês", + "granularity.date": "dia", + "granularity.hour": "hora", + "granularity.minute": "minuto" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-HK.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-HK.json index d7866611e43..37683a9de7a 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-HK.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-HK.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "此用戶缺少電子郵件地址。", "insightAlert.config.for": "為", "insightAlert.config.warning.destination": "所選目標僅支持向自己發送警報。", - "insightAlert.config.selectAttribute": "都" + "insightAlert.config.selectAttribute": "都", + "addPanel.dashboardLayout": "容器", + "addPanel.dashboardLayout.tooltip": "把多個小組件分組並顯示喺一齐,以實現更靈活嘅布局。 ", + "nestedLayoutToolbar.remove": "刪除容器及其內容", + "nestedLayout.tab.title": "容器", + "nestedLayout.deleteDialog.header": "刪除容器?", + "nestedLayout.deleteDialog.message": "容器及其所有內容將被不可逆地刪除。", + "nestedLayout.emptyDropZone.message": "拖動到此處{br}添加到容器", + "insightAlert.config.and": "和", + "insightAlert.config.for.filter": "為 {granularity}", + "insightAlert.config.compare_with_sp_granularity": "同 {period}上一年", + "insightAlert.config.compare_with_pp_granularity": "以前 {period}", + "granularity.this_keyword": "這 ", + "granularity.year": "年", + "granularity.week": "周", + "granularity.quarter": "季度", + "granularity.month": "月", + "granularity.date": "日", + "granularity.hour": "小時", + "granularity.minute": "分鐘" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hans.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hans.json index 091c2126f71..508e96529e2 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hans.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hans.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "该用户缺少电子邮件地址。", "insightAlert.config.for": "为了", "insightAlert.config.warning.destination": "所选目的地仅支持向您自己发送警报。", - "insightAlert.config.selectAttribute": "全部" + "insightAlert.config.selectAttribute": "全部", + "addPanel.dashboardLayout": "容器", + "addPanel.dashboardLayout.tooltip": "将多个小部件组合并显示在一起,以实现更灵活的布局。", + "nestedLayoutToolbar.remove": "移除容器及其内容物", + "nestedLayout.tab.title": "容器", + "nestedLayout.deleteDialog.header": "删除容器?", + "nestedLayout.deleteDialog.message": "该容器及其所有内容将被不可逆地删除。", + "nestedLayout.emptyDropZone.message": "拖到此处{br}添加到容器中", + "insightAlert.config.and": "和", + "insightAlert.config.for.filter": "为了 {granularity}", + "insightAlert.config.compare_with_sp_granularity": "相同的 {period} 上一年", + "insightAlert.config.compare_with_pp_granularity": "以前的 {period}", + "granularity.this_keyword": "这个", + "granularity.year": "年", + "granularity.week": "周", + "granularity.quarter": "季度", + "granularity.month": "月", + "granularity.date": "天", + "granularity.hour": "小时", + "granularity.minute": "分钟" } diff --git a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hant.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hant.json index afb4fb92437..6a4231c8ec0 100644 --- a/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hant.json +++ b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/zh-Hant.json @@ -630,5 +630,24 @@ "dialogs.schedule.email.user.missing.email": "該使用者缺少電子郵件地址。", "insightAlert.config.for": "為了", "insightAlert.config.warning.destination": "所選目的地僅支援向自己發送警報。", - "insightAlert.config.selectAttribute": "全部" + "insightAlert.config.selectAttribute": "全部", + "addPanel.dashboardLayout": "容器", + "addPanel.dashboardLayout.tooltip": "將多個小部件分組並顯示在一起,以獲得更靈活的佈局。 ", + "nestedLayoutToolbar.remove": "移除容器及其內容物", + "nestedLayout.tab.title": "容器", + "nestedLayout.deleteDialog.header": "刪除容器?", + "nestedLayout.deleteDialog.message": "容器及其所有內容將不可逆轉地刪除。", + "nestedLayout.emptyDropZone.message": "拖到這裡{br}添加到容器中", + "insightAlert.config.and": "和", + "insightAlert.config.for.filter": "為了 {granularity}", + "insightAlert.config.compare_with_sp_granularity": "相同的 {period} 前一年", + "insightAlert.config.compare_with_pp_granularity": "以前的 {period}", + "granularity.this_keyword": "這 ", + "granularity.year": "年", + "granularity.week": "星期", + "granularity.quarter": "四分之一", + "granularity.month": "月", + "granularity.date": "天", + "granularity.hour": "小時", + "granularity.minute": "分分鐘" } diff --git a/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemBase.tsx b/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemBase.tsx index 18621b8cc7a..7d95cb38b01 100644 --- a/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemBase.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemBase.tsx @@ -53,6 +53,9 @@ export interface IDashboardItemBaseProps { * Callback to call when an item is selected. Called with the relevant mouse event if originating from a click. */ onSelected?: (e?: MouseEvent) => void; + + onEnter?: () => void; + onLeave?: () => void; } const noopRender = () => null; @@ -70,6 +73,8 @@ export const DashboardItemBase: React.FC = ({ isSelectable = false, isSelected = false, onSelected, + onEnter, + onLeave, }) => { return ( @@ -82,6 +87,8 @@ export const DashboardItemBase: React.FC = ({ isSelectable={isSelectable} isSelected={isSelected} onSelected={onSelected} + onEnter={onEnter} + onLeave={onLeave} > {renderBeforeVisualization()}
diff --git a/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemContent.tsx b/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemContent.tsx index 9bb37541040..406e9214924 100644 --- a/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemContent.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/presentationComponents/DashboardItems/DashboardItemContent.tsx @@ -1,4 +1,4 @@ -// (C) 2020-2022 GoodData Corporation +// (C) 2020-2024 GoodData Corporation import React, { forwardRef, MouseEvent } from "react"; import cx from "classnames"; @@ -8,10 +8,15 @@ interface IDashboardItemContentProps { isSelectable?: boolean; isSelected?: boolean; onSelected?: (e?: MouseEvent) => void; + onEnter?: () => void; + onLeave?: () => void; } export const DashboardItemContent = forwardRef( - function DashboardItemContent({ children, className, isSelectable, isSelected, onSelected }, ref) { + function DashboardItemContent( + { children, className, isSelectable, isSelected, onSelected, onEnter, onLeave }, + ref, + ) { return (
{children}
diff --git a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.tsx b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.tsx new file mode 100644 index 00000000000..5346e16339e --- /dev/null +++ b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.tsx @@ -0,0 +1,64 @@ +// (C) 2019-2024 GoodData Corporation +import React from "react"; +import { useIntl } from "react-intl"; +import { + ConfirmDialogBase, + Overlay, + ContentDivider, + OverlayControllerProvider, + OverlayController, + UiSkeleton, +} from "@gooddata/sdk-ui-kit"; +import { IScheduledEmailDialogProps } from "../types.js"; +import { DASHBOARD_DIALOG_OVERS_Z_INDEX } from "../../constants/index.js"; +const overlayController = OverlayController.getInstance(DASHBOARD_DIALOG_OVERS_Z_INDEX); + +export function DefaultLoadingScheduledEmailDialog({ + scheduledExportToEdit, + onCancel, +}: Pick) { + const intl = useIntl(); + + return ( + <> + + + ( +
+ +
+ )} + isSubmitDisabled + submitOnEnterKey={false} + onCancel={onCancel} + headline={undefined} + headerLeftButtonRenderer={() => ( +
+ +
+ )} + > +
+ + +
+
+
+
+ + ); +} diff --git a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.tsx b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.tsx index 660d11f2607..29fff8c7c46 100644 --- a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.tsx @@ -42,6 +42,7 @@ import { DashboardAttachments } from "./components/Attachments/DashboardAttachme import { WidgetAttachments } from "./components/Attachments/WidgetAttachments.js"; import { useFiltersForDashboardScheduledExportInfo } from "./hooks/useFiltersForDashboardScheduledExportInfo.js"; import { DEFAULT_MAX_RECIPIENTS } from "./constants.js"; +import { DefaultLoadingScheduledEmailDialog } from "./DefaultLoadingScheduledEmailDialog.js"; const MAX_MESSAGE_LENGTH = 200; const MAX_SUBJECT_LENGTH = 200; @@ -311,17 +312,16 @@ export function ScheduledMailDialogRenderer({ * @alpha */ export const DefaultScheduledEmailDialog: React.FC = (props) => { - const { isVisible, isLoading } = props; + const { isLoading, onCancel, scheduledExportToEdit } = props; const locale = useDashboardSelector(selectLocale); - /** - * The isLoading state typically resolves within milliseconds, as it awaits the widget filters' resolution. - * Although brief, this loading period is crucial. We must defer rendering until it completes to ensure - * the filters are properly synchronized for the default editing or creation state. Premature rendering - * could lead to filter inconsistencies. - */ - if (!isVisible || isLoading) { - return null; + if (isLoading) { + return ( + + ); } return ( diff --git a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.ts b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.ts index 8bb8999b02a..50147aed2ed 100644 --- a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.ts +++ b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.ts @@ -82,7 +82,7 @@ export function useEditScheduledEmail(props: IUseEditScheduledEmailProps) { const currentUser = useDashboardSelector(selectCurrentUser); const users = useDashboardSelector(selectUsers); - const defaultRecipient = convertCurrentUserToAutomationRecipient(users, currentUser); + const defaultRecipient = convertCurrentUserToAutomationRecipient(users ?? [], currentUser); const firstChannel = notificationChannels[0]?.id; diff --git a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/types.ts b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/types.ts index db3f1014ed7..6951cd909ab 100644 --- a/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/types.ts +++ b/libs/sdk-ui-dashboard/src/presentation/scheduledEmail/types.ts @@ -28,11 +28,6 @@ export interface IScheduledEmailDialogPropsContext { * @alpha */ export interface IScheduledEmailDialogProps { - /** - * Is scheduled e-mail dialog visible? - */ - isVisible?: boolean; - /** * In case, we are not creating new schedule, but editing existing one, this is the active schedule to be edited. */ @@ -147,11 +142,6 @@ export interface IScheduledEmailDialogProps { * @alpha */ export interface IScheduledEmailManagementDialogProps { - /** - * Is scheduled email management dialog visible? - */ - isVisible?: boolean; - /** * Is loading schedule data? */ diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.ts b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.ts index e4886d8e2cf..76086dbe8c0 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.ts +++ b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useEditAlert.ts @@ -127,7 +127,7 @@ export const useEditAlert = ({ */ const updatedRecipients = selectedDestination?.allowedRecipients === "creator" - ? [convertCurrentUserToAutomationRecipient(users, currentUser)] + ? [convertCurrentUserToAutomationRecipient(users ?? [], currentUser)] : undefined; setUpdatedAlert((alert) => transformAlertByDestination(alert, destinationId, updatedRecipients)); diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightAlerting.ts b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightAlerting.ts index b23d74abd2d..324ac57d04e 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightAlerting.ts +++ b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlertConfig/hooks/useInsightAlerting.ts @@ -27,7 +27,6 @@ import { selectNotificationChannels, useDashboardUserInteraction, selectCanManageWorkspace, - selectUsers, selectEntitlementMaxAutomationRecipients, selectExecutionResultByRef, selectEnableAlertAttributes, @@ -35,6 +34,7 @@ import { selectCatalogDateDatasets, selectSeparators, selectEnableComparisonInAlerting, + useWorkspaceUsers, } from "../../../../../../model/index.js"; import { convertCurrentUserToAutomationRecipient } from "../../../../../../_staging/automation/index.js"; import { useMetricsAndFacts } from "../../../../../../_staging/sharedHooks/useMetricsAndFacts.js"; @@ -64,7 +64,8 @@ export const useInsightWidgetAlerting = ({ widget, closeInsightWidgetMenu }: IIn const alerts = useDashboardSelector( selectDashboardUserAutomationAlertsInContext(widget?.localIdentifier), ); - const users = useDashboardSelector(selectUsers); + const { users, status: usersStatus } = useWorkspaceUsers(); + const isLoadingUsers = usersStatus === "pending" || usersStatus === "loading"; const dashboard = useDashboardSelector(selectDashboardId); const insight = useDashboardSelector(selectInsightByWidgetRef(widget?.ref)); const execResult = useDashboardSelector(selectExecutionResultByRef(widget?.ref)); @@ -181,6 +182,7 @@ export const useInsightWidgetAlerting = ({ widget, closeInsightWidgetMenu }: IIn useEffect(() => { if ( widgetFiltersStatus === "success" && + usersStatus === "success" && defaultMeasure && defaultNotificationChannelId && !metricsAndFactsLoading && @@ -192,11 +194,14 @@ export const useInsightWidgetAlerting = ({ widget, closeInsightWidgetMenu }: IIn supportedMeasures, defaultMeasure, defaultNotificationChannelId, - convertCurrentUserToAutomationRecipient(users, currentUser), + convertCurrentUserToAutomationRecipient(users ?? [], currentUser), metricsAndFacts?.metrics ?? [], ), ); - } else if ((widgetFiltersStatus === "error" || metricsAndFactsLoadingError) && !defaultAlert) { + } else if ( + (widgetFiltersStatus === "error" || usersStatus === "error" || metricsAndFactsLoadingError) && + !defaultAlert + ) { closeInsightWidgetMenu(); addError(messages.alertLoadingError); } @@ -214,6 +219,7 @@ export const useInsightWidgetAlerting = ({ widget, closeInsightWidgetMenu }: IIn addError, currentUser, users, + usersStatus, ]); useEffect(() => { @@ -332,7 +338,8 @@ export const useInsightWidgetAlerting = ({ widget, closeInsightWidgetMenu }: IIn isLoadingFilters || isRefreshingAutomations || isDeletingAlert || - metricsAndFactsLoading, + metricsAndFactsLoading || + isLoadingUsers, destinations, users, alerts, diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlerts.tsx b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlerts.tsx index e2df5666177..7bc4c4a86e1 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlerts.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/widget/insight/configuration/InsightAlerts.tsx @@ -87,7 +87,7 @@ export const InsightAlerts: React.FC = ({ wid alert={editingAlert} hasAlerts={hasAlerts} destinations={destinations} - users={users} + users={users ?? []} measures={supportedMeasures} attributes={supportedAttributes} onUpdate={updateExistingAlert} @@ -110,7 +110,7 @@ export const InsightAlerts: React.FC = ({ wid attributes={supportedAttributes} hasAlerts={hasAlerts} destinations={destinations} - users={users} + users={users ?? []} onCreate={saveNewAlert} onCancel={cancelAlertCreation} onClose={onClose} diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/visualizationSwitcher/ViewModeDashboardVisualizationSwitcher.tsx b/libs/sdk-ui-dashboard/src/presentation/widget/visualizationSwitcher/ViewModeDashboardVisualizationSwitcher.tsx index 37742513476..0b055095b87 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/visualizationSwitcher/ViewModeDashboardVisualizationSwitcher.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/widget/visualizationSwitcher/ViewModeDashboardVisualizationSwitcher.tsx @@ -110,7 +110,6 @@ export const ViewModeDashboardVisualizationSwitcherContent: React.FC< onScheduleEmailingManagementOpen, isScheduledEmailingVisible, isScheduledManagementEmailingVisible, - numberOfAvailableDestinations, } = useDashboardScheduledEmails(); const onScheduleExport = useCallback(() => { @@ -131,7 +130,6 @@ export const ViewModeDashboardVisualizationSwitcherContent: React.FC< } = useAlertingAndScheduling({ widget: activeVisualization, insight, - numberOfAvailableDestinations, }); const { closeMenu, isMenuOpen, menuItems, openMenu } = useInsightMenu({ diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx b/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx index 530d32d3ed1..b124a01234a 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx @@ -1,5 +1,5 @@ // (C) 2020-2024 GoodData Corporation -import React, { useMemo, useCallback } from "react"; +import React, { useMemo, useCallback, useEffect, useState } from "react"; import cx from "classnames"; import { useIntl } from "react-intl"; import { IInsight, widgetTitle, insightVisualizationType } from "@gooddata/sdk-model"; @@ -9,6 +9,8 @@ import { useDashboardSelector, selectSettings, useDashboardScheduledEmails, + selectDashboardUserAutomations, + selectAutomationId, } from "../../../../model/index.js"; import { DashboardItem, @@ -25,6 +27,16 @@ import { useInsightMenu } from "./useInsightMenu.js"; import { DashboardWidgetInsightGuard } from "./DashboardWidgetInsightGuard.js"; import { IDefaultDashboardInsightWidgetProps } from "./types.js"; import { useAlertingAndScheduling } from "./useAlertingAndScheduling.js"; +import { createSelector } from "@reduxjs/toolkit"; + +const selectIsWidgetHighlighted = (widgetId: string) => + createSelector( + selectAutomationId, + selectDashboardUserAutomations, + (automationId, automations) => + !!automationId && + automations?.some((a) => a.id === automationId && a.metadata?.widget === widgetId), + ); export const DefaultDashboardInsightWidget: React.FC> = ( props, @@ -44,7 +56,6 @@ const DefaultDashboardInsightWidgetCore: React.FC< const { isScheduledEmailingVisible, isScheduledManagementEmailingVisible, - numberOfAvailableDestinations, onScheduleEmailingOpen, onScheduleEmailingManagementOpen, } = useDashboardScheduledEmails(); @@ -76,7 +87,6 @@ const DefaultDashboardInsightWidgetCore: React.FC< } = useAlertingAndScheduling({ widget, insight, - numberOfAvailableDestinations, }); /// @@ -123,6 +133,24 @@ const DefaultDashboardInsightWidgetCore: React.FC< [InsightMenuComponentProvider, insight, widget], ); + const isHighlighted = useDashboardSelector(selectIsWidgetHighlighted(widget.identifier)); + const [ignoreHighlight, setIgnoreHighlight] = useState(false); + + useEffect(() => { + let timeout: NodeJS.Timeout | undefined; + + if (isHighlighted) { + timeout = setTimeout(() => { + setIgnoreHighlight(true); + }, 5000); + } + return () => { + if (timeout) { + clearTimeout(timeout); + } + }; + }, [isHighlighted]); + return ( diff --git a/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/useAlertingAndScheduling.ts b/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/useAlertingAndScheduling.ts index 3a63764ced3..5381760086e 100644 --- a/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/useAlertingAndScheduling.ts +++ b/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/useAlertingAndScheduling.ts @@ -7,6 +7,7 @@ import { isCustomWidget, selectIsReadOnly, selectCanManageWorkspace, + selectNotificationChannelsCount, } from "../../../../model/index.js"; import { AlertingDisabledReason, SchedulingDisabledReason } from "../../insightMenu/index.js"; import { @@ -19,13 +20,11 @@ import { type UseAlertingAndSchedulingConfig = { insight?: IInsight; widget: IInsightWidget; - numberOfAvailableDestinations: number; }; export const useAlertingAndScheduling = ({ widget, insight, - numberOfAvailableDestinations, }: UseAlertingAndSchedulingConfig): { isAlertingVisible: boolean; alertingDisabled: boolean; @@ -38,6 +37,7 @@ export const useAlertingAndScheduling = ({ const isReadOnly = useDashboardSelector(selectIsReadOnly); const isWorkspaceManager = useDashboardSelector(selectCanManageWorkspace); + const numberOfAvailableDestinations = useDashboardSelector(selectNotificationChannelsCount); /** * We want to hide automations when there are no destinations unless the user is admin. */ diff --git a/libs/sdk-ui-dashboard/styles/scss/dashboard.scss b/libs/sdk-ui-dashboard/styles/scss/dashboard.scss index 2115f59a363..03122103dc0 100644 --- a/libs/sdk-ui-dashboard/styles/scss/dashboard.scss +++ b/libs/sdk-ui-dashboard/styles/scss/dashboard.scss @@ -161,6 +161,10 @@ $dashboard-menu-item-icon-color: var(--gd-palette-complementary-5-from-theme, #b } } + &.gd-highlighted .dash-item-content { + border-color: kit-variables.$gd-palette-primary-base; + } + &.is-selected { .dash-item-action-lw-options { display: block; @@ -746,6 +750,10 @@ $dashboard-menu-item-icon-color: var(--gd-palette-complementary-5-from-theme, #b } } + .gd-empty-nested-layout { + padding: 10px 0; + } + .gd-fluidlayout-column-container { display: flex; } diff --git a/libs/sdk-ui-dashboard/styles/scss/dragAndDrop.scss b/libs/sdk-ui-dashboard/styles/scss/dragAndDrop.scss index c48df4b8554..250b65e02f4 100644 --- a/libs/sdk-ui-dashboard/styles/scss/dragAndDrop.scss +++ b/libs/sdk-ui-dashboard/styles/scss/dragAndDrop.scss @@ -810,6 +810,10 @@ } } + .dashboard-widget-draggable-wrapper { + z-index: auto; + } + // fix for grid layout after some classes at the top were removed .dashboard-widget-draggable-wrapper:not(.gd-nested-layout-widget-wrapper) { position: relative; diff --git a/libs/sdk-ui-dashboard/styles/scss/export.scss b/libs/sdk-ui-dashboard/styles/scss/export.scss index d45880ad454..5162333f89a 100644 --- a/libs/sdk-ui-dashboard/styles/scss/export.scss +++ b/libs/sdk-ui-dashboard/styles/scss/export.scss @@ -1,4 +1,4 @@ -// (C) 2020-2021 GoodData Corporation +// (C) 2020-2024 GoodData Corporation .export-mode { * { @@ -24,6 +24,20 @@ } } + .gd-grid-layout__item { + // overwrite 'flex' + display: block !important; /* stylelint-disable-line declaration-no-important */ + page-break-inside: avoid; + + .dash-item { + min-height: inherit; + } + + .dashboard-widget-draggable-wrapper { + min-height: inherit; + } + } + .gd-row-header-view .description .more-link.active { display: none; } diff --git a/libs/sdk-ui-dashboard/styles/scss/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index 9eb90973f7b..f8679991ca4 100644 --- a/libs/sdk-ui-dashboard/styles/scss/resizing.scss +++ b/libs/sdk-ui-dashboard/styles/scss/resizing.scss @@ -58,6 +58,9 @@ height: 100%; border-left: 2px dashed; + &.default { + border-color: kit-variables.$gd-color-disabled; + } &.muted { border-color: kit-variables.$gd-color-text; } @@ -90,6 +93,10 @@ border-top: 2px dashed; border-color: kit-variables.$gd-palette-primary-base; + &.default { + border-color: kit-variables.$gd-color-disabled; + } + &.muted { border-color: kit-variables.$gd-color-text; } @@ -142,6 +149,12 @@ &.error { background: variables.$gd-palette-primary-base-mix15-white; } + &.squared { + left: 0; + right: 0; + margin: 0; + border-radius: 0; + } } .gd-resize-overlay-text { @@ -193,30 +206,110 @@ ); } +.gd-grid-layout-width-resizer-drag-preview { + padding: 0 0 0 30px; +} + +.gd-grid-layout-resizer-drag-preview, .gd-grid-layout { - .dash-width-resizer-container { - right: -20px; - width: 20px; + .gd-fluidlayout-width-resizer__container { + padding: 10px 0; + border-radius: 4px; + } + .gd-fluidlayout-width-resizer { + padding: 4px 0; + display: flex; + flex-direction: column; + border-radius: 4px; + + .width-resizer-line { + flex: 1 0 auto; + width: 0; + margin-left: 4px; + height: unset; + } } .dash-height-resizer-container { - position: unset; + position: relative; right: unset; bottom: unset; left: unset; height: 10px; + padding-top: 4px; + padding-bottom: 4px; + } + + .width-resizer-drag-handler { + $width-resizer-center-size: 10px; + + width: $width-resizer-center-size; + height: $width-resizer-center-size; + border: 2px solid; + border-radius: 3px; + flex: 0 0 $width-resizer-center-size; + &.default { + border-color: kit-variables.$gd-color-disabled; + } + &.muted { + border-color: kit-variables.$gd-color-text; + } + + &.active { + border-color: kit-variables.$gd-palette-primary-base; + } + + &.error { + border-color: kit-variables.$gd-palette-error-base; + } + } + .gd-fluidlayout-height-resizer { + padding: 0; + display: flex; + flex-direction: row; + border-radius: 4px; + + .height-resizer-line { + flex: 1 0 auto; + margin-top: 4px; + width: unset; + } + } +} + +.gd-grid-layout { + .dash-width-resizer-container { + position: relative; + left: -25px; + right: 0; + width: 0; + } + + .gd-fluidlayout-width-resizer__container { + background: variables.$gd-dashboards-content-backgroundColor; + width: 100%; } .dash-height-resizer-hotspot { - position: unset; + position: absolute; + bottom: -10px; display: flex; } + .gd-hover-detector { + width: 100%; + height: 100%; + } + .gd-resize-overlay { + left: -10px; + right: -10px; + } } .sdk-edit-mode-on .gd-grid-layout { .dash-width-resizer-hotspot { position: unset; left: unset; + padding: 0 0 0 30px; } .gd-resize-overlay-text { diff --git a/libs/sdk-ui-ext/api/sdk-ui-ext.api.md b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md index 66922bbc3fe..dd1058c0a83 100644 --- a/libs/sdk-ui-ext/api/sdk-ui-ext.api.md +++ b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md @@ -25,6 +25,7 @@ import { IInsight } from '@gooddata/sdk-model'; import { IInsightDefinition } from '@gooddata/sdk-model'; import { ILoadingProps } from '@gooddata/sdk-ui'; import { ILocale } from '@gooddata/sdk-ui'; +import { INotification } from '@gooddata/sdk-model'; import { IPivotTableConfig } from '@gooddata/sdk-ui-pivot'; import { ISettings } from '@gooddata/sdk-model'; import { ITheme } from '@gooddata/sdk-model'; @@ -34,6 +35,8 @@ import { LocalIdRef } from '@gooddata/sdk-model'; import { ObjRef } from '@gooddata/sdk-model'; import { OnError } from '@gooddata/sdk-ui'; import { default as React_2 } from 'react'; +import { RefObject } from 'react'; +import { UseCancelablePromiseStatus } from '@gooddata/sdk-ui'; import { WithIntlProps } from 'react-intl'; import { WrappedComponentProps } from 'react-intl'; @@ -84,6 +87,9 @@ export type DataSourcePermission = "USE" | "MANAGE"; // @internal (undocumented) export type DataSourcePermissionSubject = "user" | "userGroup"; +// @internal (undocumented) +export function DefaultOpenNotificationsPanelButton({ buttonRef, isNotificationPanelOpen, toggleNotificationPanel, hasUnreadNotifications, }: IOpenNotificationsPanelButtonComponentProps): React_2.JSX.Element; + // @internal (undocumented) export const DeleteUserDialog: React_2.FC; @@ -415,6 +421,129 @@ export interface ILayoutDescriptor { type: LayoutType; } +// @alpha (undocumented) +export interface INotificationComponentProps { + // (undocumented) + markAsRead: (id: string) => void; + // (undocumented) + notification: INotification; + // (undocumented) + onNotificationClick: (notification: INotification) => void; +} + +// @alpha (undocumented) +export interface INotificationsListComponentProps { + // (undocumented) + activeView: INotificationsPanelView; + // (undocumented) + error?: GoodDataSdkError; + // (undocumented) + hasNextPage: boolean; + // (undocumented) + loadNextPage: () => void; + // (undocumented) + markNotificationAsRead: (notificationId: string) => Promise; + // (undocumented) + Notification: React_2.ComponentType; + // (undocumented) + notifications?: INotification[]; + // (undocumented) + NotificationsListEmptyState: React_2.ComponentType; + // (undocumented) + NotificationsListErrorState: React_2.ComponentType; + // (undocumented) + onNotificationClick: (notification: INotification) => void; + // (undocumented) + status: UseCancelablePromiseStatus; +} + +// @alpha (undocumented) +export interface INotificationsListEmptyStateComponentProps { + // (undocumented) + activeView: INotificationsPanelView; +} + +// @alpha (undocumented) +export interface INotificationsListErrorStateComponentProps { + // (undocumented) + error?: GoodDataSdkError; +} + +// @alpha (undocumented) +export interface INotificationsPanelComponentProps { + // (undocumented) + activeNotifications: INotification[]; + // (undocumented) + activeView: INotificationsPanelView; + // (undocumented) + changeActiveView: (view: INotificationsPanelView) => void; + // (undocumented) + closeNotificationsPanel: () => void; + // (undocumented) + error?: GoodDataSdkError; + // (undocumented) + hasNextPage: boolean; + // (undocumented) + loadNextPage: () => void; + // (undocumented) + markAllNotificationsAsRead: () => Promise; + // (undocumented) + markNotificationAsRead: (notificationId: string) => Promise; + // (undocumented) + Notification: React_2.ComponentType; + // (undocumented) + NotificationsList: React_2.ComponentType; + // (undocumented) + NotificationsListEmptyState: React_2.ComponentType; + // (undocumented) + NotificationsListErrorState: React_2.ComponentType; + // (undocumented) + NotificationsPanelHeader: React_2.ComponentType; + // (undocumented) + onNotificationClick: (notification: INotification) => void; + // (undocumented) + openNotificationsPanel: () => void; + // (undocumented) + status: UseCancelablePromiseStatus; + // (undocumented) + toggleNotificationsPanel: () => void; + // (undocumented) + unreadNotificationsCount: number; +} + +// @alpha (undocumented) +export interface INotificationsPanelCustomComponentsProps { + Notification?: React_2.ComponentType; + NotificationsList?: React_2.ComponentType; + NotificationsListEmptyState?: React_2.ComponentType; + NotificationsListErrorState?: React_2.ComponentType; + NotificationsPanel?: React_2.ComponentType; + NotificationsPanelHeader?: React_2.ComponentType; + OpenNotificationsPanelButton: React_2.ComponentType; +} + +// @alpha (undocumented) +export interface INotificationsPanelHeaderComponentProps { + activeView: INotificationsPanelView; + changeActiveView: (view: INotificationsPanelView) => void; + hasUnreadNotifications: boolean; + markAllAsRead: () => void; + unreadNotificationsCount: number; +} + +// @alpha (undocumented) +export interface INotificationsPanelProps extends INotificationsPanelCustomComponentsProps { + backend?: IAnalyticalBackend; + locale?: ILocale; + onNotificationClick: (notification: INotification) => void; + refreshInterval?: number; + renderInline?: boolean; + workspace?: string; +} + +// @alpha (undocumented) +export type INotificationsPanelView = "all" | "unread"; + // @internal (undocumented) export const INSIGHT_WIDGET_SIZE_INFO_DEFAULT: IVisualizationDefaultSizeInfo; @@ -438,6 +567,16 @@ export class InsightView extends React_2.Component { render(): React_2.JSX.Element; } +// @alpha (undocumented) +export interface IOpenNotificationsPanelButtonComponentProps { + buttonRef: RefObject; + closeNotificationPanel: () => void; + hasUnreadNotifications: boolean; + isNotificationPanelOpen: boolean; + openNotificationPanel: () => void; + toggleNotificationPanel: () => void; +} + // @beta export function isDrillDownDefinition(obj: unknown): obj is IDrillDownDefinition; @@ -556,6 +695,9 @@ export type LayoutType = "fluid"; // @internal (undocumented) export const MIN_VISUALIZATION_WIDTH = 2; +// @alpha (undocumented) +export function NotificationsPanel(props: INotificationsPanelProps): React_2.JSX.Element; + // @alpha (undocumented) export const PluggableVisualizationErrorCodes: { INVALID_BUCKETS: string; diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 000a499eba7..29420f2b7bd 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -30,6 +30,7 @@ "esm/**/*.d.ts", "esm/**/*.map", "esm/**/*.svg", + "src/**/*.scss", "styles", "NOTICE" ], @@ -64,12 +65,14 @@ "@gooddata/sdk-model": "workspace:*", "@gooddata/sdk-ui": "workspace:*", "@gooddata/sdk-ui-charts": "workspace:*", + "@gooddata/sdk-ui-filters": "workspace:*", "@gooddata/sdk-ui-geo": "workspace:*", "@gooddata/sdk-ui-kit": "workspace:*", "@gooddata/sdk-ui-pivot": "workspace:*", "@gooddata/sdk-ui-theme-provider": "workspace:*", "@gooddata/sdk-ui-vis-commons": "workspace:*", "@gooddata/util": "workspace:*", + "@tanstack/react-virtual": "^3.11.1", "classnames": "^2.3.1", "codemirror": "^5.54.0", "date-fns": "^2.22.1", diff --git a/libs/sdk-ui-ext/src/index.ts b/libs/sdk-ui-ext/src/index.ts index 032fb944665..b26d0736c09 100644 --- a/libs/sdk-ui-ext/src/index.ts +++ b/libs/sdk-ui-ext/src/index.ts @@ -110,3 +110,18 @@ export * from "./internal/components/dialogs/userManagementDialogs/index.js"; export * from "./internal/components/attributeHierarchies/index.js"; export * from "./internal/components/pluggableVisualizations/alerts.js"; + +export { DefaultOpenNotificationsPanelButton } from "./notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.js"; +export { NotificationsPanel } from "./notificationsPanel/NotificationsPanel/NotificationsPanel.js"; +export type { + INotificationsPanelProps, + INotificationsPanelCustomComponentsProps, +} from "./notificationsPanel/NotificationsPanel/NotificationsPanel.js"; +export type { INotificationsPanelComponentProps } from "./notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.js"; +export type { IOpenNotificationsPanelButtonComponentProps } from "./notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.js"; +export type { INotificationsPanelHeaderComponentProps } from "./notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.js"; +export type { INotificationsListComponentProps } from "./notificationsPanel/NotificationsList/DefaultNotificationsList.js"; +export type { INotificationsListEmptyStateComponentProps } from "./notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.js"; +export type { INotificationsListErrorStateComponentProps } from "./notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.js"; +export type { INotificationComponentProps } from "./notificationsPanel/Notification/DefaultNotification.js"; +export type { INotificationsPanelView } from "./notificationsPanel/types.js"; diff --git a/libs/sdk-ui-ext/src/internal/translations/de-DE.json b/libs/sdk-ui-ext/src/internal/translations/de-DE.json index 172cf31b931..609de00f712 100644 --- a/libs/sdk-ui-ext/src/internal/translations/de-DE.json +++ b/libs/sdk-ui-ext/src/internal/translations/de-DE.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Warnung", "properties.interactions.alerts.tooltip": "Ermöglichen Sie Benutzern, Warnungen für diese Visualisierung auf Dashboards zu erstellen.", "properties.interactions.scheduledExports": "Geplante Exportvorgänge", - "properties.interactions.scheduledExports.tooltip": "Ermöglichen Sie Benutzern, geplante Exporte für diese Visualisierung auf Dashboards zu erstellen." + "properties.interactions.scheduledExports.tooltip": "Ermöglichen Sie Benutzern, geplante Exporte für diese Visualisierung auf Dashboards zu erstellen.", + "properties.advanced.title": "Erweiterte Anpassungen", + "properties.advanced.chartConfigOverride.noValueLabel": "Noch keine Anpassungen.", + "properties.advanced.chartConfigOverride.link": "Weitere Informationen", + "properties.advanced.chartConfigOverride.editorButton": "Editor öffnen", + "properties.advanced.chartConfigOverride.title": "Erweiterte Anpassung", + "properties.advanced.chartConfigOverride.snippets.header": "Snippets", + "properties.advanced.chartConfigOverride.button.apply": "Übernehmen", + "properties.advanced.chartConfigOverride.button.cancel": "Abbrechen" } diff --git a/libs/sdk-ui-ext/src/internal/translations/en-AU.json b/libs/sdk-ui-ext/src/internal/translations/en-AU.json index 40fdc19a71c..fda8920a916 100644 --- a/libs/sdk-ui-ext/src/internal/translations/en-AU.json +++ b/libs/sdk-ui-ext/src/internal/translations/en-AU.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alert", "properties.interactions.alerts.tooltip": "Enable users to create alerts for this visualisation on dashboards.", "properties.interactions.scheduledExports": "Scheduled exports", - "properties.interactions.scheduledExports.tooltip": "Enable users to create scheduled exports for this visualisation on dashboards." + "properties.interactions.scheduledExports.tooltip": "Enable users to create scheduled exports for this visualisation on dashboards.", + "properties.advanced.title": "Advanced customisations", + "properties.advanced.chartConfigOverride.noValueLabel": "No customisations yet.", + "properties.advanced.chartConfigOverride.link": "Find out more", + "properties.advanced.chartConfigOverride.editorButton": "Open editor", + "properties.advanced.chartConfigOverride.title": "Advanced customisation", + "properties.advanced.chartConfigOverride.snippets.header": "Snippets", + "properties.advanced.chartConfigOverride.button.apply": "Apply", + "properties.advanced.chartConfigOverride.button.cancel": "Cancel" } diff --git a/libs/sdk-ui-ext/src/internal/translations/en-GB.json b/libs/sdk-ui-ext/src/internal/translations/en-GB.json index deaeb7cc65c..009f736a3f1 100644 --- a/libs/sdk-ui-ext/src/internal/translations/en-GB.json +++ b/libs/sdk-ui-ext/src/internal/translations/en-GB.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alert", "properties.interactions.alerts.tooltip": "Enable users to create alerts for this visualisation on dashboards.", "properties.interactions.scheduledExports": "Scheduled exports", - "properties.interactions.scheduledExports.tooltip": "Enable users to create scheduled exports for this visualisation on dashboards." + "properties.interactions.scheduledExports.tooltip": "Enable users to create scheduled exports for this visualisation on dashboards.", + "properties.advanced.title": "Advanced customisations", + "properties.advanced.chartConfigOverride.noValueLabel": "No customisations yet.", + "properties.advanced.chartConfigOverride.link": "Find out more", + "properties.advanced.chartConfigOverride.editorButton": "Open editor", + "properties.advanced.chartConfigOverride.title": "Advanced customisation", + "properties.advanced.chartConfigOverride.snippets.header": "Snippets", + "properties.advanced.chartConfigOverride.button.apply": "Apply", + "properties.advanced.chartConfigOverride.button.cancel": "Cancel" } diff --git a/libs/sdk-ui-ext/src/internal/translations/en-US.json b/libs/sdk-ui-ext/src/internal/translations/en-US.json index c0f362ece49..7e38e4f24fc 100644 --- a/libs/sdk-ui-ext/src/internal/translations/en-US.json +++ b/libs/sdk-ui-ext/src/internal/translations/en-US.json @@ -2007,5 +2007,85 @@ "value": "Versus", "comment": "Means comparison of two values - for example '100 (this week) VERSUS 10 (last week)'.", "limit": 0 + }, + "gs.date.yesterday": { + "value": "Yesterday", + "comment": "", + "limit": 0 + }, + "notifications.panel.tab.unread": { + "value": "Unread ({count})", + "comment": "", + "limit": 0 + }, + "notifications.panel.tab.all": { + "value": "All", + "comment": "", + "limit": 0 + }, + "notifications.panel.markAllAsRead": { + "value": "Mark all as read", + "comment": "", + "limit": 0 + }, + "notifications.panel.error.loading": { + "value": "Error loading notifications", + "comment": "", + "limit": 0 + }, + "notifications.panel.empty.all": { + "value": "No notifications", + "comment": "", + "limit": 0 + }, + "notifications.panel.empty.unread": { + "value": "No unread notifications", + "comment": "", + "limit": 0 + }, + "notifications.panel.unsupported.notification.type": { + "value": "Unsupported notification type", + "comment": "", + "limit": 0 + }, + "notifications.panel.markAsRead": { + "value": "Mark as read", + "comment": "", + "limit": 0 + }, + "notifications.filters.buttonLabel": { + "value": "Show filters", + "comment": "", + "limit": 0 + }, + "notifications.filters.dialog.title": { + "value": "Applied filters", + "comment": "", + "limit": 0 + }, + "notifications.filters.dialog.dateRange": { + "value": "Date Range", + "comment": "", + "limit": 0 + }, + "notifications.panel.triggers.title": { + "value": "for {triggeredCount}/{totalCount} items", + "comment": "", + "limit": 0 + }, + "notifications.panel.triggers.dialog.newValue": { + "value": "New value", + "comment": "", + "limit": 0 + }, + "close": { + "value": "Close", + "comment": "Label of a button for closing a dialog window", + "limit": 0 + }, + "notifications.panel.triggers.dialog.title": { + "value": "Triggered for", + "comment": "", + "limit": 0 } } diff --git a/libs/sdk-ui-ext/src/internal/translations/es-419.json b/libs/sdk-ui-ext/src/internal/translations/es-419.json index bcbc44664e3..9ae79e4a831 100644 --- a/libs/sdk-ui-ext/src/internal/translations/es-419.json +++ b/libs/sdk-ui-ext/src/internal/translations/es-419.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerta", "properties.interactions.alerts.tooltip": "Permitir a los usuarios crear alertas para esta visualización en los paneles de control.", "properties.interactions.scheduledExports": "Exportaciones programadas", - "properties.interactions.scheduledExports.tooltip": "Permitir a los usuarios crear exportaciones programadas para esta visualización en lospaneles de control.." + "properties.interactions.scheduledExports.tooltip": "Permitir a los usuarios crear exportaciones programadas para esta visualización en lospaneles de control..", + "properties.advanced.title": "Personalizaciones avanzadas", + "properties.advanced.chartConfigOverride.noValueLabel": "Todavía no hay personalizaciones.", + "properties.advanced.chartConfigOverride.link": "Más información", + "properties.advanced.chartConfigOverride.editorButton": "Abrir editor", + "properties.advanced.chartConfigOverride.title": "Personalización avanzada", + "properties.advanced.chartConfigOverride.snippets.header": "Fragmentos", + "properties.advanced.chartConfigOverride.button.apply": "Aplicar", + "properties.advanced.chartConfigOverride.button.cancel": "Cancelar" } diff --git a/libs/sdk-ui-ext/src/internal/translations/es-ES.json b/libs/sdk-ui-ext/src/internal/translations/es-ES.json index 64be0dc79bb..407027dd980 100644 --- a/libs/sdk-ui-ext/src/internal/translations/es-ES.json +++ b/libs/sdk-ui-ext/src/internal/translations/es-ES.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerta", "properties.interactions.alerts.tooltip": "Permitir a los usuarios crear alertas para esta visualización en los cuadros de mando.", "properties.interactions.scheduledExports": "Exportaciones programadas", - "properties.interactions.scheduledExports.tooltip": "Permitir a los usuarios crear exportaciones programadas para esta visualización en los cuadros de mando." + "properties.interactions.scheduledExports.tooltip": "Permitir a los usuarios crear exportaciones programadas para esta visualización en los cuadros de mando.", + "properties.advanced.title": "Personalizaciones avanzadas", + "properties.advanced.chartConfigOverride.noValueLabel": "Aún no hay personalizaciones", + "properties.advanced.chartConfigOverride.link": "Más información", + "properties.advanced.chartConfigOverride.editorButton": "Abrir editor", + "properties.advanced.chartConfigOverride.title": "Personalización avanzada", + "properties.advanced.chartConfigOverride.snippets.header": "Fragmentos", + "properties.advanced.chartConfigOverride.button.apply": "Aplicar", + "properties.advanced.chartConfigOverride.button.cancel": "Cancelar" } diff --git a/libs/sdk-ui-ext/src/internal/translations/fi-FI.json b/libs/sdk-ui-ext/src/internal/translations/fi-FI.json index dd55f6f497a..d3ed7e91f8a 100644 --- a/libs/sdk-ui-ext/src/internal/translations/fi-FI.json +++ b/libs/sdk-ui-ext/src/internal/translations/fi-FI.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Hälytys", "properties.interactions.alerts.tooltip": "Salli käyttäjien luoda ilmoituksia tälle visualisoinnille dashboardeilla.", "properties.interactions.scheduledExports": "Aikataulutetut viennit", - "properties.interactions.scheduledExports.tooltip": "Salli käyttäjien luoda ajoitetut viennit tälle visualisoinnille dashboardeissa." + "properties.interactions.scheduledExports.tooltip": "Salli käyttäjien luoda ajoitetut viennit tälle visualisoinnille dashboardeissa.", + "properties.advanced.title": "Edistyneet mukautukset", + "properties.advanced.chartConfigOverride.noValueLabel": "Ei vielä mukautuksia.", + "properties.advanced.chartConfigOverride.link": "Lue lisää", + "properties.advanced.chartConfigOverride.editorButton": "Avaa editori", + "properties.advanced.chartConfigOverride.title": "Edistynyt mukautus", + "properties.advanced.chartConfigOverride.snippets.header": "Katkelmat", + "properties.advanced.chartConfigOverride.button.apply": "Käytä", + "properties.advanced.chartConfigOverride.button.cancel": "Peruuta" } diff --git a/libs/sdk-ui-ext/src/internal/translations/fr-CA.json b/libs/sdk-ui-ext/src/internal/translations/fr-CA.json index d0348cf95b8..307b11e4330 100644 --- a/libs/sdk-ui-ext/src/internal/translations/fr-CA.json +++ b/libs/sdk-ui-ext/src/internal/translations/fr-CA.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerte", "properties.interactions.alerts.tooltip": "Permettre aux utilisateurs de créer des alertes pour cette visualisation dans les tableaux de bord.", "properties.interactions.scheduledExports": "Exportations programmées", - "properties.interactions.scheduledExports.tooltip": "Permet aux utilisateurs de créer des exportations programmées pour cette visualisation dans les tableaux de bord." + "properties.interactions.scheduledExports.tooltip": "Permet aux utilisateurs de créer des exportations programmées pour cette visualisation dans les tableaux de bord.", + "properties.advanced.title": "Personnalisations avancées", + "properties.advanced.chartConfigOverride.noValueLabel": "Toujours pas de personnalisation.", + "properties.advanced.chartConfigOverride.link": "En savoir plus", + "properties.advanced.chartConfigOverride.editorButton": "Ouvrir l’éditeur", + "properties.advanced.chartConfigOverride.title": "Personnalisation avancée", + "properties.advanced.chartConfigOverride.snippets.header": "Fragments", + "properties.advanced.chartConfigOverride.button.apply": "Appliquer", + "properties.advanced.chartConfigOverride.button.cancel": "Annuler" } diff --git a/libs/sdk-ui-ext/src/internal/translations/fr-FR.json b/libs/sdk-ui-ext/src/internal/translations/fr-FR.json index 657182ca8f2..212257deac0 100644 --- a/libs/sdk-ui-ext/src/internal/translations/fr-FR.json +++ b/libs/sdk-ui-ext/src/internal/translations/fr-FR.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerte", "properties.interactions.alerts.tooltip": "Permet aux utilisateurs de créer des alertes pour cette visualisation dans les tableaux de bord.", "properties.interactions.scheduledExports": "Exportations programmées", - "properties.interactions.scheduledExports.tooltip": "Permet aux utilisateurs de créer des exportations programmées pour cette visualisation dans les tableaux de bord." + "properties.interactions.scheduledExports.tooltip": "Permet aux utilisateurs de créer des exportations programmées pour cette visualisation dans les tableaux de bord.", + "properties.advanced.title": "Personnalisations avancées", + "properties.advanced.chartConfigOverride.noValueLabel": "Pas encore de personnalisation.", + "properties.advanced.chartConfigOverride.link": "En savoir plus", + "properties.advanced.chartConfigOverride.editorButton": "Ouvrir l'éditeur", + "properties.advanced.chartConfigOverride.title": "Personnalisation avancée", + "properties.advanced.chartConfigOverride.snippets.header": "Snippets", + "properties.advanced.chartConfigOverride.button.apply": "Appliquer", + "properties.advanced.chartConfigOverride.button.cancel": "Annuler" } diff --git a/libs/sdk-ui-ext/src/internal/translations/it-IT.json b/libs/sdk-ui-ext/src/internal/translations/it-IT.json index 454f2c712bb..b1d1c8dceff 100644 --- a/libs/sdk-ui-ext/src/internal/translations/it-IT.json +++ b/libs/sdk-ui-ext/src/internal/translations/it-IT.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Avviso", "properties.interactions.alerts.tooltip": "Consente agli utenti di creare avvisi per questa visualizzazione sui dashboard.", "properties.interactions.scheduledExports": "Esportazioni programmate", - "properties.interactions.scheduledExports.tooltip": "Consente agli utenti di creare esportazioni programmate per questa visualizzazione sui dashboard." + "properties.interactions.scheduledExports.tooltip": "Consente agli utenti di creare esportazioni programmate per questa visualizzazione sui dashboard.", + "properties.advanced.title": "Personalizzazioni avanzate", + "properties.advanced.chartConfigOverride.noValueLabel": "Non ci sono ancora personalizzazioni.", + "properties.advanced.chartConfigOverride.link": "Maggiori informazioni", + "properties.advanced.chartConfigOverride.editorButton": "Aprire l'editor", + "properties.advanced.chartConfigOverride.title": "Personalizzazione avanzata", + "properties.advanced.chartConfigOverride.snippets.header": "Snippet", + "properties.advanced.chartConfigOverride.button.apply": "Applica", + "properties.advanced.chartConfigOverride.button.cancel": "Annulla" } diff --git a/libs/sdk-ui-ext/src/internal/translations/ja-JP.json b/libs/sdk-ui-ext/src/internal/translations/ja-JP.json index e01c1726f10..7f071497884 100644 --- a/libs/sdk-ui-ext/src/internal/translations/ja-JP.json +++ b/libs/sdk-ui-ext/src/internal/translations/ja-JP.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "アラート", "properties.interactions.alerts.tooltip": "ユーザーがダッシュボード上でこのビジュアライゼーションのためのアラートを作成できます。", "properties.interactions.scheduledExports": "エクスポート予定", - "properties.interactions.scheduledExports.tooltip": "ユーザーがダッシュボード上でこのビジュアライゼーションのためのエクスポート予定を作成できます。" + "properties.interactions.scheduledExports.tooltip": "ユーザーがダッシュボード上でこのビジュアライゼーションのためのエクスポート予定を作成できます。", + "properties.advanced.title": "高度なカスタマイズ", + "properties.advanced.chartConfigOverride.noValueLabel": "カスタマイズはまだありません。", + "properties.advanced.chartConfigOverride.link": "詳細", + "properties.advanced.chartConfigOverride.editorButton": "エディタを開く", + "properties.advanced.chartConfigOverride.title": "高度なカスタマイズ", + "properties.advanced.chartConfigOverride.snippets.header": "抜粋", + "properties.advanced.chartConfigOverride.button.apply": "適用", + "properties.advanced.chartConfigOverride.button.cancel": "キャンセル" } diff --git a/libs/sdk-ui-ext/src/internal/translations/nl-NL.json b/libs/sdk-ui-ext/src/internal/translations/nl-NL.json index e8b250b2d16..5dcf429809d 100644 --- a/libs/sdk-ui-ext/src/internal/translations/nl-NL.json +++ b/libs/sdk-ui-ext/src/internal/translations/nl-NL.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Waarschuwing", "properties.interactions.alerts.tooltip": "Stel gebruikers in staat om waarschuwingen te maken voor deze visualisatie op dashboards.", "properties.interactions.scheduledExports": "Geplande export", - "properties.interactions.scheduledExports.tooltip": "Stel gebruikers in staat om geplande exports te maken voor deze visualisatie op dashboards." + "properties.interactions.scheduledExports.tooltip": "Stel gebruikers in staat om geplande exports te maken voor deze visualisatie op dashboards.", + "properties.advanced.title": "Geavanceerde aanpassingen", + "properties.advanced.chartConfigOverride.noValueLabel": "Nog geen aanpassingen.", + "properties.advanced.chartConfigOverride.link": "Meer informatie", + "properties.advanced.chartConfigOverride.editorButton": "Editor openen", + "properties.advanced.chartConfigOverride.title": "Geavanceerde aanpassing", + "properties.advanced.chartConfigOverride.snippets.header": "Fragmenten ", + "properties.advanced.chartConfigOverride.button.apply": "Toepassen", + "properties.advanced.chartConfigOverride.button.cancel": "Annuleren" } diff --git a/libs/sdk-ui-ext/src/internal/translations/pt-BR.json b/libs/sdk-ui-ext/src/internal/translations/pt-BR.json index e075b2f60b4..3cba4ea0a93 100644 --- a/libs/sdk-ui-ext/src/internal/translations/pt-BR.json +++ b/libs/sdk-ui-ext/src/internal/translations/pt-BR.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerta", "properties.interactions.alerts.tooltip": "Permita que os usuários criem alertas para esta visualização em painéis.", "properties.interactions.scheduledExports": "Exportações agendadas", - "properties.interactions.scheduledExports.tooltip": "Permita que os usuários criem exportações agendadas para esta visualização em painéis." + "properties.interactions.scheduledExports.tooltip": "Permita que os usuários criem exportações agendadas para esta visualização em painéis.", + "properties.advanced.title": "Personalizações avançadas", + "properties.advanced.chartConfigOverride.noValueLabel": "Ainda não há personalizações.", + "properties.advanced.chartConfigOverride.link": "Saber mais", + "properties.advanced.chartConfigOverride.editorButton": "Abrir editor", + "properties.advanced.chartConfigOverride.title": "Personalização avançada", + "properties.advanced.chartConfigOverride.snippets.header": "Trechos", + "properties.advanced.chartConfigOverride.button.apply": "Aplicar", + "properties.advanced.chartConfigOverride.button.cancel": "Cancelar" } diff --git a/libs/sdk-ui-ext/src/internal/translations/pt-PT.json b/libs/sdk-ui-ext/src/internal/translations/pt-PT.json index e16b08e2951..fdce16912d4 100644 --- a/libs/sdk-ui-ext/src/internal/translations/pt-PT.json +++ b/libs/sdk-ui-ext/src/internal/translations/pt-PT.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "Alerta", "properties.interactions.alerts.tooltip": "Permitir que os utilizadores criem alertas para esta visualização nos painéis.", "properties.interactions.scheduledExports": "Exportações agendadas", - "properties.interactions.scheduledExports.tooltip": "Permitir que os utilizadores criem exportações agendadas para esta visualização em painéis." + "properties.interactions.scheduledExports.tooltip": "Permitir que os utilizadores criem exportações agendadas para esta visualização em painéis.", + "properties.advanced.title": "Personalizações avançadas", + "properties.advanced.chartConfigOverride.noValueLabel": "Ainda não há personalizações.", + "properties.advanced.chartConfigOverride.link": "Saber mais", + "properties.advanced.chartConfigOverride.editorButton": "Abrir editor", + "properties.advanced.chartConfigOverride.title": "Personalização avançada", + "properties.advanced.chartConfigOverride.snippets.header": "Fragmentos", + "properties.advanced.chartConfigOverride.button.apply": "Aplicar", + "properties.advanced.chartConfigOverride.button.cancel": "Cancelar" } diff --git a/libs/sdk-ui-ext/src/internal/translations/zh-HK.json b/libs/sdk-ui-ext/src/internal/translations/zh-HK.json index 35e7442256a..17958d49677 100644 --- a/libs/sdk-ui-ext/src/internal/translations/zh-HK.json +++ b/libs/sdk-ui-ext/src/internal/translations/zh-HK.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "警報", "properties.interactions.alerts.tooltip": "使用戶能夠喺儀錶板上為此可視化創建警報。", "properties.interactions.scheduledExports": "計劃導出", - "properties.interactions.scheduledExports.tooltip": "使用戶能夠喺功能板上為此可視化創建計劃導出。" + "properties.interactions.scheduledExports.tooltip": "使用戶能夠喺功能板上為此可視化創建計劃導出。", + "properties.advanced.title": "高級自定義", + "properties.advanced.chartConfigOverride.noValueLabel": "尚無自定義。", + "properties.advanced.chartConfigOverride.link": "瞭解更多信息", + "properties.advanced.chartConfigOverride.editorButton": "打開編輯器", + "properties.advanced.chartConfigOverride.title": "高級定製", + "properties.advanced.chartConfigOverride.snippets.header": "片段", + "properties.advanced.chartConfigOverride.button.apply": "應用", + "properties.advanced.chartConfigOverride.button.cancel": "取消" } diff --git a/libs/sdk-ui-ext/src/internal/translations/zh-Hans.json b/libs/sdk-ui-ext/src/internal/translations/zh-Hans.json index 1d7fb287f6c..3778bd3863f 100644 --- a/libs/sdk-ui-ext/src/internal/translations/zh-Hans.json +++ b/libs/sdk-ui-ext/src/internal/translations/zh-Hans.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "警报", "properties.interactions.alerts.tooltip": "允许用户在仪表板上为此可视化创建警报。", "properties.interactions.scheduledExports": "已计划的导出", - "properties.interactions.scheduledExports.tooltip": "允许用户在仪表板上为此可视化创建计划导出。" + "properties.interactions.scheduledExports.tooltip": "允许用户在仪表板上为此可视化创建计划导出。", + "properties.advanced.title": "高级自定义", + "properties.advanced.chartConfigOverride.noValueLabel": "尚无任何定制。", + "properties.advanced.chartConfigOverride.link": "了解更多", + "properties.advanced.chartConfigOverride.editorButton": "打开编辑器", + "properties.advanced.chartConfigOverride.title": "高级定制", + "properties.advanced.chartConfigOverride.snippets.header": "片段", + "properties.advanced.chartConfigOverride.button.apply": "应用", + "properties.advanced.chartConfigOverride.button.cancel": "取消" } diff --git a/libs/sdk-ui-ext/src/internal/translations/zh-Hant.json b/libs/sdk-ui-ext/src/internal/translations/zh-Hant.json index 56b56842bd2..0cea1e14dd4 100644 --- a/libs/sdk-ui-ext/src/internal/translations/zh-Hant.json +++ b/libs/sdk-ui-ext/src/internal/translations/zh-Hant.json @@ -363,5 +363,13 @@ "properties.interactions.alerts": "警報", "properties.interactions.alerts.tooltip": "使用戶能夠在儀表板上為此視覺化建立警報。", "properties.interactions.scheduledExports": "預定出口", - "properties.interactions.scheduledExports.tooltip": "使用戶能夠在儀表板上為此視覺化建立計劃匯出。" + "properties.interactions.scheduledExports.tooltip": "使用戶能夠在儀表板上為此視覺化建立計劃匯出。", + "properties.advanced.title": "高級訂製", + "properties.advanced.chartConfigOverride.noValueLabel": "還沒有訂製。", + "properties.advanced.chartConfigOverride.link": "了解更多", + "properties.advanced.chartConfigOverride.editorButton": "開啟編輯器", + "properties.advanced.chartConfigOverride.title": "高級訂製", + "properties.advanced.chartConfigOverride.snippets.header": "片段", + "properties.advanced.chartConfigOverride.button.apply": "申請", + "properties.advanced.chartConfigOverride.button.cancel": "取消" } diff --git a/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/OrganizationContext.tsx b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/OrganizationContext.tsx new file mode 100644 index 00000000000..07ce22bed99 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/OrganizationContext.tsx @@ -0,0 +1,34 @@ +// (C) 2019-2024 GoodData Corporation +import React from "react"; +import { IAnalyticalBackend, IOrganization } from "@gooddata/sdk-backend-spi"; +import { useFetchOrganization } from "./useFetchOrganization.js"; +import { GoodDataSdkError, UnexpectedSdkError, UseCancelablePromiseState } from "@gooddata/sdk-ui"; + +export type IOrganizationContext = UseCancelablePromiseState; + +const OrganizationContext = React.createContext(null); +OrganizationContext.displayName = "OrganizationContext"; + +export const useOrganization = () => { + const organization = React.useContext(OrganizationContext); + if (!organization) { + throw new UnexpectedSdkError("useOrganization must be used within a OrganizationProvider"); + } + return organization; +}; + +export interface IOrganizationProviderProps { + backend?: IAnalyticalBackend; + organizationId?: string; + children?: React.ReactNode; +} + +export const OrganizationProvider: React.FC = ({ + children, + backend, + organizationId, +}) => { + const organization = useFetchOrganization({ backend, organizationId }); + + return {children}; +}; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts new file mode 100644 index 00000000000..da339dc66c6 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts @@ -0,0 +1,38 @@ +// (C) 2024 GoodData Corporation +import { IAnalyticalBackend, IOrganization } from "@gooddata/sdk-backend-spi"; +import { GoodDataSdkError, useBackendStrict, useCancelablePromise } from "@gooddata/sdk-ui"; + +/** + * @alpha + */ +export interface IUseFetchOrganizationProps { + /** + * Analytical backend instance to use. + * If not provided, it will be taken from the BackendProvider context. + */ + backend?: IAnalyticalBackend; + + /** + * Organization ID to use. + * If not provided, the current organization will be used. + */ + organizationId?: string; +} + +/** + * @alpha + */ +export function useFetchOrganization({ backend, organizationId }: IUseFetchOrganizationProps) { + const effectiveBackend = useBackendStrict(backend, "useOrganization"); + + return useCancelablePromise( + { + promise: () => { + return organizationId + ? Promise.resolve(effectiveBackend.organization(organizationId)) + : effectiveBackend.organizations().getCurrentOrganization(); + }, + }, + [effectiveBackend, organizationId], + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx b/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx new file mode 100644 index 00000000000..9e15d7e9662 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx @@ -0,0 +1,129 @@ +// (C) 2024 GoodData Corporation +import React, { useCallback } from "react"; +import { IAlertDescription, IAlertNotification, INotification } from "@gooddata/sdk-model"; +import { getDateTimeConfig, IDateConfig, UiIcon } from "@gooddata/sdk-ui-kit"; +import { bem } from "../bem.js"; +import { Tooltip } from "../components/Tooltip.js"; +// import { NotificationFiltersDetail } from "../NotificationFiltersDetail/NotificationFiltersDetail.js"; +import { NotificationTriggerDetail } from "../NotificationTriggersDetail/NotificationTriggersDetail.js"; +import { defineMessages, FormattedDate, FormattedMessage, FormattedTime, useIntl } from "react-intl"; + +/** + * @internal + */ +export interface IAlertNotificationsProps { + notification: IAlertNotification; + markAsRead: (id: string) => void; + onNotificationClick: (notification: IAlertNotification) => void; +} + +const { b, e } = bem("gd-ui-ext-notification"); + +/** + * @internal + */ +export function AlertNotification({ + notification, + markAsRead, + onNotificationClick, +}: IAlertNotificationsProps) { + const intl = useIntl(); + + const onMarkAsReadClick = (e: React.MouseEvent) => { + e.stopPropagation(); + markAsRead(notification.id); + }; + + const clickNotification = useCallback( + (event: React.MouseEvent) => { + const target = event.target; + const targetIsElement = target instanceof Element; + const isNotificationsDetailsLink = + targetIsElement && target.closest(`[data-id="notification-detail"]`); + if (isNotificationsDetailsLink) { + return; + } + onNotificationClick(notification); + }, + [onNotificationClick, notification], + ); + + // Hide filters for now, as there is lot of unresolved cases to consider + // const filterCount = notification.details.data.alert.filterCount; + // const isSliced = notification.details.data.alert.attribute; + // const showSeparator = filterCount && filterCount > 0 && isSliced; + const notificationTitle = getNotificationTitle(notification); + + return ( +
+
+ {!notification.isRead &&
} + +
+
+
+ {notificationTitle} +
+
+ {/* + {showSeparator ? "・" : null} */} + +
+
+
+ +
+
+ + + + + +
+
+ ); +} + +function getNotificationTitle(notification: INotification) { + if (notification.notificationType === "alertNotification") { + return getAlertNotificationTitle(notification.details.data.alert); + } else if (notification.notificationType === "scheduleNotification") { + return notification.details.data.automation.title; + } + + return notification.details.message; +} + +function getAlertNotificationTitle(alertDescription: IAlertDescription) { + const metric = alertDescription.metric; + const condition = alertDescription.condition; + const formattedThreshold = alertDescription.formattedThreshold; + + // TODO: translate (backend is currently returning English, should return translation strings) + return `${metric} is ${condition} ${formattedThreshold}`; +} + +const NotificationTime = ({ config }: { config: IDateConfig }) => { + if (config.isToday) { + return ; + } else if (config.isYesterday) { + return ( + + + + ); + } + + return ; +}; + +const messages = defineMessages({ + markAsRead: { + id: "notifications.panel.markAsRead", + }, +}); diff --git a/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.scss b/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.scss new file mode 100644 index 00000000000..27bbdc80edc --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.scss @@ -0,0 +1,134 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notification { + $root: &; + + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; + + border-radius: 3px; + border: 1px solid var(--gd-palette-complementary-3); + + padding: 10px; + height: 52px; + gap: 10px; + + font-size: 12px; + line-height: 14px; + + cursor: pointer; + + transition: var(--gd-transition-all); + + &:hover { + &:not(#{$root}--isUnsupported) { + background: var(--gd-palette-complementary-2); + } + + &:not(#{$root}--isRead) { + #{$root}__mark-as-read-button { + display: flex; + } + + #{$root}__time { + display: none; + } + } + } + + &__unsupported { + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 1; + + width: 100%; + height: 100%; + cursor: default; + } + + &__icon { + width: 27px; + height: 27px; + border-radius: 51%; + + background-color: var(--gd-palette-complementary-2); + + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + + position: relative; + } + + &__unread-status { + width: 7px; + height: 7px; + border-radius: 51%; + background-color: var(--gd-palette-primary-base); + position: absolute; + top: 0; + right: 0; + border: 1.4px solid var(--gd-palette-complementary-0); + box-sizing: content-box; + } + + &__details { + display: flex; + flex-direction: column; + justify-content: space-between; + flex-shrink: 1; + + width: 100%; + height: 100%; + + overflow: hidden; + } + + &__title { + font-weight: 600; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + color: var(--gd-palette-complementary-8); + flex-shrink: 0; + + &--isRead { + font-weight: 400; + } + } + + &__time { + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + + font-size: 12px; + font-style: normal; + font-weight: 400; + line-height: normal; + + height: 100%; + color: var(--gd-palette-complementary-7); + + flex-shrink: 0; + } + + &__mark-as-read-button { + display: none; + align-items: flex-start; + justify-content: flex-start; + + height: 100%; + } + + &__links { + display: flex; + flex-direction: row; + align-items: center; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.tsx b/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.tsx new file mode 100644 index 00000000000..07311083281 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.tsx @@ -0,0 +1,54 @@ +// (C) 2024 GoodData Corporation +import React from "react"; +import { INotification } from "@gooddata/sdk-model"; +import { bem } from "../bem.js"; +import { defineMessages, FormattedMessage } from "react-intl"; +import { AlertNotification } from "./AlertNotification.js"; + +/** + * @alpha + */ +export interface INotificationComponentProps { + notification: INotification; + markAsRead: (id: string) => void; + onNotificationClick: (notification: INotification) => void; +} + +const { b, e } = bem("gd-ui-ext-notification"); + +/** + * @internal + */ +export function DefaultNotification({ + notification, + markAsRead, + onNotificationClick, +}: INotificationComponentProps) { + if (notification.notificationType !== "alertNotification") { + return ; + } + + return ( + + ); +} + +function UnsupportedNotificationType() { + return ( +
+
+ +
+
+ ); +} + +const messages = defineMessages({ + unsupportedNotificationType: { + id: "notifications.panel.unsupported.notification.type", + }, +}); diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx new file mode 100644 index 00000000000..9cf0e0cb29e --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx @@ -0,0 +1,74 @@ +// (C) 2024 GoodData Corporation +import { alignConfigToAlignPoint, Overlay, UiButton } from "@gooddata/sdk-ui-kit"; +import React, { useRef, useState } from "react"; +import { IAlertNotification } from "@gooddata/sdk-model"; +import { NotificationFiltersDetailDialog } from "./NotificationFiltersDetailDialog.js"; +import { defineMessages, useIntl } from "react-intl"; + +const ALIGN_POINTS = [ + alignConfigToAlignPoint({ + triggerAlignPoint: "bottom-right", + overlayAlignPoint: "top-right", + offset: { x: 2, y: 3 }, + }), +]; + +/** + * @internal + */ +export interface INotificationFiltersDetailProps { + notification: IAlertNotification; +} + +const messages = defineMessages({ + buttonLabel: { + id: "notifications.filters.buttonLabel", + }, +}); + +/** + * @internal + */ +export function NotificationFiltersDetail({ notification }: INotificationFiltersDetailProps) { + const [isFiltersDialogOpen, setIsFiltersDialogOpen] = useState(false); + const intl = useIntl(); + const ref = useRef(null); + const filterCount = notification.details.data.alert.filterCount; + const closeFiltersDialog = () => setIsFiltersDialogOpen(false); + const toggleFiltersDialog = () => setIsFiltersDialogOpen((x) => !x); + const onButtonClick = (e: React.MouseEvent) => { + e.stopPropagation(); + toggleFiltersDialog(); + }; + + return ( + <> + {filterCount && filterCount > 0 ? ( + + ) : null} + {isFiltersDialogOpen ? ( + + + + ) : null} + + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.scss new file mode 100644 index 00000000000..9324b30824b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.scss @@ -0,0 +1,29 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notification-filters-detail-dialog { + padding: 5px 0; + gap: 10px; + display: flex; + flex-direction: column; + + &__item { + display: flex; + flex-direction: column; + } + + &__values { + color: var(--gd-palette-complementary-8); + + font-size: 12px; + font-weight: 700; + line-height: normal; + } + + &__label { + color: var(--gd-palette-complementary-7); + + font-size: 12px; + font-weight: 400; + line-height: normal; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx new file mode 100644 index 00000000000..489d0be1598 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx @@ -0,0 +1,57 @@ +// (C) 2024 GoodData Corporation +import { IAlertNotification } from "@gooddata/sdk-model"; +import React from "react"; +import { UiSkeleton } from "@gooddata/sdk-ui-kit"; +import { DetailsDialog } from "../components/DetailsDialog.js"; +import { useNotificationsFilterDetail } from "../data/useNotificationFiltersDetail.js"; +import { bem } from "../bem.js"; +import { defineMessages, useIntl } from "react-intl"; + +const { b, e } = bem("gd-ui-ext-notification-filters-detail-dialog"); + +const messages = defineMessages({ + title: { + id: "notifications.filters.dialog.title", + }, +}); + +/** + * @internal + */ +export interface INotificationFiltersDetailDialogProps { + notification: IAlertNotification; + onClose: () => void; +} + +/** + * @internal + */ +export function NotificationFiltersDetailDialog({ + notification, + onClose, +}: INotificationFiltersDetailDialogProps) { + const intl = useIntl(); + const { filtersInfo, automationPromise } = useNotificationsFilterDetail(notification); + const filtersCount = notification.details.data.alert.filterCount ?? 0; + + return ( + + {automationPromise.status !== "success" ? ( + + ) : ( + filtersInfo?.map(({ title, subtitle }, idx) => ( +
+
{title}
+
{subtitle}
+
+ )) + )} +
+ } + onClose={onClose} + /> + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx new file mode 100644 index 00000000000..6b2af629621 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx @@ -0,0 +1,81 @@ +// (C) 2024 GoodData Corporation +import { IAlertDescription, IAlertNotification } from "@gooddata/sdk-model"; +import { alignConfigToAlignPoint, Overlay, UiButton } from "@gooddata/sdk-ui-kit"; +import React, { useRef, useState } from "react"; +import { NotificationTriggersDetailDialog } from "./NotificationTriggersDetailDialog.js"; +import { defineMessages, IntlShape, useIntl } from "react-intl"; + +const ALIGN_POINTS = [ + alignConfigToAlignPoint({ + triggerAlignPoint: "bottom-right", + overlayAlignPoint: "top-right", + offset: { x: 2, y: 3 }, + }), + alignConfigToAlignPoint({ + triggerAlignPoint: "bottom-left", + overlayAlignPoint: "top-left", + offset: { x: 2, y: 3 }, + }), +]; + +const messages = defineMessages({ + triggersTitle: { + id: "notifications.panel.triggers.title", + }, +}); + +export interface INotificationTriggerDetailProps { + notification: IAlertNotification; +} + +/** + * @alpha + */ +export function NotificationTriggerDetail({ notification }: INotificationTriggerDetailProps) { + const [isTriggersDialogOpen, setIsTriggersDialogOpen] = useState(false); + const closeTriggersDialog = () => setIsTriggersDialogOpen(false); + const toggleTriggersDialog = () => setIsTriggersDialogOpen((x) => !x); + const intl = useIntl(); + const ref = useRef(null); + const isSliced = notification.details.data.alert.attribute; + const triggersTitle = isSliced ? getTriggersTitle(intl, notification.details.data.alert) : ""; + + return ( + <> + { + toggleTriggersDialog(); + }} + variant="tertiary" + size="small" + label={triggersTitle} + dataId="notification-detail" + /> + {isTriggersDialogOpen ? ( + + + + ) : null} + + ); +} + +function getTriggersTitle(intl: IntlShape, alertDescription: IAlertDescription) { + return intl.formatMessage(messages.triggersTitle, { + triggeredCount: alertDescription.triggeredCount, + totalCount: alertDescription.totalValueCount, + }); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.scss new file mode 100644 index 00000000000..57d766c8d6b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.scss @@ -0,0 +1,72 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notification-triggers-detail-dialog { + padding: 5px 0; + + &__header { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + } + + &__header-title { + color: var(--gd-palette-complementary-7); + + font-size: 12px; + font-style: normal; + font-weight: 400; + + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + + text-align: right; + + width: 50%; + } + + &__table { + display: flex; + flex-direction: row; + + color: var(--gd-palette-complementary-8); + + font-size: 12px; + font-style: normal; + font-weight: 700; + line-height: normal; + + text-align: right; + } + + &__values-labels, + &__values { + display: flex; + flex-direction: column; + + color: var(--gd-palette-complementary-8); + + font-size: 12px; + font-style: normal; + font-weight: 700; + line-height: normal; + + width: 50%; + + text-align: left; + } + + &__values-label { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + &__values-value { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + text-align: right; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.tsx new file mode 100644 index 00000000000..ff49f5e00a2 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.tsx @@ -0,0 +1,62 @@ +// (C) 2024 GoodData Corporation +import { IAlertNotification } from "@gooddata/sdk-model"; +import React from "react"; +import { DetailsDialog } from "../components/DetailsDialog.js"; +import { bem } from "../bem.js"; +import { useIntl, defineMessages } from "react-intl"; + +const { b, e } = bem("gd-ui-ext-notification-triggers-detail-dialog"); + +interface INotificationTriggersDetailDialogProps { + notification: IAlertNotification; + onClose: () => void; +} + +const messages = defineMessages({ + triggersTitle: { + id: "notifications.panel.triggers.dialog.title", + }, + newValue: { + id: "notifications.panel.triggers.dialog.newValue", + }, +}); + +/** + * @alpha + */ +export function NotificationTriggersDetailDialog({ + notification, + onClose, +}: INotificationTriggersDetailDialogProps) { + const intl = useIntl(); + return ( + +
+
{notification.details.data.alert!.metric}
+
{intl.formatMessage(messages.newValue)}
+
+
+
+ {notification.details.data.alert.currentValues?.map((item, i) => ( +
+ {item.labelValue} +
+ ))} +
+
+ {notification.details.data.alert.currentValues?.map((item, i) => ( +
+ {item.primaryMetric!.formattedValue} +
+ ))} +
+
+
+ } + onClose={onClose} + /> + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.scss new file mode 100644 index 00000000000..96c9e7708c8 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.scss @@ -0,0 +1,10 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-list { + overflow: hidden; + display: flex; + flex-direction: column; + min-height: 0; + max-height: 100%; + height: 100%; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.tsx new file mode 100644 index 00000000000..162b379f387 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.tsx @@ -0,0 +1,110 @@ +// (C) 2024 GoodData Corporation +import React, { useLayoutEffect, useRef, useState } from "react"; +import { GoodDataSdkError, UseCancelablePromiseStatus } from "@gooddata/sdk-ui"; +import { INotificationComponentProps } from "../Notification/DefaultNotification.js"; +import { bem } from "../bem.js"; +import { INotification } from "@gooddata/sdk-model"; +import { INotificationsPanelView } from "../types.js"; +import { PagedVirtualList } from "../components/VirtualList.js"; +import { + DefaultNotificationsListEmptyState, + INotificationsListEmptyStateComponentProps, +} from "./DefaultNotificationsListEmptyState.js"; +import { + DefaultNotificationsListErrorState, + INotificationsListErrorStateComponentProps, +} from "./DefaultNotificationsListErrorState.js"; + +const NOTIFICATION_ITEM_HEIGHT = 52; + +/** + * @alpha + */ +export interface INotificationsListComponentProps { + NotificationsListEmptyState: React.ComponentType; + NotificationsListErrorState: React.ComponentType; + Notification: React.ComponentType; + activeView: INotificationsPanelView; + status: UseCancelablePromiseStatus; + error?: GoodDataSdkError; + notifications?: INotification[]; + markNotificationAsRead: (notificationId: string) => Promise; + onNotificationClick: (notification: INotification) => void; + hasNextPage: boolean; + loadNextPage: () => void; +} + +const { b, e } = bem("gd-ui-ext-notifications-list"); + +/** + * @internal + */ +export function DefaultNotificationsList({ + Notification, + activeView, + status, + error, + notifications, + markNotificationAsRead, + onNotificationClick, + hasNextPage, + loadNextPage, +}: INotificationsListComponentProps) { + const isError = status === "error"; + const isEmpty = status === "success" && notifications?.length === 0; + const isLoading = status === "loading" || status === "pending"; + const isSuccess = status === "success" && (notifications?.length ?? 0) > 0; + + const containerRef = useRef(null); + const [availableHeight, setAvailableHeight] = useState(0); + + useLayoutEffect(() => { + const resizeObserver = new ResizeObserver((entries) => { + const [entry] = entries; + if (entry) { + setAvailableHeight(entry.contentRect.height); + } + }); + + if (containerRef.current) { + resizeObserver.observe(containerRef.current); + } + + return () => { + if (resizeObserver) { + resizeObserver.disconnect(); + setAvailableHeight(0); + } + }; + }, []); + + return ( +
+ {isError ? : null} + {isEmpty ? : null} + {isLoading || isSuccess ? ( + + {(notification) => ( +
+ +
+ )} +
+ ) : null} +
+ ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.scss new file mode 100644 index 00000000000..09b4d63bd18 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.scss @@ -0,0 +1,21 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-list-empty-state { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + align-self: stretch; + gap: 10px; + + min-height: 124px; + width: 100%; + + color: var(--gd-palette-complementary-6); + + text-overflow: ellipsis; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 20px; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.tsx new file mode 100644 index 00000000000..9bd5a8f2503 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.tsx @@ -0,0 +1,39 @@ +// (C) 2024 GoodData Corporation +import React from "react"; +import { bem } from "../bem.js"; +import { INotificationsPanelView } from "../types.js"; +import { defineMessages, useIntl } from "react-intl"; + +const { b } = bem("gd-ui-ext-notifications-list-empty-state"); + +/** + * @alpha + */ +export interface INotificationsListEmptyStateComponentProps { + activeView: INotificationsPanelView; +} + +const messages = defineMessages({ + emptyStateAll: { + id: "notifications.panel.empty.all", + }, + emptyStateUnread: { + id: "notifications.panel.empty.unread", + }, +}); + +/** + * @internal + */ +export function DefaultNotificationsListEmptyState({ + activeView, +}: INotificationsListEmptyStateComponentProps) { + const intl = useIntl(); + return ( +
+ {activeView === "all" + ? intl.formatMessage(messages.emptyStateAll) + : intl.formatMessage(messages.emptyStateUnread)} +
+ ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.scss new file mode 100644 index 00000000000..d8fce96f7c2 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.scss @@ -0,0 +1,21 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-list-error-state { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + align-self: stretch; + gap: 10px; + + min-height: 124px; + width: 100%; + + color: var(--gd-palette-error-base); + + text-overflow: ellipsis; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 20px; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.tsx new file mode 100644 index 00000000000..140667adedb --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.tsx @@ -0,0 +1,30 @@ +// (C) 2024 GoodData Corporation +import React from "react"; +import { bem } from "../bem.js"; +import { GoodDataSdkError } from "@gooddata/sdk-ui"; +import { defineMessages, useIntl } from "react-intl"; + +const { b } = bem("gd-ui-ext-notifications-list-error-state"); + +/** + * @alpha + */ +export interface INotificationsListErrorStateComponentProps { + error?: GoodDataSdkError; +} + +const messages = defineMessages({ + errorLoadingNotifications: { + id: "notifications.panel.error.loading", + }, +}); + +/** + * @internal + */ +export function DefaultNotificationsListErrorState({ error }: INotificationsListErrorStateComponentProps) { + const intl = useIntl(); + return ( +
{error?.message ?? intl.formatMessage(messages.errorLoadingNotifications)}
+ ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss new file mode 100644 index 00000000000..4262e06174e --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss @@ -0,0 +1,23 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-panel { + font-family: var(--gd-font-family); + background-color: var(--gd-palette-complementary-0); + + box-shadow: 0 2px 10px 0 var(--gd-shadow-color); + + display: flex; + flex-direction: column; + + padding-top: 10px; + + width: 100%; + height: 100%; + + overflow: hidden; +} + +.gd-ui-ext-notifications-panel-overlay { + width: 370px; + max-height: 560px; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.tsx new file mode 100644 index 00000000000..01eb85108ea --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.tsx @@ -0,0 +1,92 @@ +// (C) 2024 GoodData Corporation +import React from "react"; +import { GoodDataSdkError, UseCancelablePromiseStatus } from "@gooddata/sdk-ui"; +import { INotificationsPanelHeaderComponentProps } from "./DefaultNotificationsPanelHeader.js"; +import { bem } from "../bem.js"; +import { INotificationsListComponentProps } from "../NotificationsList/DefaultNotificationsList.js"; +import { INotification } from "@gooddata/sdk-model"; +import { INotificationsPanelView } from "../types.js"; +import { INotificationsListEmptyStateComponentProps } from "../NotificationsList/DefaultNotificationsListEmptyState.js"; +import { INotificationsListErrorStateComponentProps } from "../NotificationsList/DefaultNotificationsListErrorState.js"; +import { INotificationComponentProps } from "../Notification/DefaultNotification.js"; + +const { b } = bem("gd-ui-ext-notifications-panel"); + +/** + * @alpha + */ +export interface INotificationsPanelComponentProps { + NotificationsPanelHeader: React.ComponentType; + NotificationsList: React.ComponentType; + NotificationsListEmptyState: React.ComponentType; + NotificationsListErrorState: React.ComponentType; + Notification: React.ComponentType; + + toggleNotificationsPanel: () => void; + openNotificationsPanel: () => void; + closeNotificationsPanel: () => void; + + activeView: INotificationsPanelView; + changeActiveView: (view: INotificationsPanelView) => void; + + markNotificationAsRead: (notificationId: string) => Promise; + markAllNotificationsAsRead: () => Promise; + unreadNotificationsCount: number; + activeNotifications: INotification[]; + onNotificationClick: (notification: INotification) => void; + + status: UseCancelablePromiseStatus; + error?: GoodDataSdkError; + loadNextPage: () => void; + hasNextPage: boolean; +} + +/** + * @internal + */ +export function DefaultNotificationsPanel({ + NotificationsPanelHeader, + NotificationsList, + NotificationsListEmptyState, + NotificationsListErrorState, + Notification, + + activeView, + changeActiveView, + + markNotificationAsRead, + markAllNotificationsAsRead, + unreadNotificationsCount, + activeNotifications, + onNotificationClick, + + status, + error, + loadNextPage, + hasNextPage, +}: INotificationsPanelComponentProps) { + return ( +
+ 0} + unreadNotificationsCount={unreadNotificationsCount} + /> + +
+ ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss new file mode 100644 index 00000000000..37e6aa169c6 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss @@ -0,0 +1,31 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-panel-header { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + padding-left: 15px; + padding-right: 15px; + + width: 100%; + + &__tabs { + width: 100%; + height: 23px; + + display: flex; + flex-direction: column; + align-items: stretch; + justify-content: flex-end; + } + + &__mark-all-as-read-button { + display: flex; + align-items: center; + justify-content: center; + height: 23px; + white-space: nowrap; + border-bottom: 1px solid var(--gd-palette-complementary-3); + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.tsx new file mode 100644 index 00000000000..4ec7391bacb --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.tsx @@ -0,0 +1,98 @@ +// (C) 2024 GoodData Corporation +import React, { useCallback, useMemo } from "react"; +import { ITab, Tabs, UiButton } from "@gooddata/sdk-ui-kit"; +import { bem } from "../bem.js"; +import { INotificationsPanelView } from "../types.js"; +import { defineMessages, useIntl } from "react-intl"; + +/** + * @alpha + */ +export interface INotificationsPanelHeaderComponentProps { + /** + * The currently active view of the notifications panel. + */ + activeView: INotificationsPanelView; + + /** + * The callback to change the active view. + */ + changeActiveView: (view: INotificationsPanelView) => void; + + /** + * Indicates if there are unread notifications. + */ + hasUnreadNotifications: boolean; + + /** + * The number of unread notifications. + */ + unreadNotificationsCount: number; + + /** + * The callback to mark all notifications as read. + */ + markAllAsRead: () => void; +} + +const { b, e } = bem("gd-ui-ext-notifications-panel-header"); + +/** + * @internal + */ +export function DefaultNotificationsPanelHeader({ + activeView, + changeActiveView, + markAllAsRead, + hasUnreadNotifications, + unreadNotificationsCount, +}: INotificationsPanelHeaderComponentProps) { + const intl = useIntl(); + const tabs = useMemo(() => getTabs(unreadNotificationsCount), [unreadNotificationsCount]); + + const activeTabId = activeView === "unread" ? messages.tabUnread.id : messages.tabAll.id; + + const onTabSelect = useCallback( + (tab: ITab) => { + const targetView = tab.id === messages.tabUnread.id ? "unread" : "all"; + changeActiveView(targetView); + }, + [changeActiveView], + ); + + return ( +
+
+ +
+
+ +
+
+ ); +} + +function getTabs(unreadNotificationsCount: number = 0): ITab[] { + return [ + { id: messages.tabUnread.id, values: { count: unreadNotificationsCount } }, + { id: messages.tabAll.id }, + ]; +} + +const messages = defineMessages({ + tabUnread: { + id: "notifications.panel.tab.unread", + }, + tabAll: { + id: "notifications.panel.tab.all", + }, + markAllAsRead: { + id: "notifications.panel.markAllAsRead", + }, +}); diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.scss new file mode 100644 index 00000000000..aa1c52a11f6 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.scss @@ -0,0 +1,34 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-open-notifications-button { + color: inherit; + padding: 0 10px; + display: flex; + align-items: center; + justify-content: center; + + &:hover, + &--isOpen { + background: rgba(255, 255, 255, 0.3); + } + + &__icon { + opacity: 0.8; + display: flex; + align-items: center; + justify-content: center; + position: relative; + } + + &__unread-status { + width: 7px; + height: 7px; + border-radius: 51%; + background-color: var(--gd-palette-primary-base); + position: absolute; + top: -3px; + right: -4px; + z-index: 1; + box-sizing: content-box; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.tsx new file mode 100644 index 00000000000..03c02c81ab7 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.tsx @@ -0,0 +1,65 @@ +// (C) 2024 GoodData Corporation +import React, { RefObject } from "react"; +import cx from "classnames"; +import { UiIcon } from "@gooddata/sdk-ui-kit"; +import { bem } from "../bem.js"; + +const { b, e } = bem("gd-ui-ext-open-notifications-button"); + +/** + * @alpha + */ +export interface IOpenNotificationsPanelButtonComponentProps { + /** + * Ref to the button element - is required for proper alignment of the notification panel. + */ + buttonRef: RefObject; + + /** + * Opens the notification panel. + */ + openNotificationPanel: () => void; + + /** + * Closes the notification panel. + */ + closeNotificationPanel: () => void; + + /** + * Toggles the notification panel. + */ + toggleNotificationPanel: () => void; + + /** + * Indicates whether the notification panel is open. + */ + isNotificationPanelOpen: boolean; + + /** + * Indicates whether there are unread notifications. + */ + hasUnreadNotifications: boolean; +} + +/** + * @internal + */ +export function DefaultOpenNotificationsPanelButton({ + buttonRef, + isNotificationPanelOpen, + toggleNotificationPanel, + hasUnreadNotifications, +}: IOpenNotificationsPanelButtonComponentProps) { + return ( + + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx new file mode 100644 index 00000000000..2bc39bb8b7a --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx @@ -0,0 +1,322 @@ +// (C) 2024 GoodData Corporation +import { IAnalyticalBackend } from "@gooddata/sdk-backend-spi"; +import React, { useCallback, useMemo, useRef, useState } from "react"; +import { ILocale } from "@gooddata/sdk-ui"; +import { assertNever, INotification } from "@gooddata/sdk-model"; +import { NotificationsProvider, useNotificationsContext } from "../data/NotificationsContext.js"; +import { OrganizationProvider } from "../@staging/OrganizationContext/OrganizationContext.js"; +import { IntlWrapper } from "../localization/IntlWrapper.js"; +import { INotificationsPanelView } from "../types.js"; +import { + INotificationsPanelHeaderComponentProps, + DefaultNotificationsPanelHeader, +} from "./DefaultNotificationsPanelHeader.js"; +import { IOpenNotificationsPanelButtonComponentProps } from "./DefaultOpenNotificationsPanelButton.js"; +import { DefaultNotificationsPanel, INotificationsPanelComponentProps } from "./DefaultNotificationsPanel.js"; +import { Overlay, alignConfigToAlignPoint } from "@gooddata/sdk-ui-kit"; +import { + DefaultNotificationsList, + INotificationsListComponentProps, +} from "../NotificationsList/DefaultNotificationsList.js"; +import { + DefaultNotificationsListEmptyState, + INotificationsListEmptyStateComponentProps, +} from "../NotificationsList/DefaultNotificationsListEmptyState.js"; +import { + DefaultNotificationsListErrorState, + INotificationsListErrorStateComponentProps, +} from "../NotificationsList/DefaultNotificationsListErrorState.js"; +import { DefaultNotification, INotificationComponentProps } from "../Notification/DefaultNotification.js"; + +const ALIGN_POINTS = [ + alignConfigToAlignPoint({ triggerAlignPoint: "bottom-right", overlayAlignPoint: "top-right" }), +]; + +/** + * @alpha + */ +export interface INotificationsPanelCustomComponentsProps { + /** + * Custom open notifications panel button component. + */ + OpenNotificationsPanelButton: React.ComponentType; + + /** + * Custom notifications panel component. + */ + NotificationsPanel?: React.ComponentType; + + /** + * Custom notifications panel header component. + */ + NotificationsPanelHeader?: React.ComponentType; + + /** + * Custom notifications list component. + */ + NotificationsList?: React.ComponentType; + + /** + * Custom notifications list empty state component. + */ + NotificationsListEmptyState?: React.ComponentType; + + /** + * Custom notifications list error state component. + */ + NotificationsListErrorState?: React.ComponentType; + /** + * Custom notification component. + */ + Notification?: React.ComponentType; +} + +/** + * @alpha + */ +export interface INotificationsPanelProps extends INotificationsPanelCustomComponentsProps { + /** + * Backend to use. + */ + backend?: IAnalyticalBackend; + + /** + * Workspace ID to use. + */ + workspace?: string; + + /** + * Refresh interval in milliseconds. + * Default is 10 minutes. + * If set to 0, notifications will not be refreshed automatically. + */ + refreshInterval?: number; + + /** + * Locale to use. + */ + locale?: ILocale; + + /** + * Render notifications panel inline (without button + clicking on it). + */ + renderInline?: boolean; + + /** + * Handler for notification click. + */ + onNotificationClick: (notification: INotification) => void; +} + +/** + * 10 minutes in milliseconds. + */ +const TEN_MINUTES = 1000 * 60 * 10; + +/** + * @alpha + */ +export function NotificationsPanel(props: INotificationsPanelProps) { + const { locale, refreshInterval = TEN_MINUTES, backend, workspace } = props; + + return ( + + + + + + + + ); +} + +/** + * @internal + */ +function NotificationsPanelController({ + OpenNotificationsPanelButton, + NotificationsPanel = DefaultNotificationsPanel, + NotificationsPanelHeader = DefaultNotificationsPanelHeader, + NotificationsList = DefaultNotificationsList, + NotificationsListEmptyState = DefaultNotificationsListEmptyState, + NotificationsListErrorState = DefaultNotificationsListErrorState, + Notification = DefaultNotification, + onNotificationClick, + renderInline = false, +}: INotificationsPanelProps) { + const { + buttonRef, + isOpen, + openNotificationsPanel, + closeNotificationsPanel, + toggleNotificationsPanel, + // + activeView, + changeActiveView, + // + markNotificationAsRead, + markAllNotificationsAsRead, + unreadNotificationsCount, + activeNotifications, + // + status, + error, + loadNextPage, + hasNextPage, + } = useNotificationsPanelController(); + + const handleNotificationClick = useCallback( + (notification: INotification) => { + markNotificationAsRead(notification.id); + closeNotificationsPanel(); + onNotificationClick?.(notification); + }, + [markNotificationAsRead, closeNotificationsPanel, onNotificationClick], + ); + + return ( + <> + {renderInline ? ( + + ) : ( + <> + 0} + /> + {isOpen ? ( + + + + ) : null} + + )} + + ); +} + +function useNotificationsPanelController() { + const [isOpen, setIsOpen] = useState(false); + const openNotificationsPanel = useCallback(() => setIsOpen(true), []); + const closeNotificationsPanel = useCallback(() => setIsOpen(false), []); + const toggleNotificationsPanel = useCallback(() => setIsOpen((x) => !x), []); + + // + + const changeActiveView = useCallback((view: INotificationsPanelView) => setActiveView(view), []); + const [activeView, setActiveView] = useState("unread"); + + const buttonRef = useRef(null); + + const { + notifications, + unreadNotifications, + unreadNotificationsCount, + unreadNotificationsHasNextPage, + unreadNotificationsLoadNextPage, + unreadNotificationsStatus, + unreadNotificationsError, + notificationsHasNextPage, + notificationsLoadNextPage, + notificationsStatus, + notificationsError, + markAllNotificationsAsRead, + markNotificationAsRead, + } = useNotificationsContext(); + + const activeNotifications = useMemo(() => { + switch (activeView) { + case "unread": + return unreadNotifications; + case "all": + return notifications; + default: + assertNever(activeView); + return []; + } + }, [activeView, unreadNotifications, notifications]); + + const status = activeView === "unread" ? unreadNotificationsStatus : notificationsStatus; + + const error = activeView === "unread" ? unreadNotificationsError : notificationsError; + + const loadNextPage = + activeView === "unread" ? unreadNotificationsLoadNextPage : notificationsLoadNextPage; + + const hasNextPage = activeView === "unread" ? unreadNotificationsHasNextPage : notificationsHasNextPage; + + return { + buttonRef, + isOpen, + openNotificationsPanel, + closeNotificationsPanel, + toggleNotificationsPanel, + // + activeView, + changeActiveView, + // + markNotificationAsRead, + markAllNotificationsAsRead, + unreadNotificationsCount, + activeNotifications, + // + status, + error, + loadNextPage, + hasNextPage, + }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/bem.ts b/libs/sdk-ui-ext/src/notificationsPanel/bem.ts new file mode 100644 index 00000000000..7385100f1ac --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/bem.ts @@ -0,0 +1,4 @@ +// (C) 2024 GoodData Corporation +import { bemFactory } from "@gooddata/sdk-ui-kit"; + +export const bem = (block: `gd-ui-ext-${string}`) => bemFactory<"gd-ui-ext">(block); diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.scss b/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.scss new file mode 100644 index 00000000000..c9f0b34ae53 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.scss @@ -0,0 +1,51 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notification-details-dialog { + width: 245px; + box-shadow: 0 2px 10px 0 var(--gd-shadow-color); + border-radius: 3px; + border: 1px solid var(--gd-palette-complementary-3); + background-color: var(--gd-palette-complementary-0); + font-family: var(--gd-font-family); + + &__header { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + padding: 10px; + background: var(--gd-palette-complementary-2); + height: 35px; + } + + &__header-title { + color: var(--gd-palette-complementary-6); + font-size: 11px; + font-style: normal; + font-weight: 700; + line-height: normal; + text-transform: uppercase; + } + + &__header-close-button { + cursor: pointer; + opacity: 1; + transition: opacity 0.2s ease-in-out; + + &:hover { + opacity: 0.7; + } + } + + &__content { + padding: 10px; + } + + &__footer { + border-top: 1px solid var(--gd-palette-complementary-3); + padding: 10px; + display: flex; + flex-direction: row; + justify-content: flex-end; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.tsx new file mode 100644 index 00000000000..e6c743d2ae0 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.tsx @@ -0,0 +1,41 @@ +// (C) 2024 GoodData Corporation +import { UiButton, UiIcon } from "@gooddata/sdk-ui-kit"; +import React from "react"; +import { bem } from "../bem.js"; +import { defineMessages, useIntl } from "react-intl"; +interface IDetailsDialogProps { + onClose: () => void; + title: string; + content: React.ReactNode; +} + +const { b, e } = bem("gd-ui-ext-notification-details-dialog"); + +const messages = defineMessages({ + closeButtonLabel: { + id: "close", + }, +}); + +export function DetailsDialog({ onClose, title, content }: IDetailsDialogProps) { + const intl = useIntl(); + return ( +
+
+
{title}
+
+ +
+
+
{content}
+
+ +
+
+ ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/Tooltip.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/Tooltip.tsx new file mode 100644 index 00000000000..f0a3956ebc4 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/Tooltip.tsx @@ -0,0 +1,14 @@ +// (C) 2024 GoodData Corporation +import React from "react"; +import { Bubble, BubbleHoverTrigger } from "@gooddata/sdk-ui-kit"; + +const ALIGN_POINTS = [{ align: "bc tr" }, { align: "tc br" }]; + +export function Tooltip({ children, tooltip }: { children: React.ReactNode; tooltip: string }) { + return ( + + {children} + {tooltip} + + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss new file mode 100644 index 00000000000..c6dbeac0002 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss @@ -0,0 +1,32 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-virtual-list { + display: flex; + flex-direction: column; + min-height: 0; + max-height: 100%; + height: 100%; + width: 100%; + + &--hasScroll { + padding-right: 4px; + } + + &__scroll-container { + min-height: 0; + max-height: 100%; + overflow: auto; + overflow-x: hidden; + + &::-webkit-scrollbar { + -webkit-appearance: none; + appearance: none; + width: 6px; + } + + &::-webkit-scrollbar-thumb { + background-color: var(--gd-palette-complementary-2); + border-radius: 3px; + } + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx new file mode 100644 index 00000000000..a5e00ee48e7 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx @@ -0,0 +1,143 @@ +// (C) 2024 GoodData Corporation + +import React, { useEffect } from "react"; +import { UiSkeleton } from "@gooddata/sdk-ui-kit"; +import { useVirtualizer } from "@tanstack/react-virtual"; + +import { bem } from "../bem.js"; + +export interface IPagedVirtualListProps { + maxHeight: number; + items?: T[]; + itemHeight: number; + itemsGap: number; + itemPadding: number; + skeletonItemsCount: number; + hasNextPage?: boolean; + loadNextPage?: () => void; + isLoading?: boolean; + children: (item: T) => React.ReactNode; +} + +const { b, e } = bem("gd-ui-ext-virtual-list"); + +export function PagedVirtualList(props: IPagedVirtualListProps) { + const { items, itemHeight, itemsGap, itemPadding, children } = props; + + const { itemsCount, scrollContainerRef, height, hasScroll, rowVirtualizer, virtualItems } = + useVirtualList(props); + + return ( +
+
+
+ {virtualItems.map((virtualRow) => { + const item = items?.[virtualRow.index]; + const isSkeletonItem = virtualRow.index > itemsCount - 1; + + const style: React.CSSProperties = { + position: "absolute", + top: 0, + left: 0, + width: `calc(100% + ${hasScroll ? "10px" : "0px"})`, + height: `${virtualRow.size}px`, + transform: `translateY(${virtualRow.start}px)`, + paddingRight: itemPadding, + paddingLeft: itemPadding, + }; + + return ( +
+ {isSkeletonItem ? ( + + ) : ( + children(item!) + )} +
+ ); + })} +
+
+
+ ); +} + +function useVirtualList(props: IPagedVirtualListProps) { + const { + items, + itemHeight, + itemsGap, + skeletonItemsCount, + hasNextPage, + loadNextPage, + isLoading, + maxHeight, + } = props; + + const scrollContainerRef = React.useRef(null); + + const itemsCount = items ? items.length : 0; + + let renderItemsCount = itemsCount; + if (hasNextPage) { + renderItemsCount = itemsCount + skeletonItemsCount; + } else if (itemsCount === 0 && isLoading) { + renderItemsCount = skeletonItemsCount; + } + + const realHeight = + itemsCount > 0 + ? (itemHeight + itemsGap) * itemsCount + itemsGap + : skeletonItemsCount * (itemHeight + itemsGap) + itemsGap; + + const height = Math.min(maxHeight, realHeight); + + const hasScroll = scrollContainerRef.current + ? scrollContainerRef.current?.scrollHeight > + scrollContainerRef.current?.getBoundingClientRect().height + : false; + + const rowVirtualizer = useVirtualizer({ + count: renderItemsCount, + getScrollElement: () => scrollContainerRef.current, + estimateSize: () => itemHeight + itemsGap, + overscan: 5, + }); + + const virtualItems = rowVirtualizer.getVirtualItems(); + + useEffect(() => { + const [lastItem] = [...virtualItems].reverse(); + + if (!lastItem) { + return; + } + + if (lastItem.index >= itemsCount - 1 - skeletonItemsCount && hasNextPage && !isLoading) { + loadNextPage?.(); + } + }, [hasNextPage, loadNextPage, itemsCount, isLoading, virtualItems, skeletonItemsCount]); + + return { + itemsCount, + scrollContainerRef, + height, + hasScroll, + rowVirtualizer, + virtualItems, + }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx new file mode 100644 index 00000000000..46fb8dd4a07 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx @@ -0,0 +1,36 @@ +// (C) 2019-2024 GoodData Corporation +import React from "react"; +import { IAnalyticalBackend } from "@gooddata/sdk-backend-spi"; +import { useNotifications } from "./useNotifications.js"; +import { UnexpectedSdkError } from "@gooddata/sdk-ui"; + +export type INotificationsContext = ReturnType; + +const NotificationsContext = React.createContext(null); +NotificationsContext.displayName = "NotificationsContext"; + +export const useNotificationsContext = () => { + const context = React.useContext(NotificationsContext); + if (!context) { + throw new UnexpectedSdkError("useNotificationsContext must be used within a NotificationsProvider"); + } + return context; +}; + +export interface INotificationsProviderProps { + backend?: IAnalyticalBackend; + workspace?: string; + children?: React.ReactNode; + refreshInterval?: number; +} + +export const NotificationsProvider: React.FC = ({ + children, + backend, + workspace, + refreshInterval, +}) => { + const notifications = useNotifications({ backend, workspace, refreshInterval }); + + return {children}; +}; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/attributeFilterNaming.ts b/libs/sdk-ui-ext/src/notificationsPanel/data/attributeFilterNaming.ts new file mode 100644 index 00000000000..605c0ab33f5 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/attributeFilterNaming.ts @@ -0,0 +1,22 @@ +// (C) 2024 GoodData Corporation +import { IntlShape } from "react-intl"; +import { + IAttributeFilter, + isNegativeAttributeFilter, + filterAttributeElements, + getAttributeElementsItems, + IAttributeElement, +} from "@gooddata/sdk-model"; +import { getAttributeFilterSubtitle } from "@gooddata/sdk-ui-filters"; + +export function translateAttributeFilter(intl: IntlShape, filter: IAttributeFilter): string { + const isNegative = isNegativeAttributeFilter(filter); + const attributeElements = filterAttributeElements(filter); + const attributeElementsItems = getAttributeElementsItems(attributeElements); + + return getAttributeFilterSubtitle( + isNegative, + attributeElementsItems.map((item): IAttributeElement => ({ title: item, uri: item })), + intl, + ); +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/dateFilterNaming.ts b/libs/sdk-ui-ext/src/notificationsPanel/data/dateFilterNaming.ts new file mode 100644 index 00000000000..37f96a32b86 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/dateFilterNaming.ts @@ -0,0 +1,43 @@ +// (C) 2024 GoodData Corporation +import { IntlShape } from "react-intl"; +import { + IAbsoluteDateFilterValues, + IRelativeDateFilterValues, + IDateFilter, + DateFilterGranularity, + isRelativeDateFilter, + relativeDateFilterValues, + absoluteDateFilterValues, +} from "@gooddata/sdk-model"; +import { DateFilterHelpers } from "@gooddata/sdk-ui-filters"; + +interface IRelativeDateFilterMeta extends IRelativeDateFilterValues { + type: "relative"; +} + +interface IAbsoluteDateFilterMeta extends IAbsoluteDateFilterValues { + type: "absolute"; +} + +type DateFilterMeta = IRelativeDateFilterMeta | IAbsoluteDateFilterMeta; + +export function translateDateFilter(intl: IntlShape, filter: IDateFilter, dateFormat: string): string { + const metadata = filterMetadata(filter); + + return metadata.type === "absolute" + ? DateFilterHelpers.formatAbsoluteDateRange(metadata.from, metadata.to, dateFormat) + : DateFilterHelpers.formatRelativeDateRange( + metadata.from, + metadata.to, + metadata.granularity as DateFilterGranularity, + intl, + ); +} + +function filterMetadata(filter: IDateFilter): DateFilterMeta { + if (isRelativeDateFilter(filter)) { + return { ...relativeDateFilterValues(filter), type: "relative" }; + } + + return { ...absoluteDateFilterValues(filter), type: "absolute" }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts new file mode 100644 index 00000000000..3784bc378c5 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts @@ -0,0 +1,115 @@ +// (C) 2024 GoodData Corporation +import { GoodDataSdkError, useCancelablePromise, useWorkspace } from "@gooddata/sdk-ui"; +import { useOrganization } from "../@staging/OrganizationContext/OrganizationContext.js"; +import { INotification } from "@gooddata/sdk-model"; +import { useCallback, useEffect, useState } from "react"; +import { INotificationsQueryResult } from "@gooddata/sdk-backend-spi"; + +/** + * @alpha + */ +export interface IUseFetchNotificationsProps { + /** + * Workspace to use. + * If not provided, it will be taken from the WorkspaceProvider context. + */ + workspace?: string; + + /** + * Filter notifications by status. + * If not provided, all notifications will be fetched. + */ + readStatus?: "unread" | "read"; + + /** + * Refresh interval in milliseconds. + */ + refreshInterval: number; +} + +/** + * @alpha + */ +export function useFetchNotifications({ + workspace, + readStatus, + refreshInterval, +}: IUseFetchNotificationsProps) { + const effectiveWorkspace = useWorkspace(workspace); + const { result: organizationService } = useOrganization(); + const [page, setPage] = useState(0); + const [hasNextPage, setHasNextPage] = useState(false); + const [notifications, setNotifications] = useState([]); + const [totalNotificationsCount, setTotalNotificationsCount] = useState(0); + const [invalidationId, setInvalidationId] = useState(0); + + useEffect(() => { + let interval: NodeJS.Timeout; + if (refreshInterval > 0) { + interval = setInterval(() => { + setPage(0); + setNotifications([]); + setInvalidationId((x) => x + 1); + }, refreshInterval); + } + + return () => { + clearInterval(interval); + }; + }, [refreshInterval]); + + const { status, error } = useCancelablePromise( + { + promise: !organizationService + ? null + : async () => { + let query = organizationService.notifications().getNotificationsQuery().withSize(50); + + if (effectiveWorkspace) { + query = query.withWorkspace(effectiveWorkspace); + } + + if (page) { + query = query.withPage(page); + } + + if (readStatus) { + query = query.withStatus(readStatus); + } + + return query.query(); + }, + onSuccess: (result) => { + const hasNextPage = result.totalCount > (page + 1) * 50; + setHasNextPage(hasNextPage); + setNotifications((prev) => [...prev, ...result.items]); + setTotalNotificationsCount(result.totalCount); + }, + }, + [effectiveWorkspace, organizationService, page, invalidationId], + ); + + const loadNextPage = useCallback(() => { + if (status === "success" && hasNextPage) { + setPage((x) => x + 1); + } + }, [status, hasNextPage]); + + const reset = useCallback(() => { + setPage(0); + setNotifications([]); + setHasNextPage(false); + setTotalNotificationsCount(0); + setInvalidationId((x) => x + 1); + }, []); + + return { + notifications, + status, + error, + hasNextPage, + loadNextPage, + totalNotificationsCount, + reset, + }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx new file mode 100644 index 00000000000..a30260dd300 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx @@ -0,0 +1,159 @@ +// (C) 2024 GoodData Corporation +import { + areObjRefsEqual, + filterObjRef, + IAttributeFilter, + isAttributeFilter, + isDateFilter, + isPositiveAttributeFilter, + LocalIdRef, + IAlertNotification, + ObjRef, + idRef, + IInsightWidget, + IdentifierRef, + filterLocalIdentifier, +} from "@gooddata/sdk-model"; +import { useBackendStrict, useCancelablePromise, useWorkspaceStrict } from "@gooddata/sdk-ui"; +import { useMemo } from "react"; +import { translateAttributeFilter } from "./attributeFilterNaming.js"; +import { defineMessages, useIntl } from "react-intl"; +import { translateDateFilter } from "./dateFilterNaming.js"; +import { IAnalyticalBackend, layoutWidgets } from "@gooddata/sdk-backend-spi"; + +const messages = defineMessages({ + title: { + id: "notifications.filters.dialog.title", + }, + dateRange: { + id: "notifications.filters.dialog.dateRange", + }, +}); + +function getObjRefInScopeLocalId(attributeFilter: IAttributeFilter) { + if (isPositiveAttributeFilter(attributeFilter)) { + return (attributeFilter.positiveAttributeFilter.displayForm as LocalIdRef).localIdentifier; + } + return (attributeFilter.negativeAttributeFilter.displayForm as LocalIdRef).localIdentifier; +} + +function fetchAutomation(backend: IAnalyticalBackend, workspaceId: string, automationId: string) { + return backend.workspace(workspaceId).automations().getAutomation(automationId); +} + +function fetchDashboard(backend: IAnalyticalBackend, workspaceId: string, dashboardId: string) { + return backend.workspace(workspaceId).dashboards().getDashboardWithReferences(idRef(dashboardId)); +} + +function fetchLabels(backend: IAnalyticalBackend, workspaceId: string, filterDisplayFormsRefs: ObjRef[]) { + return backend.workspace(workspaceId).attributes().getAttributeDisplayForms(filterDisplayFormsRefs); +} + +export function useNotificationsFilterDetail(notification: IAlertNotification) { + const workspaceId = useWorkspaceStrict(undefined, "NotificationTriggerDetails"); + const backend = useBackendStrict(undefined, "NotificationTriggerDetails"); + const intl = useIntl(); + const automationPromise = useCancelablePromise( + { + promise: async () => { + if (!notification.automationId) { + return null; + } + + const automation = await fetchAutomation(backend, workspaceId, notification.automationId); + + const automationAlert = automation?.alert; + if (!automationAlert) { + return null; + } + + const filterDisplayFormsRefs = automationAlert.execution.filters + .filter((f) => isAttributeFilter(f)) + .map((filter) => { + const ref = filterObjRef(filter); + if (!ref) { + const attribute = automationAlert.execution.attributes.find( + (a) => + a.attribute.localIdentifier === + getObjRefInScopeLocalId(filter as IAttributeFilter), + ); + + if (!attribute) { + return null; + } + + return attribute.attribute.displayForm; + } + return filterObjRef(filter); + }) + .filter(Boolean) as ObjRef[]; + + const dashboardId = automation?.dashboard; + + const dashboardPromise = dashboardId + ? fetchDashboard(backend, workspaceId, dashboardId) + : Promise.resolve(null); + + const labelsPromise = fetchLabels(backend, workspaceId, filterDisplayFormsRefs); + + const [dashboard, labels] = await Promise.all([dashboardPromise, labelsPromise]); + + return { automation, dashboard, labels }; + }, + }, + [notification.automationId, workspaceId], + ); + + const filtersInfo = useMemo(() => { + if (!automationPromise.result) { + return null; + } + const { automation, dashboard, labels } = automationPromise.result; + + const alert = automation?.alert; + if (!alert) { + return []; + } + + const widgets = dashboard?.dashboard.layout ? layoutWidgets(dashboard.dashboard.layout) : []; + const widget = widgets.find((w) => w.identifier === automation.metadata?.widget); + const insight = dashboard?.references.insights.find( + (i) => i.insight.identifier === ((widget as IInsightWidget).insight as IdentifierRef).identifier, + ); + const filtersWithoutInsightFilters = alert.execution.filters.filter((f) => { + const insightFilter = insight?.insight.filters.find((f2) => { + return filterLocalIdentifier(f) === filterLocalIdentifier(f2); + }); + return !insightFilter; + }); + + return filtersWithoutInsightFilters + .map((filter) => { + let ref = filterObjRef(filter); + let subtitle = ""; + let title = ""; + + if (isAttributeFilter(filter)) { + const attribute = alert.execution.attributes.find( + (a) => a.attribute.localIdentifier === getObjRefInScopeLocalId(filter), + ); + if (attribute) { + ref = attribute.attribute.displayForm; + } + + subtitle = translateAttributeFilter(intl, filter); + title = labels.find((l) => areObjRefsEqual(l.ref, ref))?.title ?? ""; + } else if (isDateFilter(filter)) { + subtitle = translateDateFilter(intl, filter, "MM/dd/yyyy"); + title = intl.formatMessage(messages.dateRange); + } else { + return null; + } + + return { title, subtitle }; + }) + .filter(Boolean) as { title: string; subtitle: string }[]; + }, [automationPromise.result, intl]); + + return { filtersInfo, automationPromise }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx new file mode 100644 index 00000000000..053f576183b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx @@ -0,0 +1,141 @@ +// (C) 2024 GoodData Corporation + +import { IAnalyticalBackend } from "@gooddata/sdk-backend-spi"; +import { UnexpectedSdkError, useWorkspaceStrict } from "@gooddata/sdk-ui"; + +import { useCallback, useMemo, useState } from "react"; +import { useOrganization } from "../@staging/OrganizationContext/OrganizationContext.js"; +import { useFetchNotifications } from "./useFetchNotifications.js"; + +/** + * @alpha + */ +export interface IUseNotificationsProps { + workspace?: string; + backend?: IAnalyticalBackend; + refreshInterval: number; +} + +/** + * @alpha + */ +export function useNotifications({ workspace, refreshInterval }: IUseNotificationsProps) { + const effectiveWorkspace = useWorkspaceStrict(workspace, "useNotifications"); + const { + notifications, + hasNextPage: notificationsHasNextPage, + error: notificationsError, + loadNextPage: notificationsLoadNextPage, + status: notificationsStatus, + reset: notificationsReset, + } = useFetchNotifications({ + workspace: effectiveWorkspace, + refreshInterval, + }); + const { + error: unreadNotificationsError, + hasNextPage: unreadNotificationsHasNextPage, + loadNextPage: unreadNotificationsLoadNextPage, + notifications: unreadNotifications, + status: unreadNotificationsStatus, + totalNotificationsCount: unreadNotificationsCount, + reset: unreadNotificationsReset, + } = useFetchNotifications({ + workspace: effectiveWorkspace, + readStatus: "unread", + refreshInterval, + }); + + const { result: organizationService, status: organizationStatus } = useOrganization(); + + const [markedAsReadNotifications, setMarkedAsReadNotifications] = useState([]); + + const markNotificationAsRead = useCallback( + async (notificationId: string) => { + if (organizationStatus === "error") { + throw new UnexpectedSdkError("Cannot call markAsRead - organization load failed."); + } + + if (organizationStatus === "pending" || organizationStatus === "loading") { + throw new UnexpectedSdkError("Cannot call markAsRead - organization is not initialized."); + } + + await organizationService.notifications().markNotificationAsRead(notificationId); + setMarkedAsReadNotifications((prev) => [...prev, notificationId]); + }, + [organizationStatus, organizationService, setMarkedAsReadNotifications], + ); + + const markAllNotificationsAsRead = useCallback(async () => { + if (organizationStatus === "error") { + throw new UnexpectedSdkError("Cannot call markAllAsRead - organization load failed."); + } + + if (organizationStatus === "pending" || organizationStatus === "loading") { + throw new UnexpectedSdkError("Cannot call markAllAsRead - organization is not initialized."); + } + + if (notificationsStatus === "error") { + throw new UnexpectedSdkError("Cannot call markAllAsRead - notifications load failed."); + } + + if (notificationsStatus === "pending" || notificationsStatus === "loading") { + throw new UnexpectedSdkError("Cannot call markAllAsRead - notifications are not initialized."); + } + + await organizationService.notifications().markAllNotificationsAsRead(); + + notificationsReset(); + unreadNotificationsReset(); + }, [ + organizationService, + organizationStatus, + notificationsStatus, + notificationsReset, + unreadNotificationsReset, + ]); + + const effectiveNotifications = useMemo(() => { + if (!notifications) { + return notifications; + } + + return notifications.map((notification) => { + if (markedAsReadNotifications.includes(notification.id)) { + return { ...notification, isRead: true }; + } + return notification; + }); + }, [notifications, markedAsReadNotifications]); + + const effectiveUnreadNotifications = useMemo(() => { + if (!unreadNotifications) { + return unreadNotifications; + } + + return unreadNotifications + .map((notification) => { + if (markedAsReadNotifications.includes(notification.id)) { + return { ...notification, isRead: true }; + } + return notification; + }) + .filter((x) => !x.isRead); + }, [unreadNotifications, markedAsReadNotifications]); + + return { + notifications: effectiveNotifications, + notificationsStatus, + notificationsError, + notificationsHasNextPage, + notificationsLoadNextPage, + unreadNotifications: effectiveUnreadNotifications, + unreadNotificationsStatus: unreadNotificationsStatus, + unreadNotificationsError: unreadNotificationsError, + unreadNotificationsHasNextPage: unreadNotificationsHasNextPage, + unreadNotificationsLoadNextPage: unreadNotificationsLoadNextPage, + unreadNotificationsCount: Math.max(0, unreadNotificationsCount - markedAsReadNotifications.length), + markNotificationAsRead, + markAllNotificationsAsRead, + }; +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/localization/IntlWrapper.tsx b/libs/sdk-ui-ext/src/notificationsPanel/localization/IntlWrapper.tsx new file mode 100644 index 00000000000..b0986d98649 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/localization/IntlWrapper.tsx @@ -0,0 +1,59 @@ +// (C) 2007-2024 GoodData Corporation +import React, { useCallback } from "react"; +import { CustomFormats, IntlProvider } from "react-intl"; +import { + DefaultLocale, + ITranslationsCustomizationProviderProps, + TranslationsCustomizationProvider, + resolveLocaleDefaultMessages, +} from "@gooddata/sdk-ui"; + +import { translations } from "../../internal/utils/translations.js"; + +const formats: CustomFormats = { + time: { + hhmm: { + hour: "numeric", + minute: "numeric", + }, + }, + date: { + shortWithoutYear: { + day: "numeric", + month: "short", + }, + shortWithYear: { + day: "numeric", + month: "short", + year: "numeric", + }, + }, +}; + +/** + * @internal + */ +export interface IIntlWrapperProps { + locale?: string; + children?: React.ReactNode; +} + +/** + * @internal + */ +export const IntlWrapper: React.FC = ({ children, locale = DefaultLocale }) => { + const render = useCallback( + (modifiedTranslations) => ( + + {children} + + ), + [locale, children], + ); + return ( + + ); +}; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss b/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss new file mode 100644 index 00000000000..43cab73b795 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss @@ -0,0 +1,18 @@ +// (C) 2024 GoodData Corporation + +@use "./components/DetailsDialog.scss"; +@use "./components/VirtualList.scss"; +// Panel +@use "./NotificationsPanel/DefaultNotificationsPanel.scss"; +@use "./NotificationsPanel/DefaultNotificationsPanelHeader.scss"; +@use "./NotificationsPanel/DefaultOpenNotificationsPanelButton.scss"; +// List +@use "./NotificationsList/DefaultNotificationsList.scss"; +@use "./NotificationsList/DefaultNotificationsListEmptyState.scss"; +@use "./NotificationsList/DefaultNotificationsListErrorState.scss"; +// Notification +@use "./Notification/DefaultNotification.scss"; +// Notification filters detail +@use "./NotificationFiltersDetail/NotificationFiltersDetailDialog.scss"; +// Notification triggers detail +@use "./NotificationTriggersDetail/NotificationTriggersDetailDialog.scss"; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/types.ts b/libs/sdk-ui-ext/src/notificationsPanel/types.ts new file mode 100644 index 00000000000..3e22763c432 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/types.ts @@ -0,0 +1,6 @@ +// (C) 2024 GoodData Corporation + +/** + * @alpha + */ +export type INotificationsPanelView = "all" | "unread"; diff --git a/libs/sdk-ui-ext/styles/scss/main.scss b/libs/sdk-ui-ext/styles/scss/main.scss index 6d3a7f52890..c3f103584aa 100644 --- a/libs/sdk-ui-ext/styles/scss/main.scss +++ b/libs/sdk-ui-ext/styles/scss/main.scss @@ -4,3 +4,4 @@ @use "../internal/scss/dashboard_embedding"; @use "../internal/scss/user_management_dialogs"; @use "../internal/scss/attribute_hierarchies"; +@use "../../src/notificationsPanel/notificationPanel.scss"; diff --git a/libs/sdk-ui-gen-ai/src/components/Messages.tsx b/libs/sdk-ui-gen-ai/src/components/Messages.tsx index 1294c1091c2..b3d2b09c457 100644 --- a/libs/sdk-ui-gen-ai/src/components/Messages.tsx +++ b/libs/sdk-ui-gen-ai/src/components/Messages.tsx @@ -31,13 +31,27 @@ const MessagesComponent: React.FC = ({ messages, loading {!messages.length && !loading ? : null} {loading === "loading" || loading === "clearing" ? : null} {loading !== "loading" && loading !== "clearing" - ? messages.map((message) => { + ? messages.map((message, index) => { + const isLast = index === messages.length - 1; + if (isUserMessage(message)) { - return ; + return ( + + ); } if (isAssistantMessage(message)) { - return ; + return ( + + ); } return assertNever(message); diff --git a/libs/sdk-ui-gen-ai/src/components/messages/AssistantMessage.tsx b/libs/sdk-ui-gen-ai/src/components/messages/AssistantMessage.tsx index eb96506401c..b2375883e03 100644 --- a/libs/sdk-ui-gen-ai/src/components/messages/AssistantMessage.tsx +++ b/libs/sdk-ui-gen-ai/src/components/messages/AssistantMessage.tsx @@ -13,6 +13,7 @@ import { setUserFeedback } from "../../store/index.js"; type AssistantMessageProps = { message: AssistantMessage; setUserFeedback: typeof setUserFeedback; + isLast?: boolean; }; const labelMessage = defineMessage({ id: "gd.gen-ai.assistant-icon" }); @@ -20,6 +21,7 @@ const labelMessage = defineMessage({ id: "gd.gen-ai.assistant-icon" }); const AssistantMessageComponentCore: React.FC = ({ message, setUserFeedback, + isLast, intl, }) => { const classNames = cx( @@ -43,6 +45,7 @@ const AssistantMessageComponentCore: React.FC {message.complete ? (
= ({ content, isComplete = true, isCancelled = false, + isLastMessage = false, useMarkdown = false, }) => { return ( @@ -49,6 +51,7 @@ export const MessageContents: React.FC = ({ useMarkdown={useMarkdown} content={item} key={index} + showSuggestions={isLastMessage} /> ); default: diff --git a/libs/sdk-ui-gen-ai/src/components/messages/UserMessage.tsx b/libs/sdk-ui-gen-ai/src/components/messages/UserMessage.tsx index 1516a5c946c..36e3165fefb 100644 --- a/libs/sdk-ui-gen-ai/src/components/messages/UserMessage.tsx +++ b/libs/sdk-ui-gen-ai/src/components/messages/UserMessage.tsx @@ -7,9 +7,10 @@ import { MessageContents } from "./MessageContents.js"; type UserMessageProps = { message: UserMessage; + isLast?: boolean; }; -export const UserMessageComponent: React.FC = ({ message }) => { +export const UserMessageComponent: React.FC = ({ message, isLast }) => { const classNames = cx( "gd-gen-ai-chat__messages__message", "gd-gen-ai-chat__messages__message--user", @@ -18,7 +19,7 @@ export const UserMessageComponent: React.FC = ({ message }) => return (
- +
); }; diff --git a/libs/sdk-ui-gen-ai/src/components/messages/contents/VisualizationContents.tsx b/libs/sdk-ui-gen-ai/src/components/messages/contents/VisualizationContents.tsx index f3a15c76365..8e124d258a7 100644 --- a/libs/sdk-ui-gen-ai/src/components/messages/contents/VisualizationContents.tsx +++ b/libs/sdk-ui-gen-ai/src/components/messages/contents/VisualizationContents.tsx @@ -5,20 +5,26 @@ import cx from "classnames"; import { IAttribute, IFilter, IMeasure } from "@gooddata/sdk-model"; import { PivotTable } from "@gooddata/sdk-ui-pivot"; import { BarChart, ColumnChart, Headline, LineChart, PieChart } from "@gooddata/sdk-ui-charts"; -import { VisualizationContents } from "../../../model.js"; +import { makeTextContents, makeUserMessage, VisualizationContents } from "../../../model.js"; import { useExecution } from "./useExecution.js"; import { VisualizationErrorBoundary } from "./VisualizationErrorBoundary.js"; import { MarkdownComponent } from "./Markdown.js"; +import { Button } from "@gooddata/sdk-ui-kit"; +import { useDispatch } from "react-redux"; +import { newMessageAction } from "../../../store/index.js"; export type VisualizationContentsProps = { content: VisualizationContents; useMarkdown?: boolean; + showSuggestions?: boolean; }; export const VisualizationContentsComponent: React.FC = ({ content, useMarkdown, + showSuggestions = false, }) => { + const dispatch = useDispatch(); const className = cx( "gd-gen-ai-chat__messages__content", "gd-gen-ai-chat__messages__content--visualization", @@ -60,6 +66,24 @@ export const VisualizationContentsComponent: React.FC
) : null} + {showSuggestions && visualization?.suggestions?.length ? ( +
+ {visualization.suggestions.map((suggestion) => ( + + ))} +
+ ) : null}
); }; diff --git a/libs/sdk-ui-gen-ai/src/components/messages/contents/useExecution.tsx b/libs/sdk-ui-gen-ai/src/components/messages/contents/useExecution.tsx index 1609f069d6c..83999aae5e9 100644 --- a/libs/sdk-ui-gen-ai/src/components/messages/contents/useExecution.tsx +++ b/libs/sdk-ui-gen-ai/src/components/messages/contents/useExecution.tsx @@ -19,44 +19,39 @@ import { GenAIRelativeDateFilter, GenAIDateGranularity, GenAIAbsoluteDateFilter, + IGenAIVisualizationMetric, + MeasureBuilder, + GenAIMetricType, + ObjectType, } from "@gooddata/sdk-model"; +const measureBuilder = (md: IGenAIVisualizationMetric) => (m: MeasureBuilder) => { + if (md.title) { + m = m.title(md.title); + } + + if (md.type === "attribute") { + m = m.aggregation("count"); + } + + if (md.type === "fact" && md.aggFunction) { + m = m.aggregation(md.aggFunction.toLowerCase() as MeasureAggregation); + } + + return m; +}; + +const typeMap: { [key in GenAIMetricType]: ObjectType } = { + attribute: "attribute", + fact: "fact", + metric: "measure", +}; + export const useExecution = (vis?: IGenAIVisualization) => { return React.useMemo(() => { const dimensions = vis?.dimensionality?.map((d) => newAttribute(d.id)) ?? []; const metrics = - vis?.metrics?.map((md) => { - switch (md.type) { - case "fact": - return newMeasure(idRef(md.id, "fact"), (m) => { - if (md.aggFunction) { - m = m.aggregation(md.aggFunction.toLowerCase() as MeasureAggregation); - } - - if (md.title) { - m = m.title(md.title); - } - - return m; - }); - case "metric": - return newMeasure(idRef(md.id, "measure"), (m) => { - if (md.title) { - m = m.title(md.title); - } - - return m; - }); - case "attribute": - return newMeasure(idRef(md.id, "attribute"), (m) => { - if (md.title) { - m = m.title(md.title); - } - - return m.aggregation("count"); - }); - } - }) ?? []; + vis?.metrics?.map((md) => newMeasure(idRef(md.id, typeMap[md.type]), measureBuilder(md))) ?? []; return { metrics, diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/de-DE.json b/libs/sdk-ui-gen-ai/src/localization/bundles/de-DE.json index 0b9913c7d62..0405d6ad97d 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/de-DE.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/de-DE.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Abgebrochen", "gd.gen-ai.state.in-progress": "Ihre Antwort wird generiert…", "gd.gen-ai.global-error.description": "Versuchen Sie, den Chatbot neu zu starten und von vorne zu beginnen.", - "gd.gen-ai.button.send": "Senden" + "gd.gen-ai.button.send": "Senden", + "gd.gen-ai.input-label": "Stellen Sie Ihre Frage", + "gd.gen-ai.assistant-icon": "Chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/en-AU.json b/libs/sdk-ui-gen-ai/src/localization/bundles/en-AU.json index baaeb3a50bb..d3e4efaac4d 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/en-AU.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/en-AU.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Called off", "gd.gen-ai.state.in-progress": "Creating your reply…", "gd.gen-ai.global-error.description": "Give rebooting the chatbot a go and start afresh.", - "gd.gen-ai.button.send": "Send" + "gd.gen-ai.button.send": "Send", + "gd.gen-ai.input-label": "Ask your question", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/en-GB.json b/libs/sdk-ui-gen-ai/src/localization/bundles/en-GB.json index 9a9c807788a..ab93fc7668e 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/en-GB.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/en-GB.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Called off", "gd.gen-ai.state.in-progress": "Creating your reply…", "gd.gen-ai.global-error.description": "Give rebooting the chatbot a go and start afresh.", - "gd.gen-ai.button.send": "Send" + "gd.gen-ai.button.send": "Send", + "gd.gen-ai.input-label": "Ask your question", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/es-419.json b/libs/sdk-ui-gen-ai/src/localization/bundles/es-419.json index 87f7ac7e67d..01511e1bee9 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/es-419.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/es-419.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Cancelado", "gd.gen-ai.state.in-progress": "Generando su respuesta…", "gd.gen-ai.global-error.description": "Intente reiniciar el chatbot y empezar de nuevo.", - "gd.gen-ai.button.send": "Enviar" + "gd.gen-ai.button.send": "Enviar", + "gd.gen-ai.input-label": "Formule su pregunta", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/es-ES.json b/libs/sdk-ui-gen-ai/src/localization/bundles/es-ES.json index 44d9b2fb5dd..9250c24ad31 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/es-ES.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/es-ES.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Cancelado", "gd.gen-ai.state.in-progress": "Generando su respuesta…", "gd.gen-ai.global-error.description": "Intente reiniciar el chatbot y empezar de nuevo.", - "gd.gen-ai.button.send": "Enviar" + "gd.gen-ai.button.send": "Enviar", + "gd.gen-ai.input-label": "Haz tu pregunta", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/fi-FI.json b/libs/sdk-ui-gen-ai/src/localization/bundles/fi-FI.json index a6bd320dedf..2fa2f208f6a 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/fi-FI.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/fi-FI.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Peruutettu", "gd.gen-ai.state.in-progress": "Luodaan vastaustasi…", "gd.gen-ai.global-error.description": "Yritä käynnistää chatbotti uudelleen ja aloittaa alusta.", - "gd.gen-ai.button.send": "Lähetä" + "gd.gen-ai.button.send": "Lähetä", + "gd.gen-ai.input-label": "Esitä kysymyksesi", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/fr-CA.json b/libs/sdk-ui-gen-ai/src/localization/bundles/fr-CA.json index d44ee2c7904..0084abdaf59 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/fr-CA.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/fr-CA.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Annulé", "gd.gen-ai.state.in-progress": "Génération de votre réponse…", "gd.gen-ai.global-error.description": "Essayez de redémarrer le chatbot et de recommencer.", - "gd.gen-ai.button.send": "Envoyer" + "gd.gen-ai.button.send": "Envoyer", + "gd.gen-ai.input-label": "Posez votre question", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/fr-FR.json b/libs/sdk-ui-gen-ai/src/localization/bundles/fr-FR.json index d96cbcf93c8..ebe172dee7c 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/fr-FR.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/fr-FR.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Annulé", "gd.gen-ai.state.in-progress": "Génération de votre réponse…", "gd.gen-ai.global-error.description": "Essayez de redémarrer le robot conversationnel et de recommencer.", - "gd.gen-ai.button.send": "Envoyer" + "gd.gen-ai.button.send": "Envoyer", + "gd.gen-ai.input-label": "Posez votre question", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/it-IT.json b/libs/sdk-ui-gen-ai/src/localization/bundles/it-IT.json index 4a84e3af01d..90f1a3c853b 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/it-IT.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/it-IT.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Annullato", "gd.gen-ai.state.in-progress": "Sto generando la risposta…", "gd.gen-ai.global-error.description": "Provare a riavviare il chatbot e ricominciare da capo.", - "gd.gen-ai.button.send": "Inviare" + "gd.gen-ai.button.send": "Inviare", + "gd.gen-ai.input-label": "Fai la tua domanda", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/ja-JP.json b/libs/sdk-ui-gen-ai/src/localization/bundles/ja-JP.json index a258875f87e..9601379cfee 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/ja-JP.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/ja-JP.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "キャンセルしました", "gd.gen-ai.state.in-progress": "返答を生成中…", "gd.gen-ai.global-error.description": "チャットボットを再起動して、やり直してみてください。", - "gd.gen-ai.button.send": "送信" + "gd.gen-ai.button.send": "送信", + "gd.gen-ai.input-label": "お問い合わせ", + "gd.gen-ai.assistant-icon": "チャットボット" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/nl-NL.json b/libs/sdk-ui-gen-ai/src/localization/bundles/nl-NL.json index a0320ac249e..366fc0e5933 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/nl-NL.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/nl-NL.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Geannuleerd", "gd.gen-ai.state.in-progress": "Je antwoord genereren…", "gd.gen-ai.global-error.description": "Probeer de chatbot opnieuw op te starten en opnieuw beginnen.", - "gd.gen-ai.button.send": "Sturen" + "gd.gen-ai.button.send": "Sturen", + "gd.gen-ai.input-label": "Stel uw vraag", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/pt-BR.json b/libs/sdk-ui-gen-ai/src/localization/bundles/pt-BR.json index 5c95a3d0aa4..3d992e3ae39 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/pt-BR.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/pt-BR.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Cancelado", "gd.gen-ai.state.in-progress": "A gerar a sua resposta…", "gd.gen-ai.global-error.description": "Tente reiniciar o chatbot e começar de novo.", - "gd.gen-ai.button.send": "Enviar" + "gd.gen-ai.button.send": "Enviar", + "gd.gen-ai.input-label": "Faça sua pergunta", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/pt-PT.json b/libs/sdk-ui-gen-ai/src/localization/bundles/pt-PT.json index bbf5ff66bcf..349a564d00e 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/pt-PT.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/pt-PT.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "Cancelado", "gd.gen-ai.state.in-progress": "Gerando sua resposta…", "gd.gen-ai.global-error.description": "Tente reiniciar o chatbot e começar de novo.", - "gd.gen-ai.button.send": "Enviar" + "gd.gen-ai.button.send": "Enviar", + "gd.gen-ai.input-label": "Faça a sua pergunta", + "gd.gen-ai.assistant-icon": "chatbot" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-HK.json b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-HK.json index fe51e5b93c8..87a59337ade 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-HK.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-HK.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "取消", "gd.gen-ai.state.in-progress": "正在生成您的響應…", "gd.gen-ai.global-error.description": "嘗試重新啟動聊天機械人並重新開始。", - "gd.gen-ai.button.send": "發送" + "gd.gen-ai.button.send": "發送", + "gd.gen-ai.input-label": "提出您的問題", + "gd.gen-ai.assistant-icon": "聊天機械人" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hans.json b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hans.json index 469d836d6c6..53a734c8fb9 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hans.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hans.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "取消", "gd.gen-ai.state.in-progress": "正在生成您的回复…", "gd.gen-ai.global-error.description": "尝试重新启动聊天机器人并重新开始。", - "gd.gen-ai.button.send": "发送" + "gd.gen-ai.button.send": "发送", + "gd.gen-ai.input-label": "提出您的问题", + "gd.gen-ai.assistant-icon": "聊天机器人" } diff --git a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hant.json b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hant.json index 502e2444ab2..aae7204bdab 100644 --- a/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hant.json +++ b/libs/sdk-ui-gen-ai/src/localization/bundles/zh-Hant.json @@ -20,5 +20,7 @@ "gd.gen-ai.state.cancelled": "取消", "gd.gen-ai.state.in-progress": "正在產生您的回覆…", "gd.gen-ai.global-error.description": "嘗試重新啟動聊天機器人並重新開始。", - "gd.gen-ai.button.send": "傳送" + "gd.gen-ai.button.send": "傳送", + "gd.gen-ai.input-label": "問你的問題", + "gd.gen-ai.assistant-icon": "聊天機器人" } diff --git a/libs/sdk-ui-gen-ai/styles/scss/messages.scss b/libs/sdk-ui-gen-ai/styles/scss/messages.scss index 1a4a677798c..e5b398b4574 100644 --- a/libs/sdk-ui-gen-ai/styles/scss/messages.scss +++ b/libs/sdk-ui-gen-ai/styles/scss/messages.scss @@ -187,6 +187,17 @@ text-align: center; margin-top: 15px; } + + &__suggestions { + display: flex; + flex-wrap: wrap; + flex-direction: row; + gap: 10px; + + .gd-button + .gd-button { + margin-left: 0; + } + } } .gd-gen-ai-chat__messages__empty { diff --git a/libs/sdk-ui-kit/api/sdk-ui-kit.api.md b/libs/sdk-ui-kit/api/sdk-ui-kit.api.md index 3a9bee78292..0cb2142498f 100644 --- a/libs/sdk-ui-kit/api/sdk-ui-kit.api.md +++ b/libs/sdk-ui-kit/api/sdk-ui-kit.api.md @@ -59,6 +59,16 @@ export const AddGranteeBase: React_2.FC; // @internal (undocumented) export type AddMessageType = (message: MessageDescriptor, options?: MessageParameters) => string; +// @internal (undocumented) +export type AlignConfig = { + triggerAlignPoint: PositionPoint; + overlayAlignPoint: PositionPoint; + offset?: IOffset; +}; + +// @internal (undocumented) +export function alignConfigToAlignPoint(alignConfig: AlignConfig): IAlignPoint; + // @internal (undocumented) export type Alignment = { left: number; @@ -106,6 +116,12 @@ export const bem: (block: `gd-ui-kit-${string}`) => { e: (element: string, props?: StyleProps) => string; }; +// @internal +export function bemFactory(block: `${TPrefix}-${string}`): { + b: (props?: StyleProps) => string; + e: (element: string, props?: StyleProps) => string; +}; + // @internal (undocumented) export class Bubble extends React_2.Component { constructor(props: IBubbleProps); @@ -691,6 +707,9 @@ export const HeaderWorkspacePicker: React_2.FC; @@ -808,6 +827,11 @@ export interface IAppHeaderProps { // (undocumented) menuItemsGroups?: IHeaderMenuItem[][]; // (undocumented) + notificationsPanel?: (props: { + isMobile: boolean; + closeNotificationsOverlay: () => void; + }) => React_2.ReactNode; + // (undocumented) onChatItemClick?: (e: React_2.MouseEvent) => void; // (undocumented) onHelpClick?: (isOpen: boolean) => void; @@ -846,6 +870,8 @@ export interface IAppHeaderState { // (undocumented) isHelpMenuOpen: boolean; // (undocumented) + isNotificationsMenuOpen: boolean; + // (undocumented) isOverlayMenuOpen: boolean; // (undocumented) isSearchMenuOpen: boolean; @@ -1198,7 +1224,7 @@ export interface IConfirmDialogBaseProps extends IDialogBaseProps { } // @internal (undocumented) -export type IconType = "check" | "plus" | "sync"; +export type IconType = "check" | "plus" | "sync" | "alert" | "close"; // @internal (undocumented) export interface ICustomizableCheckmarkProps { @@ -1993,6 +2019,8 @@ export interface IHeaderMenuItem { // (undocumented) href?: string; // (undocumented) + icon?: React_2.ReactNode; + // (undocumented) iconName?: string; // (undocumented) isActive?: boolean; @@ -3286,7 +3314,7 @@ export interface IOverlayProps { // (undocumented) alignPoints?: IAlignPoint[]; // (undocumented) - alignTo?: string | HTMLElement; + alignTo?: string | HTMLElement | null; // (undocumented) children?: React.ReactNode; // (undocumented) @@ -4476,6 +4504,9 @@ export const OverlayControllerProvider: React_2.FC(dateDatasets: T[], recommendedDate: T): Array; @@ -4855,10 +4886,14 @@ export const Typography: React_2.FC; export type TypographyTagName = "h1" | "h2" | "h3" | "p"; // @internal (undocumented) -export const UiButton: ({ size, variant, label, isDisabled, isLoading, iconBefore, iconAfter, }: UiButtonProps) => React_2.JSX.Element; +export const UiButton: ({ buttonRef, size, variant, label, isDisabled, isLoading, iconBefore, iconAfter, onClick, dataId, }: UiButtonProps) => React_2.JSX.Element; // @internal (undocumented) export interface UiButtonProps { + // (undocumented) + buttonRef?: React_2.RefObject; + // (undocumented) + dataId?: string; // (undocumented) iconAfter?: IconType; // (undocumented) @@ -4870,7 +4905,7 @@ export interface UiButtonProps { // (undocumented) label: string; // (undocumented) - onClick?: () => void; + onClick?: (e: React_2.MouseEvent) => void; // (undocumented) size?: SizeSmall | SizeMedium | SizeLarge; // (undocumented) @@ -4887,13 +4922,25 @@ export interface UiIconProps { // (undocumented) color?: ThemeColor; // (undocumented) - label: string; + label?: string; // (undocumented) size?: number; // (undocumented) type: IconType; } +// @internal (undocumented) +export function UiSkeleton({ itemsCount, itemHeight, itemWidth, gap, direction, }: UiSkeletonProps): React_2.JSX.Element; + +// @internal (undocumented) +export interface UiSkeletonProps { + direction?: "row" | "column"; + gap?: number; + itemHeight?: (number | string) | (number | string)[]; + itemsCount?: number; + itemWidth?: (number | string) | (number | string)[]; +} + // @internal (undocumented) export type UnitsType = "px" | "%" | "rem" | "em"; @@ -4974,6 +5021,9 @@ export type VariantSecondary = "secondary"; // @internal (undocumented) export type VariantTertiary = "tertiary"; +// @internal (undocumented) +export type VerticalPosition = "top" | "center" | "bottom"; + // @internal (undocumented) export function withBubble(WrappedComponent: React_2.ComponentType): React_2.FC; diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index acf6b287b0c..849afc043ac 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -80,6 +80,7 @@ "react-fast-compare": "^3.2.0", "react-helmet": "^6.1.0", "react-intl": "^6.4.1", + "react-loading-skeleton": "^3.4.0", "react-markdown": "^9.0.1", "react-measure": "^2.5.2", "react-native-listener": "~1.1.0", diff --git a/libs/sdk-ui-kit/src/@ui/@types/icon.ts b/libs/sdk-ui-kit/src/@ui/@types/icon.ts index f0838443d52..0c4dcfea6a8 100644 --- a/libs/sdk-ui-kit/src/@ui/@types/icon.ts +++ b/libs/sdk-ui-kit/src/@ui/@types/icon.ts @@ -3,4 +3,4 @@ /** * @internal */ -export type IconType = "check" | "plus" | "sync"; +export type IconType = "check" | "plus" | "sync" | "alert" | "close"; diff --git a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.scss b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.scss index 80c8b50c6cf..1a7753e4d70 100644 --- a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.scss +++ b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.scss @@ -57,7 +57,8 @@ &-small { height: var(--gd-button-S); padding: var(--gd-spacing-6px) var(--gd-spacing-10px); - font-size: 14px; + font-size: 12px; + line-height: 14px; &#{$root}--iconPosition { &-left { @@ -74,7 +75,7 @@ height: var(--gd-button-M); padding: var(--gd-spacing-6px) var(--gd-spacing-15px); font-size: 14px; - + line-height: 16px; &#{$root}--iconPosition { &-left { padding-left: var(--gd-spacing-10px); @@ -90,7 +91,7 @@ height: var(--gd-button-L); padding: var(--gd-spacing-6px) var(--gd-spacing-20px); font-size: 16px; - + line-height: 18px; &#{$root}--iconPosition { &-left { padding-left: var(--gd-spacing-15px); @@ -221,12 +222,10 @@ &#{$root}--size { &-small, - &-medium { - padding: var(--gd-spacing-6px) var(--gd-spacing-5px); - } - + &-medium, &-large { - padding: var(--gd-spacing-6px) var(--gd-spacing-10px); + padding: 0; + height: auto; } } } @@ -260,12 +259,10 @@ &#{$root}--size { &-small, - &-medium { - padding: var(--gd-spacing-6px) var(--gd-spacing-5px); - } - + &-medium, &-large { - padding: var(--gd-spacing-6px) var(--gd-spacing-10px); + padding: 0; + height: auto; } } } diff --git a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx index 27184d4d689..2231eb17659 100644 --- a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx +++ b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx @@ -17,6 +17,7 @@ import { UiIcon } from "../UiIcon/UiIcon.js"; * @internal */ export interface UiButtonProps { + buttonRef?: React.RefObject; size?: SizeSmall | SizeMedium | SizeLarge; variant?: VariantPrimary | VariantSecondary | VariantTertiary | VariantPopOut | VariantDanger; iconBefore?: IconType; @@ -25,7 +26,8 @@ export interface UiButtonProps { isDisabled?: boolean; isLoading?: boolean; tooltip?: React.ReactNode; - onClick?: () => void; + onClick?: (e: React.MouseEvent) => void; + dataId?: string; } const { b, e } = bem("gd-ui-kit-button"); @@ -34,6 +36,7 @@ const { b, e } = bem("gd-ui-kit-button"); * @internal */ export const UiButton = ({ + buttonRef, size = "medium", variant = "secondary", label, @@ -41,11 +44,20 @@ export const UiButton = ({ isLoading, iconBefore, iconAfter, + onClick, + dataId, }: UiButtonProps) => { const iconPosition = iconBefore ? "left" : iconAfter ? "right" : undefined; return ( - \",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -137,13 +137,13 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c335dd78-f29e-4ec1-a4bf-dd86a5d0601f" + "uuid": "388494c3-f99e-44f7-8517-0ba112b5d211" }, { - "id": "c1688e3b-89d3-4625-aa64-228ee4a6afa0", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f66b3bc182a084920b1d8148fb38e120810f3d79f7b0ca08fdfb91b604bf60be6985f82facafc6a77b66555e2879ecc50200be34", + "id": "62441cb1-f8d0-4fdd-85f3-7de01f0c6c33", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_e992365dd3dcc25b64cd2b081d27d0f6971ae76181505cc2734f498d05612c2ddb6a0b5d80350faa813d5f8c125d2f651a3eda4f", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f66b3bc182a084920b1d8148fb38e120810f3d79%3Af7b0ca08fdfb91b604bf60be6985f82facafc6a77b66555e2879ecc50200be34?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/e992365dd3dcc25b64cd2b081d27d0f6971ae761%3A81505cc2734f498d05612c2ddb6a0b5d80350faa813d5f8c125d2f651a3eda4f?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -161,10 +161,10 @@ "Content-Type": "application/json" } }, - "uuid": "c1688e3b-89d3-4625-aa64-228ee4a6afa0" + "uuid": "62441cb1-f8d0-4fdd-85f3-7de01f0c6c33" }, { - "id": "134ed2bc-6998-417f-9e72-8f70f1470bc4", + "id": "602f4193-f59e-4dfb-baf4-65fa905b38bd", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -179,7 +179,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_stage.stagename\",\"label\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"labelName\":\"Stage Name\",\"attribute\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\"},\"attributeName\":\"Stage Name\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"f66b3bc182a084920b1d8148fb38e120810f3d79:f7b0ca08fdfb91b604bf60be6985f82facafc6a77b66555e2879ecc50200be34\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_stage.stagename\",\"label\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"labelName\":\"Stage Name\",\"attribute\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\"},\"attributeName\":\"Stage Name\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"e992365dd3dcc25b64cd2b081d27d0f6971ae761:81505cc2734f498d05612c2ddb6a0b5d80350faa813d5f8c125d2f651a3eda4f\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -192,17 +192,17 @@ "Content-Type": "application/json" } }, - "uuid": "134ed2bc-6998-417f-9e72-8f70f1470bc4" + "uuid": "602f4193-f59e-4dfb-baf4-65fa905b38bd" }, { - "id": "f0a4c234-6a18-4981-a954-8aecf15abbf8", + "id": "47852ebf-c3c0-4553-a5cb-9f7f6b3710af", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_owner.department_id\"}", + "equalToJson": "{\"label\":\"f_owner.department_id\",\"exactFilter\":[\"Direct Sales\"],\"filterBy\":{\"labelType\":\"REQUESTED\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -210,7 +210,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Direct Sales\",\"primaryTitle\":\"Direct Sales\"},{\"title\":\"Inside Sales\",\"primaryTitle\":\"Inside Sales\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"70026903a16b2b90772724ddec7d31ac\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Direct Sales\",\"primaryTitle\":\"Direct Sales\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"127518cb1d9349419212df42fa72615e\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -223,17 +223,17 @@ "Content-Type": "application/json" } }, - "uuid": "f0a4c234-6a18-4981-a954-8aecf15abbf8" + "uuid": "47852ebf-c3c0-4553-a5cb-9f7f6b3710af" }, { - "id": "a94f71c4-eeb5-40ab-801a-5848ec6de1ed", + "id": "8914515d-ac29-4cd1-9161-ce953db83fda", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_owner.department_id\",\"exactFilter\":[\"Direct Sales\"],\"filterBy\":{\"labelType\":\"REQUESTED\"}}", + "equalToJson": "{\"label\":\"f_owner.department_id\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -241,7 +241,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Direct Sales\",\"primaryTitle\":\"Direct Sales\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"fbe424b7818d9d400b145490ae595f71\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Direct Sales\",\"primaryTitle\":\"Direct Sales\"},{\"title\":\"Inside Sales\",\"primaryTitle\":\"Inside Sales\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"93c598e96fdee1135cdfedf34a727fc7\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -254,10 +254,10 @@ "Content-Type": "application/json" } }, - "uuid": "a94f71c4-eeb5-40ab-801a-5848ec6de1ed" + "uuid": "8914515d-ac29-4cd1-9161-ce953db83fda" }, { - "id": "2732a867-c29d-4f3f-8d37-212c1e218b7d", + "id": "f839ae50-3e53-4c81-83e6-998322f75fad", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_owner.department_id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id?include=datasets", @@ -265,7 +265,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -283,10 +283,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2732a867-c29d-4f3f-8d37-212c1e218b7d" + "uuid": "f839ae50-3e53-4c81-83e6-998322f75fad" }, { - "id": "a57c10db-0f46-4570-89e8-ea44fd89469d", + "id": "4b437cfb-7eaf-4bdc-a880-f5cb0cfaee29", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_owner.department_id&include=labels", @@ -312,10 +312,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a57c10db-0f46-4570-89e8-ea44fd89469d" + "uuid": "4b437cfb-7eaf-4bdc-a880-f5cb0cfaee29" }, { - "id": "436f60da-9944-4d3c-b05a-084ca081e0f0", + "id": "01f2a0ab-398e-4f41-86b1-41de33e94523", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -323,7 +323,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -334,10 +334,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "436f60da-9944-4d3c-b05a-084ca081e0f0" + "uuid": "01f2a0ab-398e-4f41-86b1-41de33e94523" }, { - "id": "fb5be314-3467-4711-845b-708d962dc985", + "id": "e81aa8b8-8404-4ef0-9866-04b1c5803ae0", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -358,10 +358,10 @@ "Content-Type": "application/json" } }, - "uuid": "fb5be314-3467-4711-845b-708d962dc985" + "uuid": "e81aa8b8-8404-4ef0-9866-04b1c5803ae0" }, { - "id": "aa7c1244-05ff-4fab-b6f1-d25d48cdd9b7", + "id": "1f8f4585-fb0d-4866-bb1b-8b4db24986b8", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%271b35747d-d7a3-4052-9f07-a9aa93248389%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -382,10 +382,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "aa7c1244-05ff-4fab-b6f1-d25d48cdd9b7" + "uuid": "1f8f4585-fb0d-4866-bb1b-8b4db24986b8" }, { - "id": "9be925bb-30f8-4686-a559-9ce032b8c8fa", + "id": "319ed8b7-2728-4f6b-ad50-8501eac54562", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -406,10 +406,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9be925bb-30f8-4686-a559-9ce032b8c8fa" + "uuid": "319ed8b7-2728-4f6b-ad50-8501eac54562" }, { - "id": "d384afff-56ff-409f-a9ed-1fae304645da", + "id": "d3d6dd3b-dfd9-4c25-9da1-51f74fbe9485", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -430,10 +430,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d384afff-56ff-409f-a9ed-1fae304645da" + "uuid": "d3d6dd3b-dfd9-4c25-9da1-51f74fbe9485" }, { - "id": "07b7dfe9-6aec-424c-b17a-270af4621aa0", + "id": "7a6150f3-c372-4167-8ce3-9e10388c62a5", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -454,66 +454,66 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "07b7dfe9-6aec-424c-b17a-270af4621aa0" + "uuid": "7a6150f3-c372-4167-8ce3-9e10388c62a5" }, { - "id": "2b53fe6b-3fd4-4e7e-9132-2f9b4c8820e0", - "name": "api_v1_entities_workspaces", + "id": "1cea0034-3697-48d0-be9d-5ee2f483dea9", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], - "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "2b53fe6b-3fd4-4e7e-9132-2f9b4c8820e0" + "uuid": "1cea0034-3697-48d0-be9d-5ee2f483dea9" }, { - "id": "5e69c6fd-78fc-4b5b-bbf1-e4305842efec", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "88f6a263-6712-4515-918b-24b31a4057cb", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5e69c6fd-78fc-4b5b-bbf1-e4305842efec" + "uuid": "88f6a263-6712-4515-918b-24b31a4057cb" }, { - "id": "9b117ac5-d0bc-4206-8982-8e8eb03060ab", + "id": "1b469e7e-be6f-4d05-8694-6fe6c0f0d139", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D1b35747d-d7a3-4052-9f07-a9aa93248389%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -534,10 +534,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9b117ac5-d0bc-4206-8982-8e8eb03060ab" + "uuid": "1b469e7e-be6f-4d05-8694-6fe6c0f0d139" }, { - "id": "0a735780-7b8f-4feb-ab32-562f99a3e6d0", + "id": "872d6d4f-48fc-4c8b-a67d-21feb4f9a55d", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -545,7 +545,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -563,10 +563,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "0a735780-7b8f-4feb-ab32-562f99a3e6d0" + "uuid": "872d6d4f-48fc-4c8b-a67d-21feb4f9a55d" }, { - "id": "d811c279-84ea-48a7-b42e-4b8464790d93", + "id": "11d3b06e-9303-44c5-9f40-729339812dce", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -574,7 +574,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -592,10 +592,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d811c279-84ea-48a7-b42e-4b8464790d93" + "uuid": "11d3b06e-9303-44c5-9f40-729339812dce" }, { - "id": "0a5e908e-46bb-44de-a136-259a800a3857", + "id": "39f28ece-f5f8-4ee5-8aa4-f4266e1d63f1", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_1b35747d-d7a3-4052-9f07-a9aa93248389", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -603,7 +603,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"}},{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/45d8ead4-7e44-4474-a99b-8f6ce211fbfc\"}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"}},{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/45d8ead4-7e44-4474-a99b-8f6ce211fbfc\"}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -621,10 +621,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "0a5e908e-46bb-44de-a136-259a800a3857" + "uuid": "39f28ece-f5f8-4ee5-8aa4-f4266e1d63f1" }, { - "id": "d963afec-0ce7-4116-aac1-4b09c2c0adce", + "id": "c93dd8b0-f5e7-4c68-b1c3-573a360c9628", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -632,7 +632,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -648,7 +648,38 @@ "Content-Type": "application/json" } }, - "uuid": "d963afec-0ce7-4116-aac1-4b09c2c0adce" + "uuid": "c93dd8b0-f5e7-4c68-b1c3-573a360c9628" + }, + { + "id": "9c5dd40c-d03d-435a-ae02-aba0faf25ba1", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "9c5dd40c-d03d-435a-ae02-aba0faf25ba1" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardBasicActions.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardBasicActions.spec.ts.json index 36955bc3527..50d94760fd2 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardBasicActions.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardBasicActions.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "1ed1bd34-e92f-4358-8986-907b1a9c6f62", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_67616a323495b66ad7b8fa4fcbd0982da6e9e4c3377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1", + "id": "149bf888-80a3-46c0-bd6d-6832556153d3", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_b5aba9a4ec7f4a897150b6e488f18c3261e44448d0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/67616a323495b66ad7b8fa4fcbd0982da6e9e4c3%3A377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/b5aba9a4ec7f4a897150b6e488f18c3261e44448%3Ad0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb", "method": "GET" }, "response": { @@ -22,10 +22,10 @@ "Content-Type": "application/json" } }, - "uuid": "1ed1bd34-e92f-4358-8986-907b1a9c6f62" + "uuid": "149bf888-80a3-46c0-bd6d-6832556153d3" }, { - "id": "bd5fa3be-c3d1-4032-9208-bcf36c392575", + "id": "1ff7ad29-5fec-4f1b-88ce-ecbdb006184c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -40,7 +40,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"67616a323495b66ad7b8fa4fcbd0982da6e9e4c3:377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"b5aba9a4ec7f4a897150b6e488f18c3261e44448:d0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -53,10 +53,10 @@ "Content-Type": "application/json" } }, - "uuid": "bd5fa3be-c3d1-4032-9208-bcf36c392575" + "uuid": "1ff7ad29-5fec-4f1b-88ce-ecbdb006184c" }, { - "id": "4af82b5b-7231-46aa-bcdd-2fbb4828ea5d", + "id": "f29a7c87-8609-44e2-8770-e517078c2003", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -64,7 +64,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -82,10 +82,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4af82b5b-7231-46aa-bcdd-2fbb4828ea5d" + "uuid": "f29a7c87-8609-44e2-8770-e517078c2003" }, { - "id": "8a4952a5-6b6e-484a-92d1-ff4a60a73232", + "id": "61a80d8d-5e0d-43c2-9a2e-3d2f1cea0a77", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -106,18 +106,18 @@ "Content-Type": "application/json" } }, - "uuid": "8a4952a5-6b6e-484a-92d1-ff4a60a73232" + "uuid": "61a80d8d-5e0d-43c2-9a2e-3d2f1cea0a77" }, { - "id": "e780aa15-6cfa-4a8f-a51d-89f6eb971ef2", - "name": "api_v1_entities_notificationchannels", + "id": "e3f584e5-f51a-4498-99f0-d25ebae79f83", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -130,18 +130,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e780aa15-6cfa-4a8f-a51d-89f6eb971ef2" + "uuid": "e3f584e5-f51a-4498-99f0-d25ebae79f83" }, { - "id": "9d957871-e82d-4916-8afe-52ca0e995d6b", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "27c09dd3-3c00-4746-b57a-b991d51936d9", + "name": "api_v1_entities_notificationchannels", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", + "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -154,10 +154,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9d957871-e82d-4916-8afe-52ca0e995d6b" + "uuid": "27c09dd3-3c00-4746-b57a-b991d51936d9" }, { - "id": "81857570-fba4-4d07-ae8d-194c42488a75", + "id": "2514966c-cd7d-4bb7-9ef9-6ba01dd35666", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%2746dbb7b3-468c-436f-a2ff-85fbf4e8d5ad%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -178,10 +178,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "81857570-fba4-4d07-ae8d-194c42488a75" + "uuid": "2514966c-cd7d-4bb7-9ef9-6ba01dd35666" }, { - "id": "7cb60b8d-32f6-45e3-8688-9a62e4189971", + "id": "c2343503-ff3a-43f8-8656-3a7cae0e0226", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -202,10 +202,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7cb60b8d-32f6-45e3-8688-9a62e4189971" + "uuid": "c2343503-ff3a-43f8-8656-3a7cae0e0226" }, { - "id": "18880df6-cdc7-4900-a011-8ced4d6b2d40", + "id": "61d35f1c-6ac2-4fb7-a9a1-5d9e7855be21", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -213,7 +213,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -231,10 +231,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "18880df6-cdc7-4900-a011-8ced4d6b2d40" + "uuid": "61d35f1c-6ac2-4fb7-a9a1-5d9e7855be21" }, { - "id": "cef21e5d-0682-4f98-9519-41eb09fccd25", + "id": "13a2acb2-96f7-433e-a4fc-4db9262b7515", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -242,7 +242,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -260,10 +260,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "cef21e5d-0682-4f98-9519-41eb09fccd25" + "uuid": "13a2acb2-96f7-433e-a4fc-4db9262b7515" }, { - "id": "8071838a-6549-44d5-8b84-b20df0fbcc69", + "id": "f7d797d2-8710-437b-85bd-1066e48edc0f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -284,45 +284,47 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8071838a-6549-44d5-8b84-b20df0fbcc69" + "uuid": "f7d797d2-8710-437b-85bd-1066e48edc0f" }, { - "id": "d2d82f2b-11c8-4cff-a9d1-ef8c3640ea1c", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "0687dab5-217d-4ba5-84b2-88cacff53206", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d2d82f2b-11c8-4cff-a9d1-ef8c3640ea1c" + "uuid": "0687dab5-217d-4ba5-84b2-88cacff53206" }, { - "id": "79fa4176-a383-49dc-a5c4-2f55c0120088", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", + "id": "09662aee-82fe-45a6-885f-7cf8b8734bcd", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -340,39 +342,68 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "79fa4176-a383-49dc-a5c4-2f55c0120088" + "uuid": "09662aee-82fe-45a6-885f-7cf8b8734bcd" }, { - "id": "fe5642be-4a36-4232-b0c5-d3797eeef759", - "name": "api_v1_entities_workspaces", + "id": "02e5d8c2-fe2e-49a2-9e17-433d3c103004", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "02e5d8c2-fe2e-49a2-9e17-433d3c103004" + }, + { + "id": "923429ec-140d-4cbe-986c-b938437684fc", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "fe5642be-4a36-4232-b0c5-d3797eeef759" + "uuid": "923429ec-140d-4cbe-986c-b938437684fc" }, { - "id": "e764976f-4a23-446c-b4a6-1429a5b62f25", + "id": "cb63ebdd-8713-42ff-9d97-18be35ba73a8", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -380,7 +411,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -391,10 +422,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e764976f-4a23-446c-b4a6-1429a5b62f25" + "uuid": "cb63ebdd-8713-42ff-9d97-18be35ba73a8" }, { - "id": "cfe2dd7c-969a-4a31-9ca1-6550445718b7", + "id": "540ecd78-fe47-41db-a678-518ac1508d78", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -402,7 +433,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -418,7 +449,7 @@ "Content-Type": "application/json" } }, - "uuid": "cfe2dd7c-969a-4a31-9ca1-6550445718b7" + "uuid": "540ecd78-fe47-41db-a678-518ac1508d78" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardRichText.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardRichText.spec.ts.json index 84cdd7e9163..970fe31305f 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardRichText.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardRichText.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "d7eba302-b966-4239-ab76-2412700a5b17", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_1db8aa7dc60f20d539a47b44498236a5a8bf57cad7ef8d5cd7cf5b8e42918ce43666d29d4b5aefa2f69e303227d285aec19945b3", + "id": "9758c087-4325-48c3-b6b4-03a417264423", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_9fd6957ece869219af5c43aafa6e9458e49b16f67b0216bc2a0b534f2a8f1ff3b0e1cf232a6810ca7bbaccc8435115504ebc3cc9", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/1db8aa7dc60f20d539a47b44498236a5a8bf57ca%3Ad7ef8d5cd7cf5b8e42918ce43666d29d4b5aefa2f69e303227d285aec19945b3?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/9fd6957ece869219af5c43aafa6e9458e49b16f6%3A7b0216bc2a0b534f2a8f1ff3b0e1cf232a6810ca7bbaccc8435115504ebc3cc9?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -22,10 +22,10 @@ "Content-Type": "application/json" } }, - "uuid": "d7eba302-b966-4239-ab76-2412700a5b17" + "uuid": "9758c087-4325-48c3-b6b4-03a417264423" }, { - "id": "c9c3521b-9f1f-42eb-b120-2a17b0060629", + "id": "70b33f0d-0157-48d3-9ec9-1d6f9fe5ca38", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -40,7 +40,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_8d33a0b1_cfdf_4074_a26a_4c4357774967\",\"format\":\"#,##0.00\",\"name\":\"# Of Opportunities Won\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"1db8aa7dc60f20d539a47b44498236a5a8bf57ca:d7ef8d5cd7cf5b8e42918ce43666d29d4b5aefa2f69e303227d285aec19945b3\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_8d33a0b1_cfdf_4074_a26a_4c4357774967\",\"format\":\"#,##0.00\",\"name\":\"# Of Opportunities Won\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"9fd6957ece869219af5c43aafa6e9458e49b16f6:7b0216bc2a0b534f2a8f1ff3b0e1cf232a6810ca7bbaccc8435115504ebc3cc9\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -53,10 +53,10 @@ "Content-Type": "application/json" } }, - "uuid": "c9c3521b-9f1f-42eb-b120-2a17b0060629" + "uuid": "70b33f0d-0157-48d3-9ec9-1d6f9fe5ca38" }, { - "id": "53e5bbe4-8bce-4549-ab59-a43020d6ad21", + "id": "7732a2a4-0240-46cd-88a1-a7d59a2624c0", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -64,7 +64,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -82,10 +82,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "53e5bbe4-8bce-4549-ab59-a43020d6ad21" + "uuid": "7732a2a4-0240-46cd-88a1-a7d59a2624c0" }, { - "id": "6481e7d3-f853-4154-8b4e-b36a8c905813", + "id": "b15b21e0-fd59-4afc-a0b1-76834df69366", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -106,10 +106,10 @@ "Content-Type": "application/json" } }, - "uuid": "6481e7d3-f853-4154-8b4e-b36a8c905813" + "uuid": "b15b21e0-fd59-4afc-a0b1-76834df69366" }, { - "id": "bdc9a530-b9d2-43b7-9120-b8c36fede3e6", + "id": "fe8cf2d9-7b8a-4549-96a1-102725ef21ca", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -130,10 +130,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "bdc9a530-b9d2-43b7-9120-b8c36fede3e6" + "uuid": "fe8cf2d9-7b8a-4549-96a1-102725ef21ca" }, { - "id": "90ea63cc-59cd-498c-a333-e075c25bb59d", + "id": "79e6a610-d945-43ec-8d7c-9ae820388b8e", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -154,10 +154,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "90ea63cc-59cd-498c-a333-e075c25bb59d" + "uuid": "79e6a610-d945-43ec-8d7c-9ae820388b8e" }, { - "id": "dc486a3d-1a5e-4838-9e25-fcb8f553bf1b", + "id": "7fa3f9c7-fe73-46c3-a30c-0ff79a5791d5", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%278dea7e2f-315d-4d62-ad51-2ed2ab29758b%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -178,10 +178,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "dc486a3d-1a5e-4838-9e25-fcb8f553bf1b" + "uuid": "7fa3f9c7-fe73-46c3-a30c-0ff79a5791d5" }, { - "id": "c706be1b-efc0-4b0d-9e2a-4116359c223e", + "id": "8c6a64d2-ff20-48d5-ae86-58186f07d02f", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -202,66 +202,61 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c706be1b-efc0-4b0d-9e2a-4116359c223e" + "uuid": "8c6a64d2-ff20-48d5-ae86-58186f07d02f" }, { - "id": "9e089cdd-359d-4042-b556-283251bf3567", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "f97b3b59-bfcd-4737-bb78-716ce4601c0c", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], - "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "9e089cdd-359d-4042-b556-283251bf3567" + "uuid": "f97b3b59-bfcd-4737-bb78-716ce4601c0c" }, { - "id": "52e0ad54-422f-44cd-8226-5c71c791327b", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "e805eb4a-e267-4cfd-b870-72b075f2962f", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D8dea7e2f-315d-4d62-ad51-2ed2ab29758b%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%278dea7e2f-315d-4d62-ad51-2ed2ab29758b%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%278dea7e2f-315d-4d62-ad51-2ed2ab29758b%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "52e0ad54-422f-44cd-8226-5c71c791327b" + "uuid": "e805eb4a-e267-4cfd-b870-72b075f2962f" }, { - "id": "c911118c-acde-4523-9e5c-1dec4f1fe666", + "id": "dae46787-11f2-47c5-9a2e-2b2803c426ca", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -269,7 +264,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -287,10 +282,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c911118c-acde-4523-9e5c-1dec4f1fe666" + "uuid": "dae46787-11f2-47c5-9a2e-2b2803c426ca" }, { - "id": "b326734c-cdcc-4cda-a9c6-4ed0d84e4545", + "id": "d095de47-7325-4bfa-977c-0ac339e84858", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -298,7 +293,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -316,34 +311,39 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b326734c-cdcc-4cda-a9c6-4ed0d84e4545" + "uuid": "d095de47-7325-4bfa-977c-0ac339e84858" }, { - "id": "9f196440-b2bc-44e2-8c3b-f167bf26f23c", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", + "id": "43dcd03b-5a45-4591-bb5d-f049c03ef976", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D8dea7e2f-315d-4d62-ad51-2ed2ab29758b%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%278dea7e2f-315d-4d62-ad51-2ed2ab29758b%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%278dea7e2f-315d-4d62-ad51-2ed2ab29758b%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9f196440-b2bc-44e2-8c3b-f167bf26f23c" + "uuid": "43dcd03b-5a45-4591-bb5d-f049c03ef976" }, { - "id": "7f9b0881-4664-4514-8685-a4f7a628fe25", + "id": "392de30e-c147-4767-97dc-e14d1daedb2a", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_8dea7e2f-315d-4d62-ad51-2ed2ab29758b", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -351,7 +351,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}]},\"modifiedBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"visualizationObjects\":{\"data\":[{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}]},\"modifiedBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"visualizationObjects\":{\"data\":[{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -369,10 +369,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7f9b0881-4664-4514-8685-a4f7a628fe25" + "uuid": "392de30e-c147-4767-97dc-e14d1daedb2a" }, { - "id": "42bdb8da-5a22-4af9-b326-3b9df6087536", + "id": "98e7c096-8cb8-480b-9462-048f5a6e7f10", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -380,7 +380,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -391,10 +391,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "42bdb8da-5a22-4af9-b326-3b9df6087536" + "uuid": "98e7c096-8cb8-480b-9462-048f5a6e7f10" }, { - "id": "26288293-3e25-4083-92cc-d6f8206738a5", + "id": "f0e3b12b-d3f9-4390-9b08-10aacc905e2d", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -402,7 +402,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -418,7 +418,38 @@ "Content-Type": "application/json" } }, - "uuid": "26288293-3e25-4083-92cc-d6f8206738a5" + "uuid": "f0e3b12b-d3f9-4390-9b08-10aacc905e2d" + }, + { + "id": "602cc995-6950-4cf8-8d67-cce29447206c", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "602cc995-6950-4cf8-8d67-cce29447206c" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardScatterPlot.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardScatterPlot.spec.ts.json index adea581f83c..bee5e10558d 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardScatterPlot.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardScatterPlot.spec.ts.json @@ -1,15 +1,15 @@ { "mappings": [ { - "id": "927a4331-4b69-4cf8-9421-d6a64922c962", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_0c676feec9a12d03942999e61c74002f0f47e16211d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6", + "id": "5dad2a85-9fcb-4138-9cd3-0a7c28e811fb", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f2bd8b322f222ae31f125f1a735e3a14f8c67ec6bbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/0c676feec9a12d03942999e61c74002f0f47e162%3A11d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f2bd8b322f222ae31f125f1a735e3a14f8c67ec6%3Abbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[2423890.44,14619.89656174334],[1229796.71,15851.6303926097],[1219510.1,23453.791789473686],[61200.4,15108.65382647386],[200000.0,21204.94606571188],[null,23164.952256],[null,61080.7092],[null,84288.606],[null,null],[null,8875.86],[null,null],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", + "body": "{\"data\":[[2423890.44,14619.896561743342],[1229796.71,15851.630392609699],[1219510.1,23453.791789473686],[61200.4,15108.65382647386],[200000.0,21204.94606571188],[null,23164.952256],[null,61080.7092],[null,84288.606],[null,null],[null,8875.86],[null,null],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/json" } }, - "uuid": "927a4331-4b69-4cf8-9421-d6a64922c962" + "uuid": "5dad2a85-9fcb-4138-9cd3-0a7c28e811fb" }, { - "id": "fcb99916-49aa-400a-8c76-ac38abf2fc30", + "id": "596e3a6d-7edc-4c01-bbb0-837a7e803f1b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -45,7 +45,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"0c676feec9a12d03942999e61c74002f0f47e162:11d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"f2bd8b322f222ae31f125f1a735e3a14f8c67ec6:bbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -63,18 +63,18 @@ "Content-Type": "application/json" } }, - "uuid": "fcb99916-49aa-400a-8c76-ac38abf2fc30" + "uuid": "596e3a6d-7edc-4c01-bbb0-837a7e803f1b" }, { - "id": "9eb9e611-62f2-4827-854b-24d865166bfd", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "04b7d059-5748-44e1-9276-af132b64f95e", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%273999bcb1-696c-4587-a075-c403eef07552%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%273999bcb1-696c-4587-a075-c403eef07552%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -84,21 +84,21 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9eb9e611-62f2-4827-854b-24d865166bfd" + "uuid": "04b7d059-5748-44e1-9276-af132b64f95e" }, { - "id": "10602b8d-7475-43fe-af0e-23f8156c2d76", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "fc973e2c-c238-4d15-9d46-b54ddcd35dea", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%273999bcb1-696c-4587-a075-c403eef07552%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%273999bcb1-696c-4587-a075-c403eef07552%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -108,13 +108,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "10602b8d-7475-43fe-af0e-23f8156c2d76" + "uuid": "fc973e2c-c238-4d15-9d46-b54ddcd35dea" }, { - "id": "07c91756-6484-4bc7-b6a3-22a8a17a1c42", + "id": "180267e8-d861-4df2-8c27-b7efe155d62a", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -135,10 +135,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "07c91756-6484-4bc7-b6a3-22a8a17a1c42" + "uuid": "180267e8-d861-4df2-8c27-b7efe155d62a" }, { - "id": "e91b5bc1-a8a2-4af2-9979-d54cfd0082b0", + "id": "12a44c87-3ac2-494d-b9ca-bfb5ad9ae14f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -159,10 +159,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e91b5bc1-a8a2-4af2-9979-d54cfd0082b0" + "uuid": "12a44c87-3ac2-494d-b9ca-bfb5ad9ae14f" }, { - "id": "55ab6dff-a099-4d06-b669-aee473822af7", + "id": "7d7f8245-fb49-436d-8516-afdd87feb200", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -183,18 +183,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "55ab6dff-a099-4d06-b669-aee473822af7" + "uuid": "7d7f8245-fb49-436d-8516-afdd87feb200" }, { - "id": "6fddc300-0213-4b7e-bbe2-86550618c9a2", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "70ad3bd2-ee87-4de2-80cd-065fceb4a284", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -212,18 +212,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6fddc300-0213-4b7e-bbe2-86550618c9a2" + "uuid": "70ad3bd2-ee87-4de2-80cd-065fceb4a284" }, { - "id": "01ae1192-52c2-4ecb-b136-d4aad14c2903", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "c2ef6cd0-cda2-4552-9ab9-eb553826f489", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -241,10 +241,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "01ae1192-52c2-4ecb-b136-d4aad14c2903" + "uuid": "c2ef6cd0-cda2-4552-9ab9-eb553826f489" }, { - "id": "2154b109-1ea5-4791-ae33-0b4140dce818", + "id": "eddf5cee-df53-4cd0-b6f9-3a73b1813eff", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D3999bcb1-696c-4587-a075-c403eef07552%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -265,10 +265,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2154b109-1ea5-4791-ae33-0b4140dce818" + "uuid": "eddf5cee-df53-4cd0-b6f9-3a73b1813eff" }, { - "id": "1994c1e6-1054-42ef-8f65-25ddd514115a", + "id": "c7d79c53-9f19-48b5-b4cf-84f96cc2b445", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_3999bcb1-696c-4587-a075-c403eef07552", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -294,88 +294,97 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1994c1e6-1054-42ef-8f65-25ddd514115a" + "uuid": "c7d79c53-9f19-48b5-b4cf-84f96cc2b445" }, { - "id": "c5183fc0-ffe1-487b-9dcf-375e64cd6c20", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "7e6f58fb-5adc-4def-9749-6937f82d3303", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c5183fc0-ffe1-487b-9dcf-375e64cd6c20" + "uuid": "7e6f58fb-5adc-4def-9749-6937f82d3303" }, { - "id": "9e4df0ef-b0ac-4755-ab48-ef8c7317166d", - "name": "api_v1_entities_workspaces", + "id": "af5785df-e274-4b40-97a3-fa95bd4540db", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "9e4df0ef-b0ac-4755-ab48-ef8c7317166d" + "uuid": "af5785df-e274-4b40-97a3-fa95bd4540db" }, { - "id": "ffdc4340-d428-48fb-806a-4d3efb0590fb", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", + "id": "d41694ce-a154-4d53-9de8-002eef50aeb4", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=5, private", + "Cache-Control": "max-age=10, private", "X-Content-Type-Options": "nosniff", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "ffdc4340-d428-48fb-806a-4d3efb0590fb" + "uuid": "d41694ce-a154-4d53-9de8-002eef50aeb4" }, { - "id": "43400ab2-4702-4a78-bf47-0b678e8799d5", + "id": "5d546e70-7889-43d4-9fd1-f9532c9fcc19", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -383,7 +392,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -399,7 +408,29 @@ "Content-Type": "application/json" } }, - "uuid": "43400ab2-4702-4a78-bf47-0b678e8799d5" + "uuid": "5d546e70-7889-43d4-9fd1-f9532c9fcc19" + }, + { + "id": "61198bbb-5262-4080-8768-571f0a5a0b0c", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "max-age=5, private", + "X-Content-Type-Options": "nosniff", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "X-XSS-Protection": "0", + "Content-Type": "application/vnd.gooddata.api+json" + } + }, + "uuid": "61198bbb-5262-4080-8768-571f0a5a0b0c" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTiger.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTiger.spec.ts.json index 063c7934f33..2652a116b10 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTiger.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTiger.spec.ts.json @@ -1,15 +1,15 @@ { "mappings": [ { - "id": "d3140bbe-3050-47d1-a3b5-f9618f225f96", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_bbd5facc10e7d177d9cb487f55c88687452f56f4eb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006", + "id": "1195dee5-4b8c-448c-9484-7052f95efdca", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_bc23fd3180d82875245d02393f89af1ddb5f8b82db2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/bbd5facc10e7d177d9cb487f55c88687452f56f4%3Aeb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/bc23fd3180d82875245d02393f89af1ddb5f8b82%3Adb2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[1421087,1341064,1079646,639461,639971,639691,721627,720589,1082419,642235,649957,720325,649521,1203573,640155,1306030,641281,644970,726382,726788,643520,1212221,644996,643330,642831,1291440,645475,725507,1452143,727142,647245,643153,642552,2457448,1287073,649081,644842,3478896,1211652,646552,644695,643265,2517665,645211,643953,646556,646823,644071,644736,2380614,645979,650598,643439,645723,724273,726854,645093,1245939,1290496,644093,645082,647007,727134,643984,1167560,645418,725080,728184,1248532,647506,1300714,1085904,646014,724266,644733,644617,724741,648058,647771,645807,647365,1331188,645785,648756,644561,645757,644534,648289,725744,1208634,1087431,647527,645781,1290073,730345,644694,1291352,1290959,1294649,647661,644880,1372637,727854,646907,645648,1307349,1087953,645011,644012,725030,644521,1288879,1208382,1459513,1288805,647754,650119,644776,729934,1452704,644555,647495,646083,727061,725617,644687,643991,645787,727229,648585,727213,2670178,651227,646394,646253,1129320,1333167,650158,728776,651823,1249516,646087,645433,1334106,646150,731960,726581,647964,648915,729685,2421615,1250642,646824,645333,1169629,1290529,1330928,725968,645673,646522,652934,647640,1290885,645144,645722,727453,1456619,726070,1169934,645659,1467159,729033,645760,645244,648122,1211181,2423120,1371694,1250676,644984,654733,1291970,646965,1299751,2177349,1291528,725864,2419011,647821,1373481,646340,646225,1251707,1309353,647942,650118,645912,1088778,653102,1209993,647069,1291640,2420580,1089045,2609562,1335440,1453452,727640,1210080,2730581,647720,2419782,651210,1088637,1538857,646078,645801,646504,647078,1414297,647122,650337,1414827,2420301,646228,1089339,1374444,648272,1332483,1494328,2669962,1542586,645806,1089720,647852,646872,1210710,646230,1210788,647602,647145,5324979,2421042,646943,1089627,649203,646291,1210890,1533957,1494129,1536118,647785,2744137,1534009,1535439,1416843,648058,1536084,1413539,1535216,727472,1414115,1414178,1413777,2746370,2744743,1535593,645340,654004,2744733,2745298,1413528,1414035,1413853,646425,1538179,1537827,1415745,5670944,649629,1417054,1416060,647255,646001,645936,726785,727765,1535375,1535917,1414157,648019,1414190,649257,1535553,1535542,729889,1536233,1535747,1536877,1414555,1414953,1414414,648754,1414563,1535694,652140,731638,733454,1415654,649231,652536,729103,648584,1414490,733843,728919,1414628,1537814,1536262,1535956,649139,650405,1414560,1417483,1333188,1414662,647691,653578,1414805,648233,1421376,652756,1211028,1332639,647616,1418770,1538337,1539464,1540604,730940,730380,649589,1538412,1418650,1414735,1415161,647094,1536357,1212060,653115,650002,654538,653174,648581,1212246,728589,1539927,1539570,1415260,649469,729634,1534364,1456541,648870,1413853,647327,647076,1535888,1415413,646314,647251,649158,646532,1331235,1413601,1416723,1413488,650548,1211154,1535255,1534977,1414116,1417756,1534934,652530,1538050,1295411,1418009,1416851,648739,649303,1538753,1463634,1415486,1333587,1415531,1415505,652230,648980,607743,1212900,1416089,1536834,1540084,1538198,647427,647222,648178,1415668,1415806,650047,1415680,1415731,1537062,607509,647235,1417144,1415923,650793,652942,650076,1417068,728866,1416620,647678,1537623,648772,1213026,611254,649767,1418574,1418733,647568,1296208,1417710,1540203,1296466,650225,651843,732802,1416442,1418336,1537439,728639,1294958,650097,647808,1420247,653351,1538021,1537936,730440,1417115,650051,649517,1539824,1541335,1419108,1417191,1417301,1417185,649523,649984,1541846,1538848,647954,652775,649108,649758,1417557,1417395,1417395,1213917,653053,1539114,1417443,653802,1417465,648114,1539152,1539152,1419942,1541246,1541548,1542886,1541401,1335819,1417500,650452,1419295,1539173,731157,651426,2390417,651731,1539240,1418018,648389,1417902,1417955,730367,1542302,1417953,1420461,650747,1093386,1540844,1540216,1540961,1418655,1336725,649809,1540292,730905,1539646,1418095,651879,1420132,1418865,1540424,733956,1418248,1421458,1419156,1418922,1381241,1422115,1384221,1543251,1539722,1540596,1215867,649879,1540862,1419128,1543167,1419447,1420855,650221,1541861,654293,1419729,1215120,1424382,1336926,1336581,1335702,1418235,649718,729462,1541940,1540392,1419431,651452,1419246,1301240,2157554,1418393,1092387,1418401,1215171,1215129,1418656,649365,4252956,650037,649893,650459,654996,1420642,1542329,1464349,1541926,649616,1542282,733459,1302057,652065,650927,1542154,1542128,1542425,1215744,649742,1542420,1542642,1386262,1302144,2396031,1422629,1301592,1422061,1384083,734063,1261858,1216935,653383,1420895,649610,1342028,651727,1216167,1542838,731664,1421287,1541896,649728,1419440,655890,652172,651155,1420083,1419635,1419687,1421517,1421502,1301576,1385954,1542615,651263,650248,649898,1422218,650050,1221637,649926,1545099,1421930,1541430,1419838,1543805,1419933,1094799,650786,1541710,652591,1216551,1337958,1420457,1420773,1541854,1420357,654759,1420255,1420160,649424,651661,1420432,1541926,1420263,652066,1506412,1421111,1339155,1422463,1263353,654315,1421825,732281,1543404,1421117,1544213,1421280,651887,1421706,1543671,650068,1544364,651107,4255569,655228,1383944,1543271,655107,1544164,1421665,651562,1422485,1543850,2319980,1095561,652357,1544838,653745,1544455,1422109,4262217,652388,652563,734105,652235,1544549,734467,654265,1422155,1422325,1543940,1543940,733998,649290,650742,2397263,1423301,1422567,651425,1422120,1545083,1545628,652575,1544850,650970,654732,2398007,651301,1340034,1342793,1384021,1263475,650556,1423196,653406,1422938,1423088,654026,733267,1544303,655234,2080284,2398426,1423392,1422610,1223245,654665,1386397,1218741,1544644,2398405,653719,1544797,1545126,652297,1545143,1544974,727350,1423989,1422890,651692,651432,1385507,1426004,1343784,1425359,651009,1221734,1343627,1422890,650829,1423126,1423273,1423100,731969,1545590,651159,1423275,1181695,735565,1545256,652264,1303916,2158494,652155,652492,652624,734126,652152,734755,1545612,654043,1423555,1302477,1423645,1221769,652413,1383866,1423752,1424679,1546120,654567,1545840,1545840,1305364,651455,1423850,1545916,1423870,733341,735102,652566,653151,652430,1101249,652790,1225863,1219632,1097937,652271,1546636,652027,1341990,1424080,1096602,652237,657218,1424429,2361404,652493,1424465,655108,652979,2401643,1098225,1424772,1343761,1222207,650785,1223205,1342881,1101075,652647,652189,653112,652716,733847,1344636,1181706,1101483,654033,653338,652269,651974,1425060,2402481,653800,1425323,654037,735352,1222320,654127,1141684,1100784,652328,1223199,1224651,734289,733280,654873,2402900,1102347,1100310,1140551,656624,1222167,1221930,652966,652788,1101996,1102377,652825,1224927,1100775,653209,653035,1222368,653052,2080545,654105,655139,1099890,656193,1222263,1425480,1222140,653472,2077485,652000,1099866,1343409,735457,1101147,1222260,652187,655434,1343541,657198,1222410,1223805,655119,652357,734392,1100088,2078256,2080254,1101846,1100250,1222530,1222746,1221429,1222482,653473,652088,1102113,655697,1222707,1100397,2078745,2080023,655137,1100439,1222866,1100466,1100493,1100493,654019,1222860,1344279,1100439,1102068,734200,655729,1222935,656582,1100682,1101987,654842,653010,1223160,1101918,655600,653134,734869,652599,1100763,1100940,2081235,655588,1100892,1224315,1223190,1102386,1103754,1103277,1103757,654357,1102215,1224429,1225521,1225902,653560,735830,1344105,1100799,1222281,735090,1223391,1100922,1223304,1223388,1102248,1100979,1101027,1101006,1101078,654184,1101090,654005,1101657,1100505,1101486,1226319,1223520,1101168,655635,1101195,653275,1223601,652396,1101222,1101258,654522,1102314,656839,1225959,1222656,658660,656633,653649,1102248,655929,734763,735677,1227261,656426,1101408,655647,654059,656427,654953,653361,1102050,1101582,656442,1224237,1225083,654084,1224219,1224477,1101897,653061,657982,1226262,654339,654014,653755,2082858,1106091,1102932,1104072,656783,1102089,1101969,1102515,1102923,655355,1224450,1224828,735006,654037,656652,1224888,1102152,654214,1102167,1103070,1102194,1225125,653603,1102275,1104387,1102884,1102863,1103772,653558,1104231,654018,654046,654414,1102380,1102419,1104822,2083293,1102491,653589,1102545,1225587,1225350,655080,656263,654338,654998,1103025,655438,1228167,1104978,1226556,1227744,1228848,654623,1102836,1102734,1102734,654511,1225260,1226064,1225449,1102842,1347093,1225428,657282,736371,1104984,736463,1102950,655561,1104276,1103292,1225662,654668,1226361,1226172,1225812,654963,654040,1225887,1226073,1226100,656453,1103406,1103391,1103310,1104321,656375,655563,1227453,1103436,654787,1104936,2085384,1103436,1103478,656204,1227636,657191,1103490,655387,654309,1103619,1226130,1105743,1103517,655422,659792,655330,1103856,1103868,654016,1103652,1226310,655804,1103706,1103706,654989,737127,1105953,1104201,1227792,1104807,1103814,1103976,1105098,1225335,655120,1104930,655604,655110,1104300,1103868,655794,1106076,1228419,1103895,656113,654245,1104468,1226640,1225743,1103103,736493,1105488,2085747,656387,655520,1104828,655688,656689,1226850,1226973,1104315,1104318,1104201,656574,1227474,1228251,655113,1104381,1104528,656173,655686,1227852,654550,2088498,655493,1105707,1227318,1227261,1227285,655966,1105785,1227543,1105230,1228365,656393,657084,1104849,656180,655255,1105131,1105137,655965,655972,655864,655943,655972,655979,655683,656029,655935,1106529,1105614,1105218,737209,1228467,655678,1105407,1105407,655518,1228260,671659,656378,655082,1105374,1105542,1105542,1228518,1228560,655352,1105923,656154,656616,1106685,1105866,655454,656203,656355,656263,656249,656356,737602,657185,1228842,1105716,2088717,656467,656668,1228800,1228623,1105920,658072,656267,657316,656852,1105776,1106619,1105953,656791,656505,1106319,1229532,1228896,1106097,655719,1106055,656753,1229415,658313,657133,656242,655838,1106307,1106715,655789,1230543,1228416,1229472,655923,656858,1106163,656779,2089701,1106298,1107186,1229991,1106736,1230774,655867,1106535,656432,1229370,658337,656541,1229601,656939,656318,656881,1106541,1107408,1106706,1229958,1229460,1352061,1106730,1230363,1229763,656669,655968,1107048,1229820,1230117,1229850,657742,1230204,1106892,1107513,655070,2087547,1227510,656383,1227810,656487,1227855,1105686,1228245,1227750,2087226,1105551,656366,1107039,1230327,657179,656046,1107468,657639,1107135,656772,658548,1230039,1107120,1107027,1107060,651976,1107405,657137,658214,1107420,1107480,1230282,656938,656135,656754,657292,1107144,657111,1230540,657018,1230162,1107354,1230381,657001,1107249,657055,1107411,1230342,1230423,658019,657414,656801,1107546,1230897,1230843,1107903,656616,1107471,658716,1107888,1231206,657322,657429,657240,657487,658328,1230393,1107819,1231056,1230795,657300,1107501,657042,1108113,1107465,1107420,656909,1231035,658144,1107825,1230585,1230630,1107624,656775,1107855,1230981,656887,657272,1108038,2092332,641911,641244,1335215,719769,645065,645125,639648,639329,647443,1203576,643351,642810,641266,640826,1040259,1038434,642722,649675,646640,639881,642721,1164886,640486,642123,1201595,726382,1330975,726200,644728,645077,1084299,721449,644836,1123849,645157,645473,644728,1206951,725803,642361,646936,643820,642487,642607,722715,724873,645292,645177,643077,1211668,644409,642911,1334816,645613,646721,645943,644917,1084839,649760,645408,645355,726995,650726,725216,643652,2142195,644220,643274,727509,645428,1209123,647052,646822,1209795,725620,1250207,644097,644016,1086975,643698,647615,725664,647772,1330166,644794,648316,647019,644265,1209231,650392,726657,644833,1128328,645072,1251087,1415688,727928,644829,646268,1258342,650686,725042,1290371,644744,644528,646067,651489,645466,645290,645102,645198,644945,1212059,644321,650874,1207647,726023,643974,646062,1087050,647253,647853,647026,1334439,645161,646226,724345,644407,644577,653485,1252570,652346,645759,731181,1250126,725696,1088154,644607,647910,647656,650029,645943,644761,1250015,644837,645122,1249912,1290152,651786,652612,1208928,647611,646488,645299,1251238,645929,1292623,645381,652822,645596,645633,727038,648779,645752,728183,1332146,1088793,648399,1372163,731421,728378,648651,652251,1376279,1210653,645383,645836,645215,1332828,1291976,1293288,1336204,1372152,648635,1209939,1088919,646585,727532,1209915,1089168,645722,1250923,1494739,1250841,647224,646346,1373041,1533795,648857,727071,646345,646364,1250610,645502,650115,1496858,645465,646280,646612,647131,646722,646103,1210380,1417350,1210260,1089423,1089423,649203,1089438,645843,729703,1495344,647034,648140,651016,647863,645902,646012,1251209,1453599,1210590,648174,647033,1210851,727580,647648,648315,646833,646866,1412827,1533870,1534158,1534553,646334,1416170,652568,731847,646096,1540522,648531,648060,2383541,1413965,1534174,727100,645524,1534212,1535114,1413201,646230,647676,1539542,1416620,1537900,1536996,647408,646640,1416460,2391026,647377,648494,727705,1535767,1536875,649716,645995,1535356,727593,1534305,1501414,2383921,1535854,1537213,1414272,646888,732133,648313,648201,1414539,1536728,1536567,728449,1539862,651719,650898,1414933,646742,650093,649555,648465,1414770,1414560,652665,649189,652603,649474,1537519,647375,1211502,1536168,649553,1501602,647230,1415230,4239567,648463,648132,1420045,648249,1414749,1090359,730102,647373,1536226,1536264,651280,2316067,647014,649445,648860,647830,648521,1536584,1536340,1209615,729163,1538683,1212339,1378066,1415343,1537437,729940,1538730,649721,657079,649011,648849,1534516,1534752,646874,647148,646879,729424,1536848,1536718,1536819,1537695,1539227,646213,1416469,1415681,1415942,727825,646276,1536538,1539292,1534668,1535028,1414785,1413545,1414107,1536230,1536129,1536260,1332531,1418950,1413978,647032,1534896,1536160,1414737,647695,1332063,1415751,1331370,1413790,1416819,1092192,1538438,648119,4248099,1416726,648430,649282,731745,653085,650353,650244,1536844,729761,648564,1417428,1417369,1537198,1537062,652455,1538342,649579,647828,648288,649864,1537138,1538478,1417367,1213635,1537217,1416975,2391634,1415750,1415955,1415830,1538986,1538801,1463055,1540148,1417950,1416993,648712,1537310,728565,1416055,1420449,651322,1463237,1541259,648371,648599,649389,650763,648077,728416,1418454,1538685,649186,648556,1416020,1416606,649052,647377,1537699,1294930,650229,1416275,1416450,1416487,1416946,728848,1416496,1295088,1417382,1417252,650967,1542302,1420376,730206,651753,2388910,648579,1417185,1419537,1213845,1538876,649792,1417220,1417403,1538941,1417605,1418899,1417487,1418462,1093071,1540863,649834,1091385,1418012,1417484,650605,650041,648108,648775,650208,1214418,730603,729455,1539380,2390090,1418051,1418196,1336287,649253,1382491,1540162,730278,1539491,1539456,1336212,1417963,1418790,1420475,1542391,649155,1540930,1540320,1419896,648732,1419886,1419344,1336830,1418052,648436,1418117,1541347,1539884,1418865,651894,1381866,1418993,1214850,1539753,649701,1419001,651063,1418935,648957,1541310,1418970,649626,1419231,1419424,649352,1540852,1419317,1419177,1420200,1419318,1337328,649574,1541174,1384563,654286,648668,1418200,731668,648413,651030,1420676,653787,650933,1540178,1095090,650295,653656,1420320,1420405,2394220,649868,1542078,1542170,1420440,1420370,649550,650214,2395333,1420892,1420561,651102,1542420,1542577,650373,1420700,1542420,1542571,1420960,649542,649527,1338642,730860,731377,1263211,652387,650343,2395287,1420825,1421505,1423494,1542759,732008,1542686,1216692,2240424,656105,651969,1420971,1301685,1095714,1544873,1421035,1542838,1542851,1421070,1338813,4257015,2395518,1421070,1421070,650194,1541341,1419425,1541610,1541242,1541860,1419565,1419690,1419670,1216284,1541318,734433,730496,650065,1419635,651114,1422277,1421109,1421657,650781,731332,731240,650142,649989,650253,649863,1421587,1543229,1542414,1421507,1421668,649499,1422740,650209,1421070,1419833,649903,1541508,1420055,1420503,1094631,1300610,731570,1216767,654601,1420508,1541926,1542347,4261341,652812,652040,732675,651706,2395931,653619,1217601,1421420,652047,1338702,1140608,650192,1421843,651079,650727,1217577,1543646,1543807,1422393,1423464,651772,1217988,1544378,653597,1304524,1305347,2318388,650102,1383137,1543918,1422442,1544388,1543823,650171,651163,1421980,1422005,645645,652336,652679,652254,651137,1421875,1185504,1223830,651323,1422416,1423812,650735,1422260,651793,1422605,1544281,1544220,734465,1422341,1544282,1422754,651668,1422558,1544574,1544708,650533,651035,655802,652505,1422540,652086,732633,1424913,732625,652106,1304270,655812,1422785,653031,1544814,1423287,2398527,2398847,1423271,1303925,652015,651735,1265200,1423563,652453,651466,651798,651607,1423437,2399970,1422890,1422995,1423100,652443,651721,1545270,653470,651532,1302449,1545346,1545346,652402,2201171,1303360,1423771,1221287,1222068,1545498,650898,651819,651817,733607,651880,1545771,651698,1424945,652359,651666,1096995,654659,1545847,1305367,651353,4266195,1423774,1339998,1423749,733438,1545650,1096374,1545840,652101,1181638,2160470,1182615,1341480,1423921,1545916,1546131,1423870,1545916,652954,652490,652638,652672,1344564,1424010,2400717,733917,733284,1546296,654680,1546768,733021,1224438,652142,655478,1222390,1262770,1424465,655467,1098033,1546750,1546745,652427,655690,655005,651925,1424745,653711,651771,652215,652307,1547004,1304142,1424815,2401831,1424897,1425095,656452,1141167,1547166,733106,1547217,651569,1547335,1425252,1425018,1547318,1304189,1142143,2402539,654136,1141689,652258,733960,734878,1425199,654948,655906,651840,652676,655290,1262789,652263,1101561,1547474,1344145,1344078,1101567,1101687,652896,1101807,652191,652318,735794,1223475,652129,1100046,655472,1425445,654335,652084,1222821,653598,652760,2080413,2081592,1102578,652758,734670,734293,652161,2078178,1102005,1547664,1099818,1222053,1222764,656836,1099854,1100460,1222569,1222095,654945,1222374,653626,1100115,655344,1222944,1099443,1222440,1343961,1100478,1104084,1100304,1222641,1222560,1100304,734864,1223124,652189,1222740,1222848,1100532,1102083,1100727,1100448,1102725,1221219,652721,652384,1100574,1100601,653104,1100673,1100973,655226,1223199,734459,655289,1100733,2079066,1100682,1103913,1223223,654873,1100982,1224609,653835,1225506,1103886,1102689,2082927,652706,1100790,1100805,2079270,1344450,1100859,1100790,1100790,653408,733896,654557,1223280,655080,1100952,656577,1102464,1101006,1101006,1223835,1223427,1223352,1223340,653234,1101060,1101303,1101117,1223490,1101246,735815,655183,2080035,1101195,1101195,1224048,655099,735861,1223763,653930,1101222,1101249,654887,1222437,656089,655318,1101846,1101375,655383,1101414,652918,1102602,654229,653364,1223940,652978,655233,653744,1224597,1103403,1224150,1224150,1224285,653257,655324,1224387,655467,655254,1103802,1105104,654762,654131,736095,654042,654248,1104759,654314,1101795,1224951,736540,1102161,4282668,1101981,1102134,656750,1102005,1226079,655221,655161,655896,653685,653267,657003,1103328,1102152,653120,653595,1224693,653487,1102983,1102383,1224750,654711,1228941,1224861,1104114,655782,1103979,654303,654077,653816,655364,1102638,1103352,655755,655933,1103514,655726,1102605,1102572,1225335,1225563,1224333,655105,655068,1102707,1225230,1227672,655890,654793,1225617,1102740,1102761,1225290,1225638,1102827,654939,1102851,1103223,1103571,1103166,1226811,654875,1225455,655364,655168,2087370,1103580,735458,1225614,1225713,656761,1225680,1104720,1227216,1225869,736736,1103622,1103430,656042,655676,1103235,653844,1225866,1227972,656742,655861,1103319,1103316,1103328,1103550,1104843,1104798,1225479,655747,1226178,651930,654330,1103490,654747,1103907,1103517,1226130,736329,1103832,1104909,655372,654281,1225491,735851,1226310,1228776,1104429,1103964,736039,1103829,1103814,657008,1103814,1102692,1226490,1104756,1227234,656118,1226712,1226694,1103868,1226682,1226520,1226535,1103895,1348491,1104870,1226760,1104582,1104084,1104576,1104690,654919,1106127,1104339,657113,1226940,655826,1227774,1104927,1104300,1104525,1227081,1105005,1104522,1104462,1227315,1228311,654610,1106355,655955,655939,1227270,655093,1105104,1105542,1104597,655443,736715,2087889,658235,656912,1105110,655185,1105740,655523,1227900,1228119,1227990,1105137,655831,655867,656126,655776,656202,656062,655410,657575,1105422,656453,654992,655201,656050,656220,1228200,655819,2087940,1105530,1105389,1105407,1228488,655997,657951,1228482,1228350,1106862,1105650,658777,656636,1105989,656976,1106994,1106277,1105650,1105704,1105752,655820,656327,656117,656523,656468,1228596,1229739,1228584,1105704,656348,656524,1106463,1105809,656423,655826,656373,1105863,655843,656414,1228875,1105974,656383,1106232,1105974,1351179,656767,1106340,1229160,1229511,1106082,1106688,1106382,1106709,1107279,656844,1229310,657835,1106109,1229118,1229010,2089464,1106151,656838,658097,1106268,656498,658374,1229526,1106289,1106700,1106415,658055,657886,1106532,1106790,1106352,1106445,656785,1230075,1349223,1107531,656752,656810,657164,656188,1106526,655826,1106730,1106730,1230126,656744,1229763,1106796,657113,657653,1106811,1106838,1230000,1106853,1230162,1107039,1227540,737404,656042,1104813,655151,1106019,655019,1104909,656448,1227510,655440,656520,1104963,662019,657606,655116,1104975,1105365,1105860,1104333,657601,657710,1107579,1107519,657236,658055,656871,657699,2091132,1107183,656443,656134,1230237,657052,2091453,657101,1107108,656974,657089,1107153,657254,1107318,657017,656777,1107348,1230306,657184,656846,1107285,1107546,656539,1230417,1107360,1107801,1107858,657685,1230477,657011,656570,657374,657240,1107846,657191,657078,657490,657239,657165,657263,657107,657242,657014,1107423,657941,1230810,657433,1107870,657114,1230471,1230540,656833,657702,2092578,1107564,657326,1107948,1230798,1230564,1230909,1230516,1230660,656927,658364,658572,638912,639296,640804,1039357,641352,646802,640294,643782,645988,647117,638979,721356,725492,639140,641985,653147,645976,1120438,640604,643518,643022,641199,639982,642468,647076,721176,648632,643044,642017,642105,651578,642186,642791,643760,1204641,726066,724494,725153,644138,643269,1245791,1250575,642331,644639,642118,1083564,644362,645037,645748,644779,642339,642355,643474,644487,1167357,647404,724651,643631,645814,643323,646145,643439,645433,723284,723884,644636,648824,1333281,645206,723931,1205748,1287833,723995,724480,643673,643604,645655,726932,643598,647387,646080,647437,644394,643509,1332591,1335996,644418,645143,645566,645458,645385,647046,725967,1205832,1207776,724516,644284,646288,728871,728805,644307,645185,644544,645264,644303,2053389,645096,645464,647416,725819,1417737,1087014,728660,650453,644590,645073,726699,644587,647318,644901,1087749,725865,644767,651414,654046,1249818,1250398,644959,1207740,647406,647160,643994,728587,647103,2176347,1087194,646106,646124,724870,725299,646939,644197,644971,645756,647277,644639,645117,645238,651675,730918,726336,1252747,645367,646053,646281,645386,650607,646349,725634,726022,645324,648223,647717,647361,1168849,726947,1088709,645603,649532,645908,726894,649016,1458936,726318,645271,646778,647048,645084,728502,645101,646107,645680,1250675,1209555,726000,1251286,645783,645800,645523,1088790,652738,1455694,646347,727065,728618,1170663,646441,646052,645282,1453766,1414148,1412963,1088838,645955,646837,731129,1414801,647329,2387271,1089324,652013,1210149,647737,729534,1498011,1089099,1251744,647007,1089255,1210819,1210110,1210677,646149,728327,727783,1495050,1088721,1088637,726678,645730,727008,1331456,1170519,645505,1414322,1089342,729940,646776,728120,647337,1089261,650469,1332596,1330626,646263,726891,1210350,648759,1089504,1089504,731508,1089531,1534499,1089693,645781,647639,646706,646890,1414764,1412740,647632,648482,1538777,1536129,1533920,1330809,1417114,1415540,1535124,1210320,1534398,726798,1414241,1415427,1539089,1538261,647688,1417258,1535279,1535238,729369,1414161,1534098,1210488,1536231,648634,1416200,1417585,645936,1413382,646877,646037,646804,1535172,1535174,1332504,1414350,1414175,648430,1414175,1536074,729549,1538628,1333038,650633,1414490,1415867,1414565,1419460,648765,647931,1535770,648926,1536143,650678,1299176,647406,1415499,646675,1535808,1537315,730453,1536744,2384603,649003,652993,1537876,1535922,1210965,1537080,1536534,1416213,1415086,1540163,1538565,647966,1538907,647913,649257,1420056,1414900,649493,652333,1210983,1211880,1416866,650016,647963,647741,647249,651818,1415899,647131,1415558,1415435,1415435,1413830,1419118,1413544,1416703,1538456,1537531,649351,647044,648654,648198,648127,649152,1415488,1415140,1415279,646291,647420,728008,1413737,1413545,652791,647142,1415770,1210110,646271,730227,1540220,1413809,647033,647305,1210914,1210974,727771,1537430,1413923,652014,1536160,1413892,2383246,1416599,649700,648026,728568,608567,1538088,649848,1538131,728954,1416913,649100,1417400,647882,736360,647818,608761,1415912,1415505,1415505,1537093,1212864,654611,650076,1416905,1417836,1416964,1537138,647897,1538513,1296079,1417940,648549,1415853,649114,1538739,1295520,1420008,1417218,1417197,1418252,1420276,608597,1538031,729472,1294583,1537290,1539357,2386845,652299,652527,647555,1540450,608203,1539777,1540222,1539657,651829,1416765,649478,649039,1301077,648802,648545,1541603,1537328,1219080,1540998,607545,649480,1415995,647813,1416534,608030,730510,1213203,1416680,648122,1416865,1296857,1538588,648497,1383105,1295839,649790,661444,1418413,1417115,648818,648454,730817,649005,1541801,1418416,1417449,1417404,1538700,1538859,1538848,1538848,649823,651268,1417440,650845,1539056,1417635,1539114,653626,648177,1417548,648815,650574,1213254,1335804,650052,650345,649839,650523,1539208,729812,1417675,1417745,1419209,1417745,648440,1418070,1540225,1539228,1417855,1539228,1417885,652381,1214121,650351,1418459,1417920,1092741,651331,652250,1540262,1418620,652091,1541158,1420104,649626,649206,650889,651600,649652,1419051,2390604,1418916,1419596,651903,650152,1213716,734322,651517,652800,649367,1419304,1420164,1419893,1540862,732755,1419794,1419390,1422958,649892,1419395,651977,1214634,1418262,648919,648999,1418655,648425,650724,649864,648986,1418480,1540041,650039,652751,1540247,1420112,1420619,654063,1541926,649644,1144280,1420711,1421152,1420511,1421882,649929,1543814,651571,1420615,1421136,651828,1542420,1421373,1342026,1420748,1542762,1542592,650377,651553,650657,650290,649525,1420825,731464,1542686,1420930,1421007,1543150,653590,1542838,1095594,1338852,1421070,1421070,650831,1419460,733361,1541242,651126,1541798,1541526,730969,1421523,1421874,1422785,1302719,731469,650051,1422950,1544572,1422466,1543352,1542811,650533,1422050,649017,649776,1342156,649056,1421573,1421877,1544266,1342272,1544206,652068,1419880,1420233,1419927,1541508,731193,1094871,1216401,1216014,1419937,654394,1542158,1542236,732130,1544388,1420646,2394311,651821,1420549,1216428,1542928,1542914,1421478,649985,650383,1543349,1384790,650197,648607,1263232,1421420,1222537,1543252,1095675,651296,652423,654011,732597,651648,1543585,1221552,2279441,1339527,1339371,1422235,653651,1218165,651660,1544174,1304951,650599,1342486,1095543,1218105,1543999,1343787,650945,1424017,1543712,1424940,2397111,1422050,1422241,1422262,654046,1422879,1422050,654374,1217607,652784,653496,653858,650813,1422345,654396,1544054,1422545,2398163,1422421,1422351,1422330,653682,1422690,653420,1544312,1545611,654323,1306091,1544715,1545163,1423455,654193,1422365,650929,652351,652451,1544434,651219,1422540,1423928,1340133,651928,1544510,654629,1424229,1422645,1423221,2398438,652441,1544776,1545296,652946,651537,651127,1423033,653738,652658,1344050,652023,1465799,652538,1303461,1222807,652973,1096599,1096440,734604,733898,1544852,1423069,1422995,1217619,1545174,1545270,653236,654142,1423441,1423294,2399152,657846,1423240,1303639,1423793,1423395,1218387,654084,1423657,651279,733160,651548,652199,651859,652516,652281,1182877,1182406,652020,651554,2400018,2399847,1423822,651640,1217583,1545968,1218816,654868,1545764,653682,1423765,1141009,1545827,1546965,1097622,1101282,655071,654486,1545916,652295,1262628,652119,653135,652750,1546429,1546697,733110,1424010,2400655,652336,1424045,652451,652362,1546351,654909,1546372,1262933,653459,1424625,1424570,1219854,1546624,1546676,652868,1546829,1546714,1547605,655182,2402199,1340736,1262455,653617,1341183,1098123,733150,1547171,2401359,652132,653203,650773,1384377,652274,1344703,1098378,1546942,1424815,652559,1425060,1266271,1303867,1222917,1181377,656576,654750,2402558,1101915,1425239,1425006,1102020,1266142,1303228,1425053,655780,1342167,1425060,653280,654003,1263958,654079,1098540,1547702,653312,653482,1101708,652722,1100631,1466280,1344090,1100211,2081205,1181437,653993,1220919,1222629,653001,653021,653285,652788,654346,652559,657280,652192,1547664,1222296,652549,653487,653125,1100589,1100580,655833,1222248,1223049,1222080,652006,655120,1100175,1343559,1103271,735197,1100001,735796,1222320,1101684,1101174,1101522,653056,653086,1100307,1222527,654031,2078226,1100277,1100823,1222560,1222560,1100553,1222470,1222650,653288,1100811,1101813,653860,652692,652485,1222740,1100712,734637,1103181,2078709,2078709,1100493,1101912,1222851,1223133,1222893,654938,1100817,1100691,656411,734349,655622,1223061,654054,1100724,652785,1100907,1223196,1223070,1100790,1100871,1344468,653526,652368,1223070,734712,1223100,653809,1226799,653733,1102566,655785,1100790,1100790,653123,653550,653793,1102299,654752,653909,655770,736088,653281,1101033,1102767,654907,652800,1224663,1224366,652999,655685,1102323,1101195,1101597,1101195,655569,655390,1101249,1101249,1345305,1225731,655264,734874,653936,653692,653679,655752,653666,1101357,1223772,1102128,653163,655095,1100061,1103100,1101519,2080647,1101555,652983,653957,735727,1223940,1101678,1224372,1225101,653677,652901,1102293,1101720,1102188,1224006,736512,1224030,655371,1102296,1102359,2081262,1102563,654738,1101708,655414,654618,1101735,655113,653405,655327,1224573,2082132,1104813,1103604,1103568,735999,1225587,1225170,1102128,1101789,653767,736077,1224372,1102542,1101987,1102884,735496,1102782,1102086,655731,1229430,656133,654399,656514,653739,1224810,1102167,1102299,1225353,1224912,653617,1103697,1103319,653547,655137,654922,1227285,736287,654430,654207,654586,1102302,1103046,1102317,1224810,735595,1225392,1224870,1224975,1225020,1102554,654276,1225419,655065,653855,1102791,1102830,1102899,1103100,655969,655138,1104354,654736,1102707,1104543,653958,1228998,1225368,1225290,1103307,1103040,654982,1102725,655825,654867,654711,1102923,1103271,1106619,656392,1103010,655678,1225884,653786,735936,1103097,1103007,2084247,654685,654530,1103052,654128,1104696,655304,656417,1103811,655161,656435,1103430,1226025,1226352,656372,1226079,1226796,1104033,1103601,1103472,1227669,654452,737173,657777,659393,1226130,1103613,655056,1103706,655061,1226361,1224408,656754,1348374,2085621,1103673,654524,655765,656537,1226460,1103814,656393,657277,655937,656052,1105347,1104036,1104693,657007,736164,1226520,654674,1104021,1104522,655209,1226730,654787,1227162,1104132,656415,1227108,1226850,1104534,654725,654779,1104450,654545,1227288,1226880,1104381,656362,1104699,656549,1227120,1226589,656838,655104,655739,1105536,654559,1105638,1105833,655761,1104543,654796,657111,1104567,1228461,2087142,656261,656609,1104954,1227612,1227933,1104741,1227912,656098,656009,655890,655815,656217,656944,655974,656599,737693,656024,1106694,1105176,655307,1105521,1105482,656027,1228422,1105545,656715,1105794,656958,656341,1105569,1228476,1228500,655493,1106256,1106217,1107066,1106562,656155,1228650,1228722,1229037,656413,1105866,658523,656621,656522,656330,656519,1106016,655453,1106346,656624,657674,656620,657111,1105836,656548,1106289,1228998,656770,1229577,1228800,655367,1105758,1106013,1105956,1229010,1228860,1106001,2089215,655462,1106244,661000,1106082,1106082,1106766,1229136,1106109,657390,656818,1229028,1106136,656728,656589,1106298,655888,656853,1106589,1229253,1106532,656910,658246,1106994,651411,1106682,1106802,1229382,1349661,1350069,1106451,657753,656882,658113,656835,1106691,2090556,1106730,657865,657066,1230291,656921,1106901,2090997,1106955,656568,1230177,1106889,2090775,657932,1104786,1227672,1105047,657437,657096,737835,1227657,655434,655884,1104945,655231,1104981,1226358,1227600,1104882,1227861,655901,1105020,1104948,656155,1106301,655224,1227750,655997,1105002,656688,657395,1105785,659329,1229955,656009,738192,656927,656231,1107309,659031,1107114,1107141,1107258,1230264,1107288,1107102,1107153,656902,657550,1230525,657283,657040,657005,656887,1107546,657312,1107198,1107198,1107231,657029,661403,657975,656608,656975,656458,656752,1230753,656542,1107426,656622,658480,657418,657469,657230,657271,657172,657188,657373,657214,657476,1231017,1230837,657174,1107744,1230465,657570,656505,1107825,1107825,1107852,1107813,1230969,1107663,1107621,2091987,656945,1107759,656795,1107675,656406,1230804,657328,1107636,1914235,1170663,720777,641293,643877,646303,1243097,643509,644485,644057,648441,1256708,646270,644955,652254,1331990,643532,644015,724998,645220,649678,644303,647107,647013,643915,2052831,1088160,645271,645986,644607,1333505,644599,647312,645139,1087023,644468,1374808,1208547,1086429,646509,728096,726770,728755,649956,1128941,727019,726600,726890,652489,647755,1088199,1252656,726322,728424,728535,1454586,1375405,645611,647133,727733,729329,645481,647762,1292033,647405,645953,647131,1089144,2057187,726158,1372105,1415115,1209618,726221,1537299,647558,653356,646586,1413195,1331945,1251217,1413172,1412740,1412845,1413345,647055,647549,1414416,1210668,1413055,649226,1534174,646422,1416295,648606,1414296,1415870,1539575,730578,651187,648117,1414595,1332981,1414648,647253,1332036,646991,729762,1415509,733377,647165,1542689,1536806,655434,1418504,1417818,650351,1413290,647287,1534440,1331790,650110,647384,1415425,1535331,650052,646160,1536532,727841,1535170,648386,650492,1538102,1416695,1333974,1536872,1537006,1415788,1537062,607804,1538548,1537062,1416975,1417418,649627,1416721,1538851,1417369,1539109,647957,1541252,653575,728459,1539204,652108,1537758,1537796,1537964,649686,1419158,650109,1419040,1418378,2389441,648906,1420426,1539190,651950,1420407,1381605,1539380,1417885,651925,648614,2392518,1420314,1542570,1093146,1419135,1540520,1388306,655639,652254,650671,1540806,650184,649757,1419333,1539930,1418340,1418406,1341440,650200,649837,1420516,650173,1216713,1542116,651010,1421585,1542423,649493,652062,1543538,1216611,1420974,1422108,1420895,654950,1421855,649683,652160,1541394,650675,1422479,1421869,1541318,1419670,652314,1419994,1419856,653661,652054,1094811,1420128,1344469,1541812,653163,1420160,650236,1543354,651257,1464726,1543398,1339284,1339665,1421630,1421875,1543788,651162,1505828,650539,650540,1545255,1217964,652090,1422155,654114,733660,1545172,652433,1422750,1423966,1302933,734693,1303211,1221518,1343700,651787,1423100,733919,1545257,1423240,735242,1423380,1423560,646182,1423681,1545498,1466308,1423485,735503,732809,1097526,1423765,1424375,652889,1304618,651515,1545916,1546290,652524,652664,652333,1424045,1181388,1263418,1182054,1262480,653078,652320,1384750,653664,1546980,1222067,1425766,655970,652913,1547346,1425495,654381,652110,655571,1220988,653208,734248,1099845,653179,1099884,1222428,1222260,1100304,653885,1100181,1100391,652848,1222086,1224141,1222782,652402,653202,1222740,655051,653766,1222740,1100850,654965,1100829,734406,1100967,1226676,1103331,1105635,1100790,1223280,1224525,1227168,1223478,1101210,1223631,1223550,656969,1101195,1225608,2080944,1222329,1223928,653422,656088,1102479,736372,1224030,1101627,1102059,1101708,654409,653863,1226208,1226145,734886,1224210,1224390,1101993,1224678,734670,655148,1225596,2082783,1224843,1102329,1102722,1102476,1102275,1225032,1102719,736322,1103148,1102566,1102914,1225080,735048,1103838,655489,653509,1225464,654337,656543,1103658,1103139,653865,657792,1103862,1104435,653915,1226040,735848,655630,1103697,1226130,737021,1103862,1103598,1103829,654771,1103871,657210,655368,655276,1103688,1226460,1104276,1104084,1104819,736734,1104696,1105122,1104138,657100,1227087,1227024,1104246,1226850,655127,1104630,1106079,655928,736353,654909,1229868,656320,657636,1106754,1104570,1104570,1105386,656285,1228002,655956,738027,1106172,655920,656917,1105587,1228410,1105596,1228650,1228689,1228764,1229943,1106478,655675,1228800,656524,1228143,1106964,1106082,1229103,657128,657313,2089938,655960,1229568,656991,1106703,1229781,1106826,657145,659547,1107264,656701,656654,1105557,1104948,1106427,1227810,1105002,1105002,656867,657009,658104,658595,656474,656450,1107234,1107138,656755,657072,656986,658529,656910,1107411,657109,657128,1107687,1231089,651009,656999,1230588,656586,657617,1107834,657006,1108116,656980,657442,638064,720123,721234,724026,1248302,639307,642597,723625,1165310,722683,643183,645276,642533,1413569,645951,642929,1126631,1369920,1171192,644908,646724,1169776,2051361,644747,644626,644684,647575,1374933,725355,651053,1292334,644334,647733,645545,645966,652498,1334815,644148,727077,646537,644309,1087569,652423,727616,645309,644784,644823,1088241,730545,647556,645188,645132,726808,652628,646978,645351,646686,652315,646328,729147,648728,647086,645834,1371827,1210266,1416279,652884,645249,1414120,729574,649756,1209975,1494811,647497,1374579,1210197,727501,646165,645669,727638,726886,646098,1413068,651575,726870,646518,1331936,727455,728856,651925,647304,647495,647458,1089612,1412761,1454096,647459,646274,1413174,728265,648435,1534724,1535162,647062,1413135,649670,730325,1414329,1535501,1413090,1331334,1330380,1538875,1415525,1535276,1535475,1414402,648065,1414782,2384344,1414280,2386786,1538785,648676,647529,729576,647003,1415092,647119,1415092,647804,1417667,1537989,730967,648833,646757,1536489,1415051,648232,647866,2386250,647537,728844,648431,648627,1534364,646283,1539994,2386124,1415525,727852,647322,1534744,1415891,1413685,1332147,647946,1211154,1534934,647859,1334757,1416743,1416695,1538164,2387814,1539034,2386373,650361,650578,1416137,1538269,1538693,1415850,647758,729655,1539070,1335267,651217,1416135,648589,1539304,1543074,610473,1342156,1334316,1416602,1537654,652641,650186,730914,1541411,1418797,1538848,649047,653856,731290,1539610,1212339,730393,4247292,1542730,651200,1335417,1418339,1539378,1539228,653573,1214745,645659,1419533,1419722,1540312,1214766,1542778,648867,1336950,1421631,1419232,733908,1419223,1540762,1419390,1421493,730301,1419101,1418274,1541125,1542303,1421018,1336482,651876,1542040,1216440,1420791,653646,1543165,1464889,1420660,650081,1420825,1542655,1506168,1422849,1217172,1542876,1541749,732697,1420249,1419440,1419870,1541318,1542783,650711,649866,649940,1423279,1543390,1421595,1544783,1541356,1419880,1420257,1301911,1420102,1541898,1420406,1420160,1216632,730526,1543044,1542914,1466844,1423057,1543608,734380,731596,651326,1543799,1423708,1262726,1504809,651610,2397111,1262670,1544738,1218141,1422529,1343326,1422365,731740,1422724,1544681,1544586,1422921,1423979,655175,651706,733366,1424168,652354,1545195,651870,1545252,1423941,1423992,651002,1384925,650869,733186,654036,650813,1545612,1263683,1225012,652117,651835,651778,1423590,652062,1424306,2400002,1222971,1545878,652481,1546030,1424045,652334,1220340,1546714,732715,1546853,651763,653846,1226688,652808,1181899,1425035,734916,1425264,653925,654320,652414,1303287,654573,652844,1224147,1102236,1140791,653474,653277,1105227,653138,652672,652774,1101834,1224078,653271,656085,1222683,1102554,1100415,1100592,1100493,1222860,734770,2078913,1101285,1223091,1101672,653765,1223526,652438,1100907,652702,654206,653321,653934,653215,1100790,1345140,654302,1223433,1225662,1101090,1102986,1101195,1224546,1103352,655674,1101438,735829,653900,1223760,735597,656631,654678,1224861,1103043,1104621,654441,1102905,1103955,1101912,1101789,1225116,1221156,1224411,1102284,654808,1102098,655803,654644,1102887,656338,653357,1226412,1103022,1103763,1103898,654613,1224810,656531,653943,655980,655382,1225818,655911,1103472,653943,1103049,1225965,1103037,1103142,1103004,1103112,1104495,2084163,1103325,651928,1104861,653983,1103301,1226829,653991,1103661,1103970,1226838,1103478,1226130,1228320,1229199,736826,1103706,1227279,1226604,1227447,1103892,1103814,1103814,1226490,1227648,656273,655035,1104921,1104663,655009,1226520,2085390,655856,1103895,1226622,737119,1227087,1104516,1227600,1105629,656210,655557,656546,657282,655809,655859,1229217,1106598,1228170,1106871,1105584,736866,1228380,656377,1106397,656239,656903,1106802,655611,656027,656502,1105866,1228785,655878,657140,1229343,1105845,1228950,656115,1229403,1228515,1229496,1106250,1106136,1106136,1106193,1106763,1107507,1229790,1106520,1106946,659133,657666,1106613,656659,659360,655162,656871,656298,1105137,1227774,656847,1105299,1229994,651605,658378,1230000,1230234,657327,1230153,656750,1107375,1107432,2091723,657045,1107687,1230924,657217,657283,1230741,657427,1107471,1107501,1107897,657310,1231242,1231071,1107498,1107807,1107807,1230909,658455,1107582,1107582,641347,640565,1293260,646529,721141,641415,721980,643059,641291,642834,1082187,642614,1328847,722819,643648,725140,644753,649417,723508,725861,724804,723442,646699,642785,1085982,647310,1249208,646233,644860,646763,644795,728224,644676,1290098,646593,645383,653078,725515,644530,646143,651629,725819,727717,725524,2054823,1168893,725247,649347,644503,646034,645715,647408,647251,647064,644522,647927,1087323,651542,649457,646977,726341,1371409,651911,1453515,1292644,1415585,645519,645561,647395,646388,1332581,1372854,1252365,1372358,657106,1372075,1210182,646120,1412965,1089297,646894,645191,2221478,1211220,645838,727731,1210524,1089705,646858,731083,1413436,1331046,647115,727869,1533990,650080,1534467,731897,647157,646587,1540122,649612,650264,1534908,1211373,646799,645936,726787,1542669,1414462,646737,1414245,1535694,1332474,1416348,1535808,729083,1414665,1535960,650707,1538201,730005,1212183,1417814,1415276,1417582,728287,1416650,651771,1534421,727287,1331739,1416938,727048,647089,727302,652553,648990,647817,1413790,1331037,1295200,727143,1538249,649231,1295316,1543671,1538184,1539128,653050,1538202,2388746,649231,648148,648009,730912,1296035,732131,654169,1212579,1416485,1540594,649274,1416168,1419704,1416333,1416553,1416380,1416485,650656,651618,648229,650547,649152,731309,1419821,1418253,649292,650916,1417684,1538980,1418590,1420165,1539266,1417710,1417710,1417850,1335402,1417885,1417885,1540485,648726,733377,649408,1420911,652112,1418992,733369,1418468,2391892,1419428,1093551,1214850,1539684,1419116,1419847,1541660,656162,1420363,649129,648411,651921,729713,1540950,1423373,1420115,655849,1542154,1382316,651472,652887,1420895,1216143,1217058,1420895,1421035,1421635,651892,1541128,2392804,650011,1541692,2398493,1541479,649948,649836,1422566,1463434,649213,1542978,1422133,2397626,1341356,1383020,1541356,730662,1422523,651384,1094634,1420055,1420134,1421335,1421613,1542929,1421140,1095846,1094037,1421105,652821,1421554,1421482,1422454,649859,4255656,1339467,1336386,1421567,653691,650495,1543637,1544495,1543636,1424211,652457,2396865,651913,1543824,650674,1421971,1545315,654071,1422733,655077,1544408,651161,1095777,1545326,652226,651271,734050,651391,1545389,2399969,650981,652208,652221,1344763,733863,733501,1545773,654218,1423625,654988,1423835,652866,654051,653758,1341642,651848,654841,655068,654182,656659,1424533,654845,1546927,1546942,1262474,1226136,2118522,1425365,654984,654956,1425305,1101339,653752,1101342,651965,734087,1099839,1222482,734621,652701,1099782,653798,1262929,735266,733555,654201,1099926,1222500,734466,2078340,735164,735093,1343859,1100583,1100601,653089,1100598,652901,1223154,1100601,656230,655392,1101012,654373,1103595,1103202,653491,2079780,653381,1223490,655912,655276,654227,736608,653219,654837,657221,1101519,654270,1224066,1104255,654728,656152,1101726,1224954,654816,1225845,1102110,657042,1224612,656328,1102296,654585,1102500,735113,1227921,1226820,654294,655472,1102464,1102728,654950,653774,1224024,654942,2082840,736475,1225977,654643,1347210,656178,654084,655220,653940,1103247,1226943,655622,1226490,1103406,653970,655581,1226088,1103490,1103853,1226430,1226919,1227084,656226,1225485,1104300,2086479,655672,656375,2086854,656805,655471,1104435,1227459,655010,1104651,1228002,655992,656103,1106205,655855,656281,655738,1106139,656840,1228572,1105509,656579,1105596,1105617,656897,1230090,1107144,1105788,1106973,1106037,1228653,737447,655787,1228815,1229184,655392,1106073,656603,656853,2089929,656497,656483,1106136,1105707,1103787,1106313,1106298,1230546,1351080,656872,657494,2091042,1106649,657805,1106514,656903,656700,1106730,658009,657089,656629,1229820,1105971,1104966,656150,1105239,1104840,1227564,1105482,737552,1104951,1105452,1105002,1107441,1106976,657257,656767,656784,1107195,1107249,1230405,1107435,1107168,1107135,657031,1230657,656865,1230561,1107576,657343,657273,657683,1107468,657352,657317,657444,1107804,1230780,1107711,1107816,1107639,1230708,1230666,1230834,1230768,657335,1230657,656917,656875,1107936,1107831,1107954,658254,1230972,656854,1107981,657672,656677,1107912,656874,1107897,1107981,1107876,1107963,1108047,1107990,657492,1107969,1107936,657339,1231101,1107957,1106769,1231086,738705,1231200,653718,1107969,658423,1231104,656808,658244,1107999,656629,1108005,657897,656806,657582,1107927,1231293,1231137,1231062,656806,657679,657659,657901,657518,657715,657385,657882,657777,657431,657844,657532,657758,657673,657985,657850,657480,657886,657439,1108041,1108092,657539,656792,1108152,1106601,1106625,1231032,657740,1231200,1231182,658775,1231152,1107975,1108137,657080,1108098,1108173,1108128,1108263,659355,1231317,1231263,1231290,1108128,2093124,657428,1108110,656964,1108278,657280]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"168549\",\"primaryLabelValue\":\"168549\"}},{\"attributeHeader\":{\"labelValue\":\"168698\",\"primaryLabelValue\":\"168698\"}},{\"attributeHeader\":{\"labelValue\":\"168944\",\"primaryLabelValue\":\"168944\"}},{\"attributeHeader\":{\"labelValue\":\"955130\",\"primaryLabelValue\":\"955130\"}},{\"attributeHeader\":{\"labelValue\":\"955132\",\"primaryLabelValue\":\"955132\"}},{\"attributeHeader\":{\"labelValue\":\"955134\",\"primaryLabelValue\":\"955134\"}},{\"attributeHeader\":{\"labelValue\":\"955140\",\"primaryLabelValue\":\"955140\"}},{\"attributeHeader\":{\"labelValue\":\"955142\",\"primaryLabelValue\":\"955142\"}},{\"attributeHeader\":{\"labelValue\":\"955144\",\"primaryLabelValue\":\"955144\"}},{\"attributeHeader\":{\"labelValue\":\"955146\",\"primaryLabelValue\":\"955146\"}},{\"attributeHeader\":{\"labelValue\":\"955148\",\"primaryLabelValue\":\"955148\"}},{\"attributeHeader\":{\"labelValue\":\"955154\",\"primaryLabelValue\":\"955154\"}},{\"attributeHeader\":{\"labelValue\":\"955156\",\"primaryLabelValue\":\"955156\"}},{\"attributeHeader\":{\"labelValue\":\"955158\",\"primaryLabelValue\":\"955158\"}},{\"attributeHeader\":{\"labelValue\":\"955160\",\"primaryLabelValue\":\"955160\"}},{\"attributeHeader\":{\"labelValue\":\"955164\",\"primaryLabelValue\":\"955164\"}},{\"attributeHeader\":{\"labelValue\":\"955166\",\"primaryLabelValue\":\"955166\"}},{\"attributeHeader\":{\"labelValue\":\"955168\",\"primaryLabelValue\":\"955168\"}},{\"attributeHeader\":{\"labelValue\":\"955174\",\"primaryLabelValue\":\"955174\"}},{\"attributeHeader\":{\"labelValue\":\"955176\",\"primaryLabelValue\":\"955176\"}},{\"attributeHeader\":{\"labelValue\":\"955178\",\"primaryLabelValue\":\"955178\"}},{\"attributeHeader\":{\"labelValue\":\"955180\",\"primaryLabelValue\":\"955180\"}},{\"attributeHeader\":{\"labelValue\":\"955182\",\"primaryLabelValue\":\"955182\"}},{\"attributeHeader\":{\"labelValue\":\"955184\",\"primaryLabelValue\":\"955184\"}},{\"attributeHeader\":{\"labelValue\":\"955186\",\"primaryLabelValue\":\"955186\"}},{\"attributeHeader\":{\"labelValue\":\"955188\",\"primaryLabelValue\":\"955188\"}},{\"attributeHeader\":{\"labelValue\":\"955190\",\"primaryLabelValue\":\"955190\"}},{\"attributeHeader\":{\"labelValue\":\"955192\",\"primaryLabelValue\":\"955192\"}},{\"attributeHeader\":{\"labelValue\":\"955194\",\"primaryLabelValue\":\"955194\"}},{\"attributeHeader\":{\"labelValue\":\"955196\",\"primaryLabelValue\":\"955196\"}},{\"attributeHeader\":{\"labelValue\":\"955198\",\"primaryLabelValue\":\"955198\"}},{\"attributeHeader\":{\"labelValue\":\"955200\",\"primaryLabelValue\":\"955200\"}},{\"attributeHeader\":{\"labelValue\":\"955202\",\"primaryLabelValue\":\"955202\"}},{\"attributeHeader\":{\"labelValue\":\"955204\",\"primaryLabelValue\":\"955204\"}},{\"attributeHeader\":{\"labelValue\":\"955208\",\"primaryLabelValue\":\"955208\"}},{\"attributeHeader\":{\"labelValue\":\"955210\",\"primaryLabelValue\":\"955210\"}},{\"attributeHeader\":{\"labelValue\":\"955212\",\"primaryLabelValue\":\"955212\"}},{\"attributeHeader\":{\"labelValue\":\"955214\",\"primaryLabelValue\":\"955214\"}},{\"attributeHeader\":{\"labelValue\":\"955216\",\"primaryLabelValue\":\"955216\"}},{\"attributeHeader\":{\"labelValue\":\"955218\",\"primaryLabelValue\":\"955218\"}},{\"attributeHeader\":{\"labelValue\":\"955220\",\"primaryLabelValue\":\"955220\"}},{\"attributeHeader\":{\"labelValue\":\"955222\",\"primaryLabelValue\":\"955222\"}},{\"attributeHeader\":{\"labelValue\":\"955224\",\"primaryLabelValue\":\"955224\"}},{\"attributeHeader\":{\"labelValue\":\"955226\",\"primaryLabelValue\":\"955226\"}},{\"attributeHeader\":{\"labelValue\":\"955228\",\"primaryLabelValue\":\"955228\"}},{\"attributeHeader\":{\"labelValue\":\"955230\",\"primaryLabelValue\":\"955230\"}},{\"attributeHeader\":{\"labelValue\":\"955232\",\"primaryLabelValue\":\"955232\"}},{\"attributeHeader\":{\"labelValue\":\"955234\",\"primaryLabelValue\":\"955234\"}},{\"attributeHeader\":{\"labelValue\":\"955236\",\"primaryLabelValue\":\"955236\"}},{\"attributeHeader\":{\"labelValue\":\"955240\",\"primaryLabelValue\":\"955240\"}},{\"attributeHeader\":{\"labelValue\":\"955242\",\"primaryLabelValue\":\"955242\"}},{\"attributeHeader\":{\"labelValue\":\"955244\",\"primaryLabelValue\":\"955244\"}},{\"attributeHeader\":{\"labelValue\":\"955246\",\"primaryLabelValue\":\"955246\"}},{\"attributeHeader\":{\"labelValue\":\"955248\",\"primaryLabelValue\":\"955248\"}},{\"attributeHeader\":{\"labelValue\":\"955250\",\"primaryLabelValue\":\"955250\"}},{\"attributeHeader\":{\"labelValue\":\"955252\",\"primaryLabelValue\":\"955252\"}},{\"attributeHeader\":{\"labelValue\":\"955254\",\"primaryLabelValue\":\"955254\"}},{\"attributeHeader\":{\"labelValue\":\"955256\",\"primaryLabelValue\":\"955256\"}},{\"attributeHeader\":{\"labelValue\":\"955258\",\"primaryLabelValue\":\"955258\"}},{\"attributeHeader\":{\"labelValue\":\"955260\",\"primaryLabelValue\":\"955260\"}},{\"attributeHeader\":{\"labelValue\":\"955262\",\"primaryLabelValue\":\"955262\"}},{\"attributeHeader\":{\"labelValue\":\"955264\",\"primaryLabelValue\":\"955264\"}},{\"attributeHeader\":{\"labelValue\":\"955268\",\"primaryLabelValue\":\"955268\"}},{\"attributeHeader\":{\"labelValue\":\"955272\",\"primaryLabelValue\":\"955272\"}},{\"attributeHeader\":{\"labelValue\":\"955274\",\"primaryLabelValue\":\"955274\"}},{\"attributeHeader\":{\"labelValue\":\"955276\",\"primaryLabelValue\":\"955276\"}},{\"attributeHeader\":{\"labelValue\":\"955278\",\"primaryLabelValue\":\"955278\"}},{\"attributeHeader\":{\"labelValue\":\"955280\",\"primaryLabelValue\":\"955280\"}},{\"attributeHeader\":{\"labelValue\":\"955282\",\"primaryLabelValue\":\"955282\"}},{\"attributeHeader\":{\"labelValue\":\"955284\",\"primaryLabelValue\":\"955284\"}},{\"attributeHeader\":{\"labelValue\":\"955286\",\"primaryLabelValue\":\"955286\"}},{\"attributeHeader\":{\"labelValue\":\"955290\",\"primaryLabelValue\":\"955290\"}},{\"attributeHeader\":{\"labelValue\":\"955292\",\"primaryLabelValue\":\"955292\"}},{\"attributeHeader\":{\"labelValue\":\"955294\",\"primaryLabelValue\":\"955294\"}},{\"attributeHeader\":{\"labelValue\":\"955298\",\"primaryLabelValue\":\"955298\"}},{\"attributeHeader\":{\"labelValue\":\"955300\",\"primaryLabelValue\":\"955300\"}},{\"attributeHeader\":{\"labelValue\":\"955302\",\"primaryLabelValue\":\"955302\"}},{\"attributeHeader\":{\"labelValue\":\"955304\",\"primaryLabelValue\":\"955304\"}},{\"attributeHeader\":{\"labelValue\":\"955306\",\"primaryLabelValue\":\"955306\"}},{\"attributeHeader\":{\"labelValue\":\"955308\",\"primaryLabelValue\":\"955308\"}},{\"attributeHeader\":{\"labelValue\":\"955312\",\"primaryLabelValue\":\"955312\"}},{\"attributeHeader\":{\"labelValue\":\"955314\",\"primaryLabelValue\":\"955314\"}},{\"attributeHeader\":{\"labelValue\":\"955316\",\"primaryLabelValue\":\"955316\"}},{\"attributeHeader\":{\"labelValue\":\"955318\",\"primaryLabelValue\":\"955318\"}},{\"attributeHeader\":{\"labelValue\":\"955320\",\"primaryLabelValue\":\"955320\"}},{\"attributeHeader\":{\"labelValue\":\"955322\",\"primaryLabelValue\":\"955322\"}},{\"attributeHeader\":{\"labelValue\":\"955324\",\"primaryLabelValue\":\"955324\"}},{\"attributeHeader\":{\"labelValue\":\"955326\",\"primaryLabelValue\":\"955326\"}},{\"attributeHeader\":{\"labelValue\":\"955328\",\"primaryLabelValue\":\"955328\"}},{\"attributeHeader\":{\"labelValue\":\"955330\",\"primaryLabelValue\":\"955330\"}},{\"attributeHeader\":{\"labelValue\":\"955336\",\"primaryLabelValue\":\"955336\"}},{\"attributeHeader\":{\"labelValue\":\"955338\",\"primaryLabelValue\":\"955338\"}},{\"attributeHeader\":{\"labelValue\":\"955340\",\"primaryLabelValue\":\"955340\"}},{\"attributeHeader\":{\"labelValue\":\"955342\",\"primaryLabelValue\":\"955342\"}},{\"attributeHeader\":{\"labelValue\":\"955344\",\"primaryLabelValue\":\"955344\"}},{\"attributeHeader\":{\"labelValue\":\"955346\",\"primaryLabelValue\":\"955346\"}},{\"attributeHeader\":{\"labelValue\":\"955348\",\"primaryLabelValue\":\"955348\"}},{\"attributeHeader\":{\"labelValue\":\"955350\",\"primaryLabelValue\":\"955350\"}},{\"attributeHeader\":{\"labelValue\":\"955352\",\"primaryLabelValue\":\"955352\"}},{\"attributeHeader\":{\"labelValue\":\"955354\",\"primaryLabelValue\":\"955354\"}},{\"attributeHeader\":{\"labelValue\":\"955356\",\"primaryLabelValue\":\"955356\"}},{\"attributeHeader\":{\"labelValue\":\"955358\",\"primaryLabelValue\":\"955358\"}},{\"attributeHeader\":{\"labelValue\":\"955360\",\"primaryLabelValue\":\"955360\"}},{\"attributeHeader\":{\"labelValue\":\"955362\",\"primaryLabelValue\":\"955362\"}},{\"attributeHeader\":{\"labelValue\":\"955364\",\"primaryLabelValue\":\"955364\"}},{\"attributeHeader\":{\"labelValue\":\"955366\",\"primaryLabelValue\":\"955366\"}},{\"attributeHeader\":{\"labelValue\":\"955368\",\"primaryLabelValue\":\"955368\"}},{\"attributeHeader\":{\"labelValue\":\"955370\",\"primaryLabelValue\":\"955370\"}},{\"attributeHeader\":{\"labelValue\":\"955372\",\"primaryLabelValue\":\"955372\"}},{\"attributeHeader\":{\"labelValue\":\"955374\",\"primaryLabelValue\":\"955374\"}},{\"attributeHeader\":{\"labelValue\":\"955376\",\"primaryLabelValue\":\"955376\"}},{\"attributeHeader\":{\"labelValue\":\"955378\",\"primaryLabelValue\":\"955378\"}},{\"attributeHeader\":{\"labelValue\":\"955380\",\"primaryLabelValue\":\"955380\"}},{\"attributeHeader\":{\"labelValue\":\"955382\",\"primaryLabelValue\":\"955382\"}},{\"attributeHeader\":{\"labelValue\":\"955384\",\"primaryLabelValue\":\"955384\"}},{\"attributeHeader\":{\"labelValue\":\"955386\",\"primaryLabelValue\":\"955386\"}},{\"attributeHeader\":{\"labelValue\":\"955388\",\"primaryLabelValue\":\"955388\"}},{\"attributeHeader\":{\"labelValue\":\"955390\",\"primaryLabelValue\":\"955390\"}},{\"attributeHeader\":{\"labelValue\":\"955392\",\"primaryLabelValue\":\"955392\"}},{\"attributeHeader\":{\"labelValue\":\"955394\",\"primaryLabelValue\":\"955394\"}},{\"attributeHeader\":{\"labelValue\":\"955398\",\"primaryLabelValue\":\"955398\"}},{\"attributeHeader\":{\"labelValue\":\"955402\",\"primaryLabelValue\":\"955402\"}},{\"attributeHeader\":{\"labelValue\":\"955406\",\"primaryLabelValue\":\"955406\"}},{\"attributeHeader\":{\"labelValue\":\"955408\",\"primaryLabelValue\":\"955408\"}},{\"attributeHeader\":{\"labelValue\":\"955410\",\"primaryLabelValue\":\"955410\"}},{\"attributeHeader\":{\"labelValue\":\"955414\",\"primaryLabelValue\":\"955414\"}},{\"attributeHeader\":{\"labelValue\":\"955420\",\"primaryLabelValue\":\"955420\"}},{\"attributeHeader\":{\"labelValue\":\"955422\",\"primaryLabelValue\":\"955422\"}},{\"attributeHeader\":{\"labelValue\":\"955424\",\"primaryLabelValue\":\"955424\"}},{\"attributeHeader\":{\"labelValue\":\"955426\",\"primaryLabelValue\":\"955426\"}},{\"attributeHeader\":{\"labelValue\":\"955428\",\"primaryLabelValue\":\"955428\"}},{\"attributeHeader\":{\"labelValue\":\"955430\",\"primaryLabelValue\":\"955430\"}},{\"attributeHeader\":{\"labelValue\":\"955432\",\"primaryLabelValue\":\"955432\"}},{\"attributeHeader\":{\"labelValue\":\"955434\",\"primaryLabelValue\":\"955434\"}},{\"attributeHeader\":{\"labelValue\":\"955436\",\"primaryLabelValue\":\"955436\"}},{\"attributeHeader\":{\"labelValue\":\"955440\",\"primaryLabelValue\":\"955440\"}},{\"attributeHeader\":{\"labelValue\":\"955442\",\"primaryLabelValue\":\"955442\"}},{\"attributeHeader\":{\"labelValue\":\"955444\",\"primaryLabelValue\":\"955444\"}},{\"attributeHeader\":{\"labelValue\":\"955446\",\"primaryLabelValue\":\"955446\"}},{\"attributeHeader\":{\"labelValue\":\"955448\",\"primaryLabelValue\":\"955448\"}},{\"attributeHeader\":{\"labelValue\":\"955452\",\"primaryLabelValue\":\"955452\"}},{\"attributeHeader\":{\"labelValue\":\"955454\",\"primaryLabelValue\":\"955454\"}},{\"attributeHeader\":{\"labelValue\":\"955456\",\"primaryLabelValue\":\"955456\"}},{\"attributeHeader\":{\"labelValue\":\"955458\",\"primaryLabelValue\":\"955458\"}},{\"attributeHeader\":{\"labelValue\":\"955460\",\"primaryLabelValue\":\"955460\"}},{\"attributeHeader\":{\"labelValue\":\"955462\",\"primaryLabelValue\":\"955462\"}},{\"attributeHeader\":{\"labelValue\":\"955464\",\"primaryLabelValue\":\"955464\"}},{\"attributeHeader\":{\"labelValue\":\"955466\",\"primaryLabelValue\":\"955466\"}},{\"attributeHeader\":{\"labelValue\":\"955468\",\"primaryLabelValue\":\"955468\"}},{\"attributeHeader\":{\"labelValue\":\"955470\",\"primaryLabelValue\":\"955470\"}},{\"attributeHeader\":{\"labelValue\":\"955472\",\"primaryLabelValue\":\"955472\"}},{\"attributeHeader\":{\"labelValue\":\"955474\",\"primaryLabelValue\":\"955474\"}},{\"attributeHeader\":{\"labelValue\":\"955476\",\"primaryLabelValue\":\"955476\"}},{\"attributeHeader\":{\"labelValue\":\"955478\",\"primaryLabelValue\":\"955478\"}},{\"attributeHeader\":{\"labelValue\":\"955480\",\"primaryLabelValue\":\"955480\"}},{\"attributeHeader\":{\"labelValue\":\"955482\",\"primaryLabelValue\":\"955482\"}},{\"attributeHeader\":{\"labelValue\":\"955484\",\"primaryLabelValue\":\"955484\"}},{\"attributeHeader\":{\"labelValue\":\"955486\",\"primaryLabelValue\":\"955486\"}},{\"attributeHeader\":{\"labelValue\":\"955488\",\"primaryLabelValue\":\"955488\"}},{\"attributeHeader\":{\"labelValue\":\"955490\",\"primaryLabelValue\":\"955490\"}},{\"attributeHeader\":{\"labelValue\":\"955492\",\"primaryLabelValue\":\"955492\"}},{\"attributeHeader\":{\"labelValue\":\"955494\",\"primaryLabelValue\":\"955494\"}},{\"attributeHeader\":{\"labelValue\":\"955496\",\"primaryLabelValue\":\"955496\"}},{\"attributeHeader\":{\"labelValue\":\"955498\",\"primaryLabelValue\":\"955498\"}},{\"attributeHeader\":{\"labelValue\":\"955500\",\"primaryLabelValue\":\"955500\"}},{\"attributeHeader\":{\"labelValue\":\"955502\",\"primaryLabelValue\":\"955502\"}},{\"attributeHeader\":{\"labelValue\":\"955504\",\"primaryLabelValue\":\"955504\"}},{\"attributeHeader\":{\"labelValue\":\"955506\",\"primaryLabelValue\":\"955506\"}},{\"attributeHeader\":{\"labelValue\":\"955508\",\"primaryLabelValue\":\"955508\"}},{\"attributeHeader\":{\"labelValue\":\"955510\",\"primaryLabelValue\":\"955510\"}},{\"attributeHeader\":{\"labelValue\":\"955512\",\"primaryLabelValue\":\"955512\"}},{\"attributeHeader\":{\"labelValue\":\"955514\",\"primaryLabelValue\":\"955514\"}},{\"attributeHeader\":{\"labelValue\":\"955516\",\"primaryLabelValue\":\"955516\"}},{\"attributeHeader\":{\"labelValue\":\"955518\",\"primaryLabelValue\":\"955518\"}},{\"attributeHeader\":{\"labelValue\":\"955520\",\"primaryLabelValue\":\"955520\"}},{\"attributeHeader\":{\"labelValue\":\"955522\",\"primaryLabelValue\":\"955522\"}},{\"attributeHeader\":{\"labelValue\":\"955524\",\"primaryLabelValue\":\"955524\"}},{\"attributeHeader\":{\"labelValue\":\"955526\",\"primaryLabelValue\":\"955526\"}},{\"attributeHeader\":{\"labelValue\":\"955528\",\"primaryLabelValue\":\"955528\"}},{\"attributeHeader\":{\"labelValue\":\"955530\",\"primaryLabelValue\":\"955530\"}},{\"attributeHeader\":{\"labelValue\":\"955532\",\"primaryLabelValue\":\"955532\"}},{\"attributeHeader\":{\"labelValue\":\"955534\",\"primaryLabelValue\":\"955534\"}},{\"attributeHeader\":{\"labelValue\":\"955536\",\"primaryLabelValue\":\"955536\"}},{\"attributeHeader\":{\"labelValue\":\"955538\",\"primaryLabelValue\":\"955538\"}},{\"attributeHeader\":{\"labelValue\":\"955540\",\"primaryLabelValue\":\"955540\"}},{\"attributeHeader\":{\"labelValue\":\"955542\",\"primaryLabelValue\":\"955542\"}},{\"attributeHeader\":{\"labelValue\":\"955544\",\"primaryLabelValue\":\"955544\"}},{\"attributeHeader\":{\"labelValue\":\"955546\",\"primaryLabelValue\":\"955546\"}},{\"attributeHeader\":{\"labelValue\":\"955548\",\"primaryLabelValue\":\"955548\"}},{\"attributeHeader\":{\"labelValue\":\"955550\",\"primaryLabelValue\":\"955550\"}},{\"attributeHeader\":{\"labelValue\":\"955552\",\"primaryLabelValue\":\"955552\"}},{\"attributeHeader\":{\"labelValue\":\"955554\",\"primaryLabelValue\":\"955554\"}},{\"attributeHeader\":{\"labelValue\":\"955556\",\"primaryLabelValue\":\"955556\"}},{\"attributeHeader\":{\"labelValue\":\"955558\",\"primaryLabelValue\":\"955558\"}},{\"attributeHeader\":{\"labelValue\":\"955560\",\"primaryLabelValue\":\"955560\"}},{\"attributeHeader\":{\"labelValue\":\"955562\",\"primaryLabelValue\":\"955562\"}},{\"attributeHeader\":{\"labelValue\":\"955564\",\"primaryLabelValue\":\"955564\"}},{\"attributeHeader\":{\"labelValue\":\"955566\",\"primaryLabelValue\":\"955566\"}},{\"attributeHeader\":{\"labelValue\":\"955568\",\"primaryLabelValue\":\"955568\"}},{\"attributeHeader\":{\"labelValue\":\"955570\",\"primaryLabelValue\":\"955570\"}},{\"attributeHeader\":{\"labelValue\":\"955572\",\"primaryLabelValue\":\"955572\"}},{\"attributeHeader\":{\"labelValue\":\"955574\",\"primaryLabelValue\":\"955574\"}},{\"attributeHeader\":{\"labelValue\":\"955576\",\"primaryLabelValue\":\"955576\"}},{\"attributeHeader\":{\"labelValue\":\"955578\",\"primaryLabelValue\":\"955578\"}},{\"attributeHeader\":{\"labelValue\":\"955580\",\"primaryLabelValue\":\"955580\"}},{\"attributeHeader\":{\"labelValue\":\"955582\",\"primaryLabelValue\":\"955582\"}},{\"attributeHeader\":{\"labelValue\":\"955584\",\"primaryLabelValue\":\"955584\"}},{\"attributeHeader\":{\"labelValue\":\"955586\",\"primaryLabelValue\":\"955586\"}},{\"attributeHeader\":{\"labelValue\":\"955588\",\"primaryLabelValue\":\"955588\"}},{\"attributeHeader\":{\"labelValue\":\"955590\",\"primaryLabelValue\":\"955590\"}},{\"attributeHeader\":{\"labelValue\":\"955592\",\"primaryLabelValue\":\"955592\"}},{\"attributeHeader\":{\"labelValue\":\"955594\",\"primaryLabelValue\":\"955594\"}},{\"attributeHeader\":{\"labelValue\":\"955596\",\"primaryLabelValue\":\"955596\"}},{\"attributeHeader\":{\"labelValue\":\"955598\",\"primaryLabelValue\":\"955598\"}},{\"attributeHeader\":{\"labelValue\":\"955600\",\"primaryLabelValue\":\"955600\"}},{\"attributeHeader\":{\"labelValue\":\"955602\",\"primaryLabelValue\":\"955602\"}},{\"attributeHeader\":{\"labelValue\":\"955604\",\"primaryLabelValue\":\"955604\"}},{\"attributeHeader\":{\"labelValue\":\"955606\",\"primaryLabelValue\":\"955606\"}},{\"attributeHeader\":{\"labelValue\":\"955608\",\"primaryLabelValue\":\"955608\"}},{\"attributeHeader\":{\"labelValue\":\"955610\",\"primaryLabelValue\":\"955610\"}},{\"attributeHeader\":{\"labelValue\":\"955612\",\"primaryLabelValue\":\"955612\"}},{\"attributeHeader\":{\"labelValue\":\"955614\",\"primaryLabelValue\":\"955614\"}},{\"attributeHeader\":{\"labelValue\":\"955616\",\"primaryLabelValue\":\"955616\"}},{\"attributeHeader\":{\"labelValue\":\"955618\",\"primaryLabelValue\":\"955618\"}},{\"attributeHeader\":{\"labelValue\":\"955620\",\"primaryLabelValue\":\"955620\"}},{\"attributeHeader\":{\"labelValue\":\"955622\",\"primaryLabelValue\":\"955622\"}},{\"attributeHeader\":{\"labelValue\":\"955624\",\"primaryLabelValue\":\"955624\"}},{\"attributeHeader\":{\"labelValue\":\"955626\",\"primaryLabelValue\":\"955626\"}},{\"attributeHeader\":{\"labelValue\":\"955628\",\"primaryLabelValue\":\"955628\"}},{\"attributeHeader\":{\"labelValue\":\"955630\",\"primaryLabelValue\":\"955630\"}},{\"attributeHeader\":{\"labelValue\":\"955632\",\"primaryLabelValue\":\"955632\"}},{\"attributeHeader\":{\"labelValue\":\"955634\",\"primaryLabelValue\":\"955634\"}},{\"attributeHeader\":{\"labelValue\":\"955636\",\"primaryLabelValue\":\"955636\"}},{\"attributeHeader\":{\"labelValue\":\"955638\",\"primaryLabelValue\":\"955638\"}},{\"attributeHeader\":{\"labelValue\":\"955640\",\"primaryLabelValue\":\"955640\"}},{\"attributeHeader\":{\"labelValue\":\"955642\",\"primaryLabelValue\":\"955642\"}},{\"attributeHeader\":{\"labelValue\":\"955644\",\"primaryLabelValue\":\"955644\"}},{\"attributeHeader\":{\"labelValue\":\"955646\",\"primaryLabelValue\":\"955646\"}},{\"attributeHeader\":{\"labelValue\":\"955648\",\"primaryLabelValue\":\"955648\"}},{\"attributeHeader\":{\"labelValue\":\"955650\",\"primaryLabelValue\":\"955650\"}},{\"attributeHeader\":{\"labelValue\":\"955652\",\"primaryLabelValue\":\"955652\"}},{\"attributeHeader\":{\"labelValue\":\"955654\",\"primaryLabelValue\":\"955654\"}},{\"attributeHeader\":{\"labelValue\":\"955656\",\"primaryLabelValue\":\"955656\"}},{\"attributeHeader\":{\"labelValue\":\"955658\",\"primaryLabelValue\":\"955658\"}},{\"attributeHeader\":{\"labelValue\":\"955660\",\"primaryLabelValue\":\"955660\"}},{\"attributeHeader\":{\"labelValue\":\"955662\",\"primaryLabelValue\":\"955662\"}},{\"attributeHeader\":{\"labelValue\":\"955664\",\"primaryLabelValue\":\"955664\"}},{\"attributeHeader\":{\"labelValue\":\"955666\",\"primaryLabelValue\":\"955666\"}},{\"attributeHeader\":{\"labelValue\":\"955668\",\"primaryLabelValue\":\"955668\"}},{\"attributeHeader\":{\"labelValue\":\"955670\",\"primaryLabelValue\":\"955670\"}},{\"attributeHeader\":{\"labelValue\":\"955672\",\"primaryLabelValue\":\"955672\"}},{\"attributeHeader\":{\"labelValue\":\"955674\",\"primaryLabelValue\":\"955674\"}},{\"attributeHeader\":{\"labelValue\":\"955676\",\"primaryLabelValue\":\"955676\"}},{\"attributeHeader\":{\"labelValue\":\"955678\",\"primaryLabelValue\":\"955678\"}},{\"attributeHeader\":{\"labelValue\":\"955680\",\"primaryLabelValue\":\"955680\"}},{\"attributeHeader\":{\"labelValue\":\"955682\",\"primaryLabelValue\":\"955682\"}},{\"attributeHeader\":{\"labelValue\":\"955684\",\"primaryLabelValue\":\"955684\"}},{\"attributeHeader\":{\"labelValue\":\"955686\",\"primaryLabelValue\":\"955686\"}},{\"attributeHeader\":{\"labelValue\":\"955688\",\"primaryLabelValue\":\"955688\"}},{\"attributeHeader\":{\"labelValue\":\"955690\",\"primaryLabelValue\":\"955690\"}},{\"attributeHeader\":{\"labelValue\":\"955692\",\"primaryLabelValue\":\"955692\"}},{\"attributeHeader\":{\"labelValue\":\"955694\",\"primaryLabelValue\":\"955694\"}},{\"attributeHeader\":{\"labelValue\":\"955696\",\"primaryLabelValue\":\"955696\"}},{\"attributeHeader\":{\"labelValue\":\"955698\",\"primaryLabelValue\":\"955698\"}},{\"attributeHeader\":{\"labelValue\":\"955700\",\"primaryLabelValue\":\"955700\"}},{\"attributeHeader\":{\"labelValue\":\"955702\",\"primaryLabelValue\":\"955702\"}},{\"attributeHeader\":{\"labelValue\":\"955704\",\"primaryLabelValue\":\"955704\"}},{\"attributeHeader\":{\"labelValue\":\"955706\",\"primaryLabelValue\":\"955706\"}},{\"attributeHeader\":{\"labelValue\":\"955708\",\"primaryLabelValue\":\"955708\"}},{\"attributeHeader\":{\"labelValue\":\"955710\",\"primaryLabelValue\":\"955710\"}},{\"attributeHeader\":{\"labelValue\":\"955712\",\"primaryLabelValue\":\"955712\"}},{\"attributeHeader\":{\"labelValue\":\"955714\",\"primaryLabelValue\":\"955714\"}},{\"attributeHeader\":{\"labelValue\":\"955716\",\"primaryLabelValue\":\"955716\"}},{\"attributeHeader\":{\"labelValue\":\"955718\",\"primaryLabelValue\":\"955718\"}},{\"attributeHeader\":{\"labelValue\":\"955720\",\"primaryLabelValue\":\"955720\"}},{\"attributeHeader\":{\"labelValue\":\"955722\",\"primaryLabelValue\":\"955722\"}},{\"attributeHeader\":{\"labelValue\":\"955724\",\"primaryLabelValue\":\"955724\"}},{\"attributeHeader\":{\"labelValue\":\"955726\",\"primaryLabelValue\":\"955726\"}},{\"attributeHeader\":{\"labelValue\":\"955728\",\"primaryLabelValue\":\"955728\"}},{\"attributeHeader\":{\"labelValue\":\"955730\",\"primaryLabelValue\":\"955730\"}},{\"attributeHeader\":{\"labelValue\":\"955732\",\"primaryLabelValue\":\"955732\"}},{\"attributeHeader\":{\"labelValue\":\"955734\",\"primaryLabelValue\":\"955734\"}},{\"attributeHeader\":{\"labelValue\":\"955736\",\"primaryLabelValue\":\"955736\"}},{\"attributeHeader\":{\"labelValue\":\"955738\",\"primaryLabelValue\":\"955738\"}},{\"attributeHeader\":{\"labelValue\":\"955740\",\"primaryLabelValue\":\"955740\"}},{\"attributeHeader\":{\"labelValue\":\"955742\",\"primaryLabelValue\":\"955742\"}},{\"attributeHeader\":{\"labelValue\":\"955744\",\"primaryLabelValue\":\"955744\"}},{\"attributeHeader\":{\"labelValue\":\"955746\",\"primaryLabelValue\":\"955746\"}},{\"attributeHeader\":{\"labelValue\":\"955748\",\"primaryLabelValue\":\"955748\"}},{\"attributeHeader\":{\"labelValue\":\"955750\",\"primaryLabelValue\":\"955750\"}},{\"attributeHeader\":{\"labelValue\":\"955752\",\"primaryLabelValue\":\"955752\"}},{\"attributeHeader\":{\"labelValue\":\"955754\",\"primaryLabelValue\":\"955754\"}},{\"attributeHeader\":{\"labelValue\":\"955756\",\"primaryLabelValue\":\"955756\"}},{\"attributeHeader\":{\"labelValue\":\"955758\",\"primaryLabelValue\":\"955758\"}},{\"attributeHeader\":{\"labelValue\":\"955760\",\"primaryLabelValue\":\"955760\"}},{\"attributeHeader\":{\"labelValue\":\"955762\",\"primaryLabelValue\":\"955762\"}},{\"attributeHeader\":{\"labelValue\":\"955764\",\"primaryLabelValue\":\"955764\"}},{\"attributeHeader\":{\"labelValue\":\"955766\",\"primaryLabelValue\":\"955766\"}},{\"attributeHeader\":{\"labelValue\":\"955768\",\"primaryLabelValue\":\"955768\"}},{\"attributeHeader\":{\"labelValue\":\"955770\",\"primaryLabelValue\":\"955770\"}},{\"attributeHeader\":{\"labelValue\":\"955772\",\"primaryLabelValue\":\"955772\"}},{\"attributeHeader\":{\"labelValue\":\"955774\",\"primaryLabelValue\":\"955774\"}},{\"attributeHeader\":{\"labelValue\":\"955776\",\"primaryLabelValue\":\"955776\"}},{\"attributeHeader\":{\"labelValue\":\"955778\",\"primaryLabelValue\":\"955778\"}},{\"attributeHeader\":{\"labelValue\":\"955780\",\"primaryLabelValue\":\"955780\"}},{\"attributeHeader\":{\"labelValue\":\"955782\",\"primaryLabelValue\":\"955782\"}},{\"attributeHeader\":{\"labelValue\":\"955784\",\"primaryLabelValue\":\"955784\"}},{\"attributeHeader\":{\"labelValue\":\"955786\",\"primaryLabelValue\":\"955786\"}},{\"attributeHeader\":{\"labelValue\":\"955788\",\"primaryLabelValue\":\"955788\"}},{\"attributeHeader\":{\"labelValue\":\"955790\",\"primaryLabelValue\":\"955790\"}},{\"attributeHeader\":{\"labelValue\":\"955792\",\"primaryLabelValue\":\"955792\"}},{\"attributeHeader\":{\"labelValue\":\"955794\",\"primaryLabelValue\":\"955794\"}},{\"attributeHeader\":{\"labelValue\":\"955796\",\"primaryLabelValue\":\"955796\"}},{\"attributeHeader\":{\"labelValue\":\"955798\",\"primaryLabelValue\":\"955798\"}},{\"attributeHeader\":{\"labelValue\":\"955800\",\"primaryLabelValue\":\"955800\"}},{\"attributeHeader\":{\"labelValue\":\"955802\",\"primaryLabelValue\":\"955802\"}},{\"attributeHeader\":{\"labelValue\":\"955804\",\"primaryLabelValue\":\"955804\"}},{\"attributeHeader\":{\"labelValue\":\"955806\",\"primaryLabelValue\":\"955806\"}},{\"attributeHeader\":{\"labelValue\":\"955808\",\"primaryLabelValue\":\"955808\"}},{\"attributeHeader\":{\"labelValue\":\"955810\",\"primaryLabelValue\":\"955810\"}},{\"attributeHeader\":{\"labelValue\":\"955812\",\"primaryLabelValue\":\"955812\"}},{\"attributeHeader\":{\"labelValue\":\"955814\",\"primaryLabelValue\":\"955814\"}},{\"attributeHeader\":{\"labelValue\":\"955816\",\"primaryLabelValue\":\"955816\"}},{\"attributeHeader\":{\"labelValue\":\"955818\",\"primaryLabelValue\":\"955818\"}},{\"attributeHeader\":{\"labelValue\":\"955820\",\"primaryLabelValue\":\"955820\"}},{\"attributeHeader\":{\"labelValue\":\"955822\",\"primaryLabelValue\":\"955822\"}},{\"attributeHeader\":{\"labelValue\":\"955824\",\"primaryLabelValue\":\"955824\"}},{\"attributeHeader\":{\"labelValue\":\"955826\",\"primaryLabelValue\":\"955826\"}},{\"attributeHeader\":{\"labelValue\":\"955828\",\"primaryLabelValue\":\"955828\"}},{\"attributeHeader\":{\"labelValue\":\"955830\",\"primaryLabelValue\":\"955830\"}},{\"attributeHeader\":{\"labelValue\":\"955832\",\"primaryLabelValue\":\"955832\"}},{\"attributeHeader\":{\"labelValue\":\"955834\",\"primaryLabelValue\":\"955834\"}},{\"attributeHeader\":{\"labelValue\":\"955836\",\"primaryLabelValue\":\"955836\"}},{\"attributeHeader\":{\"labelValue\":\"955838\",\"primaryLabelValue\":\"955838\"}},{\"attributeHeader\":{\"labelValue\":\"955840\",\"primaryLabelValue\":\"955840\"}},{\"attributeHeader\":{\"labelValue\":\"955842\",\"primaryLabelValue\":\"955842\"}},{\"attributeHeader\":{\"labelValue\":\"955844\",\"primaryLabelValue\":\"955844\"}},{\"attributeHeader\":{\"labelValue\":\"955846\",\"primaryLabelValue\":\"955846\"}},{\"attributeHeader\":{\"labelValue\":\"955848\",\"primaryLabelValue\":\"955848\"}},{\"attributeHeader\":{\"labelValue\":\"955850\",\"primaryLabelValue\":\"955850\"}},{\"attributeHeader\":{\"labelValue\":\"955852\",\"primaryLabelValue\":\"955852\"}},{\"attributeHeader\":{\"labelValue\":\"955854\",\"primaryLabelValue\":\"955854\"}},{\"attributeHeader\":{\"labelValue\":\"955856\",\"primaryLabelValue\":\"955856\"}},{\"attributeHeader\":{\"labelValue\":\"955858\",\"primaryLabelValue\":\"955858\"}},{\"attributeHeader\":{\"labelValue\":\"955860\",\"primaryLabelValue\":\"955860\"}},{\"attributeHeader\":{\"labelValue\":\"955862\",\"primaryLabelValue\":\"955862\"}},{\"attributeHeader\":{\"labelValue\":\"955864\",\"primaryLabelValue\":\"955864\"}},{\"attributeHeader\":{\"labelValue\":\"955866\",\"primaryLabelValue\":\"955866\"}},{\"attributeHeader\":{\"labelValue\":\"955868\",\"primaryLabelValue\":\"955868\"}},{\"attributeHeader\":{\"labelValue\":\"955870\",\"primaryLabelValue\":\"955870\"}},{\"attributeHeader\":{\"labelValue\":\"955872\",\"primaryLabelValue\":\"955872\"}},{\"attributeHeader\":{\"labelValue\":\"955874\",\"primaryLabelValue\":\"955874\"}},{\"attributeHeader\":{\"labelValue\":\"955876\",\"primaryLabelValue\":\"955876\"}},{\"attributeHeader\":{\"labelValue\":\"955878\",\"primaryLabelValue\":\"955878\"}},{\"attributeHeader\":{\"labelValue\":\"955880\",\"primaryLabelValue\":\"955880\"}},{\"attributeHeader\":{\"labelValue\":\"955882\",\"primaryLabelValue\":\"955882\"}},{\"attributeHeader\":{\"labelValue\":\"955884\",\"primaryLabelValue\":\"955884\"}},{\"attributeHeader\":{\"labelValue\":\"955886\",\"primaryLabelValue\":\"955886\"}},{\"attributeHeader\":{\"labelValue\":\"955888\",\"primaryLabelValue\":\"955888\"}},{\"attributeHeader\":{\"labelValue\":\"955890\",\"primaryLabelValue\":\"955890\"}},{\"attributeHeader\":{\"labelValue\":\"955892\",\"primaryLabelValue\":\"955892\"}},{\"attributeHeader\":{\"labelValue\":\"955894\",\"primaryLabelValue\":\"955894\"}},{\"attributeHeader\":{\"labelValue\":\"955896\",\"primaryLabelValue\":\"955896\"}},{\"attributeHeader\":{\"labelValue\":\"955898\",\"primaryLabelValue\":\"955898\"}},{\"attributeHeader\":{\"labelValue\":\"955900\",\"primaryLabelValue\":\"955900\"}},{\"attributeHeader\":{\"labelValue\":\"955902\",\"primaryLabelValue\":\"955902\"}},{\"attributeHeader\":{\"labelValue\":\"955904\",\"primaryLabelValue\":\"955904\"}},{\"attributeHeader\":{\"labelValue\":\"955906\",\"primaryLabelValue\":\"955906\"}},{\"attributeHeader\":{\"labelValue\":\"955908\",\"primaryLabelValue\":\"955908\"}},{\"attributeHeader\":{\"labelValue\":\"955910\",\"primaryLabelValue\":\"955910\"}},{\"attributeHeader\":{\"labelValue\":\"955912\",\"primaryLabelValue\":\"955912\"}},{\"attributeHeader\":{\"labelValue\":\"955914\",\"primaryLabelValue\":\"955914\"}},{\"attributeHeader\":{\"labelValue\":\"955916\",\"primaryLabelValue\":\"955916\"}},{\"attributeHeader\":{\"labelValue\":\"955918\",\"primaryLabelValue\":\"955918\"}},{\"attributeHeader\":{\"labelValue\":\"955920\",\"primaryLabelValue\":\"955920\"}},{\"attributeHeader\":{\"labelValue\":\"955922\",\"primaryLabelValue\":\"955922\"}},{\"attributeHeader\":{\"labelValue\":\"955924\",\"primaryLabelValue\":\"955924\"}},{\"attributeHeader\":{\"labelValue\":\"955926\",\"primaryLabelValue\":\"955926\"}},{\"attributeHeader\":{\"labelValue\":\"955928\",\"primaryLabelValue\":\"955928\"}},{\"attributeHeader\":{\"labelValue\":\"955930\",\"primaryLabelValue\":\"955930\"}},{\"attributeHeader\":{\"labelValue\":\"955932\",\"primaryLabelValue\":\"955932\"}},{\"attributeHeader\":{\"labelValue\":\"955934\",\"primaryLabelValue\":\"955934\"}},{\"attributeHeader\":{\"labelValue\":\"955936\",\"primaryLabelValue\":\"955936\"}},{\"attributeHeader\":{\"labelValue\":\"955938\",\"primaryLabelValue\":\"955938\"}},{\"attributeHeader\":{\"labelValue\":\"955940\",\"primaryLabelValue\":\"955940\"}},{\"attributeHeader\":{\"labelValue\":\"955942\",\"primaryLabelValue\":\"955942\"}},{\"attributeHeader\":{\"labelValue\":\"955944\",\"primaryLabelValue\":\"955944\"}},{\"attributeHeader\":{\"labelValue\":\"955946\",\"primaryLabelValue\":\"955946\"}},{\"attributeHeader\":{\"labelValue\":\"955948\",\"primaryLabelValue\":\"955948\"}},{\"attributeHeader\":{\"labelValue\":\"955950\",\"primaryLabelValue\":\"955950\"}},{\"attributeHeader\":{\"labelValue\":\"955952\",\"primaryLabelValue\":\"955952\"}},{\"attributeHeader\":{\"labelValue\":\"955954\",\"primaryLabelValue\":\"955954\"}},{\"attributeHeader\":{\"labelValue\":\"955958\",\"primaryLabelValue\":\"955958\"}},{\"attributeHeader\":{\"labelValue\":\"955960\",\"primaryLabelValue\":\"955960\"}},{\"attributeHeader\":{\"labelValue\":\"955962\",\"primaryLabelValue\":\"955962\"}},{\"attributeHeader\":{\"labelValue\":\"955964\",\"primaryLabelValue\":\"955964\"}},{\"attributeHeader\":{\"labelValue\":\"955966\",\"primaryLabelValue\":\"955966\"}},{\"attributeHeader\":{\"labelValue\":\"955968\",\"primaryLabelValue\":\"955968\"}},{\"attributeHeader\":{\"labelValue\":\"955970\",\"primaryLabelValue\":\"955970\"}},{\"attributeHeader\":{\"labelValue\":\"955972\",\"primaryLabelValue\":\"955972\"}},{\"attributeHeader\":{\"labelValue\":\"955974\",\"primaryLabelValue\":\"955974\"}},{\"attributeHeader\":{\"labelValue\":\"955976\",\"primaryLabelValue\":\"955976\"}},{\"attributeHeader\":{\"labelValue\":\"955978\",\"primaryLabelValue\":\"955978\"}},{\"attributeHeader\":{\"labelValue\":\"955980\",\"primaryLabelValue\":\"955980\"}},{\"attributeHeader\":{\"labelValue\":\"955982\",\"primaryLabelValue\":\"955982\"}},{\"attributeHeader\":{\"labelValue\":\"955984\",\"primaryLabelValue\":\"955984\"}},{\"attributeHeader\":{\"labelValue\":\"955986\",\"primaryLabelValue\":\"955986\"}},{\"attributeHeader\":{\"labelValue\":\"955988\",\"primaryLabelValue\":\"955988\"}},{\"attributeHeader\":{\"labelValue\":\"955990\",\"primaryLabelValue\":\"955990\"}},{\"attributeHeader\":{\"labelValue\":\"955992\",\"primaryLabelValue\":\"955992\"}},{\"attributeHeader\":{\"labelValue\":\"955994\",\"primaryLabelValue\":\"955994\"}},{\"attributeHeader\":{\"labelValue\":\"955996\",\"primaryLabelValue\":\"955996\"}},{\"attributeHeader\":{\"labelValue\":\"955998\",\"primaryLabelValue\":\"955998\"}},{\"attributeHeader\":{\"labelValue\":\"956000\",\"primaryLabelValue\":\"956000\"}},{\"attributeHeader\":{\"labelValue\":\"956002\",\"primaryLabelValue\":\"956002\"}},{\"attributeHeader\":{\"labelValue\":\"956004\",\"primaryLabelValue\":\"956004\"}},{\"attributeHeader\":{\"labelValue\":\"956006\",\"primaryLabelValue\":\"956006\"}},{\"attributeHeader\":{\"labelValue\":\"956008\",\"primaryLabelValue\":\"956008\"}},{\"attributeHeader\":{\"labelValue\":\"956010\",\"primaryLabelValue\":\"956010\"}},{\"attributeHeader\":{\"labelValue\":\"956012\",\"primaryLabelValue\":\"956012\"}},{\"attributeHeader\":{\"labelValue\":\"956014\",\"primaryLabelValue\":\"956014\"}},{\"attributeHeader\":{\"labelValue\":\"956016\",\"primaryLabelValue\":\"956016\"}},{\"attributeHeader\":{\"labelValue\":\"956018\",\"primaryLabelValue\":\"956018\"}},{\"attributeHeader\":{\"labelValue\":\"956020\",\"primaryLabelValue\":\"956020\"}},{\"attributeHeader\":{\"labelValue\":\"956022\",\"primaryLabelValue\":\"956022\"}},{\"attributeHeader\":{\"labelValue\":\"956024\",\"primaryLabelValue\":\"956024\"}},{\"attributeHeader\":{\"labelValue\":\"956026\",\"primaryLabelValue\":\"956026\"}},{\"attributeHeader\":{\"labelValue\":\"956028\",\"primaryLabelValue\":\"956028\"}},{\"attributeHeader\":{\"labelValue\":\"956030\",\"primaryLabelValue\":\"956030\"}},{\"attributeHeader\":{\"labelValue\":\"956032\",\"primaryLabelValue\":\"956032\"}},{\"attributeHeader\":{\"labelValue\":\"956034\",\"primaryLabelValue\":\"956034\"}},{\"attributeHeader\":{\"labelValue\":\"956036\",\"primaryLabelValue\":\"956036\"}},{\"attributeHeader\":{\"labelValue\":\"956038\",\"primaryLabelValue\":\"956038\"}},{\"attributeHeader\":{\"labelValue\":\"956040\",\"primaryLabelValue\":\"956040\"}},{\"attributeHeader\":{\"labelValue\":\"956042\",\"primaryLabelValue\":\"956042\"}},{\"attributeHeader\":{\"labelValue\":\"956044\",\"primaryLabelValue\":\"956044\"}},{\"attributeHeader\":{\"labelValue\":\"956046\",\"primaryLabelValue\":\"956046\"}},{\"attributeHeader\":{\"labelValue\":\"956048\",\"primaryLabelValue\":\"956048\"}},{\"attributeHeader\":{\"labelValue\":\"956050\",\"primaryLabelValue\":\"956050\"}},{\"attributeHeader\":{\"labelValue\":\"956052\",\"primaryLabelValue\":\"956052\"}},{\"attributeHeader\":{\"labelValue\":\"956054\",\"primaryLabelValue\":\"956054\"}},{\"attributeHeader\":{\"labelValue\":\"956056\",\"primaryLabelValue\":\"956056\"}},{\"attributeHeader\":{\"labelValue\":\"956058\",\"primaryLabelValue\":\"956058\"}},{\"attributeHeader\":{\"labelValue\":\"956060\",\"primaryLabelValue\":\"956060\"}},{\"attributeHeader\":{\"labelValue\":\"956062\",\"primaryLabelValue\":\"956062\"}},{\"attributeHeader\":{\"labelValue\":\"956064\",\"primaryLabelValue\":\"956064\"}},{\"attributeHeader\":{\"labelValue\":\"956066\",\"primaryLabelValue\":\"956066\"}},{\"attributeHeader\":{\"labelValue\":\"956068\",\"primaryLabelValue\":\"956068\"}},{\"attributeHeader\":{\"labelValue\":\"956070\",\"primaryLabelValue\":\"956070\"}},{\"attributeHeader\":{\"labelValue\":\"956072\",\"primaryLabelValue\":\"956072\"}},{\"attributeHeader\":{\"labelValue\":\"956074\",\"primaryLabelValue\":\"956074\"}},{\"attributeHeader\":{\"labelValue\":\"956076\",\"primaryLabelValue\":\"956076\"}},{\"attributeHeader\":{\"labelValue\":\"956078\",\"primaryLabelValue\":\"956078\"}},{\"attributeHeader\":{\"labelValue\":\"956080\",\"primaryLabelValue\":\"956080\"}},{\"attributeHeader\":{\"labelValue\":\"956082\",\"primaryLabelValue\":\"956082\"}},{\"attributeHeader\":{\"labelValue\":\"956084\",\"primaryLabelValue\":\"956084\"}},{\"attributeHeader\":{\"labelValue\":\"956086\",\"primaryLabelValue\":\"956086\"}},{\"attributeHeader\":{\"labelValue\":\"956088\",\"primaryLabelValue\":\"956088\"}},{\"attributeHeader\":{\"labelValue\":\"956090\",\"primaryLabelValue\":\"956090\"}},{\"attributeHeader\":{\"labelValue\":\"956092\",\"primaryLabelValue\":\"956092\"}},{\"attributeHeader\":{\"labelValue\":\"956094\",\"primaryLabelValue\":\"956094\"}},{\"attributeHeader\":{\"labelValue\":\"956096\",\"primaryLabelValue\":\"956096\"}},{\"attributeHeader\":{\"labelValue\":\"956098\",\"primaryLabelValue\":\"956098\"}},{\"attributeHeader\":{\"labelValue\":\"956100\",\"primaryLabelValue\":\"956100\"}},{\"attributeHeader\":{\"labelValue\":\"956102\",\"primaryLabelValue\":\"956102\"}},{\"attributeHeader\":{\"labelValue\":\"956104\",\"primaryLabelValue\":\"956104\"}},{\"attributeHeader\":{\"labelValue\":\"956106\",\"primaryLabelValue\":\"956106\"}},{\"attributeHeader\":{\"labelValue\":\"956108\",\"primaryLabelValue\":\"956108\"}},{\"attributeHeader\":{\"labelValue\":\"956110\",\"primaryLabelValue\":\"956110\"}},{\"attributeHeader\":{\"labelValue\":\"956112\",\"primaryLabelValue\":\"956112\"}},{\"attributeHeader\":{\"labelValue\":\"956114\",\"primaryLabelValue\":\"956114\"}},{\"attributeHeader\":{\"labelValue\":\"956116\",\"primaryLabelValue\":\"956116\"}},{\"attributeHeader\":{\"labelValue\":\"956118\",\"primaryLabelValue\":\"956118\"}},{\"attributeHeader\":{\"labelValue\":\"956120\",\"primaryLabelValue\":\"956120\"}},{\"attributeHeader\":{\"labelValue\":\"956122\",\"primaryLabelValue\":\"956122\"}},{\"attributeHeader\":{\"labelValue\":\"956124\",\"primaryLabelValue\":\"956124\"}},{\"attributeHeader\":{\"labelValue\":\"956126\",\"primaryLabelValue\":\"956126\"}},{\"attributeHeader\":{\"labelValue\":\"956128\",\"primaryLabelValue\":\"956128\"}},{\"attributeHeader\":{\"labelValue\":\"956130\",\"primaryLabelValue\":\"956130\"}},{\"attributeHeader\":{\"labelValue\":\"956132\",\"primaryLabelValue\":\"956132\"}},{\"attributeHeader\":{\"labelValue\":\"956134\",\"primaryLabelValue\":\"956134\"}},{\"attributeHeader\":{\"labelValue\":\"956136\",\"primaryLabelValue\":\"956136\"}},{\"attributeHeader\":{\"labelValue\":\"956138\",\"primaryLabelValue\":\"956138\"}},{\"attributeHeader\":{\"labelValue\":\"956140\",\"primaryLabelValue\":\"956140\"}},{\"attributeHeader\":{\"labelValue\":\"956142\",\"primaryLabelValue\":\"956142\"}},{\"attributeHeader\":{\"labelValue\":\"956144\",\"primaryLabelValue\":\"956144\"}},{\"attributeHeader\":{\"labelValue\":\"956146\",\"primaryLabelValue\":\"956146\"}},{\"attributeHeader\":{\"labelValue\":\"956148\",\"primaryLabelValue\":\"956148\"}},{\"attributeHeader\":{\"labelValue\":\"956150\",\"primaryLabelValue\":\"956150\"}},{\"attributeHeader\":{\"labelValue\":\"956152\",\"primaryLabelValue\":\"956152\"}},{\"attributeHeader\":{\"labelValue\":\"956154\",\"primaryLabelValue\":\"956154\"}},{\"attributeHeader\":{\"labelValue\":\"956156\",\"primaryLabelValue\":\"956156\"}},{\"attributeHeader\":{\"labelValue\":\"956158\",\"primaryLabelValue\":\"956158\"}},{\"attributeHeader\":{\"labelValue\":\"956160\",\"primaryLabelValue\":\"956160\"}},{\"attributeHeader\":{\"labelValue\":\"956162\",\"primaryLabelValue\":\"956162\"}},{\"attributeHeader\":{\"labelValue\":\"956164\",\"primaryLabelValue\":\"956164\"}},{\"attributeHeader\":{\"labelValue\":\"956166\",\"primaryLabelValue\":\"956166\"}},{\"attributeHeader\":{\"labelValue\":\"956168\",\"primaryLabelValue\":\"956168\"}},{\"attributeHeader\":{\"labelValue\":\"956170\",\"primaryLabelValue\":\"956170\"}},{\"attributeHeader\":{\"labelValue\":\"956172\",\"primaryLabelValue\":\"956172\"}},{\"attributeHeader\":{\"labelValue\":\"956174\",\"primaryLabelValue\":\"956174\"}},{\"attributeHeader\":{\"labelValue\":\"956176\",\"primaryLabelValue\":\"956176\"}},{\"attributeHeader\":{\"labelValue\":\"956178\",\"primaryLabelValue\":\"956178\"}},{\"attributeHeader\":{\"labelValue\":\"956180\",\"primaryLabelValue\":\"956180\"}},{\"attributeHeader\":{\"labelValue\":\"956182\",\"primaryLabelValue\":\"956182\"}},{\"attributeHeader\":{\"labelValue\":\"956184\",\"primaryLabelValue\":\"956184\"}},{\"attributeHeader\":{\"labelValue\":\"956186\",\"primaryLabelValue\":\"956186\"}},{\"attributeHeader\":{\"labelValue\":\"956188\",\"primaryLabelValue\":\"956188\"}},{\"attributeHeader\":{\"labelValue\":\"956190\",\"primaryLabelValue\":\"956190\"}},{\"attributeHeader\":{\"labelValue\":\"956192\",\"primaryLabelValue\":\"956192\"}},{\"attributeHeader\":{\"labelValue\":\"956194\",\"primaryLabelValue\":\"956194\"}},{\"attributeHeader\":{\"labelValue\":\"956196\",\"primaryLabelValue\":\"956196\"}},{\"attributeHeader\":{\"labelValue\":\"956198\",\"primaryLabelValue\":\"956198\"}},{\"attributeHeader\":{\"labelValue\":\"956200\",\"primaryLabelValue\":\"956200\"}},{\"attributeHeader\":{\"labelValue\":\"956202\",\"primaryLabelValue\":\"956202\"}},{\"attributeHeader\":{\"labelValue\":\"956204\",\"primaryLabelValue\":\"956204\"}},{\"attributeHeader\":{\"labelValue\":\"956206\",\"primaryLabelValue\":\"956206\"}},{\"attributeHeader\":{\"labelValue\":\"956208\",\"primaryLabelValue\":\"956208\"}},{\"attributeHeader\":{\"labelValue\":\"956210\",\"primaryLabelValue\":\"956210\"}},{\"attributeHeader\":{\"labelValue\":\"956212\",\"primaryLabelValue\":\"956212\"}},{\"attributeHeader\":{\"labelValue\":\"956216\",\"primaryLabelValue\":\"956216\"}},{\"attributeHeader\":{\"labelValue\":\"956218\",\"primaryLabelValue\":\"956218\"}},{\"attributeHeader\":{\"labelValue\":\"956220\",\"primaryLabelValue\":\"956220\"}},{\"attributeHeader\":{\"labelValue\":\"956222\",\"primaryLabelValue\":\"956222\"}},{\"attributeHeader\":{\"labelValue\":\"956224\",\"primaryLabelValue\":\"956224\"}},{\"attributeHeader\":{\"labelValue\":\"956226\",\"primaryLabelValue\":\"956226\"}},{\"attributeHeader\":{\"labelValue\":\"956228\",\"primaryLabelValue\":\"956228\"}},{\"attributeHeader\":{\"labelValue\":\"956230\",\"primaryLabelValue\":\"956230\"}},{\"attributeHeader\":{\"labelValue\":\"956232\",\"primaryLabelValue\":\"956232\"}},{\"attributeHeader\":{\"labelValue\":\"956234\",\"primaryLabelValue\":\"956234\"}},{\"attributeHeader\":{\"labelValue\":\"956236\",\"primaryLabelValue\":\"956236\"}},{\"attributeHeader\":{\"labelValue\":\"956238\",\"primaryLabelValue\":\"956238\"}},{\"attributeHeader\":{\"labelValue\":\"956240\",\"primaryLabelValue\":\"956240\"}},{\"attributeHeader\":{\"labelValue\":\"956242\",\"primaryLabelValue\":\"956242\"}},{\"attributeHeader\":{\"labelValue\":\"956244\",\"primaryLabelValue\":\"956244\"}},{\"attributeHeader\":{\"labelValue\":\"956246\",\"primaryLabelValue\":\"956246\"}},{\"attributeHeader\":{\"labelValue\":\"956248\",\"primaryLabelValue\":\"956248\"}},{\"attributeHeader\":{\"labelValue\":\"956250\",\"primaryLabelValue\":\"956250\"}},{\"attributeHeader\":{\"labelValue\":\"956252\",\"primaryLabelValue\":\"956252\"}},{\"attributeHeader\":{\"labelValue\":\"956254\",\"primaryLabelValue\":\"956254\"}},{\"attributeHeader\":{\"labelValue\":\"956256\",\"primaryLabelValue\":\"956256\"}},{\"attributeHeader\":{\"labelValue\":\"956258\",\"primaryLabelValue\":\"956258\"}},{\"attributeHeader\":{\"labelValue\":\"956260\",\"primaryLabelValue\":\"956260\"}},{\"attributeHeader\":{\"labelValue\":\"956262\",\"primaryLabelValue\":\"956262\"}},{\"attributeHeader\":{\"labelValue\":\"956264\",\"primaryLabelValue\":\"956264\"}},{\"attributeHeader\":{\"labelValue\":\"956266\",\"primaryLabelValue\":\"956266\"}},{\"attributeHeader\":{\"labelValue\":\"956268\",\"primaryLabelValue\":\"956268\"}},{\"attributeHeader\":{\"labelValue\":\"956270\",\"primaryLabelValue\":\"956270\"}},{\"attributeHeader\":{\"labelValue\":\"956272\",\"primaryLabelValue\":\"956272\"}},{\"attributeHeader\":{\"labelValue\":\"956274\",\"primaryLabelValue\":\"956274\"}},{\"attributeHeader\":{\"labelValue\":\"956276\",\"primaryLabelValue\":\"956276\"}},{\"attributeHeader\":{\"labelValue\":\"956278\",\"primaryLabelValue\":\"956278\"}},{\"attributeHeader\":{\"labelValue\":\"956280\",\"primaryLabelValue\":\"956280\"}},{\"attributeHeader\":{\"labelValue\":\"956282\",\"primaryLabelValue\":\"956282\"}},{\"attributeHeader\":{\"labelValue\":\"956284\",\"primaryLabelValue\":\"956284\"}},{\"attributeHeader\":{\"labelValue\":\"956286\",\"primaryLabelValue\":\"956286\"}},{\"attributeHeader\":{\"labelValue\":\"956288\",\"primaryLabelValue\":\"956288\"}},{\"attributeHeader\":{\"labelValue\":\"956292\",\"primaryLabelValue\":\"956292\"}},{\"attributeHeader\":{\"labelValue\":\"956294\",\"primaryLabelValue\":\"956294\"}},{\"attributeHeader\":{\"labelValue\":\"956296\",\"primaryLabelValue\":\"956296\"}},{\"attributeHeader\":{\"labelValue\":\"956298\",\"primaryLabelValue\":\"956298\"}},{\"attributeHeader\":{\"labelValue\":\"956300\",\"primaryLabelValue\":\"956300\"}},{\"attributeHeader\":{\"labelValue\":\"956302\",\"primaryLabelValue\":\"956302\"}},{\"attributeHeader\":{\"labelValue\":\"956304\",\"primaryLabelValue\":\"956304\"}},{\"attributeHeader\":{\"labelValue\":\"956306\",\"primaryLabelValue\":\"956306\"}},{\"attributeHeader\":{\"labelValue\":\"956308\",\"primaryLabelValue\":\"956308\"}},{\"attributeHeader\":{\"labelValue\":\"956310\",\"primaryLabelValue\":\"956310\"}},{\"attributeHeader\":{\"labelValue\":\"956312\",\"primaryLabelValue\":\"956312\"}},{\"attributeHeader\":{\"labelValue\":\"956314\",\"primaryLabelValue\":\"956314\"}},{\"attributeHeader\":{\"labelValue\":\"956316\",\"primaryLabelValue\":\"956316\"}},{\"attributeHeader\":{\"labelValue\":\"956318\",\"primaryLabelValue\":\"956318\"}},{\"attributeHeader\":{\"labelValue\":\"956320\",\"primaryLabelValue\":\"956320\"}},{\"attributeHeader\":{\"labelValue\":\"956322\",\"primaryLabelValue\":\"956322\"}},{\"attributeHeader\":{\"labelValue\":\"956324\",\"primaryLabelValue\":\"956324\"}},{\"attributeHeader\":{\"labelValue\":\"956326\",\"primaryLabelValue\":\"956326\"}},{\"attributeHeader\":{\"labelValue\":\"956328\",\"primaryLabelValue\":\"956328\"}},{\"attributeHeader\":{\"labelValue\":\"956330\",\"primaryLabelValue\":\"956330\"}},{\"attributeHeader\":{\"labelValue\":\"956332\",\"primaryLabelValue\":\"956332\"}},{\"attributeHeader\":{\"labelValue\":\"956334\",\"primaryLabelValue\":\"956334\"}},{\"attributeHeader\":{\"labelValue\":\"956336\",\"primaryLabelValue\":\"956336\"}},{\"attributeHeader\":{\"labelValue\":\"956338\",\"primaryLabelValue\":\"956338\"}},{\"attributeHeader\":{\"labelValue\":\"956340\",\"primaryLabelValue\":\"956340\"}},{\"attributeHeader\":{\"labelValue\":\"956342\",\"primaryLabelValue\":\"956342\"}},{\"attributeHeader\":{\"labelValue\":\"956344\",\"primaryLabelValue\":\"956344\"}},{\"attributeHeader\":{\"labelValue\":\"956346\",\"primaryLabelValue\":\"956346\"}},{\"attributeHeader\":{\"labelValue\":\"956348\",\"primaryLabelValue\":\"956348\"}},{\"attributeHeader\":{\"labelValue\":\"956350\",\"primaryLabelValue\":\"956350\"}},{\"attributeHeader\":{\"labelValue\":\"956352\",\"primaryLabelValue\":\"956352\"}},{\"attributeHeader\":{\"labelValue\":\"956354\",\"primaryLabelValue\":\"956354\"}},{\"attributeHeader\":{\"labelValue\":\"956356\",\"primaryLabelValue\":\"956356\"}},{\"attributeHeader\":{\"labelValue\":\"956358\",\"primaryLabelValue\":\"956358\"}},{\"attributeHeader\":{\"labelValue\":\"956360\",\"primaryLabelValue\":\"956360\"}},{\"attributeHeader\":{\"labelValue\":\"956362\",\"primaryLabelValue\":\"956362\"}},{\"attributeHeader\":{\"labelValue\":\"956364\",\"primaryLabelValue\":\"956364\"}},{\"attributeHeader\":{\"labelValue\":\"956366\",\"primaryLabelValue\":\"956366\"}},{\"attributeHeader\":{\"labelValue\":\"956368\",\"primaryLabelValue\":\"956368\"}},{\"attributeHeader\":{\"labelValue\":\"956370\",\"primaryLabelValue\":\"956370\"}},{\"attributeHeader\":{\"labelValue\":\"956372\",\"primaryLabelValue\":\"956372\"}},{\"attributeHeader\":{\"labelValue\":\"956374\",\"primaryLabelValue\":\"956374\"}},{\"attributeHeader\":{\"labelValue\":\"956376\",\"primaryLabelValue\":\"956376\"}},{\"attributeHeader\":{\"labelValue\":\"956378\",\"primaryLabelValue\":\"956378\"}},{\"attributeHeader\":{\"labelValue\":\"956380\",\"primaryLabelValue\":\"956380\"}},{\"attributeHeader\":{\"labelValue\":\"956382\",\"primaryLabelValue\":\"956382\"}},{\"attributeHeader\":{\"labelValue\":\"956384\",\"primaryLabelValue\":\"956384\"}},{\"attributeHeader\":{\"labelValue\":\"956386\",\"primaryLabelValue\":\"956386\"}},{\"attributeHeader\":{\"labelValue\":\"956388\",\"primaryLabelValue\":\"956388\"}},{\"attributeHeader\":{\"labelValue\":\"956390\",\"primaryLabelValue\":\"956390\"}},{\"attributeHeader\":{\"labelValue\":\"956392\",\"primaryLabelValue\":\"956392\"}},{\"attributeHeader\":{\"labelValue\":\"956394\",\"primaryLabelValue\":\"956394\"}},{\"attributeHeader\":{\"labelValue\":\"956396\",\"primaryLabelValue\":\"956396\"}},{\"attributeHeader\":{\"labelValue\":\"956398\",\"primaryLabelValue\":\"956398\"}},{\"attributeHeader\":{\"labelValue\":\"956400\",\"primaryLabelValue\":\"956400\"}},{\"attributeHeader\":{\"labelValue\":\"956402\",\"primaryLabelValue\":\"956402\"}},{\"attributeHeader\":{\"labelValue\":\"956404\",\"primaryLabelValue\":\"956404\"}},{\"attributeHeader\":{\"labelValue\":\"956406\",\"primaryLabelValue\":\"956406\"}},{\"attributeHeader\":{\"labelValue\":\"956408\",\"primaryLabelValue\":\"956408\"}},{\"attributeHeader\":{\"labelValue\":\"956410\",\"primaryLabelValue\":\"956410\"}},{\"attributeHeader\":{\"labelValue\":\"956412\",\"primaryLabelValue\":\"956412\"}},{\"attributeHeader\":{\"labelValue\":\"956414\",\"primaryLabelValue\":\"956414\"}},{\"attributeHeader\":{\"labelValue\":\"956416\",\"primaryLabelValue\":\"956416\"}},{\"attributeHeader\":{\"labelValue\":\"956418\",\"primaryLabelValue\":\"956418\"}},{\"attributeHeader\":{\"labelValue\":\"956420\",\"primaryLabelValue\":\"956420\"}},{\"attributeHeader\":{\"labelValue\":\"956422\",\"primaryLabelValue\":\"956422\"}},{\"attributeHeader\":{\"labelValue\":\"956424\",\"primaryLabelValue\":\"956424\"}},{\"attributeHeader\":{\"labelValue\":\"956426\",\"primaryLabelValue\":\"956426\"}},{\"attributeHeader\":{\"labelValue\":\"956428\",\"primaryLabelValue\":\"956428\"}},{\"attributeHeader\":{\"labelValue\":\"956430\",\"primaryLabelValue\":\"956430\"}},{\"attributeHeader\":{\"labelValue\":\"956432\",\"primaryLabelValue\":\"956432\"}},{\"attributeHeader\":{\"labelValue\":\"956434\",\"primaryLabelValue\":\"956434\"}},{\"attributeHeader\":{\"labelValue\":\"956436\",\"primaryLabelValue\":\"956436\"}},{\"attributeHeader\":{\"labelValue\":\"956438\",\"primaryLabelValue\":\"956438\"}},{\"attributeHeader\":{\"labelValue\":\"956440\",\"primaryLabelValue\":\"956440\"}},{\"attributeHeader\":{\"labelValue\":\"956442\",\"primaryLabelValue\":\"956442\"}},{\"attributeHeader\":{\"labelValue\":\"956444\",\"primaryLabelValue\":\"956444\"}},{\"attributeHeader\":{\"labelValue\":\"956446\",\"primaryLabelValue\":\"956446\"}},{\"attributeHeader\":{\"labelValue\":\"956448\",\"primaryLabelValue\":\"956448\"}},{\"attributeHeader\":{\"labelValue\":\"956450\",\"primaryLabelValue\":\"956450\"}},{\"attributeHeader\":{\"labelValue\":\"956452\",\"primaryLabelValue\":\"956452\"}},{\"attributeHeader\":{\"labelValue\":\"956454\",\"primaryLabelValue\":\"956454\"}},{\"attributeHeader\":{\"labelValue\":\"956456\",\"primaryLabelValue\":\"956456\"}},{\"attributeHeader\":{\"labelValue\":\"956458\",\"primaryLabelValue\":\"956458\"}},{\"attributeHeader\":{\"labelValue\":\"956460\",\"primaryLabelValue\":\"956460\"}},{\"attributeHeader\":{\"labelValue\":\"956462\",\"primaryLabelValue\":\"956462\"}},{\"attributeHeader\":{\"labelValue\":\"956464\",\"primaryLabelValue\":\"956464\"}},{\"attributeHeader\":{\"labelValue\":\"956466\",\"primaryLabelValue\":\"956466\"}},{\"attributeHeader\":{\"labelValue\":\"956468\",\"primaryLabelValue\":\"956468\"}},{\"attributeHeader\":{\"labelValue\":\"956470\",\"primaryLabelValue\":\"956470\"}},{\"attributeHeader\":{\"labelValue\":\"956472\",\"primaryLabelValue\":\"956472\"}},{\"attributeHeader\":{\"labelValue\":\"956474\",\"primaryLabelValue\":\"956474\"}},{\"attributeHeader\":{\"labelValue\":\"956476\",\"primaryLabelValue\":\"956476\"}},{\"attributeHeader\":{\"labelValue\":\"956478\",\"primaryLabelValue\":\"956478\"}},{\"attributeHeader\":{\"labelValue\":\"956480\",\"primaryLabelValue\":\"956480\"}},{\"attributeHeader\":{\"labelValue\":\"956482\",\"primaryLabelValue\":\"956482\"}},{\"attributeHeader\":{\"labelValue\":\"956484\",\"primaryLabelValue\":\"956484\"}},{\"attributeHeader\":{\"labelValue\":\"956486\",\"primaryLabelValue\":\"956486\"}},{\"attributeHeader\":{\"labelValue\":\"956488\",\"primaryLabelValue\":\"956488\"}},{\"attributeHeader\":{\"labelValue\":\"956490\",\"primaryLabelValue\":\"956490\"}},{\"attributeHeader\":{\"labelValue\":\"956492\",\"primaryLabelValue\":\"956492\"}},{\"attributeHeader\":{\"labelValue\":\"956494\",\"primaryLabelValue\":\"956494\"}},{\"attributeHeader\":{\"labelValue\":\"956496\",\"primaryLabelValue\":\"956496\"}},{\"attributeHeader\":{\"labelValue\":\"956498\",\"primaryLabelValue\":\"956498\"}},{\"attributeHeader\":{\"labelValue\":\"956500\",\"primaryLabelValue\":\"956500\"}},{\"attributeHeader\":{\"labelValue\":\"956502\",\"primaryLabelValue\":\"956502\"}},{\"attributeHeader\":{\"labelValue\":\"956504\",\"primaryLabelValue\":\"956504\"}},{\"attributeHeader\":{\"labelValue\":\"956506\",\"primaryLabelValue\":\"956506\"}},{\"attributeHeader\":{\"labelValue\":\"956508\",\"primaryLabelValue\":\"956508\"}},{\"attributeHeader\":{\"labelValue\":\"956510\",\"primaryLabelValue\":\"956510\"}},{\"attributeHeader\":{\"labelValue\":\"956512\",\"primaryLabelValue\":\"956512\"}},{\"attributeHeader\":{\"labelValue\":\"956514\",\"primaryLabelValue\":\"956514\"}},{\"attributeHeader\":{\"labelValue\":\"956516\",\"primaryLabelValue\":\"956516\"}},{\"attributeHeader\":{\"labelValue\":\"956518\",\"primaryLabelValue\":\"956518\"}},{\"attributeHeader\":{\"labelValue\":\"956520\",\"primaryLabelValue\":\"956520\"}},{\"attributeHeader\":{\"labelValue\":\"956522\",\"primaryLabelValue\":\"956522\"}},{\"attributeHeader\":{\"labelValue\":\"956524\",\"primaryLabelValue\":\"956524\"}},{\"attributeHeader\":{\"labelValue\":\"956526\",\"primaryLabelValue\":\"956526\"}},{\"attributeHeader\":{\"labelValue\":\"956528\",\"primaryLabelValue\":\"956528\"}},{\"attributeHeader\":{\"labelValue\":\"956530\",\"primaryLabelValue\":\"956530\"}},{\"attributeHeader\":{\"labelValue\":\"956532\",\"primaryLabelValue\":\"956532\"}},{\"attributeHeader\":{\"labelValue\":\"956534\",\"primaryLabelValue\":\"956534\"}},{\"attributeHeader\":{\"labelValue\":\"956536\",\"primaryLabelValue\":\"956536\"}},{\"attributeHeader\":{\"labelValue\":\"956538\",\"primaryLabelValue\":\"956538\"}},{\"attributeHeader\":{\"labelValue\":\"956540\",\"primaryLabelValue\":\"956540\"}},{\"attributeHeader\":{\"labelValue\":\"956542\",\"primaryLabelValue\":\"956542\"}},{\"attributeHeader\":{\"labelValue\":\"956544\",\"primaryLabelValue\":\"956544\"}},{\"attributeHeader\":{\"labelValue\":\"956546\",\"primaryLabelValue\":\"956546\"}},{\"attributeHeader\":{\"labelValue\":\"956548\",\"primaryLabelValue\":\"956548\"}},{\"attributeHeader\":{\"labelValue\":\"956550\",\"primaryLabelValue\":\"956550\"}},{\"attributeHeader\":{\"labelValue\":\"956552\",\"primaryLabelValue\":\"956552\"}},{\"attributeHeader\":{\"labelValue\":\"956554\",\"primaryLabelValue\":\"956554\"}},{\"attributeHeader\":{\"labelValue\":\"956556\",\"primaryLabelValue\":\"956556\"}},{\"attributeHeader\":{\"labelValue\":\"956558\",\"primaryLabelValue\":\"956558\"}},{\"attributeHeader\":{\"labelValue\":\"956560\",\"primaryLabelValue\":\"956560\"}},{\"attributeHeader\":{\"labelValue\":\"956562\",\"primaryLabelValue\":\"956562\"}},{\"attributeHeader\":{\"labelValue\":\"956564\",\"primaryLabelValue\":\"956564\"}},{\"attributeHeader\":{\"labelValue\":\"956566\",\"primaryLabelValue\":\"956566\"}},{\"attributeHeader\":{\"labelValue\":\"956568\",\"primaryLabelValue\":\"956568\"}},{\"attributeHeader\":{\"labelValue\":\"956570\",\"primaryLabelValue\":\"956570\"}},{\"attributeHeader\":{\"labelValue\":\"956572\",\"primaryLabelValue\":\"956572\"}},{\"attributeHeader\":{\"labelValue\":\"956574\",\"primaryLabelValue\":\"956574\"}},{\"attributeHeader\":{\"labelValue\":\"956576\",\"primaryLabelValue\":\"956576\"}},{\"attributeHeader\":{\"labelValue\":\"956578\",\"primaryLabelValue\":\"956578\"}},{\"attributeHeader\":{\"labelValue\":\"956580\",\"primaryLabelValue\":\"956580\"}},{\"attributeHeader\":{\"labelValue\":\"956582\",\"primaryLabelValue\":\"956582\"}},{\"attributeHeader\":{\"labelValue\":\"956584\",\"primaryLabelValue\":\"956584\"}},{\"attributeHeader\":{\"labelValue\":\"956586\",\"primaryLabelValue\":\"956586\"}},{\"attributeHeader\":{\"labelValue\":\"956588\",\"primaryLabelValue\":\"956588\"}},{\"attributeHeader\":{\"labelValue\":\"956590\",\"primaryLabelValue\":\"956590\"}},{\"attributeHeader\":{\"labelValue\":\"956592\",\"primaryLabelValue\":\"956592\"}},{\"attributeHeader\":{\"labelValue\":\"956594\",\"primaryLabelValue\":\"956594\"}},{\"attributeHeader\":{\"labelValue\":\"956596\",\"primaryLabelValue\":\"956596\"}},{\"attributeHeader\":{\"labelValue\":\"956598\",\"primaryLabelValue\":\"956598\"}},{\"attributeHeader\":{\"labelValue\":\"956600\",\"primaryLabelValue\":\"956600\"}},{\"attributeHeader\":{\"labelValue\":\"956602\",\"primaryLabelValue\":\"956602\"}},{\"attributeHeader\":{\"labelValue\":\"956604\",\"primaryLabelValue\":\"956604\"}},{\"attributeHeader\":{\"labelValue\":\"956606\",\"primaryLabelValue\":\"956606\"}},{\"attributeHeader\":{\"labelValue\":\"956608\",\"primaryLabelValue\":\"956608\"}},{\"attributeHeader\":{\"labelValue\":\"956610\",\"primaryLabelValue\":\"956610\"}},{\"attributeHeader\":{\"labelValue\":\"956612\",\"primaryLabelValue\":\"956612\"}},{\"attributeHeader\":{\"labelValue\":\"956614\",\"primaryLabelValue\":\"956614\"}},{\"attributeHeader\":{\"labelValue\":\"956616\",\"primaryLabelValue\":\"956616\"}},{\"attributeHeader\":{\"labelValue\":\"956618\",\"primaryLabelValue\":\"956618\"}},{\"attributeHeader\":{\"labelValue\":\"956620\",\"primaryLabelValue\":\"956620\"}},{\"attributeHeader\":{\"labelValue\":\"956622\",\"primaryLabelValue\":\"956622\"}},{\"attributeHeader\":{\"labelValue\":\"956624\",\"primaryLabelValue\":\"956624\"}},{\"attributeHeader\":{\"labelValue\":\"956626\",\"primaryLabelValue\":\"956626\"}},{\"attributeHeader\":{\"labelValue\":\"956628\",\"primaryLabelValue\":\"956628\"}},{\"attributeHeader\":{\"labelValue\":\"956630\",\"primaryLabelValue\":\"956630\"}},{\"attributeHeader\":{\"labelValue\":\"956632\",\"primaryLabelValue\":\"956632\"}},{\"attributeHeader\":{\"labelValue\":\"956634\",\"primaryLabelValue\":\"956634\"}},{\"attributeHeader\":{\"labelValue\":\"956636\",\"primaryLabelValue\":\"956636\"}},{\"attributeHeader\":{\"labelValue\":\"956638\",\"primaryLabelValue\":\"956638\"}},{\"attributeHeader\":{\"labelValue\":\"956640\",\"primaryLabelValue\":\"956640\"}},{\"attributeHeader\":{\"labelValue\":\"956642\",\"primaryLabelValue\":\"956642\"}},{\"attributeHeader\":{\"labelValue\":\"956644\",\"primaryLabelValue\":\"956644\"}},{\"attributeHeader\":{\"labelValue\":\"956646\",\"primaryLabelValue\":\"956646\"}},{\"attributeHeader\":{\"labelValue\":\"956648\",\"primaryLabelValue\":\"956648\"}},{\"attributeHeader\":{\"labelValue\":\"956650\",\"primaryLabelValue\":\"956650\"}},{\"attributeHeader\":{\"labelValue\":\"956652\",\"primaryLabelValue\":\"956652\"}},{\"attributeHeader\":{\"labelValue\":\"956654\",\"primaryLabelValue\":\"956654\"}},{\"attributeHeader\":{\"labelValue\":\"956656\",\"primaryLabelValue\":\"956656\"}},{\"attributeHeader\":{\"labelValue\":\"956658\",\"primaryLabelValue\":\"956658\"}},{\"attributeHeader\":{\"labelValue\":\"956660\",\"primaryLabelValue\":\"956660\"}},{\"attributeHeader\":{\"labelValue\":\"956662\",\"primaryLabelValue\":\"956662\"}},{\"attributeHeader\":{\"labelValue\":\"956664\",\"primaryLabelValue\":\"956664\"}},{\"attributeHeader\":{\"labelValue\":\"956666\",\"primaryLabelValue\":\"956666\"}},{\"attributeHeader\":{\"labelValue\":\"956668\",\"primaryLabelValue\":\"956668\"}},{\"attributeHeader\":{\"labelValue\":\"956670\",\"primaryLabelValue\":\"956670\"}},{\"attributeHeader\":{\"labelValue\":\"956672\",\"primaryLabelValue\":\"956672\"}},{\"attributeHeader\":{\"labelValue\":\"956674\",\"primaryLabelValue\":\"956674\"}},{\"attributeHeader\":{\"labelValue\":\"956676\",\"primaryLabelValue\":\"956676\"}},{\"attributeHeader\":{\"labelValue\":\"956678\",\"primaryLabelValue\":\"956678\"}},{\"attributeHeader\":{\"labelValue\":\"956680\",\"primaryLabelValue\":\"956680\"}},{\"attributeHeader\":{\"labelValue\":\"956684\",\"primaryLabelValue\":\"956684\"}},{\"attributeHeader\":{\"labelValue\":\"956686\",\"primaryLabelValue\":\"956686\"}},{\"attributeHeader\":{\"labelValue\":\"956688\",\"primaryLabelValue\":\"956688\"}},{\"attributeHeader\":{\"labelValue\":\"956690\",\"primaryLabelValue\":\"956690\"}},{\"attributeHeader\":{\"labelValue\":\"956692\",\"primaryLabelValue\":\"956692\"}},{\"attributeHeader\":{\"labelValue\":\"956694\",\"primaryLabelValue\":\"956694\"}},{\"attributeHeader\":{\"labelValue\":\"956696\",\"primaryLabelValue\":\"956696\"}},{\"attributeHeader\":{\"labelValue\":\"956698\",\"primaryLabelValue\":\"956698\"}},{\"attributeHeader\":{\"labelValue\":\"956700\",\"primaryLabelValue\":\"956700\"}},{\"attributeHeader\":{\"labelValue\":\"956702\",\"primaryLabelValue\":\"956702\"}},{\"attributeHeader\":{\"labelValue\":\"956704\",\"primaryLabelValue\":\"956704\"}},{\"attributeHeader\":{\"labelValue\":\"956706\",\"primaryLabelValue\":\"956706\"}},{\"attributeHeader\":{\"labelValue\":\"956708\",\"primaryLabelValue\":\"956708\"}},{\"attributeHeader\":{\"labelValue\":\"956710\",\"primaryLabelValue\":\"956710\"}},{\"attributeHeader\":{\"labelValue\":\"956712\",\"primaryLabelValue\":\"956712\"}},{\"attributeHeader\":{\"labelValue\":\"956714\",\"primaryLabelValue\":\"956714\"}},{\"attributeHeader\":{\"labelValue\":\"956716\",\"primaryLabelValue\":\"956716\"}},{\"attributeHeader\":{\"labelValue\":\"956718\",\"primaryLabelValue\":\"956718\"}},{\"attributeHeader\":{\"labelValue\":\"956720\",\"primaryLabelValue\":\"956720\"}},{\"attributeHeader\":{\"labelValue\":\"956722\",\"primaryLabelValue\":\"956722\"}},{\"attributeHeader\":{\"labelValue\":\"956724\",\"primaryLabelValue\":\"956724\"}},{\"attributeHeader\":{\"labelValue\":\"956726\",\"primaryLabelValue\":\"956726\"}},{\"attributeHeader\":{\"labelValue\":\"956728\",\"primaryLabelValue\":\"956728\"}},{\"attributeHeader\":{\"labelValue\":\"956730\",\"primaryLabelValue\":\"956730\"}},{\"attributeHeader\":{\"labelValue\":\"956732\",\"primaryLabelValue\":\"956732\"}},{\"attributeHeader\":{\"labelValue\":\"956734\",\"primaryLabelValue\":\"956734\"}},{\"attributeHeader\":{\"labelValue\":\"956736\",\"primaryLabelValue\":\"956736\"}},{\"attributeHeader\":{\"labelValue\":\"956738\",\"primaryLabelValue\":\"956738\"}},{\"attributeHeader\":{\"labelValue\":\"956740\",\"primaryLabelValue\":\"956740\"}},{\"attributeHeader\":{\"labelValue\":\"956742\",\"primaryLabelValue\":\"956742\"}},{\"attributeHeader\":{\"labelValue\":\"956744\",\"primaryLabelValue\":\"956744\"}},{\"attributeHeader\":{\"labelValue\":\"956746\",\"primaryLabelValue\":\"956746\"}},{\"attributeHeader\":{\"labelValue\":\"956748\",\"primaryLabelValue\":\"956748\"}},{\"attributeHeader\":{\"labelValue\":\"956750\",\"primaryLabelValue\":\"956750\"}},{\"attributeHeader\":{\"labelValue\":\"956752\",\"primaryLabelValue\":\"956752\"}},{\"attributeHeader\":{\"labelValue\":\"956754\",\"primaryLabelValue\":\"956754\"}},{\"attributeHeader\":{\"labelValue\":\"956756\",\"primaryLabelValue\":\"956756\"}},{\"attributeHeader\":{\"labelValue\":\"956758\",\"primaryLabelValue\":\"956758\"}},{\"attributeHeader\":{\"labelValue\":\"956760\",\"primaryLabelValue\":\"956760\"}},{\"attributeHeader\":{\"labelValue\":\"956762\",\"primaryLabelValue\":\"956762\"}},{\"attributeHeader\":{\"labelValue\":\"956766\",\"primaryLabelValue\":\"956766\"}},{\"attributeHeader\":{\"labelValue\":\"956768\",\"primaryLabelValue\":\"956768\"}},{\"attributeHeader\":{\"labelValue\":\"956770\",\"primaryLabelValue\":\"956770\"}},{\"attributeHeader\":{\"labelValue\":\"956772\",\"primaryLabelValue\":\"956772\"}},{\"attributeHeader\":{\"labelValue\":\"956774\",\"primaryLabelValue\":\"956774\"}},{\"attributeHeader\":{\"labelValue\":\"956776\",\"primaryLabelValue\":\"956776\"}},{\"attributeHeader\":{\"labelValue\":\"956778\",\"primaryLabelValue\":\"956778\"}},{\"attributeHeader\":{\"labelValue\":\"956780\",\"primaryLabelValue\":\"956780\"}},{\"attributeHeader\":{\"labelValue\":\"956782\",\"primaryLabelValue\":\"956782\"}},{\"attributeHeader\":{\"labelValue\":\"956784\",\"primaryLabelValue\":\"956784\"}},{\"attributeHeader\":{\"labelValue\":\"956786\",\"primaryLabelValue\":\"956786\"}},{\"attributeHeader\":{\"labelValue\":\"956788\",\"primaryLabelValue\":\"956788\"}},{\"attributeHeader\":{\"labelValue\":\"956790\",\"primaryLabelValue\":\"956790\"}},{\"attributeHeader\":{\"labelValue\":\"956792\",\"primaryLabelValue\":\"956792\"}},{\"attributeHeader\":{\"labelValue\":\"956794\",\"primaryLabelValue\":\"956794\"}},{\"attributeHeader\":{\"labelValue\":\"956796\",\"primaryLabelValue\":\"956796\"}},{\"attributeHeader\":{\"labelValue\":\"956798\",\"primaryLabelValue\":\"956798\"}},{\"attributeHeader\":{\"labelValue\":\"956800\",\"primaryLabelValue\":\"956800\"}},{\"attributeHeader\":{\"labelValue\":\"956802\",\"primaryLabelValue\":\"956802\"}},{\"attributeHeader\":{\"labelValue\":\"956804\",\"primaryLabelValue\":\"956804\"}},{\"attributeHeader\":{\"labelValue\":\"956806\",\"primaryLabelValue\":\"956806\"}},{\"attributeHeader\":{\"labelValue\":\"956808\",\"primaryLabelValue\":\"956808\"}},{\"attributeHeader\":{\"labelValue\":\"956810\",\"primaryLabelValue\":\"956810\"}},{\"attributeHeader\":{\"labelValue\":\"956812\",\"primaryLabelValue\":\"956812\"}},{\"attributeHeader\":{\"labelValue\":\"956814\",\"primaryLabelValue\":\"956814\"}},{\"attributeHeader\":{\"labelValue\":\"956816\",\"primaryLabelValue\":\"956816\"}},{\"attributeHeader\":{\"labelValue\":\"956818\",\"primaryLabelValue\":\"956818\"}},{\"attributeHeader\":{\"labelValue\":\"956820\",\"primaryLabelValue\":\"956820\"}},{\"attributeHeader\":{\"labelValue\":\"956822\",\"primaryLabelValue\":\"956822\"}},{\"attributeHeader\":{\"labelValue\":\"956826\",\"primaryLabelValue\":\"956826\"}},{\"attributeHeader\":{\"labelValue\":\"956828\",\"primaryLabelValue\":\"956828\"}},{\"attributeHeader\":{\"labelValue\":\"956830\",\"primaryLabelValue\":\"956830\"}},{\"attributeHeader\":{\"labelValue\":\"956832\",\"primaryLabelValue\":\"956832\"}},{\"attributeHeader\":{\"labelValue\":\"956834\",\"primaryLabelValue\":\"956834\"}},{\"attributeHeader\":{\"labelValue\":\"956838\",\"primaryLabelValue\":\"956838\"}},{\"attributeHeader\":{\"labelValue\":\"956840\",\"primaryLabelValue\":\"956840\"}},{\"attributeHeader\":{\"labelValue\":\"956842\",\"primaryLabelValue\":\"956842\"}},{\"attributeHeader\":{\"labelValue\":\"956844\",\"primaryLabelValue\":\"956844\"}},{\"attributeHeader\":{\"labelValue\":\"956846\",\"primaryLabelValue\":\"956846\"}},{\"attributeHeader\":{\"labelValue\":\"956848\",\"primaryLabelValue\":\"956848\"}},{\"attributeHeader\":{\"labelValue\":\"956852\",\"primaryLabelValue\":\"956852\"}},{\"attributeHeader\":{\"labelValue\":\"956854\",\"primaryLabelValue\":\"956854\"}},{\"attributeHeader\":{\"labelValue\":\"956856\",\"primaryLabelValue\":\"956856\"}},{\"attributeHeader\":{\"labelValue\":\"956858\",\"primaryLabelValue\":\"956858\"}},{\"attributeHeader\":{\"labelValue\":\"956860\",\"primaryLabelValue\":\"956860\"}},{\"attributeHeader\":{\"labelValue\":\"956862\",\"primaryLabelValue\":\"956862\"}},{\"attributeHeader\":{\"labelValue\":\"956864\",\"primaryLabelValue\":\"956864\"}},{\"attributeHeader\":{\"labelValue\":\"956866\",\"primaryLabelValue\":\"956866\"}},{\"attributeHeader\":{\"labelValue\":\"956868\",\"primaryLabelValue\":\"956868\"}},{\"attributeHeader\":{\"labelValue\":\"956870\",\"primaryLabelValue\":\"956870\"}},{\"attributeHeader\":{\"labelValue\":\"956872\",\"primaryLabelValue\":\"956872\"}},{\"attributeHeader\":{\"labelValue\":\"956874\",\"primaryLabelValue\":\"956874\"}},{\"attributeHeader\":{\"labelValue\":\"956876\",\"primaryLabelValue\":\"956876\"}},{\"attributeHeader\":{\"labelValue\":\"956878\",\"primaryLabelValue\":\"956878\"}},{\"attributeHeader\":{\"labelValue\":\"956880\",\"primaryLabelValue\":\"956880\"}},{\"attributeHeader\":{\"labelValue\":\"956882\",\"primaryLabelValue\":\"956882\"}},{\"attributeHeader\":{\"labelValue\":\"956884\",\"primaryLabelValue\":\"956884\"}},{\"attributeHeader\":{\"labelValue\":\"956886\",\"primaryLabelValue\":\"956886\"}},{\"attributeHeader\":{\"labelValue\":\"956888\",\"primaryLabelValue\":\"956888\"}},{\"attributeHeader\":{\"labelValue\":\"956890\",\"primaryLabelValue\":\"956890\"}},{\"attributeHeader\":{\"labelValue\":\"956892\",\"primaryLabelValue\":\"956892\"}},{\"attributeHeader\":{\"labelValue\":\"956894\",\"primaryLabelValue\":\"956894\"}},{\"attributeHeader\":{\"labelValue\":\"956896\",\"primaryLabelValue\":\"956896\"}},{\"attributeHeader\":{\"labelValue\":\"956898\",\"primaryLabelValue\":\"956898\"}},{\"attributeHeader\":{\"labelValue\":\"956900\",\"primaryLabelValue\":\"956900\"}},{\"attributeHeader\":{\"labelValue\":\"956902\",\"primaryLabelValue\":\"956902\"}},{\"attributeHeader\":{\"labelValue\":\"956904\",\"primaryLabelValue\":\"956904\"}},{\"attributeHeader\":{\"labelValue\":\"956906\",\"primaryLabelValue\":\"956906\"}},{\"attributeHeader\":{\"labelValue\":\"956908\",\"primaryLabelValue\":\"956908\"}},{\"attributeHeader\":{\"labelValue\":\"956910\",\"primaryLabelValue\":\"956910\"}},{\"attributeHeader\":{\"labelValue\":\"956912\",\"primaryLabelValue\":\"956912\"}},{\"attributeHeader\":{\"labelValue\":\"956914\",\"primaryLabelValue\":\"956914\"}},{\"attributeHeader\":{\"labelValue\":\"956916\",\"primaryLabelValue\":\"956916\"}},{\"attributeHeader\":{\"labelValue\":\"956918\",\"primaryLabelValue\":\"956918\"}},{\"attributeHeader\":{\"labelValue\":\"956920\",\"primaryLabelValue\":\"956920\"}},{\"attributeHeader\":{\"labelValue\":\"956922\",\"primaryLabelValue\":\"956922\"}},{\"attributeHeader\":{\"labelValue\":\"956924\",\"primaryLabelValue\":\"956924\"}},{\"attributeHeader\":{\"labelValue\":\"956926\",\"primaryLabelValue\":\"956926\"}},{\"attributeHeader\":{\"labelValue\":\"956928\",\"primaryLabelValue\":\"956928\"}},{\"attributeHeader\":{\"labelValue\":\"956930\",\"primaryLabelValue\":\"956930\"}},{\"attributeHeader\":{\"labelValue\":\"956932\",\"primaryLabelValue\":\"956932\"}},{\"attributeHeader\":{\"labelValue\":\"956934\",\"primaryLabelValue\":\"956934\"}},{\"attributeHeader\":{\"labelValue\":\"956936\",\"primaryLabelValue\":\"956936\"}},{\"attributeHeader\":{\"labelValue\":\"956938\",\"primaryLabelValue\":\"956938\"}},{\"attributeHeader\":{\"labelValue\":\"956940\",\"primaryLabelValue\":\"956940\"}},{\"attributeHeader\":{\"labelValue\":\"956942\",\"primaryLabelValue\":\"956942\"}},{\"attributeHeader\":{\"labelValue\":\"956944\",\"primaryLabelValue\":\"956944\"}},{\"attributeHeader\":{\"labelValue\":\"956946\",\"primaryLabelValue\":\"956946\"}},{\"attributeHeader\":{\"labelValue\":\"956948\",\"primaryLabelValue\":\"956948\"}},{\"attributeHeader\":{\"labelValue\":\"956950\",\"primaryLabelValue\":\"956950\"}},{\"attributeHeader\":{\"labelValue\":\"956952\",\"primaryLabelValue\":\"956952\"}},{\"attributeHeader\":{\"labelValue\":\"956954\",\"primaryLabelValue\":\"956954\"}},{\"attributeHeader\":{\"labelValue\":\"956956\",\"primaryLabelValue\":\"956956\"}},{\"attributeHeader\":{\"labelValue\":\"956958\",\"primaryLabelValue\":\"956958\"}},{\"attributeHeader\":{\"labelValue\":\"956960\",\"primaryLabelValue\":\"956960\"}},{\"attributeHeader\":{\"labelValue\":\"956962\",\"primaryLabelValue\":\"956962\"}},{\"attributeHeader\":{\"labelValue\":\"956964\",\"primaryLabelValue\":\"956964\"}},{\"attributeHeader\":{\"labelValue\":\"956966\",\"primaryLabelValue\":\"956966\"}},{\"attributeHeader\":{\"labelValue\":\"956968\",\"primaryLabelValue\":\"956968\"}},{\"attributeHeader\":{\"labelValue\":\"956970\",\"primaryLabelValue\":\"956970\"}},{\"attributeHeader\":{\"labelValue\":\"956972\",\"primaryLabelValue\":\"956972\"}},{\"attributeHeader\":{\"labelValue\":\"956974\",\"primaryLabelValue\":\"956974\"}},{\"attributeHeader\":{\"labelValue\":\"956976\",\"primaryLabelValue\":\"956976\"}},{\"attributeHeader\":{\"labelValue\":\"956978\",\"primaryLabelValue\":\"956978\"}},{\"attributeHeader\":{\"labelValue\":\"956980\",\"primaryLabelValue\":\"956980\"}},{\"attributeHeader\":{\"labelValue\":\"956982\",\"primaryLabelValue\":\"956982\"}},{\"attributeHeader\":{\"labelValue\":\"956984\",\"primaryLabelValue\":\"956984\"}},{\"attributeHeader\":{\"labelValue\":\"956986\",\"primaryLabelValue\":\"956986\"}},{\"attributeHeader\":{\"labelValue\":\"956988\",\"primaryLabelValue\":\"956988\"}},{\"attributeHeader\":{\"labelValue\":\"956990\",\"primaryLabelValue\":\"956990\"}},{\"attributeHeader\":{\"labelValue\":\"956992\",\"primaryLabelValue\":\"956992\"}},{\"attributeHeader\":{\"labelValue\":\"956994\",\"primaryLabelValue\":\"956994\"}},{\"attributeHeader\":{\"labelValue\":\"956996\",\"primaryLabelValue\":\"956996\"}},{\"attributeHeader\":{\"labelValue\":\"956998\",\"primaryLabelValue\":\"956998\"}},{\"attributeHeader\":{\"labelValue\":\"957000\",\"primaryLabelValue\":\"957000\"}},{\"attributeHeader\":{\"labelValue\":\"957002\",\"primaryLabelValue\":\"957002\"}},{\"attributeHeader\":{\"labelValue\":\"957004\",\"primaryLabelValue\":\"957004\"}},{\"attributeHeader\":{\"labelValue\":\"957006\",\"primaryLabelValue\":\"957006\"}},{\"attributeHeader\":{\"labelValue\":\"957008\",\"primaryLabelValue\":\"957008\"}},{\"attributeHeader\":{\"labelValue\":\"957010\",\"primaryLabelValue\":\"957010\"}},{\"attributeHeader\":{\"labelValue\":\"957012\",\"primaryLabelValue\":\"957012\"}},{\"attributeHeader\":{\"labelValue\":\"957014\",\"primaryLabelValue\":\"957014\"}},{\"attributeHeader\":{\"labelValue\":\"957016\",\"primaryLabelValue\":\"957016\"}},{\"attributeHeader\":{\"labelValue\":\"957018\",\"primaryLabelValue\":\"957018\"}},{\"attributeHeader\":{\"labelValue\":\"957020\",\"primaryLabelValue\":\"957020\"}},{\"attributeHeader\":{\"labelValue\":\"957022\",\"primaryLabelValue\":\"957022\"}},{\"attributeHeader\":{\"labelValue\":\"957024\",\"primaryLabelValue\":\"957024\"}},{\"attributeHeader\":{\"labelValue\":\"957026\",\"primaryLabelValue\":\"957026\"}},{\"attributeHeader\":{\"labelValue\":\"957028\",\"primaryLabelValue\":\"957028\"}},{\"attributeHeader\":{\"labelValue\":\"957030\",\"primaryLabelValue\":\"957030\"}},{\"attributeHeader\":{\"labelValue\":\"957032\",\"primaryLabelValue\":\"957032\"}},{\"attributeHeader\":{\"labelValue\":\"957034\",\"primaryLabelValue\":\"957034\"}},{\"attributeHeader\":{\"labelValue\":\"957036\",\"primaryLabelValue\":\"957036\"}},{\"attributeHeader\":{\"labelValue\":\"957038\",\"primaryLabelValue\":\"957038\"}},{\"attributeHeader\":{\"labelValue\":\"957040\",\"primaryLabelValue\":\"957040\"}},{\"attributeHeader\":{\"labelValue\":\"957042\",\"primaryLabelValue\":\"957042\"}},{\"attributeHeader\":{\"labelValue\":\"957044\",\"primaryLabelValue\":\"957044\"}},{\"attributeHeader\":{\"labelValue\":\"957046\",\"primaryLabelValue\":\"957046\"}},{\"attributeHeader\":{\"labelValue\":\"957048\",\"primaryLabelValue\":\"957048\"}},{\"attributeHeader\":{\"labelValue\":\"957050\",\"primaryLabelValue\":\"957050\"}},{\"attributeHeader\":{\"labelValue\":\"957052\",\"primaryLabelValue\":\"957052\"}},{\"attributeHeader\":{\"labelValue\":\"957054\",\"primaryLabelValue\":\"957054\"}},{\"attributeHeader\":{\"labelValue\":\"957056\",\"primaryLabelValue\":\"957056\"}},{\"attributeHeader\":{\"labelValue\":\"957058\",\"primaryLabelValue\":\"957058\"}},{\"attributeHeader\":{\"labelValue\":\"957060\",\"primaryLabelValue\":\"957060\"}},{\"attributeHeader\":{\"labelValue\":\"957062\",\"primaryLabelValue\":\"957062\"}},{\"attributeHeader\":{\"labelValue\":\"957064\",\"primaryLabelValue\":\"957064\"}},{\"attributeHeader\":{\"labelValue\":\"957066\",\"primaryLabelValue\":\"957066\"}},{\"attributeHeader\":{\"labelValue\":\"957068\",\"primaryLabelValue\":\"957068\"}},{\"attributeHeader\":{\"labelValue\":\"957070\",\"primaryLabelValue\":\"957070\"}},{\"attributeHeader\":{\"labelValue\":\"957072\",\"primaryLabelValue\":\"957072\"}},{\"attributeHeader\":{\"labelValue\":\"957074\",\"primaryLabelValue\":\"957074\"}},{\"attributeHeader\":{\"labelValue\":\"957076\",\"primaryLabelValue\":\"957076\"}},{\"attributeHeader\":{\"labelValue\":\"957078\",\"primaryLabelValue\":\"957078\"}},{\"attributeHeader\":{\"labelValue\":\"957080\",\"primaryLabelValue\":\"957080\"}},{\"attributeHeader\":{\"labelValue\":\"957082\",\"primaryLabelValue\":\"957082\"}},{\"attributeHeader\":{\"labelValue\":\"957084\",\"primaryLabelValue\":\"957084\"}},{\"attributeHeader\":{\"labelValue\":\"957086\",\"primaryLabelValue\":\"957086\"}},{\"attributeHeader\":{\"labelValue\":\"957088\",\"primaryLabelValue\":\"957088\"}},{\"attributeHeader\":{\"labelValue\":\"957090\",\"primaryLabelValue\":\"957090\"}},{\"attributeHeader\":{\"labelValue\":\"957092\",\"primaryLabelValue\":\"957092\"}},{\"attributeHeader\":{\"labelValue\":\"957094\",\"primaryLabelValue\":\"957094\"}},{\"attributeHeader\":{\"labelValue\":\"957098\",\"primaryLabelValue\":\"957098\"}},{\"attributeHeader\":{\"labelValue\":\"957100\",\"primaryLabelValue\":\"957100\"}},{\"attributeHeader\":{\"labelValue\":\"957102\",\"primaryLabelValue\":\"957102\"}},{\"attributeHeader\":{\"labelValue\":\"957104\",\"primaryLabelValue\":\"957104\"}},{\"attributeHeader\":{\"labelValue\":\"957106\",\"primaryLabelValue\":\"957106\"}},{\"attributeHeader\":{\"labelValue\":\"957108\",\"primaryLabelValue\":\"957108\"}},{\"attributeHeader\":{\"labelValue\":\"957110\",\"primaryLabelValue\":\"957110\"}},{\"attributeHeader\":{\"labelValue\":\"957112\",\"primaryLabelValue\":\"957112\"}},{\"attributeHeader\":{\"labelValue\":\"957114\",\"primaryLabelValue\":\"957114\"}},{\"attributeHeader\":{\"labelValue\":\"957116\",\"primaryLabelValue\":\"957116\"}},{\"attributeHeader\":{\"labelValue\":\"957118\",\"primaryLabelValue\":\"957118\"}},{\"attributeHeader\":{\"labelValue\":\"957120\",\"primaryLabelValue\":\"957120\"}},{\"attributeHeader\":{\"labelValue\":\"957122\",\"primaryLabelValue\":\"957122\"}},{\"attributeHeader\":{\"labelValue\":\"957124\",\"primaryLabelValue\":\"957124\"}},{\"attributeHeader\":{\"labelValue\":\"957128\",\"primaryLabelValue\":\"957128\"}},{\"attributeHeader\":{\"labelValue\":\"957130\",\"primaryLabelValue\":\"957130\"}},{\"attributeHeader\":{\"labelValue\":\"957132\",\"primaryLabelValue\":\"957132\"}},{\"attributeHeader\":{\"labelValue\":\"957134\",\"primaryLabelValue\":\"957134\"}},{\"attributeHeader\":{\"labelValue\":\"957136\",\"primaryLabelValue\":\"957136\"}},{\"attributeHeader\":{\"labelValue\":\"957138\",\"primaryLabelValue\":\"957138\"}},{\"attributeHeader\":{\"labelValue\":\"957140\",\"primaryLabelValue\":\"957140\"}},{\"attributeHeader\":{\"labelValue\":\"957142\",\"primaryLabelValue\":\"957142\"}},{\"attributeHeader\":{\"labelValue\":\"957144\",\"primaryLabelValue\":\"957144\"}},{\"attributeHeader\":{\"labelValue\":\"957146\",\"primaryLabelValue\":\"957146\"}},{\"attributeHeader\":{\"labelValue\":\"957148\",\"primaryLabelValue\":\"957148\"}},{\"attributeHeader\":{\"labelValue\":\"957150\",\"primaryLabelValue\":\"957150\"}},{\"attributeHeader\":{\"labelValue\":\"957152\",\"primaryLabelValue\":\"957152\"}},{\"attributeHeader\":{\"labelValue\":\"957154\",\"primaryLabelValue\":\"957154\"}},{\"attributeHeader\":{\"labelValue\":\"957156\",\"primaryLabelValue\":\"957156\"}},{\"attributeHeader\":{\"labelValue\":\"957158\",\"primaryLabelValue\":\"957158\"}},{\"attributeHeader\":{\"labelValue\":\"957160\",\"primaryLabelValue\":\"957160\"}},{\"attributeHeader\":{\"labelValue\":\"957162\",\"primaryLabelValue\":\"957162\"}},{\"attributeHeader\":{\"labelValue\":\"957164\",\"primaryLabelValue\":\"957164\"}},{\"attributeHeader\":{\"labelValue\":\"957166\",\"primaryLabelValue\":\"957166\"}},{\"attributeHeader\":{\"labelValue\":\"957168\",\"primaryLabelValue\":\"957168\"}},{\"attributeHeader\":{\"labelValue\":\"957170\",\"primaryLabelValue\":\"957170\"}},{\"attributeHeader\":{\"labelValue\":\"957172\",\"primaryLabelValue\":\"957172\"}},{\"attributeHeader\":{\"labelValue\":\"957174\",\"primaryLabelValue\":\"957174\"}},{\"attributeHeader\":{\"labelValue\":\"957176\",\"primaryLabelValue\":\"957176\"}},{\"attributeHeader\":{\"labelValue\":\"957178\",\"primaryLabelValue\":\"957178\"}},{\"attributeHeader\":{\"labelValue\":\"957180\",\"primaryLabelValue\":\"957180\"}},{\"attributeHeader\":{\"labelValue\":\"957182\",\"primaryLabelValue\":\"957182\"}},{\"attributeHeader\":{\"labelValue\":\"957184\",\"primaryLabelValue\":\"957184\"}},{\"attributeHeader\":{\"labelValue\":\"957186\",\"primaryLabelValue\":\"957186\"}},{\"attributeHeader\":{\"labelValue\":\"957188\",\"primaryLabelValue\":\"957188\"}},{\"attributeHeader\":{\"labelValue\":\"957190\",\"primaryLabelValue\":\"957190\"}},{\"attributeHeader\":{\"labelValue\":\"957192\",\"primaryLabelValue\":\"957192\"}},{\"attributeHeader\":{\"labelValue\":\"957194\",\"primaryLabelValue\":\"957194\"}},{\"attributeHeader\":{\"labelValue\":\"957196\",\"primaryLabelValue\":\"957196\"}},{\"attributeHeader\":{\"labelValue\":\"957198\",\"primaryLabelValue\":\"957198\"}},{\"attributeHeader\":{\"labelValue\":\"957200\",\"primaryLabelValue\":\"957200\"}},{\"attributeHeader\":{\"labelValue\":\"957202\",\"primaryLabelValue\":\"957202\"}},{\"attributeHeader\":{\"labelValue\":\"957204\",\"primaryLabelValue\":\"957204\"}},{\"attributeHeader\":{\"labelValue\":\"957206\",\"primaryLabelValue\":\"957206\"}},{\"attributeHeader\":{\"labelValue\":\"957208\",\"primaryLabelValue\":\"957208\"}},{\"attributeHeader\":{\"labelValue\":\"957210\",\"primaryLabelValue\":\"957210\"}},{\"attributeHeader\":{\"labelValue\":\"957212\",\"primaryLabelValue\":\"957212\"}},{\"attributeHeader\":{\"labelValue\":\"957214\",\"primaryLabelValue\":\"957214\"}},{\"attributeHeader\":{\"labelValue\":\"957216\",\"primaryLabelValue\":\"957216\"}},{\"attributeHeader\":{\"labelValue\":\"957218\",\"primaryLabelValue\":\"957218\"}},{\"attributeHeader\":{\"labelValue\":\"957222\",\"primaryLabelValue\":\"957222\"}},{\"attributeHeader\":{\"labelValue\":\"957224\",\"primaryLabelValue\":\"957224\"}},{\"attributeHeader\":{\"labelValue\":\"957226\",\"primaryLabelValue\":\"957226\"}},{\"attributeHeader\":{\"labelValue\":\"957228\",\"primaryLabelValue\":\"957228\"}},{\"attributeHeader\":{\"labelValue\":\"957230\",\"primaryLabelValue\":\"957230\"}},{\"attributeHeader\":{\"labelValue\":\"957232\",\"primaryLabelValue\":\"957232\"}},{\"attributeHeader\":{\"labelValue\":\"957234\",\"primaryLabelValue\":\"957234\"}},{\"attributeHeader\":{\"labelValue\":\"957236\",\"primaryLabelValue\":\"957236\"}},{\"attributeHeader\":{\"labelValue\":\"957238\",\"primaryLabelValue\":\"957238\"}},{\"attributeHeader\":{\"labelValue\":\"957240\",\"primaryLabelValue\":\"957240\"}},{\"attributeHeader\":{\"labelValue\":\"957242\",\"primaryLabelValue\":\"957242\"}},{\"attributeHeader\":{\"labelValue\":\"957244\",\"primaryLabelValue\":\"957244\"}},{\"attributeHeader\":{\"labelValue\":\"957246\",\"primaryLabelValue\":\"957246\"}},{\"attributeHeader\":{\"labelValue\":\"957248\",\"primaryLabelValue\":\"957248\"}},{\"attributeHeader\":{\"labelValue\":\"957250\",\"primaryLabelValue\":\"957250\"}},{\"attributeHeader\":{\"labelValue\":\"957252\",\"primaryLabelValue\":\"957252\"}},{\"attributeHeader\":{\"labelValue\":\"957254\",\"primaryLabelValue\":\"957254\"}},{\"attributeHeader\":{\"labelValue\":\"957256\",\"primaryLabelValue\":\"957256\"}},{\"attributeHeader\":{\"labelValue\":\"957258\",\"primaryLabelValue\":\"957258\"}},{\"attributeHeader\":{\"labelValue\":\"957260\",\"primaryLabelValue\":\"957260\"}},{\"attributeHeader\":{\"labelValue\":\"957262\",\"primaryLabelValue\":\"957262\"}},{\"attributeHeader\":{\"labelValue\":\"957264\",\"primaryLabelValue\":\"957264\"}},{\"attributeHeader\":{\"labelValue\":\"957266\",\"primaryLabelValue\":\"957266\"}},{\"attributeHeader\":{\"labelValue\":\"957268\",\"primaryLabelValue\":\"957268\"}},{\"attributeHeader\":{\"labelValue\":\"957270\",\"primaryLabelValue\":\"957270\"}},{\"attributeHeader\":{\"labelValue\":\"957272\",\"primaryLabelValue\":\"957272\"}},{\"attributeHeader\":{\"labelValue\":\"957274\",\"primaryLabelValue\":\"957274\"}},{\"attributeHeader\":{\"labelValue\":\"957276\",\"primaryLabelValue\":\"957276\"}},{\"attributeHeader\":{\"labelValue\":\"957278\",\"primaryLabelValue\":\"957278\"}},{\"attributeHeader\":{\"labelValue\":\"957280\",\"primaryLabelValue\":\"957280\"}},{\"attributeHeader\":{\"labelValue\":\"957282\",\"primaryLabelValue\":\"957282\"}},{\"attributeHeader\":{\"labelValue\":\"957284\",\"primaryLabelValue\":\"957284\"}},{\"attributeHeader\":{\"labelValue\":\"957286\",\"primaryLabelValue\":\"957286\"}},{\"attributeHeader\":{\"labelValue\":\"957288\",\"primaryLabelValue\":\"957288\"}},{\"attributeHeader\":{\"labelValue\":\"957290\",\"primaryLabelValue\":\"957290\"}},{\"attributeHeader\":{\"labelValue\":\"957292\",\"primaryLabelValue\":\"957292\"}},{\"attributeHeader\":{\"labelValue\":\"957294\",\"primaryLabelValue\":\"957294\"}},{\"attributeHeader\":{\"labelValue\":\"957296\",\"primaryLabelValue\":\"957296\"}},{\"attributeHeader\":{\"labelValue\":\"957298\",\"primaryLabelValue\":\"957298\"}},{\"attributeHeader\":{\"labelValue\":\"957300\",\"primaryLabelValue\":\"957300\"}},{\"attributeHeader\":{\"labelValue\":\"957302\",\"primaryLabelValue\":\"957302\"}},{\"attributeHeader\":{\"labelValue\":\"957304\",\"primaryLabelValue\":\"957304\"}},{\"attributeHeader\":{\"labelValue\":\"957306\",\"primaryLabelValue\":\"957306\"}},{\"attributeHeader\":{\"labelValue\":\"957308\",\"primaryLabelValue\":\"957308\"}},{\"attributeHeader\":{\"labelValue\":\"957310\",\"primaryLabelValue\":\"957310\"}},{\"attributeHeader\":{\"labelValue\":\"957312\",\"primaryLabelValue\":\"957312\"}},{\"attributeHeader\":{\"labelValue\":\"957314\",\"primaryLabelValue\":\"957314\"}},{\"attributeHeader\":{\"labelValue\":\"957316\",\"primaryLabelValue\":\"957316\"}},{\"attributeHeader\":{\"labelValue\":\"957318\",\"primaryLabelValue\":\"957318\"}},{\"attributeHeader\":{\"labelValue\":\"957320\",\"primaryLabelValue\":\"957320\"}},{\"attributeHeader\":{\"labelValue\":\"957322\",\"primaryLabelValue\":\"957322\"}},{\"attributeHeader\":{\"labelValue\":\"957324\",\"primaryLabelValue\":\"957324\"}},{\"attributeHeader\":{\"labelValue\":\"957326\",\"primaryLabelValue\":\"957326\"}},{\"attributeHeader\":{\"labelValue\":\"957328\",\"primaryLabelValue\":\"957328\"}},{\"attributeHeader\":{\"labelValue\":\"957330\",\"primaryLabelValue\":\"957330\"}},{\"attributeHeader\":{\"labelValue\":\"957332\",\"primaryLabelValue\":\"957332\"}},{\"attributeHeader\":{\"labelValue\":\"957334\",\"primaryLabelValue\":\"957334\"}},{\"attributeHeader\":{\"labelValue\":\"957336\",\"primaryLabelValue\":\"957336\"}},{\"attributeHeader\":{\"labelValue\":\"957338\",\"primaryLabelValue\":\"957338\"}},{\"attributeHeader\":{\"labelValue\":\"957340\",\"primaryLabelValue\":\"957340\"}},{\"attributeHeader\":{\"labelValue\":\"957342\",\"primaryLabelValue\":\"957342\"}},{\"attributeHeader\":{\"labelValue\":\"957344\",\"primaryLabelValue\":\"957344\"}},{\"attributeHeader\":{\"labelValue\":\"957346\",\"primaryLabelValue\":\"957346\"}},{\"attributeHeader\":{\"labelValue\":\"957348\",\"primaryLabelValue\":\"957348\"}},{\"attributeHeader\":{\"labelValue\":\"957350\",\"primaryLabelValue\":\"957350\"}},{\"attributeHeader\":{\"labelValue\":\"957352\",\"primaryLabelValue\":\"957352\"}},{\"attributeHeader\":{\"labelValue\":\"957354\",\"primaryLabelValue\":\"957354\"}},{\"attributeHeader\":{\"labelValue\":\"957356\",\"primaryLabelValue\":\"957356\"}},{\"attributeHeader\":{\"labelValue\":\"957358\",\"primaryLabelValue\":\"957358\"}},{\"attributeHeader\":{\"labelValue\":\"957360\",\"primaryLabelValue\":\"957360\"}},{\"attributeHeader\":{\"labelValue\":\"957364\",\"primaryLabelValue\":\"957364\"}},{\"attributeHeader\":{\"labelValue\":\"957366\",\"primaryLabelValue\":\"957366\"}},{\"attributeHeader\":{\"labelValue\":\"957368\",\"primaryLabelValue\":\"957368\"}},{\"attributeHeader\":{\"labelValue\":\"957370\",\"primaryLabelValue\":\"957370\"}},{\"attributeHeader\":{\"labelValue\":\"957372\",\"primaryLabelValue\":\"957372\"}},{\"attributeHeader\":{\"labelValue\":\"957374\",\"primaryLabelValue\":\"957374\"}},{\"attributeHeader\":{\"labelValue\":\"957378\",\"primaryLabelValue\":\"957378\"}},{\"attributeHeader\":{\"labelValue\":\"957380\",\"primaryLabelValue\":\"957380\"}},{\"attributeHeader\":{\"labelValue\":\"957382\",\"primaryLabelValue\":\"957382\"}},{\"attributeHeader\":{\"labelValue\":\"957384\",\"primaryLabelValue\":\"957384\"}},{\"attributeHeader\":{\"labelValue\":\"957386\",\"primaryLabelValue\":\"957386\"}},{\"attributeHeader\":{\"labelValue\":\"957388\",\"primaryLabelValue\":\"957388\"}},{\"attributeHeader\":{\"labelValue\":\"957390\",\"primaryLabelValue\":\"957390\"}},{\"attributeHeader\":{\"labelValue\":\"957392\",\"primaryLabelValue\":\"957392\"}},{\"attributeHeader\":{\"labelValue\":\"957394\",\"primaryLabelValue\":\"957394\"}},{\"attributeHeader\":{\"labelValue\":\"957396\",\"primaryLabelValue\":\"957396\"}},{\"attributeHeader\":{\"labelValue\":\"957398\",\"primaryLabelValue\":\"957398\"}},{\"attributeHeader\":{\"labelValue\":\"957400\",\"primaryLabelValue\":\"957400\"}},{\"attributeHeader\":{\"labelValue\":\"957402\",\"primaryLabelValue\":\"957402\"}},{\"attributeHeader\":{\"labelValue\":\"957404\",\"primaryLabelValue\":\"957404\"}},{\"attributeHeader\":{\"labelValue\":\"957406\",\"primaryLabelValue\":\"957406\"}},{\"attributeHeader\":{\"labelValue\":\"957408\",\"primaryLabelValue\":\"957408\"}},{\"attributeHeader\":{\"labelValue\":\"957410\",\"primaryLabelValue\":\"957410\"}},{\"attributeHeader\":{\"labelValue\":\"957412\",\"primaryLabelValue\":\"957412\"}},{\"attributeHeader\":{\"labelValue\":\"957414\",\"primaryLabelValue\":\"957414\"}},{\"attributeHeader\":{\"labelValue\":\"957416\",\"primaryLabelValue\":\"957416\"}},{\"attributeHeader\":{\"labelValue\":\"957418\",\"primaryLabelValue\":\"957418\"}},{\"attributeHeader\":{\"labelValue\":\"957420\",\"primaryLabelValue\":\"957420\"}},{\"attributeHeader\":{\"labelValue\":\"957422\",\"primaryLabelValue\":\"957422\"}},{\"attributeHeader\":{\"labelValue\":\"957424\",\"primaryLabelValue\":\"957424\"}},{\"attributeHeader\":{\"labelValue\":\"957426\",\"primaryLabelValue\":\"957426\"}},{\"attributeHeader\":{\"labelValue\":\"957428\",\"primaryLabelValue\":\"957428\"}},{\"attributeHeader\":{\"labelValue\":\"957430\",\"primaryLabelValue\":\"957430\"}},{\"attributeHeader\":{\"labelValue\":\"957432\",\"primaryLabelValue\":\"957432\"}},{\"attributeHeader\":{\"labelValue\":\"957434\",\"primaryLabelValue\":\"957434\"}},{\"attributeHeader\":{\"labelValue\":\"957436\",\"primaryLabelValue\":\"957436\"}},{\"attributeHeader\":{\"labelValue\":\"957438\",\"primaryLabelValue\":\"957438\"}},{\"attributeHeader\":{\"labelValue\":\"957440\",\"primaryLabelValue\":\"957440\"}},{\"attributeHeader\":{\"labelValue\":\"957442\",\"primaryLabelValue\":\"957442\"}},{\"attributeHeader\":{\"labelValue\":\"957446\",\"primaryLabelValue\":\"957446\"}},{\"attributeHeader\":{\"labelValue\":\"957448\",\"primaryLabelValue\":\"957448\"}},{\"attributeHeader\":{\"labelValue\":\"957450\",\"primaryLabelValue\":\"957450\"}},{\"attributeHeader\":{\"labelValue\":\"957452\",\"primaryLabelValue\":\"957452\"}},{\"attributeHeader\":{\"labelValue\":\"957454\",\"primaryLabelValue\":\"957454\"}},{\"attributeHeader\":{\"labelValue\":\"957456\",\"primaryLabelValue\":\"957456\"}},{\"attributeHeader\":{\"labelValue\":\"957458\",\"primaryLabelValue\":\"957458\"}},{\"attributeHeader\":{\"labelValue\":\"957460\",\"primaryLabelValue\":\"957460\"}},{\"attributeHeader\":{\"labelValue\":\"957462\",\"primaryLabelValue\":\"957462\"}},{\"attributeHeader\":{\"labelValue\":\"957464\",\"primaryLabelValue\":\"957464\"}},{\"attributeHeader\":{\"labelValue\":\"957466\",\"primaryLabelValue\":\"957466\"}},{\"attributeHeader\":{\"labelValue\":\"957468\",\"primaryLabelValue\":\"957468\"}},{\"attributeHeader\":{\"labelValue\":\"957470\",\"primaryLabelValue\":\"957470\"}},{\"attributeHeader\":{\"labelValue\":\"957472\",\"primaryLabelValue\":\"957472\"}},{\"attributeHeader\":{\"labelValue\":\"957474\",\"primaryLabelValue\":\"957474\"}},{\"attributeHeader\":{\"labelValue\":\"957476\",\"primaryLabelValue\":\"957476\"}},{\"attributeHeader\":{\"labelValue\":\"957478\",\"primaryLabelValue\":\"957478\"}},{\"attributeHeader\":{\"labelValue\":\"957480\",\"primaryLabelValue\":\"957480\"}},{\"attributeHeader\":{\"labelValue\":\"957482\",\"primaryLabelValue\":\"957482\"}},{\"attributeHeader\":{\"labelValue\":\"957484\",\"primaryLabelValue\":\"957484\"}},{\"attributeHeader\":{\"labelValue\":\"957486\",\"primaryLabelValue\":\"957486\"}},{\"attributeHeader\":{\"labelValue\":\"957488\",\"primaryLabelValue\":\"957488\"}},{\"attributeHeader\":{\"labelValue\":\"957490\",\"primaryLabelValue\":\"957490\"}},{\"attributeHeader\":{\"labelValue\":\"957492\",\"primaryLabelValue\":\"957492\"}},{\"attributeHeader\":{\"labelValue\":\"957494\",\"primaryLabelValue\":\"957494\"}},{\"attributeHeader\":{\"labelValue\":\"957496\",\"primaryLabelValue\":\"957496\"}},{\"attributeHeader\":{\"labelValue\":\"957498\",\"primaryLabelValue\":\"957498\"}},{\"attributeHeader\":{\"labelValue\":\"957500\",\"primaryLabelValue\":\"957500\"}},{\"attributeHeader\":{\"labelValue\":\"957502\",\"primaryLabelValue\":\"957502\"}},{\"attributeHeader\":{\"labelValue\":\"957504\",\"primaryLabelValue\":\"957504\"}},{\"attributeHeader\":{\"labelValue\":\"957506\",\"primaryLabelValue\":\"957506\"}},{\"attributeHeader\":{\"labelValue\":\"957508\",\"primaryLabelValue\":\"957508\"}},{\"attributeHeader\":{\"labelValue\":\"957510\",\"primaryLabelValue\":\"957510\"}},{\"attributeHeader\":{\"labelValue\":\"957512\",\"primaryLabelValue\":\"957512\"}},{\"attributeHeader\":{\"labelValue\":\"957514\",\"primaryLabelValue\":\"957514\"}},{\"attributeHeader\":{\"labelValue\":\"957516\",\"primaryLabelValue\":\"957516\"}},{\"attributeHeader\":{\"labelValue\":\"957518\",\"primaryLabelValue\":\"957518\"}},{\"attributeHeader\":{\"labelValue\":\"957520\",\"primaryLabelValue\":\"957520\"}},{\"attributeHeader\":{\"labelValue\":\"957522\",\"primaryLabelValue\":\"957522\"}},{\"attributeHeader\":{\"labelValue\":\"957524\",\"primaryLabelValue\":\"957524\"}},{\"attributeHeader\":{\"labelValue\":\"957526\",\"primaryLabelValue\":\"957526\"}},{\"attributeHeader\":{\"labelValue\":\"957528\",\"primaryLabelValue\":\"957528\"}},{\"attributeHeader\":{\"labelValue\":\"957530\",\"primaryLabelValue\":\"957530\"}},{\"attributeHeader\":{\"labelValue\":\"957532\",\"primaryLabelValue\":\"957532\"}},{\"attributeHeader\":{\"labelValue\":\"957534\",\"primaryLabelValue\":\"957534\"}},{\"attributeHeader\":{\"labelValue\":\"957536\",\"primaryLabelValue\":\"957536\"}},{\"attributeHeader\":{\"labelValue\":\"957538\",\"primaryLabelValue\":\"957538\"}},{\"attributeHeader\":{\"labelValue\":\"957540\",\"primaryLabelValue\":\"957540\"}},{\"attributeHeader\":{\"labelValue\":\"957542\",\"primaryLabelValue\":\"957542\"}},{\"attributeHeader\":{\"labelValue\":\"957544\",\"primaryLabelValue\":\"957544\"}},{\"attributeHeader\":{\"labelValue\":\"957546\",\"primaryLabelValue\":\"957546\"}},{\"attributeHeader\":{\"labelValue\":\"957548\",\"primaryLabelValue\":\"957548\"}},{\"attributeHeader\":{\"labelValue\":\"957550\",\"primaryLabelValue\":\"957550\"}},{\"attributeHeader\":{\"labelValue\":\"957552\",\"primaryLabelValue\":\"957552\"}},{\"attributeHeader\":{\"labelValue\":\"957554\",\"primaryLabelValue\":\"957554\"}},{\"attributeHeader\":{\"labelValue\":\"957556\",\"primaryLabelValue\":\"957556\"}},{\"attributeHeader\":{\"labelValue\":\"957558\",\"primaryLabelValue\":\"957558\"}},{\"attributeHeader\":{\"labelValue\":\"957560\",\"primaryLabelValue\":\"957560\"}},{\"attributeHeader\":{\"labelValue\":\"957562\",\"primaryLabelValue\":\"957562\"}},{\"attributeHeader\":{\"labelValue\":\"957564\",\"primaryLabelValue\":\"957564\"}},{\"attributeHeader\":{\"labelValue\":\"957566\",\"primaryLabelValue\":\"957566\"}},{\"attributeHeader\":{\"labelValue\":\"957568\",\"primaryLabelValue\":\"957568\"}},{\"attributeHeader\":{\"labelValue\":\"957570\",\"primaryLabelValue\":\"957570\"}},{\"attributeHeader\":{\"labelValue\":\"957572\",\"primaryLabelValue\":\"957572\"}},{\"attributeHeader\":{\"labelValue\":\"957574\",\"primaryLabelValue\":\"957574\"}},{\"attributeHeader\":{\"labelValue\":\"957576\",\"primaryLabelValue\":\"957576\"}},{\"attributeHeader\":{\"labelValue\":\"957578\",\"primaryLabelValue\":\"957578\"}},{\"attributeHeader\":{\"labelValue\":\"957580\",\"primaryLabelValue\":\"957580\"}},{\"attributeHeader\":{\"labelValue\":\"957582\",\"primaryLabelValue\":\"957582\"}},{\"attributeHeader\":{\"labelValue\":\"957584\",\"primaryLabelValue\":\"957584\"}},{\"attributeHeader\":{\"labelValue\":\"957586\",\"primaryLabelValue\":\"957586\"}},{\"attributeHeader\":{\"labelValue\":\"957588\",\"primaryLabelValue\":\"957588\"}},{\"attributeHeader\":{\"labelValue\":\"957590\",\"primaryLabelValue\":\"957590\"}},{\"attributeHeader\":{\"labelValue\":\"957592\",\"primaryLabelValue\":\"957592\"}},{\"attributeHeader\":{\"labelValue\":\"957594\",\"primaryLabelValue\":\"957594\"}},{\"attributeHeader\":{\"labelValue\":\"957596\",\"primaryLabelValue\":\"957596\"}},{\"attributeHeader\":{\"labelValue\":\"957598\",\"primaryLabelValue\":\"957598\"}},{\"attributeHeader\":{\"labelValue\":\"957600\",\"primaryLabelValue\":\"957600\"}},{\"attributeHeader\":{\"labelValue\":\"957602\",\"primaryLabelValue\":\"957602\"}},{\"attributeHeader\":{\"labelValue\":\"957604\",\"primaryLabelValue\":\"957604\"}},{\"attributeHeader\":{\"labelValue\":\"957606\",\"primaryLabelValue\":\"957606\"}},{\"attributeHeader\":{\"labelValue\":\"957608\",\"primaryLabelValue\":\"957608\"}},{\"attributeHeader\":{\"labelValue\":\"957610\",\"primaryLabelValue\":\"957610\"}},{\"attributeHeader\":{\"labelValue\":\"957612\",\"primaryLabelValue\":\"957612\"}},{\"attributeHeader\":{\"labelValue\":\"957614\",\"primaryLabelValue\":\"957614\"}},{\"attributeHeader\":{\"labelValue\":\"957616\",\"primaryLabelValue\":\"957616\"}},{\"attributeHeader\":{\"labelValue\":\"957618\",\"primaryLabelValue\":\"957618\"}},{\"attributeHeader\":{\"labelValue\":\"957620\",\"primaryLabelValue\":\"957620\"}},{\"attributeHeader\":{\"labelValue\":\"957622\",\"primaryLabelValue\":\"957622\"}},{\"attributeHeader\":{\"labelValue\":\"957624\",\"primaryLabelValue\":\"957624\"}},{\"attributeHeader\":{\"labelValue\":\"957626\",\"primaryLabelValue\":\"957626\"}},{\"attributeHeader\":{\"labelValue\":\"957632\",\"primaryLabelValue\":\"957632\"}},{\"attributeHeader\":{\"labelValue\":\"957634\",\"primaryLabelValue\":\"957634\"}},{\"attributeHeader\":{\"labelValue\":\"957636\",\"primaryLabelValue\":\"957636\"}},{\"attributeHeader\":{\"labelValue\":\"957638\",\"primaryLabelValue\":\"957638\"}},{\"attributeHeader\":{\"labelValue\":\"957640\",\"primaryLabelValue\":\"957640\"}},{\"attributeHeader\":{\"labelValue\":\"957642\",\"primaryLabelValue\":\"957642\"}},{\"attributeHeader\":{\"labelValue\":\"957644\",\"primaryLabelValue\":\"957644\"}},{\"attributeHeader\":{\"labelValue\":\"957646\",\"primaryLabelValue\":\"957646\"}},{\"attributeHeader\":{\"labelValue\":\"957648\",\"primaryLabelValue\":\"957648\"}},{\"attributeHeader\":{\"labelValue\":\"957650\",\"primaryLabelValue\":\"957650\"}},{\"attributeHeader\":{\"labelValue\":\"957652\",\"primaryLabelValue\":\"957652\"}},{\"attributeHeader\":{\"labelValue\":\"957654\",\"primaryLabelValue\":\"957654\"}},{\"attributeHeader\":{\"labelValue\":\"957656\",\"primaryLabelValue\":\"957656\"}},{\"attributeHeader\":{\"labelValue\":\"957658\",\"primaryLabelValue\":\"957658\"}},{\"attributeHeader\":{\"labelValue\":\"957660\",\"primaryLabelValue\":\"957660\"}},{\"attributeHeader\":{\"labelValue\":\"957664\",\"primaryLabelValue\":\"957664\"}},{\"attributeHeader\":{\"labelValue\":\"957666\",\"primaryLabelValue\":\"957666\"}},{\"attributeHeader\":{\"labelValue\":\"957668\",\"primaryLabelValue\":\"957668\"}},{\"attributeHeader\":{\"labelValue\":\"957674\",\"primaryLabelValue\":\"957674\"}},{\"attributeHeader\":{\"labelValue\":\"957676\",\"primaryLabelValue\":\"957676\"}},{\"attributeHeader\":{\"labelValue\":\"957678\",\"primaryLabelValue\":\"957678\"}},{\"attributeHeader\":{\"labelValue\":\"957680\",\"primaryLabelValue\":\"957680\"}},{\"attributeHeader\":{\"labelValue\":\"957682\",\"primaryLabelValue\":\"957682\"}},{\"attributeHeader\":{\"labelValue\":\"957684\",\"primaryLabelValue\":\"957684\"}},{\"attributeHeader\":{\"labelValue\":\"957688\",\"primaryLabelValue\":\"957688\"}},{\"attributeHeader\":{\"labelValue\":\"957690\",\"primaryLabelValue\":\"957690\"}},{\"attributeHeader\":{\"labelValue\":\"957692\",\"primaryLabelValue\":\"957692\"}},{\"attributeHeader\":{\"labelValue\":\"957694\",\"primaryLabelValue\":\"957694\"}},{\"attributeHeader\":{\"labelValue\":\"957696\",\"primaryLabelValue\":\"957696\"}},{\"attributeHeader\":{\"labelValue\":\"957698\",\"primaryLabelValue\":\"957698\"}},{\"attributeHeader\":{\"labelValue\":\"957702\",\"primaryLabelValue\":\"957702\"}},{\"attributeHeader\":{\"labelValue\":\"957704\",\"primaryLabelValue\":\"957704\"}},{\"attributeHeader\":{\"labelValue\":\"957708\",\"primaryLabelValue\":\"957708\"}},{\"attributeHeader\":{\"labelValue\":\"957710\",\"primaryLabelValue\":\"957710\"}},{\"attributeHeader\":{\"labelValue\":\"957712\",\"primaryLabelValue\":\"957712\"}},{\"attributeHeader\":{\"labelValue\":\"957714\",\"primaryLabelValue\":\"957714\"}},{\"attributeHeader\":{\"labelValue\":\"957716\",\"primaryLabelValue\":\"957716\"}},{\"attributeHeader\":{\"labelValue\":\"957718\",\"primaryLabelValue\":\"957718\"}},{\"attributeHeader\":{\"labelValue\":\"957720\",\"primaryLabelValue\":\"957720\"}},{\"attributeHeader\":{\"labelValue\":\"957722\",\"primaryLabelValue\":\"957722\"}},{\"attributeHeader\":{\"labelValue\":\"957724\",\"primaryLabelValue\":\"957724\"}},{\"attributeHeader\":{\"labelValue\":\"957726\",\"primaryLabelValue\":\"957726\"}},{\"attributeHeader\":{\"labelValue\":\"957728\",\"primaryLabelValue\":\"957728\"}},{\"attributeHeader\":{\"labelValue\":\"957730\",\"primaryLabelValue\":\"957730\"}},{\"attributeHeader\":{\"labelValue\":\"957732\",\"primaryLabelValue\":\"957732\"}},{\"attributeHeader\":{\"labelValue\":\"957734\",\"primaryLabelValue\":\"957734\"}},{\"attributeHeader\":{\"labelValue\":\"957736\",\"primaryLabelValue\":\"957736\"}},{\"attributeHeader\":{\"labelValue\":\"957738\",\"primaryLabelValue\":\"957738\"}},{\"attributeHeader\":{\"labelValue\":\"957740\",\"primaryLabelValue\":\"957740\"}},{\"attributeHeader\":{\"labelValue\":\"957742\",\"primaryLabelValue\":\"957742\"}},{\"attributeHeader\":{\"labelValue\":\"957744\",\"primaryLabelValue\":\"957744\"}},{\"attributeHeader\":{\"labelValue\":\"957746\",\"primaryLabelValue\":\"957746\"}},{\"attributeHeader\":{\"labelValue\":\"957748\",\"primaryLabelValue\":\"957748\"}},{\"attributeHeader\":{\"labelValue\":\"957750\",\"primaryLabelValue\":\"957750\"}},{\"attributeHeader\":{\"labelValue\":\"957752\",\"primaryLabelValue\":\"957752\"}},{\"attributeHeader\":{\"labelValue\":\"957754\",\"primaryLabelValue\":\"957754\"}},{\"attributeHeader\":{\"labelValue\":\"957756\",\"primaryLabelValue\":\"957756\"}},{\"attributeHeader\":{\"labelValue\":\"957758\",\"primaryLabelValue\":\"957758\"}},{\"attributeHeader\":{\"labelValue\":\"957760\",\"primaryLabelValue\":\"957760\"}},{\"attributeHeader\":{\"labelValue\":\"957762\",\"primaryLabelValue\":\"957762\"}},{\"attributeHeader\":{\"labelValue\":\"957764\",\"primaryLabelValue\":\"957764\"}},{\"attributeHeader\":{\"labelValue\":\"957766\",\"primaryLabelValue\":\"957766\"}},{\"attributeHeader\":{\"labelValue\":\"957772\",\"primaryLabelValue\":\"957772\"}},{\"attributeHeader\":{\"labelValue\":\"957774\",\"primaryLabelValue\":\"957774\"}},{\"attributeHeader\":{\"labelValue\":\"957776\",\"primaryLabelValue\":\"957776\"}},{\"attributeHeader\":{\"labelValue\":\"957778\",\"primaryLabelValue\":\"957778\"}},{\"attributeHeader\":{\"labelValue\":\"957780\",\"primaryLabelValue\":\"957780\"}},{\"attributeHeader\":{\"labelValue\":\"957782\",\"primaryLabelValue\":\"957782\"}},{\"attributeHeader\":{\"labelValue\":\"957784\",\"primaryLabelValue\":\"957784\"}},{\"attributeHeader\":{\"labelValue\":\"957788\",\"primaryLabelValue\":\"957788\"}},{\"attributeHeader\":{\"labelValue\":\"957790\",\"primaryLabelValue\":\"957790\"}},{\"attributeHeader\":{\"labelValue\":\"957792\",\"primaryLabelValue\":\"957792\"}},{\"attributeHeader\":{\"labelValue\":\"957794\",\"primaryLabelValue\":\"957794\"}},{\"attributeHeader\":{\"labelValue\":\"957796\",\"primaryLabelValue\":\"957796\"}},{\"attributeHeader\":{\"labelValue\":\"957798\",\"primaryLabelValue\":\"957798\"}},{\"attributeHeader\":{\"labelValue\":\"957800\",\"primaryLabelValue\":\"957800\"}},{\"attributeHeader\":{\"labelValue\":\"957802\",\"primaryLabelValue\":\"957802\"}},{\"attributeHeader\":{\"labelValue\":\"957804\",\"primaryLabelValue\":\"957804\"}},{\"attributeHeader\":{\"labelValue\":\"957806\",\"primaryLabelValue\":\"957806\"}},{\"attributeHeader\":{\"labelValue\":\"957808\",\"primaryLabelValue\":\"957808\"}},{\"attributeHeader\":{\"labelValue\":\"957812\",\"primaryLabelValue\":\"957812\"}},{\"attributeHeader\":{\"labelValue\":\"957814\",\"primaryLabelValue\":\"957814\"}},{\"attributeHeader\":{\"labelValue\":\"957816\",\"primaryLabelValue\":\"957816\"}},{\"attributeHeader\":{\"labelValue\":\"957818\",\"primaryLabelValue\":\"957818\"}},{\"attributeHeader\":{\"labelValue\":\"957820\",\"primaryLabelValue\":\"957820\"}},{\"attributeHeader\":{\"labelValue\":\"957822\",\"primaryLabelValue\":\"957822\"}},{\"attributeHeader\":{\"labelValue\":\"957824\",\"primaryLabelValue\":\"957824\"}},{\"attributeHeader\":{\"labelValue\":\"957826\",\"primaryLabelValue\":\"957826\"}},{\"attributeHeader\":{\"labelValue\":\"957828\",\"primaryLabelValue\":\"957828\"}},{\"attributeHeader\":{\"labelValue\":\"957830\",\"primaryLabelValue\":\"957830\"}},{\"attributeHeader\":{\"labelValue\":\"957832\",\"primaryLabelValue\":\"957832\"}},{\"attributeHeader\":{\"labelValue\":\"957834\",\"primaryLabelValue\":\"957834\"}},{\"attributeHeader\":{\"labelValue\":\"957836\",\"primaryLabelValue\":\"957836\"}},{\"attributeHeader\":{\"labelValue\":\"957838\",\"primaryLabelValue\":\"957838\"}},{\"attributeHeader\":{\"labelValue\":\"957842\",\"primaryLabelValue\":\"957842\"}},{\"attributeHeader\":{\"labelValue\":\"957844\",\"primaryLabelValue\":\"957844\"}},{\"attributeHeader\":{\"labelValue\":\"957846\",\"primaryLabelValue\":\"957846\"}},{\"attributeHeader\":{\"labelValue\":\"957848\",\"primaryLabelValue\":\"957848\"}},{\"attributeHeader\":{\"labelValue\":\"957850\",\"primaryLabelValue\":\"957850\"}},{\"attributeHeader\":{\"labelValue\":\"957852\",\"primaryLabelValue\":\"957852\"}},{\"attributeHeader\":{\"labelValue\":\"957854\",\"primaryLabelValue\":\"957854\"}},{\"attributeHeader\":{\"labelValue\":\"957856\",\"primaryLabelValue\":\"957856\"}},{\"attributeHeader\":{\"labelValue\":\"957858\",\"primaryLabelValue\":\"957858\"}},{\"attributeHeader\":{\"labelValue\":\"957860\",\"primaryLabelValue\":\"957860\"}},{\"attributeHeader\":{\"labelValue\":\"957862\",\"primaryLabelValue\":\"957862\"}},{\"attributeHeader\":{\"labelValue\":\"957864\",\"primaryLabelValue\":\"957864\"}},{\"attributeHeader\":{\"labelValue\":\"957866\",\"primaryLabelValue\":\"957866\"}},{\"attributeHeader\":{\"labelValue\":\"957870\",\"primaryLabelValue\":\"957870\"}},{\"attributeHeader\":{\"labelValue\":\"957874\",\"primaryLabelValue\":\"957874\"}},{\"attributeHeader\":{\"labelValue\":\"957876\",\"primaryLabelValue\":\"957876\"}},{\"attributeHeader\":{\"labelValue\":\"957878\",\"primaryLabelValue\":\"957878\"}},{\"attributeHeader\":{\"labelValue\":\"957880\",\"primaryLabelValue\":\"957880\"}},{\"attributeHeader\":{\"labelValue\":\"957882\",\"primaryLabelValue\":\"957882\"}},{\"attributeHeader\":{\"labelValue\":\"957884\",\"primaryLabelValue\":\"957884\"}},{\"attributeHeader\":{\"labelValue\":\"957886\",\"primaryLabelValue\":\"957886\"}},{\"attributeHeader\":{\"labelValue\":\"957888\",\"primaryLabelValue\":\"957888\"}},{\"attributeHeader\":{\"labelValue\":\"957890\",\"primaryLabelValue\":\"957890\"}},{\"attributeHeader\":{\"labelValue\":\"957892\",\"primaryLabelValue\":\"957892\"}},{\"attributeHeader\":{\"labelValue\":\"957894\",\"primaryLabelValue\":\"957894\"}},{\"attributeHeader\":{\"labelValue\":\"957896\",\"primaryLabelValue\":\"957896\"}},{\"attributeHeader\":{\"labelValue\":\"957898\",\"primaryLabelValue\":\"957898\"}},{\"attributeHeader\":{\"labelValue\":\"957900\",\"primaryLabelValue\":\"957900\"}},{\"attributeHeader\":{\"labelValue\":\"957904\",\"primaryLabelValue\":\"957904\"}},{\"attributeHeader\":{\"labelValue\":\"957906\",\"primaryLabelValue\":\"957906\"}},{\"attributeHeader\":{\"labelValue\":\"957908\",\"primaryLabelValue\":\"957908\"}},{\"attributeHeader\":{\"labelValue\":\"957910\",\"primaryLabelValue\":\"957910\"}},{\"attributeHeader\":{\"labelValue\":\"957912\",\"primaryLabelValue\":\"957912\"}},{\"attributeHeader\":{\"labelValue\":\"957914\",\"primaryLabelValue\":\"957914\"}},{\"attributeHeader\":{\"labelValue\":\"957916\",\"primaryLabelValue\":\"957916\"}},{\"attributeHeader\":{\"labelValue\":\"957918\",\"primaryLabelValue\":\"957918\"}},{\"attributeHeader\":{\"labelValue\":\"957920\",\"primaryLabelValue\":\"957920\"}},{\"attributeHeader\":{\"labelValue\":\"957922\",\"primaryLabelValue\":\"957922\"}},{\"attributeHeader\":{\"labelValue\":\"957924\",\"primaryLabelValue\":\"957924\"}},{\"attributeHeader\":{\"labelValue\":\"957926\",\"primaryLabelValue\":\"957926\"}},{\"attributeHeader\":{\"labelValue\":\"957928\",\"primaryLabelValue\":\"957928\"}},{\"attributeHeader\":{\"labelValue\":\"957930\",\"primaryLabelValue\":\"957930\"}},{\"attributeHeader\":{\"labelValue\":\"957934\",\"primaryLabelValue\":\"957934\"}},{\"attributeHeader\":{\"labelValue\":\"957936\",\"primaryLabelValue\":\"957936\"}},{\"attributeHeader\":{\"labelValue\":\"957938\",\"primaryLabelValue\":\"957938\"}},{\"attributeHeader\":{\"labelValue\":\"957940\",\"primaryLabelValue\":\"957940\"}},{\"attributeHeader\":{\"labelValue\":\"957942\",\"primaryLabelValue\":\"957942\"}},{\"attributeHeader\":{\"labelValue\":\"957944\",\"primaryLabelValue\":\"957944\"}},{\"attributeHeader\":{\"labelValue\":\"957946\",\"primaryLabelValue\":\"957946\"}},{\"attributeHeader\":{\"labelValue\":\"957948\",\"primaryLabelValue\":\"957948\"}},{\"attributeHeader\":{\"labelValue\":\"957950\",\"primaryLabelValue\":\"957950\"}},{\"attributeHeader\":{\"labelValue\":\"957952\",\"primaryLabelValue\":\"957952\"}},{\"attributeHeader\":{\"labelValue\":\"957954\",\"primaryLabelValue\":\"957954\"}},{\"attributeHeader\":{\"labelValue\":\"957958\",\"primaryLabelValue\":\"957958\"}},{\"attributeHeader\":{\"labelValue\":\"957960\",\"primaryLabelValue\":\"957960\"}},{\"attributeHeader\":{\"labelValue\":\"957962\",\"primaryLabelValue\":\"957962\"}},{\"attributeHeader\":{\"labelValue\":\"957964\",\"primaryLabelValue\":\"957964\"}},{\"attributeHeader\":{\"labelValue\":\"957966\",\"primaryLabelValue\":\"957966\"}},{\"attributeHeader\":{\"labelValue\":\"957970\",\"primaryLabelValue\":\"957970\"}},{\"attributeHeader\":{\"labelValue\":\"957972\",\"primaryLabelValue\":\"957972\"}},{\"attributeHeader\":{\"labelValue\":\"957974\",\"primaryLabelValue\":\"957974\"}},{\"attributeHeader\":{\"labelValue\":\"957978\",\"primaryLabelValue\":\"957978\"}},{\"attributeHeader\":{\"labelValue\":\"957980\",\"primaryLabelValue\":\"957980\"}},{\"attributeHeader\":{\"labelValue\":\"957982\",\"primaryLabelValue\":\"957982\"}},{\"attributeHeader\":{\"labelValue\":\"957984\",\"primaryLabelValue\":\"957984\"}},{\"attributeHeader\":{\"labelValue\":\"957986\",\"primaryLabelValue\":\"957986\"}},{\"attributeHeader\":{\"labelValue\":\"957988\",\"primaryLabelValue\":\"957988\"}},{\"attributeHeader\":{\"labelValue\":\"957992\",\"primaryLabelValue\":\"957992\"}},{\"attributeHeader\":{\"labelValue\":\"957996\",\"primaryLabelValue\":\"957996\"}},{\"attributeHeader\":{\"labelValue\":\"957998\",\"primaryLabelValue\":\"957998\"}},{\"attributeHeader\":{\"labelValue\":\"958000\",\"primaryLabelValue\":\"958000\"}},{\"attributeHeader\":{\"labelValue\":\"958002\",\"primaryLabelValue\":\"958002\"}},{\"attributeHeader\":{\"labelValue\":\"958004\",\"primaryLabelValue\":\"958004\"}},{\"attributeHeader\":{\"labelValue\":\"958006\",\"primaryLabelValue\":\"958006\"}},{\"attributeHeader\":{\"labelValue\":\"958008\",\"primaryLabelValue\":\"958008\"}},{\"attributeHeader\":{\"labelValue\":\"958010\",\"primaryLabelValue\":\"958010\"}},{\"attributeHeader\":{\"labelValue\":\"958012\",\"primaryLabelValue\":\"958012\"}},{\"attributeHeader\":{\"labelValue\":\"958014\",\"primaryLabelValue\":\"958014\"}},{\"attributeHeader\":{\"labelValue\":\"958016\",\"primaryLabelValue\":\"958016\"}},{\"attributeHeader\":{\"labelValue\":\"958018\",\"primaryLabelValue\":\"958018\"}},{\"attributeHeader\":{\"labelValue\":\"958022\",\"primaryLabelValue\":\"958022\"}},{\"attributeHeader\":{\"labelValue\":\"958024\",\"primaryLabelValue\":\"958024\"}},{\"attributeHeader\":{\"labelValue\":\"958026\",\"primaryLabelValue\":\"958026\"}},{\"attributeHeader\":{\"labelValue\":\"958028\",\"primaryLabelValue\":\"958028\"}},{\"attributeHeader\":{\"labelValue\":\"958030\",\"primaryLabelValue\":\"958030\"}},{\"attributeHeader\":{\"labelValue\":\"958032\",\"primaryLabelValue\":\"958032\"}},{\"attributeHeader\":{\"labelValue\":\"958034\",\"primaryLabelValue\":\"958034\"}},{\"attributeHeader\":{\"labelValue\":\"958036\",\"primaryLabelValue\":\"958036\"}},{\"attributeHeader\":{\"labelValue\":\"958038\",\"primaryLabelValue\":\"958038\"}},{\"attributeHeader\":{\"labelValue\":\"958042\",\"primaryLabelValue\":\"958042\"}},{\"attributeHeader\":{\"labelValue\":\"958044\",\"primaryLabelValue\":\"958044\"}},{\"attributeHeader\":{\"labelValue\":\"958046\",\"primaryLabelValue\":\"958046\"}},{\"attributeHeader\":{\"labelValue\":\"958048\",\"primaryLabelValue\":\"958048\"}},{\"attributeHeader\":{\"labelValue\":\"958050\",\"primaryLabelValue\":\"958050\"}},{\"attributeHeader\":{\"labelValue\":\"958052\",\"primaryLabelValue\":\"958052\"}},{\"attributeHeader\":{\"labelValue\":\"958054\",\"primaryLabelValue\":\"958054\"}},{\"attributeHeader\":{\"labelValue\":\"958056\",\"primaryLabelValue\":\"958056\"}},{\"attributeHeader\":{\"labelValue\":\"958058\",\"primaryLabelValue\":\"958058\"}},{\"attributeHeader\":{\"labelValue\":\"958060\",\"primaryLabelValue\":\"958060\"}},{\"attributeHeader\":{\"labelValue\":\"958062\",\"primaryLabelValue\":\"958062\"}},{\"attributeHeader\":{\"labelValue\":\"958064\",\"primaryLabelValue\":\"958064\"}},{\"attributeHeader\":{\"labelValue\":\"958066\",\"primaryLabelValue\":\"958066\"}},{\"attributeHeader\":{\"labelValue\":\"958070\",\"primaryLabelValue\":\"958070\"}},{\"attributeHeader\":{\"labelValue\":\"958072\",\"primaryLabelValue\":\"958072\"}},{\"attributeHeader\":{\"labelValue\":\"958074\",\"primaryLabelValue\":\"958074\"}},{\"attributeHeader\":{\"labelValue\":\"958076\",\"primaryLabelValue\":\"958076\"}},{\"attributeHeader\":{\"labelValue\":\"958078\",\"primaryLabelValue\":\"958078\"}},{\"attributeHeader\":{\"labelValue\":\"958080\",\"primaryLabelValue\":\"958080\"}},{\"attributeHeader\":{\"labelValue\":\"958088\",\"primaryLabelValue\":\"958088\"}},{\"attributeHeader\":{\"labelValue\":\"958090\",\"primaryLabelValue\":\"958090\"}},{\"attributeHeader\":{\"labelValue\":\"958094\",\"primaryLabelValue\":\"958094\"}},{\"attributeHeader\":{\"labelValue\":\"958096\",\"primaryLabelValue\":\"958096\"}},{\"attributeHeader\":{\"labelValue\":\"958098\",\"primaryLabelValue\":\"958098\"}},{\"attributeHeader\":{\"labelValue\":\"958100\",\"primaryLabelValue\":\"958100\"}},{\"attributeHeader\":{\"labelValue\":\"958104\",\"primaryLabelValue\":\"958104\"}},{\"attributeHeader\":{\"labelValue\":\"958106\",\"primaryLabelValue\":\"958106\"}},{\"attributeHeader\":{\"labelValue\":\"958108\",\"primaryLabelValue\":\"958108\"}},{\"attributeHeader\":{\"labelValue\":\"958110\",\"primaryLabelValue\":\"958110\"}},{\"attributeHeader\":{\"labelValue\":\"958112\",\"primaryLabelValue\":\"958112\"}},{\"attributeHeader\":{\"labelValue\":\"958114\",\"primaryLabelValue\":\"958114\"}},{\"attributeHeader\":{\"labelValue\":\"958116\",\"primaryLabelValue\":\"958116\"}},{\"attributeHeader\":{\"labelValue\":\"958118\",\"primaryLabelValue\":\"958118\"}},{\"attributeHeader\":{\"labelValue\":\"958120\",\"primaryLabelValue\":\"958120\"}},{\"attributeHeader\":{\"labelValue\":\"958124\",\"primaryLabelValue\":\"958124\"}},{\"attributeHeader\":{\"labelValue\":\"958126\",\"primaryLabelValue\":\"958126\"}},{\"attributeHeader\":{\"labelValue\":\"958128\",\"primaryLabelValue\":\"958128\"}},{\"attributeHeader\":{\"labelValue\":\"958130\",\"primaryLabelValue\":\"958130\"}},{\"attributeHeader\":{\"labelValue\":\"958132\",\"primaryLabelValue\":\"958132\"}},{\"attributeHeader\":{\"labelValue\":\"958134\",\"primaryLabelValue\":\"958134\"}},{\"attributeHeader\":{\"labelValue\":\"958136\",\"primaryLabelValue\":\"958136\"}},{\"attributeHeader\":{\"labelValue\":\"958138\",\"primaryLabelValue\":\"958138\"}},{\"attributeHeader\":{\"labelValue\":\"958140\",\"primaryLabelValue\":\"958140\"}},{\"attributeHeader\":{\"labelValue\":\"958150\",\"primaryLabelValue\":\"958150\"}},{\"attributeHeader\":{\"labelValue\":\"958152\",\"primaryLabelValue\":\"958152\"}},{\"attributeHeader\":{\"labelValue\":\"958156\",\"primaryLabelValue\":\"958156\"}},{\"attributeHeader\":{\"labelValue\":\"958158\",\"primaryLabelValue\":\"958158\"}},{\"attributeHeader\":{\"labelValue\":\"958162\",\"primaryLabelValue\":\"958162\"}},{\"attributeHeader\":{\"labelValue\":\"958166\",\"primaryLabelValue\":\"958166\"}},{\"attributeHeader\":{\"labelValue\":\"958168\",\"primaryLabelValue\":\"958168\"}},{\"attributeHeader\":{\"labelValue\":\"958172\",\"primaryLabelValue\":\"958172\"}},{\"attributeHeader\":{\"labelValue\":\"958174\",\"primaryLabelValue\":\"958174\"}},{\"attributeHeader\":{\"labelValue\":\"958176\",\"primaryLabelValue\":\"958176\"}},{\"attributeHeader\":{\"labelValue\":\"958180\",\"primaryLabelValue\":\"958180\"}},{\"attributeHeader\":{\"labelValue\":\"958184\",\"primaryLabelValue\":\"958184\"}},{\"attributeHeader\":{\"labelValue\":\"958186\",\"primaryLabelValue\":\"958186\"}},{\"attributeHeader\":{\"labelValue\":\"958188\",\"primaryLabelValue\":\"958188\"}},{\"attributeHeader\":{\"labelValue\":\"958190\",\"primaryLabelValue\":\"958190\"}},{\"attributeHeader\":{\"labelValue\":\"958192\",\"primaryLabelValue\":\"958192\"}},{\"attributeHeader\":{\"labelValue\":\"958194\",\"primaryLabelValue\":\"958194\"}},{\"attributeHeader\":{\"labelValue\":\"958196\",\"primaryLabelValue\":\"958196\"}},{\"attributeHeader\":{\"labelValue\":\"958198\",\"primaryLabelValue\":\"958198\"}},{\"attributeHeader\":{\"labelValue\":\"958200\",\"primaryLabelValue\":\"958200\"}},{\"attributeHeader\":{\"labelValue\":\"958202\",\"primaryLabelValue\":\"958202\"}},{\"attributeHeader\":{\"labelValue\":\"958204\",\"primaryLabelValue\":\"958204\"}},{\"attributeHeader\":{\"labelValue\":\"958206\",\"primaryLabelValue\":\"958206\"}},{\"attributeHeader\":{\"labelValue\":\"958208\",\"primaryLabelValue\":\"958208\"}},{\"attributeHeader\":{\"labelValue\":\"958210\",\"primaryLabelValue\":\"958210\"}},{\"attributeHeader\":{\"labelValue\":\"958212\",\"primaryLabelValue\":\"958212\"}},{\"attributeHeader\":{\"labelValue\":\"958214\",\"primaryLabelValue\":\"958214\"}},{\"attributeHeader\":{\"labelValue\":\"958216\",\"primaryLabelValue\":\"958216\"}},{\"attributeHeader\":{\"labelValue\":\"958218\",\"primaryLabelValue\":\"958218\"}},{\"attributeHeader\":{\"labelValue\":\"958220\",\"primaryLabelValue\":\"958220\"}},{\"attributeHeader\":{\"labelValue\":\"958222\",\"primaryLabelValue\":\"958222\"}},{\"attributeHeader\":{\"labelValue\":\"958224\",\"primaryLabelValue\":\"958224\"}},{\"attributeHeader\":{\"labelValue\":\"958226\",\"primaryLabelValue\":\"958226\"}},{\"attributeHeader\":{\"labelValue\":\"958228\",\"primaryLabelValue\":\"958228\"}},{\"attributeHeader\":{\"labelValue\":\"958230\",\"primaryLabelValue\":\"958230\"}},{\"attributeHeader\":{\"labelValue\":\"958232\",\"primaryLabelValue\":\"958232\"}},{\"attributeHeader\":{\"labelValue\":\"958234\",\"primaryLabelValue\":\"958234\"}},{\"attributeHeader\":{\"labelValue\":\"958236\",\"primaryLabelValue\":\"958236\"}},{\"attributeHeader\":{\"labelValue\":\"958238\",\"primaryLabelValue\":\"958238\"}},{\"attributeHeader\":{\"labelValue\":\"958240\",\"primaryLabelValue\":\"958240\"}},{\"attributeHeader\":{\"labelValue\":\"958242\",\"primaryLabelValue\":\"958242\"}},{\"attributeHeader\":{\"labelValue\":\"958244\",\"primaryLabelValue\":\"958244\"}},{\"attributeHeader\":{\"labelValue\":\"958246\",\"primaryLabelValue\":\"958246\"}},{\"attributeHeader\":{\"labelValue\":\"958248\",\"primaryLabelValue\":\"958248\"}},{\"attributeHeader\":{\"labelValue\":\"958250\",\"primaryLabelValue\":\"958250\"}},{\"attributeHeader\":{\"labelValue\":\"958252\",\"primaryLabelValue\":\"958252\"}},{\"attributeHeader\":{\"labelValue\":\"958254\",\"primaryLabelValue\":\"958254\"}},{\"attributeHeader\":{\"labelValue\":\"958256\",\"primaryLabelValue\":\"958256\"}},{\"attributeHeader\":{\"labelValue\":\"958258\",\"primaryLabelValue\":\"958258\"}},{\"attributeHeader\":{\"labelValue\":\"958260\",\"primaryLabelValue\":\"958260\"}},{\"attributeHeader\":{\"labelValue\":\"958262\",\"primaryLabelValue\":\"958262\"}},{\"attributeHeader\":{\"labelValue\":\"958266\",\"primaryLabelValue\":\"958266\"}},{\"attributeHeader\":{\"labelValue\":\"958268\",\"primaryLabelValue\":\"958268\"}},{\"attributeHeader\":{\"labelValue\":\"958270\",\"primaryLabelValue\":\"958270\"}},{\"attributeHeader\":{\"labelValue\":\"958272\",\"primaryLabelValue\":\"958272\"}},{\"attributeHeader\":{\"labelValue\":\"958274\",\"primaryLabelValue\":\"958274\"}},{\"attributeHeader\":{\"labelValue\":\"958276\",\"primaryLabelValue\":\"958276\"}},{\"attributeHeader\":{\"labelValue\":\"958278\",\"primaryLabelValue\":\"958278\"}},{\"attributeHeader\":{\"labelValue\":\"958280\",\"primaryLabelValue\":\"958280\"}},{\"attributeHeader\":{\"labelValue\":\"958282\",\"primaryLabelValue\":\"958282\"}},{\"attributeHeader\":{\"labelValue\":\"958284\",\"primaryLabelValue\":\"958284\"}},{\"attributeHeader\":{\"labelValue\":\"958286\",\"primaryLabelValue\":\"958286\"}},{\"attributeHeader\":{\"labelValue\":\"958288\",\"primaryLabelValue\":\"958288\"}},{\"attributeHeader\":{\"labelValue\":\"958290\",\"primaryLabelValue\":\"958290\"}},{\"attributeHeader\":{\"labelValue\":\"958292\",\"primaryLabelValue\":\"958292\"}},{\"attributeHeader\":{\"labelValue\":\"958296\",\"primaryLabelValue\":\"958296\"}},{\"attributeHeader\":{\"labelValue\":\"958298\",\"primaryLabelValue\":\"958298\"}},{\"attributeHeader\":{\"labelValue\":\"958300\",\"primaryLabelValue\":\"958300\"}},{\"attributeHeader\":{\"labelValue\":\"958302\",\"primaryLabelValue\":\"958302\"}},{\"attributeHeader\":{\"labelValue\":\"958304\",\"primaryLabelValue\":\"958304\"}},{\"attributeHeader\":{\"labelValue\":\"958306\",\"primaryLabelValue\":\"958306\"}},{\"attributeHeader\":{\"labelValue\":\"958308\",\"primaryLabelValue\":\"958308\"}},{\"attributeHeader\":{\"labelValue\":\"958310\",\"primaryLabelValue\":\"958310\"}},{\"attributeHeader\":{\"labelValue\":\"958312\",\"primaryLabelValue\":\"958312\"}},{\"attributeHeader\":{\"labelValue\":\"958314\",\"primaryLabelValue\":\"958314\"}},{\"attributeHeader\":{\"labelValue\":\"958316\",\"primaryLabelValue\":\"958316\"}},{\"attributeHeader\":{\"labelValue\":\"958318\",\"primaryLabelValue\":\"958318\"}},{\"attributeHeader\":{\"labelValue\":\"958322\",\"primaryLabelValue\":\"958322\"}},{\"attributeHeader\":{\"labelValue\":\"958324\",\"primaryLabelValue\":\"958324\"}},{\"attributeHeader\":{\"labelValue\":\"958326\",\"primaryLabelValue\":\"958326\"}},{\"attributeHeader\":{\"labelValue\":\"958328\",\"primaryLabelValue\":\"958328\"}},{\"attributeHeader\":{\"labelValue\":\"958330\",\"primaryLabelValue\":\"958330\"}},{\"attributeHeader\":{\"labelValue\":\"958332\",\"primaryLabelValue\":\"958332\"}},{\"attributeHeader\":{\"labelValue\":\"958334\",\"primaryLabelValue\":\"958334\"}},{\"attributeHeader\":{\"labelValue\":\"958336\",\"primaryLabelValue\":\"958336\"}},{\"attributeHeader\":{\"labelValue\":\"958338\",\"primaryLabelValue\":\"958338\"}},{\"attributeHeader\":{\"labelValue\":\"958340\",\"primaryLabelValue\":\"958340\"}},{\"attributeHeader\":{\"labelValue\":\"958342\",\"primaryLabelValue\":\"958342\"}},{\"attributeHeader\":{\"labelValue\":\"958344\",\"primaryLabelValue\":\"958344\"}},{\"attributeHeader\":{\"labelValue\":\"958346\",\"primaryLabelValue\":\"958346\"}},{\"attributeHeader\":{\"labelValue\":\"958348\",\"primaryLabelValue\":\"958348\"}},{\"attributeHeader\":{\"labelValue\":\"958350\",\"primaryLabelValue\":\"958350\"}},{\"attributeHeader\":{\"labelValue\":\"958354\",\"primaryLabelValue\":\"958354\"}},{\"attributeHeader\":{\"labelValue\":\"958356\",\"primaryLabelValue\":\"958356\"}},{\"attributeHeader\":{\"labelValue\":\"958360\",\"primaryLabelValue\":\"958360\"}},{\"attributeHeader\":{\"labelValue\":\"958364\",\"primaryLabelValue\":\"958364\"}},{\"attributeHeader\":{\"labelValue\":\"958366\",\"primaryLabelValue\":\"958366\"}},{\"attributeHeader\":{\"labelValue\":\"958368\",\"primaryLabelValue\":\"958368\"}},{\"attributeHeader\":{\"labelValue\":\"958370\",\"primaryLabelValue\":\"958370\"}},{\"attributeHeader\":{\"labelValue\":\"958372\",\"primaryLabelValue\":\"958372\"}},{\"attributeHeader\":{\"labelValue\":\"958374\",\"primaryLabelValue\":\"958374\"}},{\"attributeHeader\":{\"labelValue\":\"958376\",\"primaryLabelValue\":\"958376\"}},{\"attributeHeader\":{\"labelValue\":\"958378\",\"primaryLabelValue\":\"958378\"}},{\"attributeHeader\":{\"labelValue\":\"958380\",\"primaryLabelValue\":\"958380\"}},{\"attributeHeader\":{\"labelValue\":\"958382\",\"primaryLabelValue\":\"958382\"}},{\"attributeHeader\":{\"labelValue\":\"958384\",\"primaryLabelValue\":\"958384\"}},{\"attributeHeader\":{\"labelValue\":\"958386\",\"primaryLabelValue\":\"958386\"}},{\"attributeHeader\":{\"labelValue\":\"958388\",\"primaryLabelValue\":\"958388\"}},{\"attributeHeader\":{\"labelValue\":\"958390\",\"primaryLabelValue\":\"958390\"}},{\"attributeHeader\":{\"labelValue\":\"958392\",\"primaryLabelValue\":\"958392\"}},{\"attributeHeader\":{\"labelValue\":\"958396\",\"primaryLabelValue\":\"958396\"}},{\"attributeHeader\":{\"labelValue\":\"958398\",\"primaryLabelValue\":\"958398\"}},{\"attributeHeader\":{\"labelValue\":\"958400\",\"primaryLabelValue\":\"958400\"}},{\"attributeHeader\":{\"labelValue\":\"958402\",\"primaryLabelValue\":\"958402\"}},{\"attributeHeader\":{\"labelValue\":\"958404\",\"primaryLabelValue\":\"958404\"}},{\"attributeHeader\":{\"labelValue\":\"958406\",\"primaryLabelValue\":\"958406\"}},{\"attributeHeader\":{\"labelValue\":\"958408\",\"primaryLabelValue\":\"958408\"}},{\"attributeHeader\":{\"labelValue\":\"958410\",\"primaryLabelValue\":\"958410\"}},{\"attributeHeader\":{\"labelValue\":\"958412\",\"primaryLabelValue\":\"958412\"}},{\"attributeHeader\":{\"labelValue\":\"958414\",\"primaryLabelValue\":\"958414\"}},{\"attributeHeader\":{\"labelValue\":\"958416\",\"primaryLabelValue\":\"958416\"}},{\"attributeHeader\":{\"labelValue\":\"958418\",\"primaryLabelValue\":\"958418\"}},{\"attributeHeader\":{\"labelValue\":\"958420\",\"primaryLabelValue\":\"958420\"}},{\"attributeHeader\":{\"labelValue\":\"958424\",\"primaryLabelValue\":\"958424\"}},{\"attributeHeader\":{\"labelValue\":\"958426\",\"primaryLabelValue\":\"958426\"}},{\"attributeHeader\":{\"labelValue\":\"958428\",\"primaryLabelValue\":\"958428\"}},{\"attributeHeader\":{\"labelValue\":\"958430\",\"primaryLabelValue\":\"958430\"}},{\"attributeHeader\":{\"labelValue\":\"958432\",\"primaryLabelValue\":\"958432\"}},{\"attributeHeader\":{\"labelValue\":\"958434\",\"primaryLabelValue\":\"958434\"}},{\"attributeHeader\":{\"labelValue\":\"958436\",\"primaryLabelValue\":\"958436\"}},{\"attributeHeader\":{\"labelValue\":\"958438\",\"primaryLabelValue\":\"958438\"}},{\"attributeHeader\":{\"labelValue\":\"958440\",\"primaryLabelValue\":\"958440\"}},{\"attributeHeader\":{\"labelValue\":\"958442\",\"primaryLabelValue\":\"958442\"}},{\"attributeHeader\":{\"labelValue\":\"958444\",\"primaryLabelValue\":\"958444\"}},{\"attributeHeader\":{\"labelValue\":\"958446\",\"primaryLabelValue\":\"958446\"}},{\"attributeHeader\":{\"labelValue\":\"958448\",\"primaryLabelValue\":\"958448\"}},{\"attributeHeader\":{\"labelValue\":\"958450\",\"primaryLabelValue\":\"958450\"}},{\"attributeHeader\":{\"labelValue\":\"958452\",\"primaryLabelValue\":\"958452\"}},{\"attributeHeader\":{\"labelValue\":\"958454\",\"primaryLabelValue\":\"958454\"}},{\"attributeHeader\":{\"labelValue\":\"958456\",\"primaryLabelValue\":\"958456\"}},{\"attributeHeader\":{\"labelValue\":\"958458\",\"primaryLabelValue\":\"958458\"}},{\"attributeHeader\":{\"labelValue\":\"958460\",\"primaryLabelValue\":\"958460\"}},{\"attributeHeader\":{\"labelValue\":\"958462\",\"primaryLabelValue\":\"958462\"}},{\"attributeHeader\":{\"labelValue\":\"958464\",\"primaryLabelValue\":\"958464\"}},{\"attributeHeader\":{\"labelValue\":\"958466\",\"primaryLabelValue\":\"958466\"}},{\"attributeHeader\":{\"labelValue\":\"958468\",\"primaryLabelValue\":\"958468\"}},{\"attributeHeader\":{\"labelValue\":\"958472\",\"primaryLabelValue\":\"958472\"}},{\"attributeHeader\":{\"labelValue\":\"958474\",\"primaryLabelValue\":\"958474\"}},{\"attributeHeader\":{\"labelValue\":\"958476\",\"primaryLabelValue\":\"958476\"}},{\"attributeHeader\":{\"labelValue\":\"958478\",\"primaryLabelValue\":\"958478\"}},{\"attributeHeader\":{\"labelValue\":\"958480\",\"primaryLabelValue\":\"958480\"}},{\"attributeHeader\":{\"labelValue\":\"958482\",\"primaryLabelValue\":\"958482\"}},{\"attributeHeader\":{\"labelValue\":\"958484\",\"primaryLabelValue\":\"958484\"}},{\"attributeHeader\":{\"labelValue\":\"958486\",\"primaryLabelValue\":\"958486\"}},{\"attributeHeader\":{\"labelValue\":\"958488\",\"primaryLabelValue\":\"958488\"}},{\"attributeHeader\":{\"labelValue\":\"958490\",\"primaryLabelValue\":\"958490\"}},{\"attributeHeader\":{\"labelValue\":\"958492\",\"primaryLabelValue\":\"958492\"}},{\"attributeHeader\":{\"labelValue\":\"958494\",\"primaryLabelValue\":\"958494\"}},{\"attributeHeader\":{\"labelValue\":\"958496\",\"primaryLabelValue\":\"958496\"}},{\"attributeHeader\":{\"labelValue\":\"958498\",\"primaryLabelValue\":\"958498\"}},{\"attributeHeader\":{\"labelValue\":\"958504\",\"primaryLabelValue\":\"958504\"}},{\"attributeHeader\":{\"labelValue\":\"958506\",\"primaryLabelValue\":\"958506\"}},{\"attributeHeader\":{\"labelValue\":\"958510\",\"primaryLabelValue\":\"958510\"}},{\"attributeHeader\":{\"labelValue\":\"958512\",\"primaryLabelValue\":\"958512\"}},{\"attributeHeader\":{\"labelValue\":\"958514\",\"primaryLabelValue\":\"958514\"}},{\"attributeHeader\":{\"labelValue\":\"958516\",\"primaryLabelValue\":\"958516\"}},{\"attributeHeader\":{\"labelValue\":\"958518\",\"primaryLabelValue\":\"958518\"}},{\"attributeHeader\":{\"labelValue\":\"958520\",\"primaryLabelValue\":\"958520\"}},{\"attributeHeader\":{\"labelValue\":\"958522\",\"primaryLabelValue\":\"958522\"}},{\"attributeHeader\":{\"labelValue\":\"958524\",\"primaryLabelValue\":\"958524\"}},{\"attributeHeader\":{\"labelValue\":\"958526\",\"primaryLabelValue\":\"958526\"}},{\"attributeHeader\":{\"labelValue\":\"958528\",\"primaryLabelValue\":\"958528\"}},{\"attributeHeader\":{\"labelValue\":\"958530\",\"primaryLabelValue\":\"958530\"}},{\"attributeHeader\":{\"labelValue\":\"958532\",\"primaryLabelValue\":\"958532\"}},{\"attributeHeader\":{\"labelValue\":\"958534\",\"primaryLabelValue\":\"958534\"}},{\"attributeHeader\":{\"labelValue\":\"958536\",\"primaryLabelValue\":\"958536\"}},{\"attributeHeader\":{\"labelValue\":\"958538\",\"primaryLabelValue\":\"958538\"}},{\"attributeHeader\":{\"labelValue\":\"958540\",\"primaryLabelValue\":\"958540\"}},{\"attributeHeader\":{\"labelValue\":\"958542\",\"primaryLabelValue\":\"958542\"}},{\"attributeHeader\":{\"labelValue\":\"958544\",\"primaryLabelValue\":\"958544\"}},{\"attributeHeader\":{\"labelValue\":\"958546\",\"primaryLabelValue\":\"958546\"}},{\"attributeHeader\":{\"labelValue\":\"958548\",\"primaryLabelValue\":\"958548\"}},{\"attributeHeader\":{\"labelValue\":\"958550\",\"primaryLabelValue\":\"958550\"}},{\"attributeHeader\":{\"labelValue\":\"958552\",\"primaryLabelValue\":\"958552\"}},{\"attributeHeader\":{\"labelValue\":\"958554\",\"primaryLabelValue\":\"958554\"}},{\"attributeHeader\":{\"labelValue\":\"958556\",\"primaryLabelValue\":\"958556\"}},{\"attributeHeader\":{\"labelValue\":\"958558\",\"primaryLabelValue\":\"958558\"}},{\"attributeHeader\":{\"labelValue\":\"958560\",\"primaryLabelValue\":\"958560\"}},{\"attributeHeader\":{\"labelValue\":\"958564\",\"primaryLabelValue\":\"958564\"}},{\"attributeHeader\":{\"labelValue\":\"958566\",\"primaryLabelValue\":\"958566\"}},{\"attributeHeader\":{\"labelValue\":\"958568\",\"primaryLabelValue\":\"958568\"}},{\"attributeHeader\":{\"labelValue\":\"958570\",\"primaryLabelValue\":\"958570\"}},{\"attributeHeader\":{\"labelValue\":\"958572\",\"primaryLabelValue\":\"958572\"}},{\"attributeHeader\":{\"labelValue\":\"958574\",\"primaryLabelValue\":\"958574\"}},{\"attributeHeader\":{\"labelValue\":\"958576\",\"primaryLabelValue\":\"958576\"}},{\"attributeHeader\":{\"labelValue\":\"958578\",\"primaryLabelValue\":\"958578\"}},{\"attributeHeader\":{\"labelValue\":\"958580\",\"primaryLabelValue\":\"958580\"}},{\"attributeHeader\":{\"labelValue\":\"958582\",\"primaryLabelValue\":\"958582\"}},{\"attributeHeader\":{\"labelValue\":\"958584\",\"primaryLabelValue\":\"958584\"}},{\"attributeHeader\":{\"labelValue\":\"958586\",\"primaryLabelValue\":\"958586\"}},{\"attributeHeader\":{\"labelValue\":\"958588\",\"primaryLabelValue\":\"958588\"}},{\"attributeHeader\":{\"labelValue\":\"958590\",\"primaryLabelValue\":\"958590\"}},{\"attributeHeader\":{\"labelValue\":\"958592\",\"primaryLabelValue\":\"958592\"}},{\"attributeHeader\":{\"labelValue\":\"958594\",\"primaryLabelValue\":\"958594\"}},{\"attributeHeader\":{\"labelValue\":\"958596\",\"primaryLabelValue\":\"958596\"}},{\"attributeHeader\":{\"labelValue\":\"958598\",\"primaryLabelValue\":\"958598\"}},{\"attributeHeader\":{\"labelValue\":\"958600\",\"primaryLabelValue\":\"958600\"}},{\"attributeHeader\":{\"labelValue\":\"958602\",\"primaryLabelValue\":\"958602\"}},{\"attributeHeader\":{\"labelValue\":\"958604\",\"primaryLabelValue\":\"958604\"}},{\"attributeHeader\":{\"labelValue\":\"958606\",\"primaryLabelValue\":\"958606\"}},{\"attributeHeader\":{\"labelValue\":\"958608\",\"primaryLabelValue\":\"958608\"}},{\"attributeHeader\":{\"labelValue\":\"958610\",\"primaryLabelValue\":\"958610\"}},{\"attributeHeader\":{\"labelValue\":\"958612\",\"primaryLabelValue\":\"958612\"}},{\"attributeHeader\":{\"labelValue\":\"958614\",\"primaryLabelValue\":\"958614\"}},{\"attributeHeader\":{\"labelValue\":\"958616\",\"primaryLabelValue\":\"958616\"}},{\"attributeHeader\":{\"labelValue\":\"958618\",\"primaryLabelValue\":\"958618\"}},{\"attributeHeader\":{\"labelValue\":\"958620\",\"primaryLabelValue\":\"958620\"}},{\"attributeHeader\":{\"labelValue\":\"958622\",\"primaryLabelValue\":\"958622\"}},{\"attributeHeader\":{\"labelValue\":\"958624\",\"primaryLabelValue\":\"958624\"}},{\"attributeHeader\":{\"labelValue\":\"958626\",\"primaryLabelValue\":\"958626\"}},{\"attributeHeader\":{\"labelValue\":\"958628\",\"primaryLabelValue\":\"958628\"}},{\"attributeHeader\":{\"labelValue\":\"958630\",\"primaryLabelValue\":\"958630\"}},{\"attributeHeader\":{\"labelValue\":\"958632\",\"primaryLabelValue\":\"958632\"}},{\"attributeHeader\":{\"labelValue\":\"958634\",\"primaryLabelValue\":\"958634\"}},{\"attributeHeader\":{\"labelValue\":\"958636\",\"primaryLabelValue\":\"958636\"}},{\"attributeHeader\":{\"labelValue\":\"958638\",\"primaryLabelValue\":\"958638\"}},{\"attributeHeader\":{\"labelValue\":\"958640\",\"primaryLabelValue\":\"958640\"}},{\"attributeHeader\":{\"labelValue\":\"958642\",\"primaryLabelValue\":\"958642\"}},{\"attributeHeader\":{\"labelValue\":\"958644\",\"primaryLabelValue\":\"958644\"}},{\"attributeHeader\":{\"labelValue\":\"958646\",\"primaryLabelValue\":\"958646\"}},{\"attributeHeader\":{\"labelValue\":\"958648\",\"primaryLabelValue\":\"958648\"}},{\"attributeHeader\":{\"labelValue\":\"958650\",\"primaryLabelValue\":\"958650\"}},{\"attributeHeader\":{\"labelValue\":\"958652\",\"primaryLabelValue\":\"958652\"}},{\"attributeHeader\":{\"labelValue\":\"958654\",\"primaryLabelValue\":\"958654\"}},{\"attributeHeader\":{\"labelValue\":\"958656\",\"primaryLabelValue\":\"958656\"}},{\"attributeHeader\":{\"labelValue\":\"958658\",\"primaryLabelValue\":\"958658\"}},{\"attributeHeader\":{\"labelValue\":\"958660\",\"primaryLabelValue\":\"958660\"}},{\"attributeHeader\":{\"labelValue\":\"958662\",\"primaryLabelValue\":\"958662\"}},{\"attributeHeader\":{\"labelValue\":\"958664\",\"primaryLabelValue\":\"958664\"}},{\"attributeHeader\":{\"labelValue\":\"958666\",\"primaryLabelValue\":\"958666\"}},{\"attributeHeader\":{\"labelValue\":\"958668\",\"primaryLabelValue\":\"958668\"}},{\"attributeHeader\":{\"labelValue\":\"958670\",\"primaryLabelValue\":\"958670\"}},{\"attributeHeader\":{\"labelValue\":\"958672\",\"primaryLabelValue\":\"958672\"}},{\"attributeHeader\":{\"labelValue\":\"958674\",\"primaryLabelValue\":\"958674\"}},{\"attributeHeader\":{\"labelValue\":\"958676\",\"primaryLabelValue\":\"958676\"}},{\"attributeHeader\":{\"labelValue\":\"958678\",\"primaryLabelValue\":\"958678\"}},{\"attributeHeader\":{\"labelValue\":\"958680\",\"primaryLabelValue\":\"958680\"}},{\"attributeHeader\":{\"labelValue\":\"958682\",\"primaryLabelValue\":\"958682\"}},{\"attributeHeader\":{\"labelValue\":\"958684\",\"primaryLabelValue\":\"958684\"}},{\"attributeHeader\":{\"labelValue\":\"958686\",\"primaryLabelValue\":\"958686\"}},{\"attributeHeader\":{\"labelValue\":\"958688\",\"primaryLabelValue\":\"958688\"}},{\"attributeHeader\":{\"labelValue\":\"958690\",\"primaryLabelValue\":\"958690\"}},{\"attributeHeader\":{\"labelValue\":\"958692\",\"primaryLabelValue\":\"958692\"}},{\"attributeHeader\":{\"labelValue\":\"958694\",\"primaryLabelValue\":\"958694\"}},{\"attributeHeader\":{\"labelValue\":\"958696\",\"primaryLabelValue\":\"958696\"}},{\"attributeHeader\":{\"labelValue\":\"958698\",\"primaryLabelValue\":\"958698\"}},{\"attributeHeader\":{\"labelValue\":\"958700\",\"primaryLabelValue\":\"958700\"}},{\"attributeHeader\":{\"labelValue\":\"958702\",\"primaryLabelValue\":\"958702\"}},{\"attributeHeader\":{\"labelValue\":\"958704\",\"primaryLabelValue\":\"958704\"}},{\"attributeHeader\":{\"labelValue\":\"958706\",\"primaryLabelValue\":\"958706\"}},{\"attributeHeader\":{\"labelValue\":\"958708\",\"primaryLabelValue\":\"958708\"}},{\"attributeHeader\":{\"labelValue\":\"958710\",\"primaryLabelValue\":\"958710\"}},{\"attributeHeader\":{\"labelValue\":\"958712\",\"primaryLabelValue\":\"958712\"}},{\"attributeHeader\":{\"labelValue\":\"958714\",\"primaryLabelValue\":\"958714\"}},{\"attributeHeader\":{\"labelValue\":\"958716\",\"primaryLabelValue\":\"958716\"}},{\"attributeHeader\":{\"labelValue\":\"958718\",\"primaryLabelValue\":\"958718\"}},{\"attributeHeader\":{\"labelValue\":\"958720\",\"primaryLabelValue\":\"958720\"}},{\"attributeHeader\":{\"labelValue\":\"958722\",\"primaryLabelValue\":\"958722\"}},{\"attributeHeader\":{\"labelValue\":\"958724\",\"primaryLabelValue\":\"958724\"}},{\"attributeHeader\":{\"labelValue\":\"958726\",\"primaryLabelValue\":\"958726\"}},{\"attributeHeader\":{\"labelValue\":\"958728\",\"primaryLabelValue\":\"958728\"}},{\"attributeHeader\":{\"labelValue\":\"958730\",\"primaryLabelValue\":\"958730\"}},{\"attributeHeader\":{\"labelValue\":\"958732\",\"primaryLabelValue\":\"958732\"}},{\"attributeHeader\":{\"labelValue\":\"958734\",\"primaryLabelValue\":\"958734\"}},{\"attributeHeader\":{\"labelValue\":\"958736\",\"primaryLabelValue\":\"958736\"}},{\"attributeHeader\":{\"labelValue\":\"958738\",\"primaryLabelValue\":\"958738\"}},{\"attributeHeader\":{\"labelValue\":\"958740\",\"primaryLabelValue\":\"958740\"}},{\"attributeHeader\":{\"labelValue\":\"958742\",\"primaryLabelValue\":\"958742\"}},{\"attributeHeader\":{\"labelValue\":\"958744\",\"primaryLabelValue\":\"958744\"}},{\"attributeHeader\":{\"labelValue\":\"958746\",\"primaryLabelValue\":\"958746\"}},{\"attributeHeader\":{\"labelValue\":\"958748\",\"primaryLabelValue\":\"958748\"}},{\"attributeHeader\":{\"labelValue\":\"958750\",\"primaryLabelValue\":\"958750\"}},{\"attributeHeader\":{\"labelValue\":\"958752\",\"primaryLabelValue\":\"958752\"}},{\"attributeHeader\":{\"labelValue\":\"958754\",\"primaryLabelValue\":\"958754\"}},{\"attributeHeader\":{\"labelValue\":\"958756\",\"primaryLabelValue\":\"958756\"}},{\"attributeHeader\":{\"labelValue\":\"958758\",\"primaryLabelValue\":\"958758\"}},{\"attributeHeader\":{\"labelValue\":\"958760\",\"primaryLabelValue\":\"958760\"}},{\"attributeHeader\":{\"labelValue\":\"958762\",\"primaryLabelValue\":\"958762\"}},{\"attributeHeader\":{\"labelValue\":\"958764\",\"primaryLabelValue\":\"958764\"}},{\"attributeHeader\":{\"labelValue\":\"958766\",\"primaryLabelValue\":\"958766\"}},{\"attributeHeader\":{\"labelValue\":\"958768\",\"primaryLabelValue\":\"958768\"}},{\"attributeHeader\":{\"labelValue\":\"958770\",\"primaryLabelValue\":\"958770\"}},{\"attributeHeader\":{\"labelValue\":\"958772\",\"primaryLabelValue\":\"958772\"}},{\"attributeHeader\":{\"labelValue\":\"958774\",\"primaryLabelValue\":\"958774\"}},{\"attributeHeader\":{\"labelValue\":\"958776\",\"primaryLabelValue\":\"958776\"}},{\"attributeHeader\":{\"labelValue\":\"958778\",\"primaryLabelValue\":\"958778\"}},{\"attributeHeader\":{\"labelValue\":\"958780\",\"primaryLabelValue\":\"958780\"}},{\"attributeHeader\":{\"labelValue\":\"958782\",\"primaryLabelValue\":\"958782\"}},{\"attributeHeader\":{\"labelValue\":\"958784\",\"primaryLabelValue\":\"958784\"}},{\"attributeHeader\":{\"labelValue\":\"958786\",\"primaryLabelValue\":\"958786\"}},{\"attributeHeader\":{\"labelValue\":\"958788\",\"primaryLabelValue\":\"958788\"}},{\"attributeHeader\":{\"labelValue\":\"958790\",\"primaryLabelValue\":\"958790\"}},{\"attributeHeader\":{\"labelValue\":\"958792\",\"primaryLabelValue\":\"958792\"}},{\"attributeHeader\":{\"labelValue\":\"958794\",\"primaryLabelValue\":\"958794\"}},{\"attributeHeader\":{\"labelValue\":\"958796\",\"primaryLabelValue\":\"958796\"}},{\"attributeHeader\":{\"labelValue\":\"958798\",\"primaryLabelValue\":\"958798\"}},{\"attributeHeader\":{\"labelValue\":\"958800\",\"primaryLabelValue\":\"958800\"}},{\"attributeHeader\":{\"labelValue\":\"958802\",\"primaryLabelValue\":\"958802\"}},{\"attributeHeader\":{\"labelValue\":\"958804\",\"primaryLabelValue\":\"958804\"}},{\"attributeHeader\":{\"labelValue\":\"958806\",\"primaryLabelValue\":\"958806\"}},{\"attributeHeader\":{\"labelValue\":\"958808\",\"primaryLabelValue\":\"958808\"}},{\"attributeHeader\":{\"labelValue\":\"958810\",\"primaryLabelValue\":\"958810\"}},{\"attributeHeader\":{\"labelValue\":\"958812\",\"primaryLabelValue\":\"958812\"}},{\"attributeHeader\":{\"labelValue\":\"958814\",\"primaryLabelValue\":\"958814\"}},{\"attributeHeader\":{\"labelValue\":\"958816\",\"primaryLabelValue\":\"958816\"}},{\"attributeHeader\":{\"labelValue\":\"958818\",\"primaryLabelValue\":\"958818\"}},{\"attributeHeader\":{\"labelValue\":\"958820\",\"primaryLabelValue\":\"958820\"}},{\"attributeHeader\":{\"labelValue\":\"958822\",\"primaryLabelValue\":\"958822\"}},{\"attributeHeader\":{\"labelValue\":\"958824\",\"primaryLabelValue\":\"958824\"}},{\"attributeHeader\":{\"labelValue\":\"958826\",\"primaryLabelValue\":\"958826\"}},{\"attributeHeader\":{\"labelValue\":\"958828\",\"primaryLabelValue\":\"958828\"}},{\"attributeHeader\":{\"labelValue\":\"958830\",\"primaryLabelValue\":\"958830\"}},{\"attributeHeader\":{\"labelValue\":\"958834\",\"primaryLabelValue\":\"958834\"}},{\"attributeHeader\":{\"labelValue\":\"958836\",\"primaryLabelValue\":\"958836\"}},{\"attributeHeader\":{\"labelValue\":\"958838\",\"primaryLabelValue\":\"958838\"}},{\"attributeHeader\":{\"labelValue\":\"958840\",\"primaryLabelValue\":\"958840\"}},{\"attributeHeader\":{\"labelValue\":\"958842\",\"primaryLabelValue\":\"958842\"}},{\"attributeHeader\":{\"labelValue\":\"958844\",\"primaryLabelValue\":\"958844\"}},{\"attributeHeader\":{\"labelValue\":\"958846\",\"primaryLabelValue\":\"958846\"}},{\"attributeHeader\":{\"labelValue\":\"958848\",\"primaryLabelValue\":\"958848\"}},{\"attributeHeader\":{\"labelValue\":\"958850\",\"primaryLabelValue\":\"958850\"}},{\"attributeHeader\":{\"labelValue\":\"958852\",\"primaryLabelValue\":\"958852\"}},{\"attributeHeader\":{\"labelValue\":\"958854\",\"primaryLabelValue\":\"958854\"}},{\"attributeHeader\":{\"labelValue\":\"958856\",\"primaryLabelValue\":\"958856\"}},{\"attributeHeader\":{\"labelValue\":\"958858\",\"primaryLabelValue\":\"958858\"}},{\"attributeHeader\":{\"labelValue\":\"958860\",\"primaryLabelValue\":\"958860\"}},{\"attributeHeader\":{\"labelValue\":\"958862\",\"primaryLabelValue\":\"958862\"}},{\"attributeHeader\":{\"labelValue\":\"958864\",\"primaryLabelValue\":\"958864\"}},{\"attributeHeader\":{\"labelValue\":\"958866\",\"primaryLabelValue\":\"958866\"}},{\"attributeHeader\":{\"labelValue\":\"958868\",\"primaryLabelValue\":\"958868\"}},{\"attributeHeader\":{\"labelValue\":\"958870\",\"primaryLabelValue\":\"958870\"}},{\"attributeHeader\":{\"labelValue\":\"958872\",\"primaryLabelValue\":\"958872\"}},{\"attributeHeader\":{\"labelValue\":\"958874\",\"primaryLabelValue\":\"958874\"}},{\"attributeHeader\":{\"labelValue\":\"958876\",\"primaryLabelValue\":\"958876\"}},{\"attributeHeader\":{\"labelValue\":\"958878\",\"primaryLabelValue\":\"958878\"}},{\"attributeHeader\":{\"labelValue\":\"958880\",\"primaryLabelValue\":\"958880\"}},{\"attributeHeader\":{\"labelValue\":\"958882\",\"primaryLabelValue\":\"958882\"}},{\"attributeHeader\":{\"labelValue\":\"958884\",\"primaryLabelValue\":\"958884\"}},{\"attributeHeader\":{\"labelValue\":\"958886\",\"primaryLabelValue\":\"958886\"}},{\"attributeHeader\":{\"labelValue\":\"958888\",\"primaryLabelValue\":\"958888\"}},{\"attributeHeader\":{\"labelValue\":\"958890\",\"primaryLabelValue\":\"958890\"}},{\"attributeHeader\":{\"labelValue\":\"958892\",\"primaryLabelValue\":\"958892\"}},{\"attributeHeader\":{\"labelValue\":\"958894\",\"primaryLabelValue\":\"958894\"}},{\"attributeHeader\":{\"labelValue\":\"958896\",\"primaryLabelValue\":\"958896\"}},{\"attributeHeader\":{\"labelValue\":\"958898\",\"primaryLabelValue\":\"958898\"}},{\"attributeHeader\":{\"labelValue\":\"958900\",\"primaryLabelValue\":\"958900\"}},{\"attributeHeader\":{\"labelValue\":\"958902\",\"primaryLabelValue\":\"958902\"}},{\"attributeHeader\":{\"labelValue\":\"958904\",\"primaryLabelValue\":\"958904\"}},{\"attributeHeader\":{\"labelValue\":\"958906\",\"primaryLabelValue\":\"958906\"}},{\"attributeHeader\":{\"labelValue\":\"958908\",\"primaryLabelValue\":\"958908\"}},{\"attributeHeader\":{\"labelValue\":\"958910\",\"primaryLabelValue\":\"958910\"}},{\"attributeHeader\":{\"labelValue\":\"958912\",\"primaryLabelValue\":\"958912\"}},{\"attributeHeader\":{\"labelValue\":\"958914\",\"primaryLabelValue\":\"958914\"}},{\"attributeHeader\":{\"labelValue\":\"958916\",\"primaryLabelValue\":\"958916\"}},{\"attributeHeader\":{\"labelValue\":\"958918\",\"primaryLabelValue\":\"958918\"}},{\"attributeHeader\":{\"labelValue\":\"958920\",\"primaryLabelValue\":\"958920\"}},{\"attributeHeader\":{\"labelValue\":\"958922\",\"primaryLabelValue\":\"958922\"}},{\"attributeHeader\":{\"labelValue\":\"958924\",\"primaryLabelValue\":\"958924\"}},{\"attributeHeader\":{\"labelValue\":\"958926\",\"primaryLabelValue\":\"958926\"}},{\"attributeHeader\":{\"labelValue\":\"958928\",\"primaryLabelValue\":\"958928\"}},{\"attributeHeader\":{\"labelValue\":\"958930\",\"primaryLabelValue\":\"958930\"}},{\"attributeHeader\":{\"labelValue\":\"958932\",\"primaryLabelValue\":\"958932\"}},{\"attributeHeader\":{\"labelValue\":\"958934\",\"primaryLabelValue\":\"958934\"}},{\"attributeHeader\":{\"labelValue\":\"958936\",\"primaryLabelValue\":\"958936\"}},{\"attributeHeader\":{\"labelValue\":\"958938\",\"primaryLabelValue\":\"958938\"}},{\"attributeHeader\":{\"labelValue\":\"958940\",\"primaryLabelValue\":\"958940\"}},{\"attributeHeader\":{\"labelValue\":\"958942\",\"primaryLabelValue\":\"958942\"}},{\"attributeHeader\":{\"labelValue\":\"958944\",\"primaryLabelValue\":\"958944\"}},{\"attributeHeader\":{\"labelValue\":\"958946\",\"primaryLabelValue\":\"958946\"}},{\"attributeHeader\":{\"labelValue\":\"958948\",\"primaryLabelValue\":\"958948\"}},{\"attributeHeader\":{\"labelValue\":\"958950\",\"primaryLabelValue\":\"958950\"}},{\"attributeHeader\":{\"labelValue\":\"958952\",\"primaryLabelValue\":\"958952\"}},{\"attributeHeader\":{\"labelValue\":\"958954\",\"primaryLabelValue\":\"958954\"}},{\"attributeHeader\":{\"labelValue\":\"958956\",\"primaryLabelValue\":\"958956\"}},{\"attributeHeader\":{\"labelValue\":\"958958\",\"primaryLabelValue\":\"958958\"}},{\"attributeHeader\":{\"labelValue\":\"958960\",\"primaryLabelValue\":\"958960\"}},{\"attributeHeader\":{\"labelValue\":\"958962\",\"primaryLabelValue\":\"958962\"}},{\"attributeHeader\":{\"labelValue\":\"958964\",\"primaryLabelValue\":\"958964\"}},{\"attributeHeader\":{\"labelValue\":\"958966\",\"primaryLabelValue\":\"958966\"}},{\"attributeHeader\":{\"labelValue\":\"958968\",\"primaryLabelValue\":\"958968\"}},{\"attributeHeader\":{\"labelValue\":\"958970\",\"primaryLabelValue\":\"958970\"}},{\"attributeHeader\":{\"labelValue\":\"958972\",\"primaryLabelValue\":\"958972\"}},{\"attributeHeader\":{\"labelValue\":\"958974\",\"primaryLabelValue\":\"958974\"}},{\"attributeHeader\":{\"labelValue\":\"958976\",\"primaryLabelValue\":\"958976\"}},{\"attributeHeader\":{\"labelValue\":\"958978\",\"primaryLabelValue\":\"958978\"}},{\"attributeHeader\":{\"labelValue\":\"958980\",\"primaryLabelValue\":\"958980\"}},{\"attributeHeader\":{\"labelValue\":\"958982\",\"primaryLabelValue\":\"958982\"}},{\"attributeHeader\":{\"labelValue\":\"958984\",\"primaryLabelValue\":\"958984\"}},{\"attributeHeader\":{\"labelValue\":\"958986\",\"primaryLabelValue\":\"958986\"}},{\"attributeHeader\":{\"labelValue\":\"958988\",\"primaryLabelValue\":\"958988\"}},{\"attributeHeader\":{\"labelValue\":\"958990\",\"primaryLabelValue\":\"958990\"}},{\"attributeHeader\":{\"labelValue\":\"958992\",\"primaryLabelValue\":\"958992\"}},{\"attributeHeader\":{\"labelValue\":\"958994\",\"primaryLabelValue\":\"958994\"}},{\"attributeHeader\":{\"labelValue\":\"958996\",\"primaryLabelValue\":\"958996\"}},{\"attributeHeader\":{\"labelValue\":\"958998\",\"primaryLabelValue\":\"958998\"}},{\"attributeHeader\":{\"labelValue\":\"959000\",\"primaryLabelValue\":\"959000\"}},{\"attributeHeader\":{\"labelValue\":\"959002\",\"primaryLabelValue\":\"959002\"}},{\"attributeHeader\":{\"labelValue\":\"959004\",\"primaryLabelValue\":\"959004\"}},{\"attributeHeader\":{\"labelValue\":\"959006\",\"primaryLabelValue\":\"959006\"}},{\"attributeHeader\":{\"labelValue\":\"959008\",\"primaryLabelValue\":\"959008\"}},{\"attributeHeader\":{\"labelValue\":\"959010\",\"primaryLabelValue\":\"959010\"}},{\"attributeHeader\":{\"labelValue\":\"959012\",\"primaryLabelValue\":\"959012\"}},{\"attributeHeader\":{\"labelValue\":\"959014\",\"primaryLabelValue\":\"959014\"}},{\"attributeHeader\":{\"labelValue\":\"959016\",\"primaryLabelValue\":\"959016\"}},{\"attributeHeader\":{\"labelValue\":\"959018\",\"primaryLabelValue\":\"959018\"}},{\"attributeHeader\":{\"labelValue\":\"959020\",\"primaryLabelValue\":\"959020\"}},{\"attributeHeader\":{\"labelValue\":\"959022\",\"primaryLabelValue\":\"959022\"}},{\"attributeHeader\":{\"labelValue\":\"959024\",\"primaryLabelValue\":\"959024\"}},{\"attributeHeader\":{\"labelValue\":\"959026\",\"primaryLabelValue\":\"959026\"}},{\"attributeHeader\":{\"labelValue\":\"959028\",\"primaryLabelValue\":\"959028\"}},{\"attributeHeader\":{\"labelValue\":\"959030\",\"primaryLabelValue\":\"959030\"}},{\"attributeHeader\":{\"labelValue\":\"959032\",\"primaryLabelValue\":\"959032\"}},{\"attributeHeader\":{\"labelValue\":\"959034\",\"primaryLabelValue\":\"959034\"}},{\"attributeHeader\":{\"labelValue\":\"959036\",\"primaryLabelValue\":\"959036\"}},{\"attributeHeader\":{\"labelValue\":\"959038\",\"primaryLabelValue\":\"959038\"}},{\"attributeHeader\":{\"labelValue\":\"959040\",\"primaryLabelValue\":\"959040\"}},{\"attributeHeader\":{\"labelValue\":\"959042\",\"primaryLabelValue\":\"959042\"}},{\"attributeHeader\":{\"labelValue\":\"959044\",\"primaryLabelValue\":\"959044\"}},{\"attributeHeader\":{\"labelValue\":\"959046\",\"primaryLabelValue\":\"959046\"}},{\"attributeHeader\":{\"labelValue\":\"959048\",\"primaryLabelValue\":\"959048\"}},{\"attributeHeader\":{\"labelValue\":\"959050\",\"primaryLabelValue\":\"959050\"}},{\"attributeHeader\":{\"labelValue\":\"959052\",\"primaryLabelValue\":\"959052\"}},{\"attributeHeader\":{\"labelValue\":\"959054\",\"primaryLabelValue\":\"959054\"}},{\"attributeHeader\":{\"labelValue\":\"959056\",\"primaryLabelValue\":\"959056\"}},{\"attributeHeader\":{\"labelValue\":\"959058\",\"primaryLabelValue\":\"959058\"}},{\"attributeHeader\":{\"labelValue\":\"959060\",\"primaryLabelValue\":\"959060\"}},{\"attributeHeader\":{\"labelValue\":\"959062\",\"primaryLabelValue\":\"959062\"}},{\"attributeHeader\":{\"labelValue\":\"959064\",\"primaryLabelValue\":\"959064\"}},{\"attributeHeader\":{\"labelValue\":\"959066\",\"primaryLabelValue\":\"959066\"}},{\"attributeHeader\":{\"labelValue\":\"959068\",\"primaryLabelValue\":\"959068\"}},{\"attributeHeader\":{\"labelValue\":\"959070\",\"primaryLabelValue\":\"959070\"}},{\"attributeHeader\":{\"labelValue\":\"959072\",\"primaryLabelValue\":\"959072\"}},{\"attributeHeader\":{\"labelValue\":\"959074\",\"primaryLabelValue\":\"959074\"}},{\"attributeHeader\":{\"labelValue\":\"959076\",\"primaryLabelValue\":\"959076\"}},{\"attributeHeader\":{\"labelValue\":\"959078\",\"primaryLabelValue\":\"959078\"}},{\"attributeHeader\":{\"labelValue\":\"959080\",\"primaryLabelValue\":\"959080\"}},{\"attributeHeader\":{\"labelValue\":\"959082\",\"primaryLabelValue\":\"959082\"}},{\"attributeHeader\":{\"labelValue\":\"959084\",\"primaryLabelValue\":\"959084\"}},{\"attributeHeader\":{\"labelValue\":\"959086\",\"primaryLabelValue\":\"959086\"}},{\"attributeHeader\":{\"labelValue\":\"959088\",\"primaryLabelValue\":\"959088\"}},{\"attributeHeader\":{\"labelValue\":\"959090\",\"primaryLabelValue\":\"959090\"}},{\"attributeHeader\":{\"labelValue\":\"959092\",\"primaryLabelValue\":\"959092\"}},{\"attributeHeader\":{\"labelValue\":\"959094\",\"primaryLabelValue\":\"959094\"}},{\"attributeHeader\":{\"labelValue\":\"959096\",\"primaryLabelValue\":\"959096\"}},{\"attributeHeader\":{\"labelValue\":\"959098\",\"primaryLabelValue\":\"959098\"}},{\"attributeHeader\":{\"labelValue\":\"959100\",\"primaryLabelValue\":\"959100\"}},{\"attributeHeader\":{\"labelValue\":\"959102\",\"primaryLabelValue\":\"959102\"}},{\"attributeHeader\":{\"labelValue\":\"959104\",\"primaryLabelValue\":\"959104\"}},{\"attributeHeader\":{\"labelValue\":\"959106\",\"primaryLabelValue\":\"959106\"}},{\"attributeHeader\":{\"labelValue\":\"959108\",\"primaryLabelValue\":\"959108\"}},{\"attributeHeader\":{\"labelValue\":\"959110\",\"primaryLabelValue\":\"959110\"}},{\"attributeHeader\":{\"labelValue\":\"959112\",\"primaryLabelValue\":\"959112\"}},{\"attributeHeader\":{\"labelValue\":\"959114\",\"primaryLabelValue\":\"959114\"}},{\"attributeHeader\":{\"labelValue\":\"959116\",\"primaryLabelValue\":\"959116\"}},{\"attributeHeader\":{\"labelValue\":\"959118\",\"primaryLabelValue\":\"959118\"}},{\"attributeHeader\":{\"labelValue\":\"959120\",\"primaryLabelValue\":\"959120\"}},{\"attributeHeader\":{\"labelValue\":\"959122\",\"primaryLabelValue\":\"959122\"}},{\"attributeHeader\":{\"labelValue\":\"959124\",\"primaryLabelValue\":\"959124\"}},{\"attributeHeader\":{\"labelValue\":\"959126\",\"primaryLabelValue\":\"959126\"}},{\"attributeHeader\":{\"labelValue\":\"959128\",\"primaryLabelValue\":\"959128\"}},{\"attributeHeader\":{\"labelValue\":\"959130\",\"primaryLabelValue\":\"959130\"}},{\"attributeHeader\":{\"labelValue\":\"959132\",\"primaryLabelValue\":\"959132\"}},{\"attributeHeader\":{\"labelValue\":\"959134\",\"primaryLabelValue\":\"959134\"}},{\"attributeHeader\":{\"labelValue\":\"959136\",\"primaryLabelValue\":\"959136\"}},{\"attributeHeader\":{\"labelValue\":\"959138\",\"primaryLabelValue\":\"959138\"}},{\"attributeHeader\":{\"labelValue\":\"959140\",\"primaryLabelValue\":\"959140\"}},{\"attributeHeader\":{\"labelValue\":\"959142\",\"primaryLabelValue\":\"959142\"}},{\"attributeHeader\":{\"labelValue\":\"959144\",\"primaryLabelValue\":\"959144\"}},{\"attributeHeader\":{\"labelValue\":\"959146\",\"primaryLabelValue\":\"959146\"}},{\"attributeHeader\":{\"labelValue\":\"959148\",\"primaryLabelValue\":\"959148\"}},{\"attributeHeader\":{\"labelValue\":\"959150\",\"primaryLabelValue\":\"959150\"}},{\"attributeHeader\":{\"labelValue\":\"959152\",\"primaryLabelValue\":\"959152\"}},{\"attributeHeader\":{\"labelValue\":\"959154\",\"primaryLabelValue\":\"959154\"}},{\"attributeHeader\":{\"labelValue\":\"959156\",\"primaryLabelValue\":\"959156\"}},{\"attributeHeader\":{\"labelValue\":\"959158\",\"primaryLabelValue\":\"959158\"}},{\"attributeHeader\":{\"labelValue\":\"959160\",\"primaryLabelValue\":\"959160\"}},{\"attributeHeader\":{\"labelValue\":\"959162\",\"primaryLabelValue\":\"959162\"}},{\"attributeHeader\":{\"labelValue\":\"959164\",\"primaryLabelValue\":\"959164\"}},{\"attributeHeader\":{\"labelValue\":\"959166\",\"primaryLabelValue\":\"959166\"}},{\"attributeHeader\":{\"labelValue\":\"959168\",\"primaryLabelValue\":\"959168\"}},{\"attributeHeader\":{\"labelValue\":\"959170\",\"primaryLabelValue\":\"959170\"}},{\"attributeHeader\":{\"labelValue\":\"959172\",\"primaryLabelValue\":\"959172\"}},{\"attributeHeader\":{\"labelValue\":\"959174\",\"primaryLabelValue\":\"959174\"}},{\"attributeHeader\":{\"labelValue\":\"959176\",\"primaryLabelValue\":\"959176\"}},{\"attributeHeader\":{\"labelValue\":\"959178\",\"primaryLabelValue\":\"959178\"}},{\"attributeHeader\":{\"labelValue\":\"959180\",\"primaryLabelValue\":\"959180\"}},{\"attributeHeader\":{\"labelValue\":\"959182\",\"primaryLabelValue\":\"959182\"}},{\"attributeHeader\":{\"labelValue\":\"959184\",\"primaryLabelValue\":\"959184\"}},{\"attributeHeader\":{\"labelValue\":\"959186\",\"primaryLabelValue\":\"959186\"}},{\"attributeHeader\":{\"labelValue\":\"959188\",\"primaryLabelValue\":\"959188\"}},{\"attributeHeader\":{\"labelValue\":\"959190\",\"primaryLabelValue\":\"959190\"}},{\"attributeHeader\":{\"labelValue\":\"959192\",\"primaryLabelValue\":\"959192\"}},{\"attributeHeader\":{\"labelValue\":\"959194\",\"primaryLabelValue\":\"959194\"}},{\"attributeHeader\":{\"labelValue\":\"959196\",\"primaryLabelValue\":\"959196\"}},{\"attributeHeader\":{\"labelValue\":\"959198\",\"primaryLabelValue\":\"959198\"}},{\"attributeHeader\":{\"labelValue\":\"959200\",\"primaryLabelValue\":\"959200\"}},{\"attributeHeader\":{\"labelValue\":\"959202\",\"primaryLabelValue\":\"959202\"}},{\"attributeHeader\":{\"labelValue\":\"959204\",\"primaryLabelValue\":\"959204\"}},{\"attributeHeader\":{\"labelValue\":\"959206\",\"primaryLabelValue\":\"959206\"}},{\"attributeHeader\":{\"labelValue\":\"959208\",\"primaryLabelValue\":\"959208\"}},{\"attributeHeader\":{\"labelValue\":\"959210\",\"primaryLabelValue\":\"959210\"}},{\"attributeHeader\":{\"labelValue\":\"959212\",\"primaryLabelValue\":\"959212\"}},{\"attributeHeader\":{\"labelValue\":\"959214\",\"primaryLabelValue\":\"959214\"}},{\"attributeHeader\":{\"labelValue\":\"959216\",\"primaryLabelValue\":\"959216\"}},{\"attributeHeader\":{\"labelValue\":\"959218\",\"primaryLabelValue\":\"959218\"}},{\"attributeHeader\":{\"labelValue\":\"959220\",\"primaryLabelValue\":\"959220\"}},{\"attributeHeader\":{\"labelValue\":\"959222\",\"primaryLabelValue\":\"959222\"}},{\"attributeHeader\":{\"labelValue\":\"959224\",\"primaryLabelValue\":\"959224\"}},{\"attributeHeader\":{\"labelValue\":\"959226\",\"primaryLabelValue\":\"959226\"}},{\"attributeHeader\":{\"labelValue\":\"959228\",\"primaryLabelValue\":\"959228\"}},{\"attributeHeader\":{\"labelValue\":\"959230\",\"primaryLabelValue\":\"959230\"}},{\"attributeHeader\":{\"labelValue\":\"959232\",\"primaryLabelValue\":\"959232\"}},{\"attributeHeader\":{\"labelValue\":\"959234\",\"primaryLabelValue\":\"959234\"}},{\"attributeHeader\":{\"labelValue\":\"959236\",\"primaryLabelValue\":\"959236\"}},{\"attributeHeader\":{\"labelValue\":\"959238\",\"primaryLabelValue\":\"959238\"}},{\"attributeHeader\":{\"labelValue\":\"959239\",\"primaryLabelValue\":\"959239\"}},{\"attributeHeader\":{\"labelValue\":\"959241\",\"primaryLabelValue\":\"959241\"}},{\"attributeHeader\":{\"labelValue\":\"959243\",\"primaryLabelValue\":\"959243\"}},{\"attributeHeader\":{\"labelValue\":\"959245\",\"primaryLabelValue\":\"959245\"}},{\"attributeHeader\":{\"labelValue\":\"959247\",\"primaryLabelValue\":\"959247\"}},{\"attributeHeader\":{\"labelValue\":\"959249\",\"primaryLabelValue\":\"959249\"}},{\"attributeHeader\":{\"labelValue\":\"959251\",\"primaryLabelValue\":\"959251\"}},{\"attributeHeader\":{\"labelValue\":\"959253\",\"primaryLabelValue\":\"959253\"}},{\"attributeHeader\":{\"labelValue\":\"959255\",\"primaryLabelValue\":\"959255\"}},{\"attributeHeader\":{\"labelValue\":\"959257\",\"primaryLabelValue\":\"959257\"}},{\"attributeHeader\":{\"labelValue\":\"959259\",\"primaryLabelValue\":\"959259\"}},{\"attributeHeader\":{\"labelValue\":\"959261\",\"primaryLabelValue\":\"959261\"}},{\"attributeHeader\":{\"labelValue\":\"959263\",\"primaryLabelValue\":\"959263\"}},{\"attributeHeader\":{\"labelValue\":\"959265\",\"primaryLabelValue\":\"959265\"}},{\"attributeHeader\":{\"labelValue\":\"959267\",\"primaryLabelValue\":\"959267\"}},{\"attributeHeader\":{\"labelValue\":\"959269\",\"primaryLabelValue\":\"959269\"}},{\"attributeHeader\":{\"labelValue\":\"959271\",\"primaryLabelValue\":\"959271\"}},{\"attributeHeader\":{\"labelValue\":\"959275\",\"primaryLabelValue\":\"959275\"}},{\"attributeHeader\":{\"labelValue\":\"959277\",\"primaryLabelValue\":\"959277\"}},{\"attributeHeader\":{\"labelValue\":\"959279\",\"primaryLabelValue\":\"959279\"}},{\"attributeHeader\":{\"labelValue\":\"959281\",\"primaryLabelValue\":\"959281\"}},{\"attributeHeader\":{\"labelValue\":\"959283\",\"primaryLabelValue\":\"959283\"}},{\"attributeHeader\":{\"labelValue\":\"959285\",\"primaryLabelValue\":\"959285\"}},{\"attributeHeader\":{\"labelValue\":\"959287\",\"primaryLabelValue\":\"959287\"}},{\"attributeHeader\":{\"labelValue\":\"959289\",\"primaryLabelValue\":\"959289\"}},{\"attributeHeader\":{\"labelValue\":\"959291\",\"primaryLabelValue\":\"959291\"}},{\"attributeHeader\":{\"labelValue\":\"959293\",\"primaryLabelValue\":\"959293\"}},{\"attributeHeader\":{\"labelValue\":\"959295\",\"primaryLabelValue\":\"959295\"}},{\"attributeHeader\":{\"labelValue\":\"959297\",\"primaryLabelValue\":\"959297\"}},{\"attributeHeader\":{\"labelValue\":\"959299\",\"primaryLabelValue\":\"959299\"}},{\"attributeHeader\":{\"labelValue\":\"959301\",\"primaryLabelValue\":\"959301\"}},{\"attributeHeader\":{\"labelValue\":\"959303\",\"primaryLabelValue\":\"959303\"}},{\"attributeHeader\":{\"labelValue\":\"959305\",\"primaryLabelValue\":\"959305\"}},{\"attributeHeader\":{\"labelValue\":\"959307\",\"primaryLabelValue\":\"959307\"}},{\"attributeHeader\":{\"labelValue\":\"959309\",\"primaryLabelValue\":\"959309\"}},{\"attributeHeader\":{\"labelValue\":\"959311\",\"primaryLabelValue\":\"959311\"}},{\"attributeHeader\":{\"labelValue\":\"959313\",\"primaryLabelValue\":\"959313\"}},{\"attributeHeader\":{\"labelValue\":\"959315\",\"primaryLabelValue\":\"959315\"}},{\"attributeHeader\":{\"labelValue\":\"959317\",\"primaryLabelValue\":\"959317\"}},{\"attributeHeader\":{\"labelValue\":\"959319\",\"primaryLabelValue\":\"959319\"}},{\"attributeHeader\":{\"labelValue\":\"959321\",\"primaryLabelValue\":\"959321\"}},{\"attributeHeader\":{\"labelValue\":\"959323\",\"primaryLabelValue\":\"959323\"}},{\"attributeHeader\":{\"labelValue\":\"959325\",\"primaryLabelValue\":\"959325\"}},{\"attributeHeader\":{\"labelValue\":\"959327\",\"primaryLabelValue\":\"959327\"}},{\"attributeHeader\":{\"labelValue\":\"959329\",\"primaryLabelValue\":\"959329\"}},{\"attributeHeader\":{\"labelValue\":\"959331\",\"primaryLabelValue\":\"959331\"}},{\"attributeHeader\":{\"labelValue\":\"959333\",\"primaryLabelValue\":\"959333\"}},{\"attributeHeader\":{\"labelValue\":\"959335\",\"primaryLabelValue\":\"959335\"}},{\"attributeHeader\":{\"labelValue\":\"959337\",\"primaryLabelValue\":\"959337\"}},{\"attributeHeader\":{\"labelValue\":\"959339\",\"primaryLabelValue\":\"959339\"}},{\"attributeHeader\":{\"labelValue\":\"959341\",\"primaryLabelValue\":\"959341\"}},{\"attributeHeader\":{\"labelValue\":\"959343\",\"primaryLabelValue\":\"959343\"}},{\"attributeHeader\":{\"labelValue\":\"959345\",\"primaryLabelValue\":\"959345\"}},{\"attributeHeader\":{\"labelValue\":\"959347\",\"primaryLabelValue\":\"959347\"}},{\"attributeHeader\":{\"labelValue\":\"959349\",\"primaryLabelValue\":\"959349\"}},{\"attributeHeader\":{\"labelValue\":\"959351\",\"primaryLabelValue\":\"959351\"}},{\"attributeHeader\":{\"labelValue\":\"959353\",\"primaryLabelValue\":\"959353\"}},{\"attributeHeader\":{\"labelValue\":\"959355\",\"primaryLabelValue\":\"959355\"}},{\"attributeHeader\":{\"labelValue\":\"959357\",\"primaryLabelValue\":\"959357\"}},{\"attributeHeader\":{\"labelValue\":\"959359\",\"primaryLabelValue\":\"959359\"}},{\"attributeHeader\":{\"labelValue\":\"959361\",\"primaryLabelValue\":\"959361\"}},{\"attributeHeader\":{\"labelValue\":\"959363\",\"primaryLabelValue\":\"959363\"}},{\"attributeHeader\":{\"labelValue\":\"959365\",\"primaryLabelValue\":\"959365\"}},{\"attributeHeader\":{\"labelValue\":\"959367\",\"primaryLabelValue\":\"959367\"}},{\"attributeHeader\":{\"labelValue\":\"959369\",\"primaryLabelValue\":\"959369\"}},{\"attributeHeader\":{\"labelValue\":\"959371\",\"primaryLabelValue\":\"959371\"}},{\"attributeHeader\":{\"labelValue\":\"959373\",\"primaryLabelValue\":\"959373\"}},{\"attributeHeader\":{\"labelValue\":\"959375\",\"primaryLabelValue\":\"959375\"}},{\"attributeHeader\":{\"labelValue\":\"959377\",\"primaryLabelValue\":\"959377\"}},{\"attributeHeader\":{\"labelValue\":\"959379\",\"primaryLabelValue\":\"959379\"}},{\"attributeHeader\":{\"labelValue\":\"959381\",\"primaryLabelValue\":\"959381\"}},{\"attributeHeader\":{\"labelValue\":\"959383\",\"primaryLabelValue\":\"959383\"}},{\"attributeHeader\":{\"labelValue\":\"959385\",\"primaryLabelValue\":\"959385\"}},{\"attributeHeader\":{\"labelValue\":\"959387\",\"primaryLabelValue\":\"959387\"}},{\"attributeHeader\":{\"labelValue\":\"959389\",\"primaryLabelValue\":\"959389\"}},{\"attributeHeader\":{\"labelValue\":\"959391\",\"primaryLabelValue\":\"959391\"}},{\"attributeHeader\":{\"labelValue\":\"959393\",\"primaryLabelValue\":\"959393\"}},{\"attributeHeader\":{\"labelValue\":\"959395\",\"primaryLabelValue\":\"959395\"}},{\"attributeHeader\":{\"labelValue\":\"959397\",\"primaryLabelValue\":\"959397\"}},{\"attributeHeader\":{\"labelValue\":\"959399\",\"primaryLabelValue\":\"959399\"}},{\"attributeHeader\":{\"labelValue\":\"959401\",\"primaryLabelValue\":\"959401\"}},{\"attributeHeader\":{\"labelValue\":\"959403\",\"primaryLabelValue\":\"959403\"}},{\"attributeHeader\":{\"labelValue\":\"959405\",\"primaryLabelValue\":\"959405\"}},{\"attributeHeader\":{\"labelValue\":\"959407\",\"primaryLabelValue\":\"959407\"}},{\"attributeHeader\":{\"labelValue\":\"959409\",\"primaryLabelValue\":\"959409\"}},{\"attributeHeader\":{\"labelValue\":\"959411\",\"primaryLabelValue\":\"959411\"}},{\"attributeHeader\":{\"labelValue\":\"959413\",\"primaryLabelValue\":\"959413\"}},{\"attributeHeader\":{\"labelValue\":\"959415\",\"primaryLabelValue\":\"959415\"}},{\"attributeHeader\":{\"labelValue\":\"959417\",\"primaryLabelValue\":\"959417\"}},{\"attributeHeader\":{\"labelValue\":\"959419\",\"primaryLabelValue\":\"959419\"}},{\"attributeHeader\":{\"labelValue\":\"959421\",\"primaryLabelValue\":\"959421\"}},{\"attributeHeader\":{\"labelValue\":\"959423\",\"primaryLabelValue\":\"959423\"}},{\"attributeHeader\":{\"labelValue\":\"959425\",\"primaryLabelValue\":\"959425\"}},{\"attributeHeader\":{\"labelValue\":\"959427\",\"primaryLabelValue\":\"959427\"}},{\"attributeHeader\":{\"labelValue\":\"959429\",\"primaryLabelValue\":\"959429\"}},{\"attributeHeader\":{\"labelValue\":\"959431\",\"primaryLabelValue\":\"959431\"}},{\"attributeHeader\":{\"labelValue\":\"959433\",\"primaryLabelValue\":\"959433\"}},{\"attributeHeader\":{\"labelValue\":\"959435\",\"primaryLabelValue\":\"959435\"}},{\"attributeHeader\":{\"labelValue\":\"959437\",\"primaryLabelValue\":\"959437\"}},{\"attributeHeader\":{\"labelValue\":\"959439\",\"primaryLabelValue\":\"959439\"}},{\"attributeHeader\":{\"labelValue\":\"959441\",\"primaryLabelValue\":\"959441\"}},{\"attributeHeader\":{\"labelValue\":\"959443\",\"primaryLabelValue\":\"959443\"}},{\"attributeHeader\":{\"labelValue\":\"959445\",\"primaryLabelValue\":\"959445\"}},{\"attributeHeader\":{\"labelValue\":\"959447\",\"primaryLabelValue\":\"959447\"}},{\"attributeHeader\":{\"labelValue\":\"959449\",\"primaryLabelValue\":\"959449\"}},{\"attributeHeader\":{\"labelValue\":\"959451\",\"primaryLabelValue\":\"959451\"}},{\"attributeHeader\":{\"labelValue\":\"959453\",\"primaryLabelValue\":\"959453\"}},{\"attributeHeader\":{\"labelValue\":\"959455\",\"primaryLabelValue\":\"959455\"}},{\"attributeHeader\":{\"labelValue\":\"959457\",\"primaryLabelValue\":\"959457\"}},{\"attributeHeader\":{\"labelValue\":\"959459\",\"primaryLabelValue\":\"959459\"}},{\"attributeHeader\":{\"labelValue\":\"959461\",\"primaryLabelValue\":\"959461\"}},{\"attributeHeader\":{\"labelValue\":\"959463\",\"primaryLabelValue\":\"959463\"}},{\"attributeHeader\":{\"labelValue\":\"959465\",\"primaryLabelValue\":\"959465\"}},{\"attributeHeader\":{\"labelValue\":\"959467\",\"primaryLabelValue\":\"959467\"}},{\"attributeHeader\":{\"labelValue\":\"959469\",\"primaryLabelValue\":\"959469\"}},{\"attributeHeader\":{\"labelValue\":\"959471\",\"primaryLabelValue\":\"959471\"}},{\"attributeHeader\":{\"labelValue\":\"959473\",\"primaryLabelValue\":\"959473\"}},{\"attributeHeader\":{\"labelValue\":\"959475\",\"primaryLabelValue\":\"959475\"}},{\"attributeHeader\":{\"labelValue\":\"959477\",\"primaryLabelValue\":\"959477\"}},{\"attributeHeader\":{\"labelValue\":\"959479\",\"primaryLabelValue\":\"959479\"}},{\"attributeHeader\":{\"labelValue\":\"959481\",\"primaryLabelValue\":\"959481\"}},{\"attributeHeader\":{\"labelValue\":\"959485\",\"primaryLabelValue\":\"959485\"}},{\"attributeHeader\":{\"labelValue\":\"959487\",\"primaryLabelValue\":\"959487\"}},{\"attributeHeader\":{\"labelValue\":\"959489\",\"primaryLabelValue\":\"959489\"}},{\"attributeHeader\":{\"labelValue\":\"959491\",\"primaryLabelValue\":\"959491\"}},{\"attributeHeader\":{\"labelValue\":\"959493\",\"primaryLabelValue\":\"959493\"}},{\"attributeHeader\":{\"labelValue\":\"959495\",\"primaryLabelValue\":\"959495\"}},{\"attributeHeader\":{\"labelValue\":\"959497\",\"primaryLabelValue\":\"959497\"}},{\"attributeHeader\":{\"labelValue\":\"959499\",\"primaryLabelValue\":\"959499\"}},{\"attributeHeader\":{\"labelValue\":\"959501\",\"primaryLabelValue\":\"959501\"}},{\"attributeHeader\":{\"labelValue\":\"959503\",\"primaryLabelValue\":\"959503\"}},{\"attributeHeader\":{\"labelValue\":\"959505\",\"primaryLabelValue\":\"959505\"}},{\"attributeHeader\":{\"labelValue\":\"959507\",\"primaryLabelValue\":\"959507\"}},{\"attributeHeader\":{\"labelValue\":\"959509\",\"primaryLabelValue\":\"959509\"}},{\"attributeHeader\":{\"labelValue\":\"959511\",\"primaryLabelValue\":\"959511\"}},{\"attributeHeader\":{\"labelValue\":\"959513\",\"primaryLabelValue\":\"959513\"}},{\"attributeHeader\":{\"labelValue\":\"959515\",\"primaryLabelValue\":\"959515\"}},{\"attributeHeader\":{\"labelValue\":\"959517\",\"primaryLabelValue\":\"959517\"}},{\"attributeHeader\":{\"labelValue\":\"959519\",\"primaryLabelValue\":\"959519\"}},{\"attributeHeader\":{\"labelValue\":\"959521\",\"primaryLabelValue\":\"959521\"}},{\"attributeHeader\":{\"labelValue\":\"959523\",\"primaryLabelValue\":\"959523\"}},{\"attributeHeader\":{\"labelValue\":\"959525\",\"primaryLabelValue\":\"959525\"}},{\"attributeHeader\":{\"labelValue\":\"959527\",\"primaryLabelValue\":\"959527\"}},{\"attributeHeader\":{\"labelValue\":\"959531\",\"primaryLabelValue\":\"959531\"}},{\"attributeHeader\":{\"labelValue\":\"959533\",\"primaryLabelValue\":\"959533\"}},{\"attributeHeader\":{\"labelValue\":\"959535\",\"primaryLabelValue\":\"959535\"}},{\"attributeHeader\":{\"labelValue\":\"959537\",\"primaryLabelValue\":\"959537\"}},{\"attributeHeader\":{\"labelValue\":\"959539\",\"primaryLabelValue\":\"959539\"}},{\"attributeHeader\":{\"labelValue\":\"959541\",\"primaryLabelValue\":\"959541\"}},{\"attributeHeader\":{\"labelValue\":\"959543\",\"primaryLabelValue\":\"959543\"}},{\"attributeHeader\":{\"labelValue\":\"959545\",\"primaryLabelValue\":\"959545\"}},{\"attributeHeader\":{\"labelValue\":\"959547\",\"primaryLabelValue\":\"959547\"}},{\"attributeHeader\":{\"labelValue\":\"959549\",\"primaryLabelValue\":\"959549\"}},{\"attributeHeader\":{\"labelValue\":\"959551\",\"primaryLabelValue\":\"959551\"}},{\"attributeHeader\":{\"labelValue\":\"959553\",\"primaryLabelValue\":\"959553\"}},{\"attributeHeader\":{\"labelValue\":\"959555\",\"primaryLabelValue\":\"959555\"}},{\"attributeHeader\":{\"labelValue\":\"959557\",\"primaryLabelValue\":\"959557\"}},{\"attributeHeader\":{\"labelValue\":\"959559\",\"primaryLabelValue\":\"959559\"}},{\"attributeHeader\":{\"labelValue\":\"959561\",\"primaryLabelValue\":\"959561\"}},{\"attributeHeader\":{\"labelValue\":\"959563\",\"primaryLabelValue\":\"959563\"}},{\"attributeHeader\":{\"labelValue\":\"959565\",\"primaryLabelValue\":\"959565\"}},{\"attributeHeader\":{\"labelValue\":\"959567\",\"primaryLabelValue\":\"959567\"}},{\"attributeHeader\":{\"labelValue\":\"959569\",\"primaryLabelValue\":\"959569\"}},{\"attributeHeader\":{\"labelValue\":\"959571\",\"primaryLabelValue\":\"959571\"}},{\"attributeHeader\":{\"labelValue\":\"959573\",\"primaryLabelValue\":\"959573\"}},{\"attributeHeader\":{\"labelValue\":\"959575\",\"primaryLabelValue\":\"959575\"}},{\"attributeHeader\":{\"labelValue\":\"959577\",\"primaryLabelValue\":\"959577\"}},{\"attributeHeader\":{\"labelValue\":\"959579\",\"primaryLabelValue\":\"959579\"}},{\"attributeHeader\":{\"labelValue\":\"959581\",\"primaryLabelValue\":\"959581\"}},{\"attributeHeader\":{\"labelValue\":\"959583\",\"primaryLabelValue\":\"959583\"}},{\"attributeHeader\":{\"labelValue\":\"959585\",\"primaryLabelValue\":\"959585\"}},{\"attributeHeader\":{\"labelValue\":\"959587\",\"primaryLabelValue\":\"959587\"}},{\"attributeHeader\":{\"labelValue\":\"959589\",\"primaryLabelValue\":\"959589\"}},{\"attributeHeader\":{\"labelValue\":\"959591\",\"primaryLabelValue\":\"959591\"}},{\"attributeHeader\":{\"labelValue\":\"959593\",\"primaryLabelValue\":\"959593\"}},{\"attributeHeader\":{\"labelValue\":\"959595\",\"primaryLabelValue\":\"959595\"}},{\"attributeHeader\":{\"labelValue\":\"959597\",\"primaryLabelValue\":\"959597\"}},{\"attributeHeader\":{\"labelValue\":\"959599\",\"primaryLabelValue\":\"959599\"}},{\"attributeHeader\":{\"labelValue\":\"959601\",\"primaryLabelValue\":\"959601\"}},{\"attributeHeader\":{\"labelValue\":\"959603\",\"primaryLabelValue\":\"959603\"}},{\"attributeHeader\":{\"labelValue\":\"959605\",\"primaryLabelValue\":\"959605\"}},{\"attributeHeader\":{\"labelValue\":\"959607\",\"primaryLabelValue\":\"959607\"}},{\"attributeHeader\":{\"labelValue\":\"959609\",\"primaryLabelValue\":\"959609\"}},{\"attributeHeader\":{\"labelValue\":\"959611\",\"primaryLabelValue\":\"959611\"}},{\"attributeHeader\":{\"labelValue\":\"959613\",\"primaryLabelValue\":\"959613\"}},{\"attributeHeader\":{\"labelValue\":\"959615\",\"primaryLabelValue\":\"959615\"}},{\"attributeHeader\":{\"labelValue\":\"959617\",\"primaryLabelValue\":\"959617\"}},{\"attributeHeader\":{\"labelValue\":\"959619\",\"primaryLabelValue\":\"959619\"}},{\"attributeHeader\":{\"labelValue\":\"959621\",\"primaryLabelValue\":\"959621\"}},{\"attributeHeader\":{\"labelValue\":\"959623\",\"primaryLabelValue\":\"959623\"}},{\"attributeHeader\":{\"labelValue\":\"959625\",\"primaryLabelValue\":\"959625\"}},{\"attributeHeader\":{\"labelValue\":\"959627\",\"primaryLabelValue\":\"959627\"}},{\"attributeHeader\":{\"labelValue\":\"959629\",\"primaryLabelValue\":\"959629\"}},{\"attributeHeader\":{\"labelValue\":\"959631\",\"primaryLabelValue\":\"959631\"}},{\"attributeHeader\":{\"labelValue\":\"959633\",\"primaryLabelValue\":\"959633\"}},{\"attributeHeader\":{\"labelValue\":\"959635\",\"primaryLabelValue\":\"959635\"}},{\"attributeHeader\":{\"labelValue\":\"959637\",\"primaryLabelValue\":\"959637\"}},{\"attributeHeader\":{\"labelValue\":\"959639\",\"primaryLabelValue\":\"959639\"}},{\"attributeHeader\":{\"labelValue\":\"959641\",\"primaryLabelValue\":\"959641\"}},{\"attributeHeader\":{\"labelValue\":\"959643\",\"primaryLabelValue\":\"959643\"}},{\"attributeHeader\":{\"labelValue\":\"959645\",\"primaryLabelValue\":\"959645\"}},{\"attributeHeader\":{\"labelValue\":\"959647\",\"primaryLabelValue\":\"959647\"}},{\"attributeHeader\":{\"labelValue\":\"959649\",\"primaryLabelValue\":\"959649\"}},{\"attributeHeader\":{\"labelValue\":\"959651\",\"primaryLabelValue\":\"959651\"}},{\"attributeHeader\":{\"labelValue\":\"959653\",\"primaryLabelValue\":\"959653\"}},{\"attributeHeader\":{\"labelValue\":\"959655\",\"primaryLabelValue\":\"959655\"}},{\"attributeHeader\":{\"labelValue\":\"959657\",\"primaryLabelValue\":\"959657\"}},{\"attributeHeader\":{\"labelValue\":\"959659\",\"primaryLabelValue\":\"959659\"}},{\"attributeHeader\":{\"labelValue\":\"959661\",\"primaryLabelValue\":\"959661\"}},{\"attributeHeader\":{\"labelValue\":\"959663\",\"primaryLabelValue\":\"959663\"}},{\"attributeHeader\":{\"labelValue\":\"959665\",\"primaryLabelValue\":\"959665\"}},{\"attributeHeader\":{\"labelValue\":\"959667\",\"primaryLabelValue\":\"959667\"}},{\"attributeHeader\":{\"labelValue\":\"959671\",\"primaryLabelValue\":\"959671\"}},{\"attributeHeader\":{\"labelValue\":\"959673\",\"primaryLabelValue\":\"959673\"}},{\"attributeHeader\":{\"labelValue\":\"959675\",\"primaryLabelValue\":\"959675\"}},{\"attributeHeader\":{\"labelValue\":\"959677\",\"primaryLabelValue\":\"959677\"}},{\"attributeHeader\":{\"labelValue\":\"959679\",\"primaryLabelValue\":\"959679\"}},{\"attributeHeader\":{\"labelValue\":\"959681\",\"primaryLabelValue\":\"959681\"}},{\"attributeHeader\":{\"labelValue\":\"959683\",\"primaryLabelValue\":\"959683\"}},{\"attributeHeader\":{\"labelValue\":\"959685\",\"primaryLabelValue\":\"959685\"}},{\"attributeHeader\":{\"labelValue\":\"959687\",\"primaryLabelValue\":\"959687\"}},{\"attributeHeader\":{\"labelValue\":\"959689\",\"primaryLabelValue\":\"959689\"}},{\"attributeHeader\":{\"labelValue\":\"959691\",\"primaryLabelValue\":\"959691\"}},{\"attributeHeader\":{\"labelValue\":\"959693\",\"primaryLabelValue\":\"959693\"}},{\"attributeHeader\":{\"labelValue\":\"959695\",\"primaryLabelValue\":\"959695\"}},{\"attributeHeader\":{\"labelValue\":\"959697\",\"primaryLabelValue\":\"959697\"}},{\"attributeHeader\":{\"labelValue\":\"959699\",\"primaryLabelValue\":\"959699\"}},{\"attributeHeader\":{\"labelValue\":\"959701\",\"primaryLabelValue\":\"959701\"}},{\"attributeHeader\":{\"labelValue\":\"959703\",\"primaryLabelValue\":\"959703\"}},{\"attributeHeader\":{\"labelValue\":\"959705\",\"primaryLabelValue\":\"959705\"}},{\"attributeHeader\":{\"labelValue\":\"959707\",\"primaryLabelValue\":\"959707\"}},{\"attributeHeader\":{\"labelValue\":\"959709\",\"primaryLabelValue\":\"959709\"}},{\"attributeHeader\":{\"labelValue\":\"959711\",\"primaryLabelValue\":\"959711\"}},{\"attributeHeader\":{\"labelValue\":\"959713\",\"primaryLabelValue\":\"959713\"}},{\"attributeHeader\":{\"labelValue\":\"959715\",\"primaryLabelValue\":\"959715\"}},{\"attributeHeader\":{\"labelValue\":\"959717\",\"primaryLabelValue\":\"959717\"}},{\"attributeHeader\":{\"labelValue\":\"959719\",\"primaryLabelValue\":\"959719\"}},{\"attributeHeader\":{\"labelValue\":\"959721\",\"primaryLabelValue\":\"959721\"}},{\"attributeHeader\":{\"labelValue\":\"959723\",\"primaryLabelValue\":\"959723\"}},{\"attributeHeader\":{\"labelValue\":\"959725\",\"primaryLabelValue\":\"959725\"}},{\"attributeHeader\":{\"labelValue\":\"959727\",\"primaryLabelValue\":\"959727\"}},{\"attributeHeader\":{\"labelValue\":\"959729\",\"primaryLabelValue\":\"959729\"}},{\"attributeHeader\":{\"labelValue\":\"959731\",\"primaryLabelValue\":\"959731\"}},{\"attributeHeader\":{\"labelValue\":\"959733\",\"primaryLabelValue\":\"959733\"}},{\"attributeHeader\":{\"labelValue\":\"959735\",\"primaryLabelValue\":\"959735\"}},{\"attributeHeader\":{\"labelValue\":\"959737\",\"primaryLabelValue\":\"959737\"}},{\"attributeHeader\":{\"labelValue\":\"959739\",\"primaryLabelValue\":\"959739\"}},{\"attributeHeader\":{\"labelValue\":\"959741\",\"primaryLabelValue\":\"959741\"}},{\"attributeHeader\":{\"labelValue\":\"959743\",\"primaryLabelValue\":\"959743\"}},{\"attributeHeader\":{\"labelValue\":\"959745\",\"primaryLabelValue\":\"959745\"}},{\"attributeHeader\":{\"labelValue\":\"959747\",\"primaryLabelValue\":\"959747\"}},{\"attributeHeader\":{\"labelValue\":\"959749\",\"primaryLabelValue\":\"959749\"}},{\"attributeHeader\":{\"labelValue\":\"959751\",\"primaryLabelValue\":\"959751\"}},{\"attributeHeader\":{\"labelValue\":\"959753\",\"primaryLabelValue\":\"959753\"}},{\"attributeHeader\":{\"labelValue\":\"959755\",\"primaryLabelValue\":\"959755\"}},{\"attributeHeader\":{\"labelValue\":\"959757\",\"primaryLabelValue\":\"959757\"}},{\"attributeHeader\":{\"labelValue\":\"959759\",\"primaryLabelValue\":\"959759\"}},{\"attributeHeader\":{\"labelValue\":\"959761\",\"primaryLabelValue\":\"959761\"}},{\"attributeHeader\":{\"labelValue\":\"959763\",\"primaryLabelValue\":\"959763\"}},{\"attributeHeader\":{\"labelValue\":\"959765\",\"primaryLabelValue\":\"959765\"}},{\"attributeHeader\":{\"labelValue\":\"959767\",\"primaryLabelValue\":\"959767\"}},{\"attributeHeader\":{\"labelValue\":\"959769\",\"primaryLabelValue\":\"959769\"}},{\"attributeHeader\":{\"labelValue\":\"959771\",\"primaryLabelValue\":\"959771\"}},{\"attributeHeader\":{\"labelValue\":\"959773\",\"primaryLabelValue\":\"959773\"}},{\"attributeHeader\":{\"labelValue\":\"959775\",\"primaryLabelValue\":\"959775\"}},{\"attributeHeader\":{\"labelValue\":\"959777\",\"primaryLabelValue\":\"959777\"}},{\"attributeHeader\":{\"labelValue\":\"959779\",\"primaryLabelValue\":\"959779\"}},{\"attributeHeader\":{\"labelValue\":\"959781\",\"primaryLabelValue\":\"959781\"}},{\"attributeHeader\":{\"labelValue\":\"959783\",\"primaryLabelValue\":\"959783\"}},{\"attributeHeader\":{\"labelValue\":\"959785\",\"primaryLabelValue\":\"959785\"}},{\"attributeHeader\":{\"labelValue\":\"959787\",\"primaryLabelValue\":\"959787\"}},{\"attributeHeader\":{\"labelValue\":\"959789\",\"primaryLabelValue\":\"959789\"}},{\"attributeHeader\":{\"labelValue\":\"959791\",\"primaryLabelValue\":\"959791\"}},{\"attributeHeader\":{\"labelValue\":\"959795\",\"primaryLabelValue\":\"959795\"}},{\"attributeHeader\":{\"labelValue\":\"959797\",\"primaryLabelValue\":\"959797\"}},{\"attributeHeader\":{\"labelValue\":\"959799\",\"primaryLabelValue\":\"959799\"}},{\"attributeHeader\":{\"labelValue\":\"959801\",\"primaryLabelValue\":\"959801\"}},{\"attributeHeader\":{\"labelValue\":\"959803\",\"primaryLabelValue\":\"959803\"}},{\"attributeHeader\":{\"labelValue\":\"959805\",\"primaryLabelValue\":\"959805\"}},{\"attributeHeader\":{\"labelValue\":\"959807\",\"primaryLabelValue\":\"959807\"}},{\"attributeHeader\":{\"labelValue\":\"959809\",\"primaryLabelValue\":\"959809\"}},{\"attributeHeader\":{\"labelValue\":\"959811\",\"primaryLabelValue\":\"959811\"}},{\"attributeHeader\":{\"labelValue\":\"959813\",\"primaryLabelValue\":\"959813\"}},{\"attributeHeader\":{\"labelValue\":\"959815\",\"primaryLabelValue\":\"959815\"}},{\"attributeHeader\":{\"labelValue\":\"959817\",\"primaryLabelValue\":\"959817\"}},{\"attributeHeader\":{\"labelValue\":\"959819\",\"primaryLabelValue\":\"959819\"}},{\"attributeHeader\":{\"labelValue\":\"959821\",\"primaryLabelValue\":\"959821\"}},{\"attributeHeader\":{\"labelValue\":\"959823\",\"primaryLabelValue\":\"959823\"}},{\"attributeHeader\":{\"labelValue\":\"959825\",\"primaryLabelValue\":\"959825\"}},{\"attributeHeader\":{\"labelValue\":\"959827\",\"primaryLabelValue\":\"959827\"}},{\"attributeHeader\":{\"labelValue\":\"959829\",\"primaryLabelValue\":\"959829\"}},{\"attributeHeader\":{\"labelValue\":\"959831\",\"primaryLabelValue\":\"959831\"}},{\"attributeHeader\":{\"labelValue\":\"959833\",\"primaryLabelValue\":\"959833\"}},{\"attributeHeader\":{\"labelValue\":\"959837\",\"primaryLabelValue\":\"959837\"}},{\"attributeHeader\":{\"labelValue\":\"959839\",\"primaryLabelValue\":\"959839\"}},{\"attributeHeader\":{\"labelValue\":\"959841\",\"primaryLabelValue\":\"959841\"}},{\"attributeHeader\":{\"labelValue\":\"959843\",\"primaryLabelValue\":\"959843\"}},{\"attributeHeader\":{\"labelValue\":\"959845\",\"primaryLabelValue\":\"959845\"}},{\"attributeHeader\":{\"labelValue\":\"959847\",\"primaryLabelValue\":\"959847\"}},{\"attributeHeader\":{\"labelValue\":\"959849\",\"primaryLabelValue\":\"959849\"}},{\"attributeHeader\":{\"labelValue\":\"959851\",\"primaryLabelValue\":\"959851\"}},{\"attributeHeader\":{\"labelValue\":\"959853\",\"primaryLabelValue\":\"959853\"}},{\"attributeHeader\":{\"labelValue\":\"959855\",\"primaryLabelValue\":\"959855\"}},{\"attributeHeader\":{\"labelValue\":\"959857\",\"primaryLabelValue\":\"959857\"}},{\"attributeHeader\":{\"labelValue\":\"959859\",\"primaryLabelValue\":\"959859\"}},{\"attributeHeader\":{\"labelValue\":\"959861\",\"primaryLabelValue\":\"959861\"}},{\"attributeHeader\":{\"labelValue\":\"959863\",\"primaryLabelValue\":\"959863\"}},{\"attributeHeader\":{\"labelValue\":\"959865\",\"primaryLabelValue\":\"959865\"}},{\"attributeHeader\":{\"labelValue\":\"959867\",\"primaryLabelValue\":\"959867\"}},{\"attributeHeader\":{\"labelValue\":\"959869\",\"primaryLabelValue\":\"959869\"}},{\"attributeHeader\":{\"labelValue\":\"959871\",\"primaryLabelValue\":\"959871\"}},{\"attributeHeader\":{\"labelValue\":\"959873\",\"primaryLabelValue\":\"959873\"}},{\"attributeHeader\":{\"labelValue\":\"959875\",\"primaryLabelValue\":\"959875\"}},{\"attributeHeader\":{\"labelValue\":\"959877\",\"primaryLabelValue\":\"959877\"}},{\"attributeHeader\":{\"labelValue\":\"959879\",\"primaryLabelValue\":\"959879\"}},{\"attributeHeader\":{\"labelValue\":\"959881\",\"primaryLabelValue\":\"959881\"}},{\"attributeHeader\":{\"labelValue\":\"959883\",\"primaryLabelValue\":\"959883\"}},{\"attributeHeader\":{\"labelValue\":\"959885\",\"primaryLabelValue\":\"959885\"}},{\"attributeHeader\":{\"labelValue\":\"959887\",\"primaryLabelValue\":\"959887\"}},{\"attributeHeader\":{\"labelValue\":\"959889\",\"primaryLabelValue\":\"959889\"}},{\"attributeHeader\":{\"labelValue\":\"959891\",\"primaryLabelValue\":\"959891\"}},{\"attributeHeader\":{\"labelValue\":\"959893\",\"primaryLabelValue\":\"959893\"}},{\"attributeHeader\":{\"labelValue\":\"959895\",\"primaryLabelValue\":\"959895\"}},{\"attributeHeader\":{\"labelValue\":\"959897\",\"primaryLabelValue\":\"959897\"}},{\"attributeHeader\":{\"labelValue\":\"959899\",\"primaryLabelValue\":\"959899\"}},{\"attributeHeader\":{\"labelValue\":\"959901\",\"primaryLabelValue\":\"959901\"}},{\"attributeHeader\":{\"labelValue\":\"959903\",\"primaryLabelValue\":\"959903\"}},{\"attributeHeader\":{\"labelValue\":\"959905\",\"primaryLabelValue\":\"959905\"}},{\"attributeHeader\":{\"labelValue\":\"959907\",\"primaryLabelValue\":\"959907\"}},{\"attributeHeader\":{\"labelValue\":\"959909\",\"primaryLabelValue\":\"959909\"}},{\"attributeHeader\":{\"labelValue\":\"959911\",\"primaryLabelValue\":\"959911\"}},{\"attributeHeader\":{\"labelValue\":\"959913\",\"primaryLabelValue\":\"959913\"}},{\"attributeHeader\":{\"labelValue\":\"959915\",\"primaryLabelValue\":\"959915\"}},{\"attributeHeader\":{\"labelValue\":\"959917\",\"primaryLabelValue\":\"959917\"}},{\"attributeHeader\":{\"labelValue\":\"959919\",\"primaryLabelValue\":\"959919\"}},{\"attributeHeader\":{\"labelValue\":\"959921\",\"primaryLabelValue\":\"959921\"}},{\"attributeHeader\":{\"labelValue\":\"959923\",\"primaryLabelValue\":\"959923\"}},{\"attributeHeader\":{\"labelValue\":\"959925\",\"primaryLabelValue\":\"959925\"}},{\"attributeHeader\":{\"labelValue\":\"959929\",\"primaryLabelValue\":\"959929\"}},{\"attributeHeader\":{\"labelValue\":\"959931\",\"primaryLabelValue\":\"959931\"}},{\"attributeHeader\":{\"labelValue\":\"959933\",\"primaryLabelValue\":\"959933\"}},{\"attributeHeader\":{\"labelValue\":\"959935\",\"primaryLabelValue\":\"959935\"}},{\"attributeHeader\":{\"labelValue\":\"959937\",\"primaryLabelValue\":\"959937\"}},{\"attributeHeader\":{\"labelValue\":\"959939\",\"primaryLabelValue\":\"959939\"}},{\"attributeHeader\":{\"labelValue\":\"959941\",\"primaryLabelValue\":\"959941\"}},{\"attributeHeader\":{\"labelValue\":\"959943\",\"primaryLabelValue\":\"959943\"}},{\"attributeHeader\":{\"labelValue\":\"959945\",\"primaryLabelValue\":\"959945\"}},{\"attributeHeader\":{\"labelValue\":\"959947\",\"primaryLabelValue\":\"959947\"}},{\"attributeHeader\":{\"labelValue\":\"959949\",\"primaryLabelValue\":\"959949\"}},{\"attributeHeader\":{\"labelValue\":\"959951\",\"primaryLabelValue\":\"959951\"}},{\"attributeHeader\":{\"labelValue\":\"959953\",\"primaryLabelValue\":\"959953\"}},{\"attributeHeader\":{\"labelValue\":\"959955\",\"primaryLabelValue\":\"959955\"}},{\"attributeHeader\":{\"labelValue\":\"959957\",\"primaryLabelValue\":\"959957\"}},{\"attributeHeader\":{\"labelValue\":\"959959\",\"primaryLabelValue\":\"959959\"}},{\"attributeHeader\":{\"labelValue\":\"959961\",\"primaryLabelValue\":\"959961\"}},{\"attributeHeader\":{\"labelValue\":\"959963\",\"primaryLabelValue\":\"959963\"}},{\"attributeHeader\":{\"labelValue\":\"959965\",\"primaryLabelValue\":\"959965\"}},{\"attributeHeader\":{\"labelValue\":\"959967\",\"primaryLabelValue\":\"959967\"}},{\"attributeHeader\":{\"labelValue\":\"959969\",\"primaryLabelValue\":\"959969\"}},{\"attributeHeader\":{\"labelValue\":\"959973\",\"primaryLabelValue\":\"959973\"}},{\"attributeHeader\":{\"labelValue\":\"959975\",\"primaryLabelValue\":\"959975\"}},{\"attributeHeader\":{\"labelValue\":\"959977\",\"primaryLabelValue\":\"959977\"}},{\"attributeHeader\":{\"labelValue\":\"959979\",\"primaryLabelValue\":\"959979\"}},{\"attributeHeader\":{\"labelValue\":\"959981\",\"primaryLabelValue\":\"959981\"}},{\"attributeHeader\":{\"labelValue\":\"959983\",\"primaryLabelValue\":\"959983\"}},{\"attributeHeader\":{\"labelValue\":\"959985\",\"primaryLabelValue\":\"959985\"}},{\"attributeHeader\":{\"labelValue\":\"959987\",\"primaryLabelValue\":\"959987\"}},{\"attributeHeader\":{\"labelValue\":\"959989\",\"primaryLabelValue\":\"959989\"}},{\"attributeHeader\":{\"labelValue\":\"959991\",\"primaryLabelValue\":\"959991\"}},{\"attributeHeader\":{\"labelValue\":\"959993\",\"primaryLabelValue\":\"959993\"}},{\"attributeHeader\":{\"labelValue\":\"959995\",\"primaryLabelValue\":\"959995\"}},{\"attributeHeader\":{\"labelValue\":\"959997\",\"primaryLabelValue\":\"959997\"}},{\"attributeHeader\":{\"labelValue\":\"959999\",\"primaryLabelValue\":\"959999\"}},{\"attributeHeader\":{\"labelValue\":\"960001\",\"primaryLabelValue\":\"960001\"}},{\"attributeHeader\":{\"labelValue\":\"960003\",\"primaryLabelValue\":\"960003\"}},{\"attributeHeader\":{\"labelValue\":\"960005\",\"primaryLabelValue\":\"960005\"}},{\"attributeHeader\":{\"labelValue\":\"960007\",\"primaryLabelValue\":\"960007\"}},{\"attributeHeader\":{\"labelValue\":\"960009\",\"primaryLabelValue\":\"960009\"}},{\"attributeHeader\":{\"labelValue\":\"960011\",\"primaryLabelValue\":\"960011\"}},{\"attributeHeader\":{\"labelValue\":\"960013\",\"primaryLabelValue\":\"960013\"}},{\"attributeHeader\":{\"labelValue\":\"960015\",\"primaryLabelValue\":\"960015\"}},{\"attributeHeader\":{\"labelValue\":\"960017\",\"primaryLabelValue\":\"960017\"}},{\"attributeHeader\":{\"labelValue\":\"960019\",\"primaryLabelValue\":\"960019\"}},{\"attributeHeader\":{\"labelValue\":\"960021\",\"primaryLabelValue\":\"960021\"}},{\"attributeHeader\":{\"labelValue\":\"960023\",\"primaryLabelValue\":\"960023\"}},{\"attributeHeader\":{\"labelValue\":\"960025\",\"primaryLabelValue\":\"960025\"}},{\"attributeHeader\":{\"labelValue\":\"960027\",\"primaryLabelValue\":\"960027\"}},{\"attributeHeader\":{\"labelValue\":\"960029\",\"primaryLabelValue\":\"960029\"}},{\"attributeHeader\":{\"labelValue\":\"960031\",\"primaryLabelValue\":\"960031\"}},{\"attributeHeader\":{\"labelValue\":\"960033\",\"primaryLabelValue\":\"960033\"}},{\"attributeHeader\":{\"labelValue\":\"960035\",\"primaryLabelValue\":\"960035\"}},{\"attributeHeader\":{\"labelValue\":\"960037\",\"primaryLabelValue\":\"960037\"}},{\"attributeHeader\":{\"labelValue\":\"960039\",\"primaryLabelValue\":\"960039\"}},{\"attributeHeader\":{\"labelValue\":\"960041\",\"primaryLabelValue\":\"960041\"}},{\"attributeHeader\":{\"labelValue\":\"960043\",\"primaryLabelValue\":\"960043\"}},{\"attributeHeader\":{\"labelValue\":\"960045\",\"primaryLabelValue\":\"960045\"}},{\"attributeHeader\":{\"labelValue\":\"960047\",\"primaryLabelValue\":\"960047\"}},{\"attributeHeader\":{\"labelValue\":\"960049\",\"primaryLabelValue\":\"960049\"}},{\"attributeHeader\":{\"labelValue\":\"960051\",\"primaryLabelValue\":\"960051\"}},{\"attributeHeader\":{\"labelValue\":\"960053\",\"primaryLabelValue\":\"960053\"}},{\"attributeHeader\":{\"labelValue\":\"960055\",\"primaryLabelValue\":\"960055\"}},{\"attributeHeader\":{\"labelValue\":\"960057\",\"primaryLabelValue\":\"960057\"}},{\"attributeHeader\":{\"labelValue\":\"960059\",\"primaryLabelValue\":\"960059\"}},{\"attributeHeader\":{\"labelValue\":\"960061\",\"primaryLabelValue\":\"960061\"}},{\"attributeHeader\":{\"labelValue\":\"960063\",\"primaryLabelValue\":\"960063\"}},{\"attributeHeader\":{\"labelValue\":\"960065\",\"primaryLabelValue\":\"960065\"}},{\"attributeHeader\":{\"labelValue\":\"960067\",\"primaryLabelValue\":\"960067\"}},{\"attributeHeader\":{\"labelValue\":\"960069\",\"primaryLabelValue\":\"960069\"}},{\"attributeHeader\":{\"labelValue\":\"960071\",\"primaryLabelValue\":\"960071\"}},{\"attributeHeader\":{\"labelValue\":\"960073\",\"primaryLabelValue\":\"960073\"}},{\"attributeHeader\":{\"labelValue\":\"960075\",\"primaryLabelValue\":\"960075\"}},{\"attributeHeader\":{\"labelValue\":\"960077\",\"primaryLabelValue\":\"960077\"}},{\"attributeHeader\":{\"labelValue\":\"960079\",\"primaryLabelValue\":\"960079\"}},{\"attributeHeader\":{\"labelValue\":\"960081\",\"primaryLabelValue\":\"960081\"}},{\"attributeHeader\":{\"labelValue\":\"960083\",\"primaryLabelValue\":\"960083\"}},{\"attributeHeader\":{\"labelValue\":\"960085\",\"primaryLabelValue\":\"960085\"}},{\"attributeHeader\":{\"labelValue\":\"960087\",\"primaryLabelValue\":\"960087\"}},{\"attributeHeader\":{\"labelValue\":\"960089\",\"primaryLabelValue\":\"960089\"}},{\"attributeHeader\":{\"labelValue\":\"960091\",\"primaryLabelValue\":\"960091\"}},{\"attributeHeader\":{\"labelValue\":\"960093\",\"primaryLabelValue\":\"960093\"}},{\"attributeHeader\":{\"labelValue\":\"960095\",\"primaryLabelValue\":\"960095\"}},{\"attributeHeader\":{\"labelValue\":\"960097\",\"primaryLabelValue\":\"960097\"}},{\"attributeHeader\":{\"labelValue\":\"960099\",\"primaryLabelValue\":\"960099\"}},{\"attributeHeader\":{\"labelValue\":\"960101\",\"primaryLabelValue\":\"960101\"}},{\"attributeHeader\":{\"labelValue\":\"960103\",\"primaryLabelValue\":\"960103\"}},{\"attributeHeader\":{\"labelValue\":\"960105\",\"primaryLabelValue\":\"960105\"}},{\"attributeHeader\":{\"labelValue\":\"960107\",\"primaryLabelValue\":\"960107\"}},{\"attributeHeader\":{\"labelValue\":\"960109\",\"primaryLabelValue\":\"960109\"}},{\"attributeHeader\":{\"labelValue\":\"960111\",\"primaryLabelValue\":\"960111\"}},{\"attributeHeader\":{\"labelValue\":\"960113\",\"primaryLabelValue\":\"960113\"}},{\"attributeHeader\":{\"labelValue\":\"960115\",\"primaryLabelValue\":\"960115\"}},{\"attributeHeader\":{\"labelValue\":\"960117\",\"primaryLabelValue\":\"960117\"}},{\"attributeHeader\":{\"labelValue\":\"960119\",\"primaryLabelValue\":\"960119\"}},{\"attributeHeader\":{\"labelValue\":\"960121\",\"primaryLabelValue\":\"960121\"}},{\"attributeHeader\":{\"labelValue\":\"960123\",\"primaryLabelValue\":\"960123\"}},{\"attributeHeader\":{\"labelValue\":\"960125\",\"primaryLabelValue\":\"960125\"}},{\"attributeHeader\":{\"labelValue\":\"960127\",\"primaryLabelValue\":\"960127\"}},{\"attributeHeader\":{\"labelValue\":\"960129\",\"primaryLabelValue\":\"960129\"}},{\"attributeHeader\":{\"labelValue\":\"960131\",\"primaryLabelValue\":\"960131\"}},{\"attributeHeader\":{\"labelValue\":\"960133\",\"primaryLabelValue\":\"960133\"}},{\"attributeHeader\":{\"labelValue\":\"960135\",\"primaryLabelValue\":\"960135\"}},{\"attributeHeader\":{\"labelValue\":\"960137\",\"primaryLabelValue\":\"960137\"}},{\"attributeHeader\":{\"labelValue\":\"960139\",\"primaryLabelValue\":\"960139\"}},{\"attributeHeader\":{\"labelValue\":\"960141\",\"primaryLabelValue\":\"960141\"}},{\"attributeHeader\":{\"labelValue\":\"960143\",\"primaryLabelValue\":\"960143\"}},{\"attributeHeader\":{\"labelValue\":\"960145\",\"primaryLabelValue\":\"960145\"}},{\"attributeHeader\":{\"labelValue\":\"960147\",\"primaryLabelValue\":\"960147\"}},{\"attributeHeader\":{\"labelValue\":\"960149\",\"primaryLabelValue\":\"960149\"}},{\"attributeHeader\":{\"labelValue\":\"960151\",\"primaryLabelValue\":\"960151\"}},{\"attributeHeader\":{\"labelValue\":\"960153\",\"primaryLabelValue\":\"960153\"}},{\"attributeHeader\":{\"labelValue\":\"960155\",\"primaryLabelValue\":\"960155\"}},{\"attributeHeader\":{\"labelValue\":\"960157\",\"primaryLabelValue\":\"960157\"}},{\"attributeHeader\":{\"labelValue\":\"960159\",\"primaryLabelValue\":\"960159\"}},{\"attributeHeader\":{\"labelValue\":\"960161\",\"primaryLabelValue\":\"960161\"}},{\"attributeHeader\":{\"labelValue\":\"960163\",\"primaryLabelValue\":\"960163\"}},{\"attributeHeader\":{\"labelValue\":\"960165\",\"primaryLabelValue\":\"960165\"}},{\"attributeHeader\":{\"labelValue\":\"960167\",\"primaryLabelValue\":\"960167\"}},{\"attributeHeader\":{\"labelValue\":\"960169\",\"primaryLabelValue\":\"960169\"}},{\"attributeHeader\":{\"labelValue\":\"960171\",\"primaryLabelValue\":\"960171\"}},{\"attributeHeader\":{\"labelValue\":\"960173\",\"primaryLabelValue\":\"960173\"}},{\"attributeHeader\":{\"labelValue\":\"960175\",\"primaryLabelValue\":\"960175\"}},{\"attributeHeader\":{\"labelValue\":\"960177\",\"primaryLabelValue\":\"960177\"}},{\"attributeHeader\":{\"labelValue\":\"960179\",\"primaryLabelValue\":\"960179\"}},{\"attributeHeader\":{\"labelValue\":\"960181\",\"primaryLabelValue\":\"960181\"}},{\"attributeHeader\":{\"labelValue\":\"960183\",\"primaryLabelValue\":\"960183\"}},{\"attributeHeader\":{\"labelValue\":\"960185\",\"primaryLabelValue\":\"960185\"}},{\"attributeHeader\":{\"labelValue\":\"960187\",\"primaryLabelValue\":\"960187\"}},{\"attributeHeader\":{\"labelValue\":\"960189\",\"primaryLabelValue\":\"960189\"}},{\"attributeHeader\":{\"labelValue\":\"960191\",\"primaryLabelValue\":\"960191\"}},{\"attributeHeader\":{\"labelValue\":\"960193\",\"primaryLabelValue\":\"960193\"}},{\"attributeHeader\":{\"labelValue\":\"960195\",\"primaryLabelValue\":\"960195\"}},{\"attributeHeader\":{\"labelValue\":\"960197\",\"primaryLabelValue\":\"960197\"}},{\"attributeHeader\":{\"labelValue\":\"960199\",\"primaryLabelValue\":\"960199\"}},{\"attributeHeader\":{\"labelValue\":\"960201\",\"primaryLabelValue\":\"960201\"}},{\"attributeHeader\":{\"labelValue\":\"960203\",\"primaryLabelValue\":\"960203\"}},{\"attributeHeader\":{\"labelValue\":\"960205\",\"primaryLabelValue\":\"960205\"}},{\"attributeHeader\":{\"labelValue\":\"960207\",\"primaryLabelValue\":\"960207\"}},{\"attributeHeader\":{\"labelValue\":\"960209\",\"primaryLabelValue\":\"960209\"}},{\"attributeHeader\":{\"labelValue\":\"960211\",\"primaryLabelValue\":\"960211\"}},{\"attributeHeader\":{\"labelValue\":\"960213\",\"primaryLabelValue\":\"960213\"}},{\"attributeHeader\":{\"labelValue\":\"960215\",\"primaryLabelValue\":\"960215\"}},{\"attributeHeader\":{\"labelValue\":\"960217\",\"primaryLabelValue\":\"960217\"}},{\"attributeHeader\":{\"labelValue\":\"960219\",\"primaryLabelValue\":\"960219\"}},{\"attributeHeader\":{\"labelValue\":\"960221\",\"primaryLabelValue\":\"960221\"}},{\"attributeHeader\":{\"labelValue\":\"960223\",\"primaryLabelValue\":\"960223\"}},{\"attributeHeader\":{\"labelValue\":\"960225\",\"primaryLabelValue\":\"960225\"}},{\"attributeHeader\":{\"labelValue\":\"960227\",\"primaryLabelValue\":\"960227\"}},{\"attributeHeader\":{\"labelValue\":\"960229\",\"primaryLabelValue\":\"960229\"}},{\"attributeHeader\":{\"labelValue\":\"960231\",\"primaryLabelValue\":\"960231\"}},{\"attributeHeader\":{\"labelValue\":\"960233\",\"primaryLabelValue\":\"960233\"}},{\"attributeHeader\":{\"labelValue\":\"960235\",\"primaryLabelValue\":\"960235\"}},{\"attributeHeader\":{\"labelValue\":\"960237\",\"primaryLabelValue\":\"960237\"}},{\"attributeHeader\":{\"labelValue\":\"960239\",\"primaryLabelValue\":\"960239\"}},{\"attributeHeader\":{\"labelValue\":\"960241\",\"primaryLabelValue\":\"960241\"}},{\"attributeHeader\":{\"labelValue\":\"960243\",\"primaryLabelValue\":\"960243\"}},{\"attributeHeader\":{\"labelValue\":\"960245\",\"primaryLabelValue\":\"960245\"}},{\"attributeHeader\":{\"labelValue\":\"960247\",\"primaryLabelValue\":\"960247\"}},{\"attributeHeader\":{\"labelValue\":\"960249\",\"primaryLabelValue\":\"960249\"}},{\"attributeHeader\":{\"labelValue\":\"960251\",\"primaryLabelValue\":\"960251\"}},{\"attributeHeader\":{\"labelValue\":\"960253\",\"primaryLabelValue\":\"960253\"}},{\"attributeHeader\":{\"labelValue\":\"960255\",\"primaryLabelValue\":\"960255\"}},{\"attributeHeader\":{\"labelValue\":\"960257\",\"primaryLabelValue\":\"960257\"}},{\"attributeHeader\":{\"labelValue\":\"960259\",\"primaryLabelValue\":\"960259\"}},{\"attributeHeader\":{\"labelValue\":\"960261\",\"primaryLabelValue\":\"960261\"}},{\"attributeHeader\":{\"labelValue\":\"960263\",\"primaryLabelValue\":\"960263\"}},{\"attributeHeader\":{\"labelValue\":\"960265\",\"primaryLabelValue\":\"960265\"}},{\"attributeHeader\":{\"labelValue\":\"960267\",\"primaryLabelValue\":\"960267\"}},{\"attributeHeader\":{\"labelValue\":\"960269\",\"primaryLabelValue\":\"960269\"}},{\"attributeHeader\":{\"labelValue\":\"960271\",\"primaryLabelValue\":\"960271\"}},{\"attributeHeader\":{\"labelValue\":\"960273\",\"primaryLabelValue\":\"960273\"}},{\"attributeHeader\":{\"labelValue\":\"960275\",\"primaryLabelValue\":\"960275\"}},{\"attributeHeader\":{\"labelValue\":\"960277\",\"primaryLabelValue\":\"960277\"}},{\"attributeHeader\":{\"labelValue\":\"960279\",\"primaryLabelValue\":\"960279\"}},{\"attributeHeader\":{\"labelValue\":\"960283\",\"primaryLabelValue\":\"960283\"}},{\"attributeHeader\":{\"labelValue\":\"960285\",\"primaryLabelValue\":\"960285\"}},{\"attributeHeader\":{\"labelValue\":\"960287\",\"primaryLabelValue\":\"960287\"}},{\"attributeHeader\":{\"labelValue\":\"960289\",\"primaryLabelValue\":\"960289\"}},{\"attributeHeader\":{\"labelValue\":\"960291\",\"primaryLabelValue\":\"960291\"}},{\"attributeHeader\":{\"labelValue\":\"960293\",\"primaryLabelValue\":\"960293\"}},{\"attributeHeader\":{\"labelValue\":\"960295\",\"primaryLabelValue\":\"960295\"}},{\"attributeHeader\":{\"labelValue\":\"960297\",\"primaryLabelValue\":\"960297\"}},{\"attributeHeader\":{\"labelValue\":\"960299\",\"primaryLabelValue\":\"960299\"}},{\"attributeHeader\":{\"labelValue\":\"960301\",\"primaryLabelValue\":\"960301\"}},{\"attributeHeader\":{\"labelValue\":\"960303\",\"primaryLabelValue\":\"960303\"}},{\"attributeHeader\":{\"labelValue\":\"960305\",\"primaryLabelValue\":\"960305\"}},{\"attributeHeader\":{\"labelValue\":\"960307\",\"primaryLabelValue\":\"960307\"}},{\"attributeHeader\":{\"labelValue\":\"960309\",\"primaryLabelValue\":\"960309\"}},{\"attributeHeader\":{\"labelValue\":\"960311\",\"primaryLabelValue\":\"960311\"}},{\"attributeHeader\":{\"labelValue\":\"960313\",\"primaryLabelValue\":\"960313\"}},{\"attributeHeader\":{\"labelValue\":\"960315\",\"primaryLabelValue\":\"960315\"}},{\"attributeHeader\":{\"labelValue\":\"960317\",\"primaryLabelValue\":\"960317\"}},{\"attributeHeader\":{\"labelValue\":\"960319\",\"primaryLabelValue\":\"960319\"}},{\"attributeHeader\":{\"labelValue\":\"960321\",\"primaryLabelValue\":\"960321\"}},{\"attributeHeader\":{\"labelValue\":\"960323\",\"primaryLabelValue\":\"960323\"}},{\"attributeHeader\":{\"labelValue\":\"960325\",\"primaryLabelValue\":\"960325\"}},{\"attributeHeader\":{\"labelValue\":\"960327\",\"primaryLabelValue\":\"960327\"}},{\"attributeHeader\":{\"labelValue\":\"960329\",\"primaryLabelValue\":\"960329\"}},{\"attributeHeader\":{\"labelValue\":\"960331\",\"primaryLabelValue\":\"960331\"}},{\"attributeHeader\":{\"labelValue\":\"960333\",\"primaryLabelValue\":\"960333\"}},{\"attributeHeader\":{\"labelValue\":\"960335\",\"primaryLabelValue\":\"960335\"}},{\"attributeHeader\":{\"labelValue\":\"960337\",\"primaryLabelValue\":\"960337\"}},{\"attributeHeader\":{\"labelValue\":\"960339\",\"primaryLabelValue\":\"960339\"}},{\"attributeHeader\":{\"labelValue\":\"960341\",\"primaryLabelValue\":\"960341\"}},{\"attributeHeader\":{\"labelValue\":\"960343\",\"primaryLabelValue\":\"960343\"}},{\"attributeHeader\":{\"labelValue\":\"960345\",\"primaryLabelValue\":\"960345\"}},{\"attributeHeader\":{\"labelValue\":\"960347\",\"primaryLabelValue\":\"960347\"}},{\"attributeHeader\":{\"labelValue\":\"960349\",\"primaryLabelValue\":\"960349\"}},{\"attributeHeader\":{\"labelValue\":\"960351\",\"primaryLabelValue\":\"960351\"}},{\"attributeHeader\":{\"labelValue\":\"960353\",\"primaryLabelValue\":\"960353\"}},{\"attributeHeader\":{\"labelValue\":\"960355\",\"primaryLabelValue\":\"960355\"}},{\"attributeHeader\":{\"labelValue\":\"960357\",\"primaryLabelValue\":\"960357\"}},{\"attributeHeader\":{\"labelValue\":\"960359\",\"primaryLabelValue\":\"960359\"}},{\"attributeHeader\":{\"labelValue\":\"960361\",\"primaryLabelValue\":\"960361\"}},{\"attributeHeader\":{\"labelValue\":\"960363\",\"primaryLabelValue\":\"960363\"}},{\"attributeHeader\":{\"labelValue\":\"960365\",\"primaryLabelValue\":\"960365\"}},{\"attributeHeader\":{\"labelValue\":\"960367\",\"primaryLabelValue\":\"960367\"}},{\"attributeHeader\":{\"labelValue\":\"960369\",\"primaryLabelValue\":\"960369\"}},{\"attributeHeader\":{\"labelValue\":\"960371\",\"primaryLabelValue\":\"960371\"}},{\"attributeHeader\":{\"labelValue\":\"960373\",\"primaryLabelValue\":\"960373\"}},{\"attributeHeader\":{\"labelValue\":\"960375\",\"primaryLabelValue\":\"960375\"}},{\"attributeHeader\":{\"labelValue\":\"960377\",\"primaryLabelValue\":\"960377\"}},{\"attributeHeader\":{\"labelValue\":\"960379\",\"primaryLabelValue\":\"960379\"}},{\"attributeHeader\":{\"labelValue\":\"960381\",\"primaryLabelValue\":\"960381\"}},{\"attributeHeader\":{\"labelValue\":\"960383\",\"primaryLabelValue\":\"960383\"}},{\"attributeHeader\":{\"labelValue\":\"960385\",\"primaryLabelValue\":\"960385\"}},{\"attributeHeader\":{\"labelValue\":\"960387\",\"primaryLabelValue\":\"960387\"}},{\"attributeHeader\":{\"labelValue\":\"960389\",\"primaryLabelValue\":\"960389\"}},{\"attributeHeader\":{\"labelValue\":\"960391\",\"primaryLabelValue\":\"960391\"}},{\"attributeHeader\":{\"labelValue\":\"960393\",\"primaryLabelValue\":\"960393\"}},{\"attributeHeader\":{\"labelValue\":\"960395\",\"primaryLabelValue\":\"960395\"}},{\"attributeHeader\":{\"labelValue\":\"960397\",\"primaryLabelValue\":\"960397\"}},{\"attributeHeader\":{\"labelValue\":\"960399\",\"primaryLabelValue\":\"960399\"}},{\"attributeHeader\":{\"labelValue\":\"960401\",\"primaryLabelValue\":\"960401\"}},{\"attributeHeader\":{\"labelValue\":\"960403\",\"primaryLabelValue\":\"960403\"}},{\"attributeHeader\":{\"labelValue\":\"960405\",\"primaryLabelValue\":\"960405\"}},{\"attributeHeader\":{\"labelValue\":\"960407\",\"primaryLabelValue\":\"960407\"}},{\"attributeHeader\":{\"labelValue\":\"960409\",\"primaryLabelValue\":\"960409\"}},{\"attributeHeader\":{\"labelValue\":\"960411\",\"primaryLabelValue\":\"960411\"}},{\"attributeHeader\":{\"labelValue\":\"960413\",\"primaryLabelValue\":\"960413\"}},{\"attributeHeader\":{\"labelValue\":\"960415\",\"primaryLabelValue\":\"960415\"}},{\"attributeHeader\":{\"labelValue\":\"960417\",\"primaryLabelValue\":\"960417\"}},{\"attributeHeader\":{\"labelValue\":\"960419\",\"primaryLabelValue\":\"960419\"}},{\"attributeHeader\":{\"labelValue\":\"960421\",\"primaryLabelValue\":\"960421\"}},{\"attributeHeader\":{\"labelValue\":\"960423\",\"primaryLabelValue\":\"960423\"}},{\"attributeHeader\":{\"labelValue\":\"960425\",\"primaryLabelValue\":\"960425\"}},{\"attributeHeader\":{\"labelValue\":\"960427\",\"primaryLabelValue\":\"960427\"}},{\"attributeHeader\":{\"labelValue\":\"960429\",\"primaryLabelValue\":\"960429\"}},{\"attributeHeader\":{\"labelValue\":\"960431\",\"primaryLabelValue\":\"960431\"}},{\"attributeHeader\":{\"labelValue\":\"960433\",\"primaryLabelValue\":\"960433\"}},{\"attributeHeader\":{\"labelValue\":\"960435\",\"primaryLabelValue\":\"960435\"}},{\"attributeHeader\":{\"labelValue\":\"960437\",\"primaryLabelValue\":\"960437\"}},{\"attributeHeader\":{\"labelValue\":\"960439\",\"primaryLabelValue\":\"960439\"}},{\"attributeHeader\":{\"labelValue\":\"960441\",\"primaryLabelValue\":\"960441\"}},{\"attributeHeader\":{\"labelValue\":\"960443\",\"primaryLabelValue\":\"960443\"}},{\"attributeHeader\":{\"labelValue\":\"960445\",\"primaryLabelValue\":\"960445\"}},{\"attributeHeader\":{\"labelValue\":\"960447\",\"primaryLabelValue\":\"960447\"}},{\"attributeHeader\":{\"labelValue\":\"960449\",\"primaryLabelValue\":\"960449\"}},{\"attributeHeader\":{\"labelValue\":\"960451\",\"primaryLabelValue\":\"960451\"}},{\"attributeHeader\":{\"labelValue\":\"960453\",\"primaryLabelValue\":\"960453\"}},{\"attributeHeader\":{\"labelValue\":\"960455\",\"primaryLabelValue\":\"960455\"}},{\"attributeHeader\":{\"labelValue\":\"960457\",\"primaryLabelValue\":\"960457\"}},{\"attributeHeader\":{\"labelValue\":\"960459\",\"primaryLabelValue\":\"960459\"}},{\"attributeHeader\":{\"labelValue\":\"960461\",\"primaryLabelValue\":\"960461\"}},{\"attributeHeader\":{\"labelValue\":\"960463\",\"primaryLabelValue\":\"960463\"}},{\"attributeHeader\":{\"labelValue\":\"960465\",\"primaryLabelValue\":\"960465\"}},{\"attributeHeader\":{\"labelValue\":\"960467\",\"primaryLabelValue\":\"960467\"}},{\"attributeHeader\":{\"labelValue\":\"960469\",\"primaryLabelValue\":\"960469\"}},{\"attributeHeader\":{\"labelValue\":\"960471\",\"primaryLabelValue\":\"960471\"}},{\"attributeHeader\":{\"labelValue\":\"960473\",\"primaryLabelValue\":\"960473\"}},{\"attributeHeader\":{\"labelValue\":\"960475\",\"primaryLabelValue\":\"960475\"}},{\"attributeHeader\":{\"labelValue\":\"960477\",\"primaryLabelValue\":\"960477\"}},{\"attributeHeader\":{\"labelValue\":\"960479\",\"primaryLabelValue\":\"960479\"}},{\"attributeHeader\":{\"labelValue\":\"960481\",\"primaryLabelValue\":\"960481\"}},{\"attributeHeader\":{\"labelValue\":\"960483\",\"primaryLabelValue\":\"960483\"}},{\"attributeHeader\":{\"labelValue\":\"960485\",\"primaryLabelValue\":\"960485\"}},{\"attributeHeader\":{\"labelValue\":\"960487\",\"primaryLabelValue\":\"960487\"}},{\"attributeHeader\":{\"labelValue\":\"960489\",\"primaryLabelValue\":\"960489\"}},{\"attributeHeader\":{\"labelValue\":\"960491\",\"primaryLabelValue\":\"960491\"}},{\"attributeHeader\":{\"labelValue\":\"960493\",\"primaryLabelValue\":\"960493\"}},{\"attributeHeader\":{\"labelValue\":\"960497\",\"primaryLabelValue\":\"960497\"}},{\"attributeHeader\":{\"labelValue\":\"960499\",\"primaryLabelValue\":\"960499\"}},{\"attributeHeader\":{\"labelValue\":\"960501\",\"primaryLabelValue\":\"960501\"}},{\"attributeHeader\":{\"labelValue\":\"960503\",\"primaryLabelValue\":\"960503\"}},{\"attributeHeader\":{\"labelValue\":\"960505\",\"primaryLabelValue\":\"960505\"}},{\"attributeHeader\":{\"labelValue\":\"960507\",\"primaryLabelValue\":\"960507\"}},{\"attributeHeader\":{\"labelValue\":\"960509\",\"primaryLabelValue\":\"960509\"}},{\"attributeHeader\":{\"labelValue\":\"960511\",\"primaryLabelValue\":\"960511\"}},{\"attributeHeader\":{\"labelValue\":\"960513\",\"primaryLabelValue\":\"960513\"}},{\"attributeHeader\":{\"labelValue\":\"960515\",\"primaryLabelValue\":\"960515\"}},{\"attributeHeader\":{\"labelValue\":\"960517\",\"primaryLabelValue\":\"960517\"}},{\"attributeHeader\":{\"labelValue\":\"960519\",\"primaryLabelValue\":\"960519\"}},{\"attributeHeader\":{\"labelValue\":\"960521\",\"primaryLabelValue\":\"960521\"}},{\"attributeHeader\":{\"labelValue\":\"960527\",\"primaryLabelValue\":\"960527\"}},{\"attributeHeader\":{\"labelValue\":\"960529\",\"primaryLabelValue\":\"960529\"}},{\"attributeHeader\":{\"labelValue\":\"960531\",\"primaryLabelValue\":\"960531\"}},{\"attributeHeader\":{\"labelValue\":\"960533\",\"primaryLabelValue\":\"960533\"}},{\"attributeHeader\":{\"labelValue\":\"960535\",\"primaryLabelValue\":\"960535\"}},{\"attributeHeader\":{\"labelValue\":\"960537\",\"primaryLabelValue\":\"960537\"}},{\"attributeHeader\":{\"labelValue\":\"960539\",\"primaryLabelValue\":\"960539\"}},{\"attributeHeader\":{\"labelValue\":\"960541\",\"primaryLabelValue\":\"960541\"}},{\"attributeHeader\":{\"labelValue\":\"960543\",\"primaryLabelValue\":\"960543\"}},{\"attributeHeader\":{\"labelValue\":\"960545\",\"primaryLabelValue\":\"960545\"}},{\"attributeHeader\":{\"labelValue\":\"960547\",\"primaryLabelValue\":\"960547\"}},{\"attributeHeader\":{\"labelValue\":\"960549\",\"primaryLabelValue\":\"960549\"}},{\"attributeHeader\":{\"labelValue\":\"960551\",\"primaryLabelValue\":\"960551\"}},{\"attributeHeader\":{\"labelValue\":\"960553\",\"primaryLabelValue\":\"960553\"}},{\"attributeHeader\":{\"labelValue\":\"960555\",\"primaryLabelValue\":\"960555\"}},{\"attributeHeader\":{\"labelValue\":\"960557\",\"primaryLabelValue\":\"960557\"}},{\"attributeHeader\":{\"labelValue\":\"960559\",\"primaryLabelValue\":\"960559\"}},{\"attributeHeader\":{\"labelValue\":\"960561\",\"primaryLabelValue\":\"960561\"}},{\"attributeHeader\":{\"labelValue\":\"960563\",\"primaryLabelValue\":\"960563\"}},{\"attributeHeader\":{\"labelValue\":\"960567\",\"primaryLabelValue\":\"960567\"}},{\"attributeHeader\":{\"labelValue\":\"960569\",\"primaryLabelValue\":\"960569\"}},{\"attributeHeader\":{\"labelValue\":\"960571\",\"primaryLabelValue\":\"960571\"}},{\"attributeHeader\":{\"labelValue\":\"960573\",\"primaryLabelValue\":\"960573\"}},{\"attributeHeader\":{\"labelValue\":\"960575\",\"primaryLabelValue\":\"960575\"}},{\"attributeHeader\":{\"labelValue\":\"960577\",\"primaryLabelValue\":\"960577\"}},{\"attributeHeader\":{\"labelValue\":\"960579\",\"primaryLabelValue\":\"960579\"}},{\"attributeHeader\":{\"labelValue\":\"960581\",\"primaryLabelValue\":\"960581\"}},{\"attributeHeader\":{\"labelValue\":\"960583\",\"primaryLabelValue\":\"960583\"}},{\"attributeHeader\":{\"labelValue\":\"960585\",\"primaryLabelValue\":\"960585\"}},{\"attributeHeader\":{\"labelValue\":\"960587\",\"primaryLabelValue\":\"960587\"}},{\"attributeHeader\":{\"labelValue\":\"960589\",\"primaryLabelValue\":\"960589\"}},{\"attributeHeader\":{\"labelValue\":\"960591\",\"primaryLabelValue\":\"960591\"}},{\"attributeHeader\":{\"labelValue\":\"960593\",\"primaryLabelValue\":\"960593\"}},{\"attributeHeader\":{\"labelValue\":\"960595\",\"primaryLabelValue\":\"960595\"}},{\"attributeHeader\":{\"labelValue\":\"960597\",\"primaryLabelValue\":\"960597\"}},{\"attributeHeader\":{\"labelValue\":\"960601\",\"primaryLabelValue\":\"960601\"}},{\"attributeHeader\":{\"labelValue\":\"960605\",\"primaryLabelValue\":\"960605\"}},{\"attributeHeader\":{\"labelValue\":\"960607\",\"primaryLabelValue\":\"960607\"}},{\"attributeHeader\":{\"labelValue\":\"960609\",\"primaryLabelValue\":\"960609\"}},{\"attributeHeader\":{\"labelValue\":\"960611\",\"primaryLabelValue\":\"960611\"}},{\"attributeHeader\":{\"labelValue\":\"960613\",\"primaryLabelValue\":\"960613\"}},{\"attributeHeader\":{\"labelValue\":\"960615\",\"primaryLabelValue\":\"960615\"}},{\"attributeHeader\":{\"labelValue\":\"960617\",\"primaryLabelValue\":\"960617\"}},{\"attributeHeader\":{\"labelValue\":\"960619\",\"primaryLabelValue\":\"960619\"}},{\"attributeHeader\":{\"labelValue\":\"960621\",\"primaryLabelValue\":\"960621\"}},{\"attributeHeader\":{\"labelValue\":\"960623\",\"primaryLabelValue\":\"960623\"}},{\"attributeHeader\":{\"labelValue\":\"960625\",\"primaryLabelValue\":\"960625\"}},{\"attributeHeader\":{\"labelValue\":\"960627\",\"primaryLabelValue\":\"960627\"}},{\"attributeHeader\":{\"labelValue\":\"960629\",\"primaryLabelValue\":\"960629\"}},{\"attributeHeader\":{\"labelValue\":\"960631\",\"primaryLabelValue\":\"960631\"}},{\"attributeHeader\":{\"labelValue\":\"960633\",\"primaryLabelValue\":\"960633\"}},{\"attributeHeader\":{\"labelValue\":\"960635\",\"primaryLabelValue\":\"960635\"}},{\"attributeHeader\":{\"labelValue\":\"960637\",\"primaryLabelValue\":\"960637\"}},{\"attributeHeader\":{\"labelValue\":\"960639\",\"primaryLabelValue\":\"960639\"}},{\"attributeHeader\":{\"labelValue\":\"960641\",\"primaryLabelValue\":\"960641\"}},{\"attributeHeader\":{\"labelValue\":\"960643\",\"primaryLabelValue\":\"960643\"}},{\"attributeHeader\":{\"labelValue\":\"960645\",\"primaryLabelValue\":\"960645\"}},{\"attributeHeader\":{\"labelValue\":\"960647\",\"primaryLabelValue\":\"960647\"}},{\"attributeHeader\":{\"labelValue\":\"960649\",\"primaryLabelValue\":\"960649\"}},{\"attributeHeader\":{\"labelValue\":\"960651\",\"primaryLabelValue\":\"960651\"}},{\"attributeHeader\":{\"labelValue\":\"960653\",\"primaryLabelValue\":\"960653\"}},{\"attributeHeader\":{\"labelValue\":\"960655\",\"primaryLabelValue\":\"960655\"}},{\"attributeHeader\":{\"labelValue\":\"960661\",\"primaryLabelValue\":\"960661\"}},{\"attributeHeader\":{\"labelValue\":\"960663\",\"primaryLabelValue\":\"960663\"}},{\"attributeHeader\":{\"labelValue\":\"960665\",\"primaryLabelValue\":\"960665\"}},{\"attributeHeader\":{\"labelValue\":\"960667\",\"primaryLabelValue\":\"960667\"}},{\"attributeHeader\":{\"labelValue\":\"960669\",\"primaryLabelValue\":\"960669\"}},{\"attributeHeader\":{\"labelValue\":\"960671\",\"primaryLabelValue\":\"960671\"}},{\"attributeHeader\":{\"labelValue\":\"960675\",\"primaryLabelValue\":\"960675\"}},{\"attributeHeader\":{\"labelValue\":\"960677\",\"primaryLabelValue\":\"960677\"}},{\"attributeHeader\":{\"labelValue\":\"960679\",\"primaryLabelValue\":\"960679\"}},{\"attributeHeader\":{\"labelValue\":\"960681\",\"primaryLabelValue\":\"960681\"}},{\"attributeHeader\":{\"labelValue\":\"960683\",\"primaryLabelValue\":\"960683\"}},{\"attributeHeader\":{\"labelValue\":\"960685\",\"primaryLabelValue\":\"960685\"}},{\"attributeHeader\":{\"labelValue\":\"960687\",\"primaryLabelValue\":\"960687\"}},{\"attributeHeader\":{\"labelValue\":\"960689\",\"primaryLabelValue\":\"960689\"}},{\"attributeHeader\":{\"labelValue\":\"960691\",\"primaryLabelValue\":\"960691\"}},{\"attributeHeader\":{\"labelValue\":\"960693\",\"primaryLabelValue\":\"960693\"}},{\"attributeHeader\":{\"labelValue\":\"960695\",\"primaryLabelValue\":\"960695\"}},{\"attributeHeader\":{\"labelValue\":\"960697\",\"primaryLabelValue\":\"960697\"}},{\"attributeHeader\":{\"labelValue\":\"960699\",\"primaryLabelValue\":\"960699\"}},{\"attributeHeader\":{\"labelValue\":\"960701\",\"primaryLabelValue\":\"960701\"}},{\"attributeHeader\":{\"labelValue\":\"960703\",\"primaryLabelValue\":\"960703\"}},{\"attributeHeader\":{\"labelValue\":\"960705\",\"primaryLabelValue\":\"960705\"}},{\"attributeHeader\":{\"labelValue\":\"960707\",\"primaryLabelValue\":\"960707\"}},{\"attributeHeader\":{\"labelValue\":\"960709\",\"primaryLabelValue\":\"960709\"}},{\"attributeHeader\":{\"labelValue\":\"960711\",\"primaryLabelValue\":\"960711\"}},{\"attributeHeader\":{\"labelValue\":\"960713\",\"primaryLabelValue\":\"960713\"}},{\"attributeHeader\":{\"labelValue\":\"960715\",\"primaryLabelValue\":\"960715\"}},{\"attributeHeader\":{\"labelValue\":\"960717\",\"primaryLabelValue\":\"960717\"}},{\"attributeHeader\":{\"labelValue\":\"960719\",\"primaryLabelValue\":\"960719\"}},{\"attributeHeader\":{\"labelValue\":\"960721\",\"primaryLabelValue\":\"960721\"}},{\"attributeHeader\":{\"labelValue\":\"960723\",\"primaryLabelValue\":\"960723\"}},{\"attributeHeader\":{\"labelValue\":\"960727\",\"primaryLabelValue\":\"960727\"}},{\"attributeHeader\":{\"labelValue\":\"960729\",\"primaryLabelValue\":\"960729\"}},{\"attributeHeader\":{\"labelValue\":\"960731\",\"primaryLabelValue\":\"960731\"}},{\"attributeHeader\":{\"labelValue\":\"960733\",\"primaryLabelValue\":\"960733\"}},{\"attributeHeader\":{\"labelValue\":\"960735\",\"primaryLabelValue\":\"960735\"}},{\"attributeHeader\":{\"labelValue\":\"960737\",\"primaryLabelValue\":\"960737\"}},{\"attributeHeader\":{\"labelValue\":\"960739\",\"primaryLabelValue\":\"960739\"}},{\"attributeHeader\":{\"labelValue\":\"960741\",\"primaryLabelValue\":\"960741\"}},{\"attributeHeader\":{\"labelValue\":\"960743\",\"primaryLabelValue\":\"960743\"}},{\"attributeHeader\":{\"labelValue\":\"960745\",\"primaryLabelValue\":\"960745\"}},{\"attributeHeader\":{\"labelValue\":\"960747\",\"primaryLabelValue\":\"960747\"}},{\"attributeHeader\":{\"labelValue\":\"960749\",\"primaryLabelValue\":\"960749\"}},{\"attributeHeader\":{\"labelValue\":\"960751\",\"primaryLabelValue\":\"960751\"}},{\"attributeHeader\":{\"labelValue\":\"960753\",\"primaryLabelValue\":\"960753\"}},{\"attributeHeader\":{\"labelValue\":\"960755\",\"primaryLabelValue\":\"960755\"}},{\"attributeHeader\":{\"labelValue\":\"960757\",\"primaryLabelValue\":\"960757\"}},{\"attributeHeader\":{\"labelValue\":\"960759\",\"primaryLabelValue\":\"960759\"}},{\"attributeHeader\":{\"labelValue\":\"960761\",\"primaryLabelValue\":\"960761\"}},{\"attributeHeader\":{\"labelValue\":\"960763\",\"primaryLabelValue\":\"960763\"}},{\"attributeHeader\":{\"labelValue\":\"960765\",\"primaryLabelValue\":\"960765\"}},{\"attributeHeader\":{\"labelValue\":\"960767\",\"primaryLabelValue\":\"960767\"}},{\"attributeHeader\":{\"labelValue\":\"960769\",\"primaryLabelValue\":\"960769\"}},{\"attributeHeader\":{\"labelValue\":\"960771\",\"primaryLabelValue\":\"960771\"}},{\"attributeHeader\":{\"labelValue\":\"960773\",\"primaryLabelValue\":\"960773\"}},{\"attributeHeader\":{\"labelValue\":\"960775\",\"primaryLabelValue\":\"960775\"}},{\"attributeHeader\":{\"labelValue\":\"960777\",\"primaryLabelValue\":\"960777\"}},{\"attributeHeader\":{\"labelValue\":\"960779\",\"primaryLabelValue\":\"960779\"}},{\"attributeHeader\":{\"labelValue\":\"960781\",\"primaryLabelValue\":\"960781\"}},{\"attributeHeader\":{\"labelValue\":\"960783\",\"primaryLabelValue\":\"960783\"}},{\"attributeHeader\":{\"labelValue\":\"960785\",\"primaryLabelValue\":\"960785\"}},{\"attributeHeader\":{\"labelValue\":\"960787\",\"primaryLabelValue\":\"960787\"}},{\"attributeHeader\":{\"labelValue\":\"960789\",\"primaryLabelValue\":\"960789\"}},{\"attributeHeader\":{\"labelValue\":\"960791\",\"primaryLabelValue\":\"960791\"}},{\"attributeHeader\":{\"labelValue\":\"960793\",\"primaryLabelValue\":\"960793\"}},{\"attributeHeader\":{\"labelValue\":\"960795\",\"primaryLabelValue\":\"960795\"}},{\"attributeHeader\":{\"labelValue\":\"960797\",\"primaryLabelValue\":\"960797\"}},{\"attributeHeader\":{\"labelValue\":\"960799\",\"primaryLabelValue\":\"960799\"}},{\"attributeHeader\":{\"labelValue\":\"960801\",\"primaryLabelValue\":\"960801\"}},{\"attributeHeader\":{\"labelValue\":\"960803\",\"primaryLabelValue\":\"960803\"}},{\"attributeHeader\":{\"labelValue\":\"960805\",\"primaryLabelValue\":\"960805\"}},{\"attributeHeader\":{\"labelValue\":\"960809\",\"primaryLabelValue\":\"960809\"}},{\"attributeHeader\":{\"labelValue\":\"960811\",\"primaryLabelValue\":\"960811\"}},{\"attributeHeader\":{\"labelValue\":\"960813\",\"primaryLabelValue\":\"960813\"}},{\"attributeHeader\":{\"labelValue\":\"960815\",\"primaryLabelValue\":\"960815\"}},{\"attributeHeader\":{\"labelValue\":\"960817\",\"primaryLabelValue\":\"960817\"}},{\"attributeHeader\":{\"labelValue\":\"960819\",\"primaryLabelValue\":\"960819\"}},{\"attributeHeader\":{\"labelValue\":\"960821\",\"primaryLabelValue\":\"960821\"}},{\"attributeHeader\":{\"labelValue\":\"960823\",\"primaryLabelValue\":\"960823\"}},{\"attributeHeader\":{\"labelValue\":\"960825\",\"primaryLabelValue\":\"960825\"}},{\"attributeHeader\":{\"labelValue\":\"960827\",\"primaryLabelValue\":\"960827\"}},{\"attributeHeader\":{\"labelValue\":\"960829\",\"primaryLabelValue\":\"960829\"}},{\"attributeHeader\":{\"labelValue\":\"960831\",\"primaryLabelValue\":\"960831\"}},{\"attributeHeader\":{\"labelValue\":\"960833\",\"primaryLabelValue\":\"960833\"}},{\"attributeHeader\":{\"labelValue\":\"960835\",\"primaryLabelValue\":\"960835\"}},{\"attributeHeader\":{\"labelValue\":\"960839\",\"primaryLabelValue\":\"960839\"}},{\"attributeHeader\":{\"labelValue\":\"960841\",\"primaryLabelValue\":\"960841\"}},{\"attributeHeader\":{\"labelValue\":\"960843\",\"primaryLabelValue\":\"960843\"}},{\"attributeHeader\":{\"labelValue\":\"960845\",\"primaryLabelValue\":\"960845\"}},{\"attributeHeader\":{\"labelValue\":\"960847\",\"primaryLabelValue\":\"960847\"}},{\"attributeHeader\":{\"labelValue\":\"960849\",\"primaryLabelValue\":\"960849\"}},{\"attributeHeader\":{\"labelValue\":\"960853\",\"primaryLabelValue\":\"960853\"}},{\"attributeHeader\":{\"labelValue\":\"960855\",\"primaryLabelValue\":\"960855\"}},{\"attributeHeader\":{\"labelValue\":\"960857\",\"primaryLabelValue\":\"960857\"}},{\"attributeHeader\":{\"labelValue\":\"960859\",\"primaryLabelValue\":\"960859\"}},{\"attributeHeader\":{\"labelValue\":\"960861\",\"primaryLabelValue\":\"960861\"}},{\"attributeHeader\":{\"labelValue\":\"960863\",\"primaryLabelValue\":\"960863\"}},{\"attributeHeader\":{\"labelValue\":\"960865\",\"primaryLabelValue\":\"960865\"}},{\"attributeHeader\":{\"labelValue\":\"960867\",\"primaryLabelValue\":\"960867\"}},{\"attributeHeader\":{\"labelValue\":\"960869\",\"primaryLabelValue\":\"960869\"}},{\"attributeHeader\":{\"labelValue\":\"960871\",\"primaryLabelValue\":\"960871\"}},{\"attributeHeader\":{\"labelValue\":\"960875\",\"primaryLabelValue\":\"960875\"}},{\"attributeHeader\":{\"labelValue\":\"960877\",\"primaryLabelValue\":\"960877\"}},{\"attributeHeader\":{\"labelValue\":\"960879\",\"primaryLabelValue\":\"960879\"}},{\"attributeHeader\":{\"labelValue\":\"960881\",\"primaryLabelValue\":\"960881\"}},{\"attributeHeader\":{\"labelValue\":\"960883\",\"primaryLabelValue\":\"960883\"}},{\"attributeHeader\":{\"labelValue\":\"960887\",\"primaryLabelValue\":\"960887\"}},{\"attributeHeader\":{\"labelValue\":\"960889\",\"primaryLabelValue\":\"960889\"}},{\"attributeHeader\":{\"labelValue\":\"960891\",\"primaryLabelValue\":\"960891\"}},{\"attributeHeader\":{\"labelValue\":\"960895\",\"primaryLabelValue\":\"960895\"}},{\"attributeHeader\":{\"labelValue\":\"960897\",\"primaryLabelValue\":\"960897\"}},{\"attributeHeader\":{\"labelValue\":\"960899\",\"primaryLabelValue\":\"960899\"}},{\"attributeHeader\":{\"labelValue\":\"960901\",\"primaryLabelValue\":\"960901\"}},{\"attributeHeader\":{\"labelValue\":\"960903\",\"primaryLabelValue\":\"960903\"}},{\"attributeHeader\":{\"labelValue\":\"960905\",\"primaryLabelValue\":\"960905\"}},{\"attributeHeader\":{\"labelValue\":\"960907\",\"primaryLabelValue\":\"960907\"}},{\"attributeHeader\":{\"labelValue\":\"960909\",\"primaryLabelValue\":\"960909\"}},{\"attributeHeader\":{\"labelValue\":\"960913\",\"primaryLabelValue\":\"960913\"}},{\"attributeHeader\":{\"labelValue\":\"960915\",\"primaryLabelValue\":\"960915\"}},{\"attributeHeader\":{\"labelValue\":\"960917\",\"primaryLabelValue\":\"960917\"}},{\"attributeHeader\":{\"labelValue\":\"960919\",\"primaryLabelValue\":\"960919\"}},{\"attributeHeader\":{\"labelValue\":\"960921\",\"primaryLabelValue\":\"960921\"}},{\"attributeHeader\":{\"labelValue\":\"960923\",\"primaryLabelValue\":\"960923\"}},{\"attributeHeader\":{\"labelValue\":\"960925\",\"primaryLabelValue\":\"960925\"}},{\"attributeHeader\":{\"labelValue\":\"960926\",\"primaryLabelValue\":\"960926\"}},{\"attributeHeader\":{\"labelValue\":\"960928\",\"primaryLabelValue\":\"960928\"}},{\"attributeHeader\":{\"labelValue\":\"960929\",\"primaryLabelValue\":\"960929\"}},{\"attributeHeader\":{\"labelValue\":\"960931\",\"primaryLabelValue\":\"960931\"}},{\"attributeHeader\":{\"labelValue\":\"960933\",\"primaryLabelValue\":\"960933\"}},{\"attributeHeader\":{\"labelValue\":\"960935\",\"primaryLabelValue\":\"960935\"}},{\"attributeHeader\":{\"labelValue\":\"960937\",\"primaryLabelValue\":\"960937\"}},{\"attributeHeader\":{\"labelValue\":\"960939\",\"primaryLabelValue\":\"960939\"}},{\"attributeHeader\":{\"labelValue\":\"960941\",\"primaryLabelValue\":\"960941\"}},{\"attributeHeader\":{\"labelValue\":\"960943\",\"primaryLabelValue\":\"960943\"}},{\"attributeHeader\":{\"labelValue\":\"960945\",\"primaryLabelValue\":\"960945\"}},{\"attributeHeader\":{\"labelValue\":\"960947\",\"primaryLabelValue\":\"960947\"}},{\"attributeHeader\":{\"labelValue\":\"960949\",\"primaryLabelValue\":\"960949\"}},{\"attributeHeader\":{\"labelValue\":\"960951\",\"primaryLabelValue\":\"960951\"}},{\"attributeHeader\":{\"labelValue\":\"960953\",\"primaryLabelValue\":\"960953\"}},{\"attributeHeader\":{\"labelValue\":\"960955\",\"primaryLabelValue\":\"960955\"}},{\"attributeHeader\":{\"labelValue\":\"960957\",\"primaryLabelValue\":\"960957\"}},{\"attributeHeader\":{\"labelValue\":\"960959\",\"primaryLabelValue\":\"960959\"}},{\"attributeHeader\":{\"labelValue\":\"960963\",\"primaryLabelValue\":\"960963\"}},{\"attributeHeader\":{\"labelValue\":\"960965\",\"primaryLabelValue\":\"960965\"}},{\"attributeHeader\":{\"labelValue\":\"960967\",\"primaryLabelValue\":\"960967\"}},{\"attributeHeader\":{\"labelValue\":\"960969\",\"primaryLabelValue\":\"960969\"}},{\"attributeHeader\":{\"labelValue\":\"960971\",\"primaryLabelValue\":\"960971\"}},{\"attributeHeader\":{\"labelValue\":\"960973\",\"primaryLabelValue\":\"960973\"}},{\"attributeHeader\":{\"labelValue\":\"960975\",\"primaryLabelValue\":\"960975\"}},{\"attributeHeader\":{\"labelValue\":\"960977\",\"primaryLabelValue\":\"960977\"}},{\"attributeHeader\":{\"labelValue\":\"960979\",\"primaryLabelValue\":\"960979\"}},{\"attributeHeader\":{\"labelValue\":\"960981\",\"primaryLabelValue\":\"960981\"}},{\"attributeHeader\":{\"labelValue\":\"960983\",\"primaryLabelValue\":\"960983\"}},{\"attributeHeader\":{\"labelValue\":\"960985\",\"primaryLabelValue\":\"960985\"}},{\"attributeHeader\":{\"labelValue\":\"960987\",\"primaryLabelValue\":\"960987\"}},{\"attributeHeader\":{\"labelValue\":\"960989\",\"primaryLabelValue\":\"960989\"}},{\"attributeHeader\":{\"labelValue\":\"960991\",\"primaryLabelValue\":\"960991\"}},{\"attributeHeader\":{\"labelValue\":\"960993\",\"primaryLabelValue\":\"960993\"}},{\"attributeHeader\":{\"labelValue\":\"960995\",\"primaryLabelValue\":\"960995\"}},{\"attributeHeader\":{\"labelValue\":\"960997\",\"primaryLabelValue\":\"960997\"}},{\"attributeHeader\":{\"labelValue\":\"960999\",\"primaryLabelValue\":\"960999\"}},{\"attributeHeader\":{\"labelValue\":\"961001\",\"primaryLabelValue\":\"961001\"}},{\"attributeHeader\":{\"labelValue\":\"961003\",\"primaryLabelValue\":\"961003\"}},{\"attributeHeader\":{\"labelValue\":\"961005\",\"primaryLabelValue\":\"961005\"}},{\"attributeHeader\":{\"labelValue\":\"961007\",\"primaryLabelValue\":\"961007\"}},{\"attributeHeader\":{\"labelValue\":\"961009\",\"primaryLabelValue\":\"961009\"}},{\"attributeHeader\":{\"labelValue\":\"961011\",\"primaryLabelValue\":\"961011\"}},{\"attributeHeader\":{\"labelValue\":\"961013\",\"primaryLabelValue\":\"961013\"}},{\"attributeHeader\":{\"labelValue\":\"961015\",\"primaryLabelValue\":\"961015\"}},{\"attributeHeader\":{\"labelValue\":\"961017\",\"primaryLabelValue\":\"961017\"}},{\"attributeHeader\":{\"labelValue\":\"961019\",\"primaryLabelValue\":\"961019\"}},{\"attributeHeader\":{\"labelValue\":\"961021\",\"primaryLabelValue\":\"961021\"}},{\"attributeHeader\":{\"labelValue\":\"961023\",\"primaryLabelValue\":\"961023\"}},{\"attributeHeader\":{\"labelValue\":\"961025\",\"primaryLabelValue\":\"961025\"}},{\"attributeHeader\":{\"labelValue\":\"961027\",\"primaryLabelValue\":\"961027\"}},{\"attributeHeader\":{\"labelValue\":\"961031\",\"primaryLabelValue\":\"961031\"}},{\"attributeHeader\":{\"labelValue\":\"961033\",\"primaryLabelValue\":\"961033\"}},{\"attributeHeader\":{\"labelValue\":\"961035\",\"primaryLabelValue\":\"961035\"}},{\"attributeHeader\":{\"labelValue\":\"961037\",\"primaryLabelValue\":\"961037\"}},{\"attributeHeader\":{\"labelValue\":\"961039\",\"primaryLabelValue\":\"961039\"}},{\"attributeHeader\":{\"labelValue\":\"961041\",\"primaryLabelValue\":\"961041\"}},{\"attributeHeader\":{\"labelValue\":\"961043\",\"primaryLabelValue\":\"961043\"}},{\"attributeHeader\":{\"labelValue\":\"961045\",\"primaryLabelValue\":\"961045\"}},{\"attributeHeader\":{\"labelValue\":\"961047\",\"primaryLabelValue\":\"961047\"}},{\"attributeHeader\":{\"labelValue\":\"961055\",\"primaryLabelValue\":\"961055\"}},{\"attributeHeader\":{\"labelValue\":\"961057\",\"primaryLabelValue\":\"961057\"}},{\"attributeHeader\":{\"labelValue\":\"961059\",\"primaryLabelValue\":\"961059\"}},{\"attributeHeader\":{\"labelValue\":\"961061\",\"primaryLabelValue\":\"961061\"}},{\"attributeHeader\":{\"labelValue\":\"961063\",\"primaryLabelValue\":\"961063\"}},{\"attributeHeader\":{\"labelValue\":\"961065\",\"primaryLabelValue\":\"961065\"}},{\"attributeHeader\":{\"labelValue\":\"961067\",\"primaryLabelValue\":\"961067\"}},{\"attributeHeader\":{\"labelValue\":\"961069\",\"primaryLabelValue\":\"961069\"}},{\"attributeHeader\":{\"labelValue\":\"961071\",\"primaryLabelValue\":\"961071\"}},{\"attributeHeader\":{\"labelValue\":\"961073\",\"primaryLabelValue\":\"961073\"}},{\"attributeHeader\":{\"labelValue\":\"961075\",\"primaryLabelValue\":\"961075\"}},{\"attributeHeader\":{\"labelValue\":\"961077\",\"primaryLabelValue\":\"961077\"}},{\"attributeHeader\":{\"labelValue\":\"961081\",\"primaryLabelValue\":\"961081\"}},{\"attributeHeader\":{\"labelValue\":\"961083\",\"primaryLabelValue\":\"961083\"}},{\"attributeHeader\":{\"labelValue\":\"961085\",\"primaryLabelValue\":\"961085\"}},{\"attributeHeader\":{\"labelValue\":\"961087\",\"primaryLabelValue\":\"961087\"}},{\"attributeHeader\":{\"labelValue\":\"961089\",\"primaryLabelValue\":\"961089\"}},{\"attributeHeader\":{\"labelValue\":\"961091\",\"primaryLabelValue\":\"961091\"}},{\"attributeHeader\":{\"labelValue\":\"961093\",\"primaryLabelValue\":\"961093\"}},{\"attributeHeader\":{\"labelValue\":\"961095\",\"primaryLabelValue\":\"961095\"}},{\"attributeHeader\":{\"labelValue\":\"961097\",\"primaryLabelValue\":\"961097\"}},{\"attributeHeader\":{\"labelValue\":\"961099\",\"primaryLabelValue\":\"961099\"}},{\"attributeHeader\":{\"labelValue\":\"961101\",\"primaryLabelValue\":\"961101\"}},{\"attributeHeader\":{\"labelValue\":\"961103\",\"primaryLabelValue\":\"961103\"}},{\"attributeHeader\":{\"labelValue\":\"961105\",\"primaryLabelValue\":\"961105\"}},{\"attributeHeader\":{\"labelValue\":\"961107\",\"primaryLabelValue\":\"961107\"}},{\"attributeHeader\":{\"labelValue\":\"961109\",\"primaryLabelValue\":\"961109\"}},{\"attributeHeader\":{\"labelValue\":\"961111\",\"primaryLabelValue\":\"961111\"}},{\"attributeHeader\":{\"labelValue\":\"961113\",\"primaryLabelValue\":\"961113\"}},{\"attributeHeader\":{\"labelValue\":\"961115\",\"primaryLabelValue\":\"961115\"}},{\"attributeHeader\":{\"labelValue\":\"961117\",\"primaryLabelValue\":\"961117\"}},{\"attributeHeader\":{\"labelValue\":\"961119\",\"primaryLabelValue\":\"961119\"}},{\"attributeHeader\":{\"labelValue\":\"961121\",\"primaryLabelValue\":\"961121\"}},{\"attributeHeader\":{\"labelValue\":\"961123\",\"primaryLabelValue\":\"961123\"}},{\"attributeHeader\":{\"labelValue\":\"961125\",\"primaryLabelValue\":\"961125\"}},{\"attributeHeader\":{\"labelValue\":\"961127\",\"primaryLabelValue\":\"961127\"}},{\"attributeHeader\":{\"labelValue\":\"961129\",\"primaryLabelValue\":\"961129\"}},{\"attributeHeader\":{\"labelValue\":\"961131\",\"primaryLabelValue\":\"961131\"}},{\"attributeHeader\":{\"labelValue\":\"961133\",\"primaryLabelValue\":\"961133\"}},{\"attributeHeader\":{\"labelValue\":\"961135\",\"primaryLabelValue\":\"961135\"}},{\"attributeHeader\":{\"labelValue\":\"961137\",\"primaryLabelValue\":\"961137\"}},{\"attributeHeader\":{\"labelValue\":\"961139\",\"primaryLabelValue\":\"961139\"}},{\"attributeHeader\":{\"labelValue\":\"961141\",\"primaryLabelValue\":\"961141\"}},{\"attributeHeader\":{\"labelValue\":\"961143\",\"primaryLabelValue\":\"961143\"}},{\"attributeHeader\":{\"labelValue\":\"961145\",\"primaryLabelValue\":\"961145\"}},{\"attributeHeader\":{\"labelValue\":\"961147\",\"primaryLabelValue\":\"961147\"}},{\"attributeHeader\":{\"labelValue\":\"961149\",\"primaryLabelValue\":\"961149\"}},{\"attributeHeader\":{\"labelValue\":\"961151\",\"primaryLabelValue\":\"961151\"}},{\"attributeHeader\":{\"labelValue\":\"961153\",\"primaryLabelValue\":\"961153\"}},{\"attributeHeader\":{\"labelValue\":\"961155\",\"primaryLabelValue\":\"961155\"}},{\"attributeHeader\":{\"labelValue\":\"961157\",\"primaryLabelValue\":\"961157\"}},{\"attributeHeader\":{\"labelValue\":\"961159\",\"primaryLabelValue\":\"961159\"}},{\"attributeHeader\":{\"labelValue\":\"961161\",\"primaryLabelValue\":\"961161\"}},{\"attributeHeader\":{\"labelValue\":\"961163\",\"primaryLabelValue\":\"961163\"}},{\"attributeHeader\":{\"labelValue\":\"961165\",\"primaryLabelValue\":\"961165\"}},{\"attributeHeader\":{\"labelValue\":\"961167\",\"primaryLabelValue\":\"961167\"}},{\"attributeHeader\":{\"labelValue\":\"961169\",\"primaryLabelValue\":\"961169\"}},{\"attributeHeader\":{\"labelValue\":\"961171\",\"primaryLabelValue\":\"961171\"}},{\"attributeHeader\":{\"labelValue\":\"961173\",\"primaryLabelValue\":\"961173\"}},{\"attributeHeader\":{\"labelValue\":\"961175\",\"primaryLabelValue\":\"961175\"}},{\"attributeHeader\":{\"labelValue\":\"961177\",\"primaryLabelValue\":\"961177\"}},{\"attributeHeader\":{\"labelValue\":\"961179\",\"primaryLabelValue\":\"961179\"}},{\"attributeHeader\":{\"labelValue\":\"961181\",\"primaryLabelValue\":\"961181\"}},{\"attributeHeader\":{\"labelValue\":\"961183\",\"primaryLabelValue\":\"961183\"}},{\"attributeHeader\":{\"labelValue\":\"961185\",\"primaryLabelValue\":\"961185\"}},{\"attributeHeader\":{\"labelValue\":\"961187\",\"primaryLabelValue\":\"961187\"}},{\"attributeHeader\":{\"labelValue\":\"961189\",\"primaryLabelValue\":\"961189\"}},{\"attributeHeader\":{\"labelValue\":\"961191\",\"primaryLabelValue\":\"961191\"}},{\"attributeHeader\":{\"labelValue\":\"961193\",\"primaryLabelValue\":\"961193\"}},{\"attributeHeader\":{\"labelValue\":\"961195\",\"primaryLabelValue\":\"961195\"}},{\"attributeHeader\":{\"labelValue\":\"961197\",\"primaryLabelValue\":\"961197\"}},{\"attributeHeader\":{\"labelValue\":\"961199\",\"primaryLabelValue\":\"961199\"}},{\"attributeHeader\":{\"labelValue\":\"961201\",\"primaryLabelValue\":\"961201\"}},{\"attributeHeader\":{\"labelValue\":\"961203\",\"primaryLabelValue\":\"961203\"}},{\"attributeHeader\":{\"labelValue\":\"961205\",\"primaryLabelValue\":\"961205\"}},{\"attributeHeader\":{\"labelValue\":\"961207\",\"primaryLabelValue\":\"961207\"}},{\"attributeHeader\":{\"labelValue\":\"961209\",\"primaryLabelValue\":\"961209\"}},{\"attributeHeader\":{\"labelValue\":\"961211\",\"primaryLabelValue\":\"961211\"}},{\"attributeHeader\":{\"labelValue\":\"961213\",\"primaryLabelValue\":\"961213\"}},{\"attributeHeader\":{\"labelValue\":\"961215\",\"primaryLabelValue\":\"961215\"}},{\"attributeHeader\":{\"labelValue\":\"961217\",\"primaryLabelValue\":\"961217\"}},{\"attributeHeader\":{\"labelValue\":\"961219\",\"primaryLabelValue\":\"961219\"}},{\"attributeHeader\":{\"labelValue\":\"961221\",\"primaryLabelValue\":\"961221\"}},{\"attributeHeader\":{\"labelValue\":\"961223\",\"primaryLabelValue\":\"961223\"}},{\"attributeHeader\":{\"labelValue\":\"961225\",\"primaryLabelValue\":\"961225\"}},{\"attributeHeader\":{\"labelValue\":\"961227\",\"primaryLabelValue\":\"961227\"}},{\"attributeHeader\":{\"labelValue\":\"961229\",\"primaryLabelValue\":\"961229\"}},{\"attributeHeader\":{\"labelValue\":\"961231\",\"primaryLabelValue\":\"961231\"}},{\"attributeHeader\":{\"labelValue\":\"961233\",\"primaryLabelValue\":\"961233\"}},{\"attributeHeader\":{\"labelValue\":\"961235\",\"primaryLabelValue\":\"961235\"}},{\"attributeHeader\":{\"labelValue\":\"961237\",\"primaryLabelValue\":\"961237\"}},{\"attributeHeader\":{\"labelValue\":\"961241\",\"primaryLabelValue\":\"961241\"}},{\"attributeHeader\":{\"labelValue\":\"961243\",\"primaryLabelValue\":\"961243\"}},{\"attributeHeader\":{\"labelValue\":\"961245\",\"primaryLabelValue\":\"961245\"}},{\"attributeHeader\":{\"labelValue\":\"961247\",\"primaryLabelValue\":\"961247\"}},{\"attributeHeader\":{\"labelValue\":\"961249\",\"primaryLabelValue\":\"961249\"}},{\"attributeHeader\":{\"labelValue\":\"961251\",\"primaryLabelValue\":\"961251\"}},{\"attributeHeader\":{\"labelValue\":\"961253\",\"primaryLabelValue\":\"961253\"}},{\"attributeHeader\":{\"labelValue\":\"961255\",\"primaryLabelValue\":\"961255\"}},{\"attributeHeader\":{\"labelValue\":\"961257\",\"primaryLabelValue\":\"961257\"}},{\"attributeHeader\":{\"labelValue\":\"961259\",\"primaryLabelValue\":\"961259\"}},{\"attributeHeader\":{\"labelValue\":\"961261\",\"primaryLabelValue\":\"961261\"}},{\"attributeHeader\":{\"labelValue\":\"961263\",\"primaryLabelValue\":\"961263\"}},{\"attributeHeader\":{\"labelValue\":\"961265\",\"primaryLabelValue\":\"961265\"}},{\"attributeHeader\":{\"labelValue\":\"961267\",\"primaryLabelValue\":\"961267\"}},{\"attributeHeader\":{\"labelValue\":\"961269\",\"primaryLabelValue\":\"961269\"}},{\"attributeHeader\":{\"labelValue\":\"961271\",\"primaryLabelValue\":\"961271\"}},{\"attributeHeader\":{\"labelValue\":\"961273\",\"primaryLabelValue\":\"961273\"}},{\"attributeHeader\":{\"labelValue\":\"961275\",\"primaryLabelValue\":\"961275\"}},{\"attributeHeader\":{\"labelValue\":\"961277\",\"primaryLabelValue\":\"961277\"}},{\"attributeHeader\":{\"labelValue\":\"961279\",\"primaryLabelValue\":\"961279\"}},{\"attributeHeader\":{\"labelValue\":\"961281\",\"primaryLabelValue\":\"961281\"}},{\"attributeHeader\":{\"labelValue\":\"961283\",\"primaryLabelValue\":\"961283\"}},{\"attributeHeader\":{\"labelValue\":\"961285\",\"primaryLabelValue\":\"961285\"}},{\"attributeHeader\":{\"labelValue\":\"961287\",\"primaryLabelValue\":\"961287\"}},{\"attributeHeader\":{\"labelValue\":\"961289\",\"primaryLabelValue\":\"961289\"}},{\"attributeHeader\":{\"labelValue\":\"961291\",\"primaryLabelValue\":\"961291\"}},{\"attributeHeader\":{\"labelValue\":\"961293\",\"primaryLabelValue\":\"961293\"}},{\"attributeHeader\":{\"labelValue\":\"961295\",\"primaryLabelValue\":\"961295\"}},{\"attributeHeader\":{\"labelValue\":\"961297\",\"primaryLabelValue\":\"961297\"}},{\"attributeHeader\":{\"labelValue\":\"961299\",\"primaryLabelValue\":\"961299\"}},{\"attributeHeader\":{\"labelValue\":\"961301\",\"primaryLabelValue\":\"961301\"}},{\"attributeHeader\":{\"labelValue\":\"961303\",\"primaryLabelValue\":\"961303\"}},{\"attributeHeader\":{\"labelValue\":\"961305\",\"primaryLabelValue\":\"961305\"}},{\"attributeHeader\":{\"labelValue\":\"961307\",\"primaryLabelValue\":\"961307\"}},{\"attributeHeader\":{\"labelValue\":\"961309\",\"primaryLabelValue\":\"961309\"}},{\"attributeHeader\":{\"labelValue\":\"961311\",\"primaryLabelValue\":\"961311\"}},{\"attributeHeader\":{\"labelValue\":\"961317\",\"primaryLabelValue\":\"961317\"}},{\"attributeHeader\":{\"labelValue\":\"961319\",\"primaryLabelValue\":\"961319\"}},{\"attributeHeader\":{\"labelValue\":\"961321\",\"primaryLabelValue\":\"961321\"}},{\"attributeHeader\":{\"labelValue\":\"961323\",\"primaryLabelValue\":\"961323\"}},{\"attributeHeader\":{\"labelValue\":\"961325\",\"primaryLabelValue\":\"961325\"}},{\"attributeHeader\":{\"labelValue\":\"961327\",\"primaryLabelValue\":\"961327\"}},{\"attributeHeader\":{\"labelValue\":\"961329\",\"primaryLabelValue\":\"961329\"}},{\"attributeHeader\":{\"labelValue\":\"961331\",\"primaryLabelValue\":\"961331\"}},{\"attributeHeader\":{\"labelValue\":\"961333\",\"primaryLabelValue\":\"961333\"}},{\"attributeHeader\":{\"labelValue\":\"961335\",\"primaryLabelValue\":\"961335\"}},{\"attributeHeader\":{\"labelValue\":\"961337\",\"primaryLabelValue\":\"961337\"}},{\"attributeHeader\":{\"labelValue\":\"961339\",\"primaryLabelValue\":\"961339\"}},{\"attributeHeader\":{\"labelValue\":\"961341\",\"primaryLabelValue\":\"961341\"}},{\"attributeHeader\":{\"labelValue\":\"961343\",\"primaryLabelValue\":\"961343\"}},{\"attributeHeader\":{\"labelValue\":\"961345\",\"primaryLabelValue\":\"961345\"}},{\"attributeHeader\":{\"labelValue\":\"961349\",\"primaryLabelValue\":\"961349\"}},{\"attributeHeader\":{\"labelValue\":\"961353\",\"primaryLabelValue\":\"961353\"}},{\"attributeHeader\":{\"labelValue\":\"961355\",\"primaryLabelValue\":\"961355\"}},{\"attributeHeader\":{\"labelValue\":\"961357\",\"primaryLabelValue\":\"961357\"}},{\"attributeHeader\":{\"labelValue\":\"961363\",\"primaryLabelValue\":\"961363\"}},{\"attributeHeader\":{\"labelValue\":\"961365\",\"primaryLabelValue\":\"961365\"}},{\"attributeHeader\":{\"labelValue\":\"961367\",\"primaryLabelValue\":\"961367\"}},{\"attributeHeader\":{\"labelValue\":\"961369\",\"primaryLabelValue\":\"961369\"}},{\"attributeHeader\":{\"labelValue\":\"961371\",\"primaryLabelValue\":\"961371\"}},{\"attributeHeader\":{\"labelValue\":\"961373\",\"primaryLabelValue\":\"961373\"}},{\"attributeHeader\":{\"labelValue\":\"961375\",\"primaryLabelValue\":\"961375\"}},{\"attributeHeader\":{\"labelValue\":\"961377\",\"primaryLabelValue\":\"961377\"}},{\"attributeHeader\":{\"labelValue\":\"961379\",\"primaryLabelValue\":\"961379\"}},{\"attributeHeader\":{\"labelValue\":\"961381\",\"primaryLabelValue\":\"961381\"}},{\"attributeHeader\":{\"labelValue\":\"961383\",\"primaryLabelValue\":\"961383\"}},{\"attributeHeader\":{\"labelValue\":\"961385\",\"primaryLabelValue\":\"961385\"}},{\"attributeHeader\":{\"labelValue\":\"961387\",\"primaryLabelValue\":\"961387\"}},{\"attributeHeader\":{\"labelValue\":\"961389\",\"primaryLabelValue\":\"961389\"}},{\"attributeHeader\":{\"labelValue\":\"961391\",\"primaryLabelValue\":\"961391\"}},{\"attributeHeader\":{\"labelValue\":\"961393\",\"primaryLabelValue\":\"961393\"}},{\"attributeHeader\":{\"labelValue\":\"961395\",\"primaryLabelValue\":\"961395\"}},{\"attributeHeader\":{\"labelValue\":\"961397\",\"primaryLabelValue\":\"961397\"}},{\"attributeHeader\":{\"labelValue\":\"961399\",\"primaryLabelValue\":\"961399\"}},{\"attributeHeader\":{\"labelValue\":\"961401\",\"primaryLabelValue\":\"961401\"}},{\"attributeHeader\":{\"labelValue\":\"961403\",\"primaryLabelValue\":\"961403\"}},{\"attributeHeader\":{\"labelValue\":\"961405\",\"primaryLabelValue\":\"961405\"}},{\"attributeHeader\":{\"labelValue\":\"961407\",\"primaryLabelValue\":\"961407\"}},{\"attributeHeader\":{\"labelValue\":\"961409\",\"primaryLabelValue\":\"961409\"}},{\"attributeHeader\":{\"labelValue\":\"961411\",\"primaryLabelValue\":\"961411\"}},{\"attributeHeader\":{\"labelValue\":\"961413\",\"primaryLabelValue\":\"961413\"}},{\"attributeHeader\":{\"labelValue\":\"961415\",\"primaryLabelValue\":\"961415\"}},{\"attributeHeader\":{\"labelValue\":\"961417\",\"primaryLabelValue\":\"961417\"}},{\"attributeHeader\":{\"labelValue\":\"961419\",\"primaryLabelValue\":\"961419\"}},{\"attributeHeader\":{\"labelValue\":\"961421\",\"primaryLabelValue\":\"961421\"}},{\"attributeHeader\":{\"labelValue\":\"961423\",\"primaryLabelValue\":\"961423\"}},{\"attributeHeader\":{\"labelValue\":\"961425\",\"primaryLabelValue\":\"961425\"}},{\"attributeHeader\":{\"labelValue\":\"961427\",\"primaryLabelValue\":\"961427\"}},{\"attributeHeader\":{\"labelValue\":\"961429\",\"primaryLabelValue\":\"961429\"}},{\"attributeHeader\":{\"labelValue\":\"961431\",\"primaryLabelValue\":\"961431\"}},{\"attributeHeader\":{\"labelValue\":\"961433\",\"primaryLabelValue\":\"961433\"}},{\"attributeHeader\":{\"labelValue\":\"961435\",\"primaryLabelValue\":\"961435\"}},{\"attributeHeader\":{\"labelValue\":\"961437\",\"primaryLabelValue\":\"961437\"}},{\"attributeHeader\":{\"labelValue\":\"961439\",\"primaryLabelValue\":\"961439\"}},{\"attributeHeader\":{\"labelValue\":\"961441\",\"primaryLabelValue\":\"961441\"}},{\"attributeHeader\":{\"labelValue\":\"961443\",\"primaryLabelValue\":\"961443\"}},{\"attributeHeader\":{\"labelValue\":\"961445\",\"primaryLabelValue\":\"961445\"}},{\"attributeHeader\":{\"labelValue\":\"961447\",\"primaryLabelValue\":\"961447\"}},{\"attributeHeader\":{\"labelValue\":\"961449\",\"primaryLabelValue\":\"961449\"}},{\"attributeHeader\":{\"labelValue\":\"961451\",\"primaryLabelValue\":\"961451\"}},{\"attributeHeader\":{\"labelValue\":\"961453\",\"primaryLabelValue\":\"961453\"}},{\"attributeHeader\":{\"labelValue\":\"961455\",\"primaryLabelValue\":\"961455\"}},{\"attributeHeader\":{\"labelValue\":\"961457\",\"primaryLabelValue\":\"961457\"}},{\"attributeHeader\":{\"labelValue\":\"961459\",\"primaryLabelValue\":\"961459\"}},{\"attributeHeader\":{\"labelValue\":\"961461\",\"primaryLabelValue\":\"961461\"}},{\"attributeHeader\":{\"labelValue\":\"961463\",\"primaryLabelValue\":\"961463\"}},{\"attributeHeader\":{\"labelValue\":\"961465\",\"primaryLabelValue\":\"961465\"}},{\"attributeHeader\":{\"labelValue\":\"961471\",\"primaryLabelValue\":\"961471\"}},{\"attributeHeader\":{\"labelValue\":\"961473\",\"primaryLabelValue\":\"961473\"}},{\"attributeHeader\":{\"labelValue\":\"961477\",\"primaryLabelValue\":\"961477\"}},{\"attributeHeader\":{\"labelValue\":\"961479\",\"primaryLabelValue\":\"961479\"}},{\"attributeHeader\":{\"labelValue\":\"961481\",\"primaryLabelValue\":\"961481\"}},{\"attributeHeader\":{\"labelValue\":\"961485\",\"primaryLabelValue\":\"961485\"}},{\"attributeHeader\":{\"labelValue\":\"961487\",\"primaryLabelValue\":\"961487\"}},{\"attributeHeader\":{\"labelValue\":\"961489\",\"primaryLabelValue\":\"961489\"}},{\"attributeHeader\":{\"labelValue\":\"961491\",\"primaryLabelValue\":\"961491\"}},{\"attributeHeader\":{\"labelValue\":\"961493\",\"primaryLabelValue\":\"961493\"}},{\"attributeHeader\":{\"labelValue\":\"961495\",\"primaryLabelValue\":\"961495\"}},{\"attributeHeader\":{\"labelValue\":\"961497\",\"primaryLabelValue\":\"961497\"}},{\"attributeHeader\":{\"labelValue\":\"961499\",\"primaryLabelValue\":\"961499\"}},{\"attributeHeader\":{\"labelValue\":\"961501\",\"primaryLabelValue\":\"961501\"}},{\"attributeHeader\":{\"labelValue\":\"961503\",\"primaryLabelValue\":\"961503\"}},{\"attributeHeader\":{\"labelValue\":\"961505\",\"primaryLabelValue\":\"961505\"}},{\"attributeHeader\":{\"labelValue\":\"961507\",\"primaryLabelValue\":\"961507\"}},{\"attributeHeader\":{\"labelValue\":\"961509\",\"primaryLabelValue\":\"961509\"}},{\"attributeHeader\":{\"labelValue\":\"961511\",\"primaryLabelValue\":\"961511\"}},{\"attributeHeader\":{\"labelValue\":\"961513\",\"primaryLabelValue\":\"961513\"}},{\"attributeHeader\":{\"labelValue\":\"961515\",\"primaryLabelValue\":\"961515\"}},{\"attributeHeader\":{\"labelValue\":\"961517\",\"primaryLabelValue\":\"961517\"}},{\"attributeHeader\":{\"labelValue\":\"961519\",\"primaryLabelValue\":\"961519\"}},{\"attributeHeader\":{\"labelValue\":\"961521\",\"primaryLabelValue\":\"961521\"}},{\"attributeHeader\":{\"labelValue\":\"961523\",\"primaryLabelValue\":\"961523\"}},{\"attributeHeader\":{\"labelValue\":\"961525\",\"primaryLabelValue\":\"961525\"}},{\"attributeHeader\":{\"labelValue\":\"961527\",\"primaryLabelValue\":\"961527\"}},{\"attributeHeader\":{\"labelValue\":\"961529\",\"primaryLabelValue\":\"961529\"}},{\"attributeHeader\":{\"labelValue\":\"961531\",\"primaryLabelValue\":\"961531\"}},{\"attributeHeader\":{\"labelValue\":\"961533\",\"primaryLabelValue\":\"961533\"}},{\"attributeHeader\":{\"labelValue\":\"961535\",\"primaryLabelValue\":\"961535\"}},{\"attributeHeader\":{\"labelValue\":\"961537\",\"primaryLabelValue\":\"961537\"}},{\"attributeHeader\":{\"labelValue\":\"961539\",\"primaryLabelValue\":\"961539\"}},{\"attributeHeader\":{\"labelValue\":\"961541\",\"primaryLabelValue\":\"961541\"}},{\"attributeHeader\":{\"labelValue\":\"961543\",\"primaryLabelValue\":\"961543\"}},{\"attributeHeader\":{\"labelValue\":\"961545\",\"primaryLabelValue\":\"961545\"}},{\"attributeHeader\":{\"labelValue\":\"961547\",\"primaryLabelValue\":\"961547\"}},{\"attributeHeader\":{\"labelValue\":\"961549\",\"primaryLabelValue\":\"961549\"}},{\"attributeHeader\":{\"labelValue\":\"961551\",\"primaryLabelValue\":\"961551\"}},{\"attributeHeader\":{\"labelValue\":\"961553\",\"primaryLabelValue\":\"961553\"}},{\"attributeHeader\":{\"labelValue\":\"961555\",\"primaryLabelValue\":\"961555\"}},{\"attributeHeader\":{\"labelValue\":\"961557\",\"primaryLabelValue\":\"961557\"}},{\"attributeHeader\":{\"labelValue\":\"961559\",\"primaryLabelValue\":\"961559\"}},{\"attributeHeader\":{\"labelValue\":\"961561\",\"primaryLabelValue\":\"961561\"}},{\"attributeHeader\":{\"labelValue\":\"961563\",\"primaryLabelValue\":\"961563\"}},{\"attributeHeader\":{\"labelValue\":\"961565\",\"primaryLabelValue\":\"961565\"}},{\"attributeHeader\":{\"labelValue\":\"961569\",\"primaryLabelValue\":\"961569\"}},{\"attributeHeader\":{\"labelValue\":\"961571\",\"primaryLabelValue\":\"961571\"}},{\"attributeHeader\":{\"labelValue\":\"961573\",\"primaryLabelValue\":\"961573\"}},{\"attributeHeader\":{\"labelValue\":\"961575\",\"primaryLabelValue\":\"961575\"}},{\"attributeHeader\":{\"labelValue\":\"961577\",\"primaryLabelValue\":\"961577\"}},{\"attributeHeader\":{\"labelValue\":\"961579\",\"primaryLabelValue\":\"961579\"}},{\"attributeHeader\":{\"labelValue\":\"961581\",\"primaryLabelValue\":\"961581\"}},{\"attributeHeader\":{\"labelValue\":\"961583\",\"primaryLabelValue\":\"961583\"}},{\"attributeHeader\":{\"labelValue\":\"961585\",\"primaryLabelValue\":\"961585\"}},{\"attributeHeader\":{\"labelValue\":\"961587\",\"primaryLabelValue\":\"961587\"}},{\"attributeHeader\":{\"labelValue\":\"961589\",\"primaryLabelValue\":\"961589\"}},{\"attributeHeader\":{\"labelValue\":\"961591\",\"primaryLabelValue\":\"961591\"}},{\"attributeHeader\":{\"labelValue\":\"961593\",\"primaryLabelValue\":\"961593\"}},{\"attributeHeader\":{\"labelValue\":\"961595\",\"primaryLabelValue\":\"961595\"}},{\"attributeHeader\":{\"labelValue\":\"961597\",\"primaryLabelValue\":\"961597\"}},{\"attributeHeader\":{\"labelValue\":\"961601\",\"primaryLabelValue\":\"961601\"}},{\"attributeHeader\":{\"labelValue\":\"961603\",\"primaryLabelValue\":\"961603\"}},{\"attributeHeader\":{\"labelValue\":\"961605\",\"primaryLabelValue\":\"961605\"}},{\"attributeHeader\":{\"labelValue\":\"961607\",\"primaryLabelValue\":\"961607\"}},{\"attributeHeader\":{\"labelValue\":\"961609\",\"primaryLabelValue\":\"961609\"}},{\"attributeHeader\":{\"labelValue\":\"961611\",\"primaryLabelValue\":\"961611\"}},{\"attributeHeader\":{\"labelValue\":\"961613\",\"primaryLabelValue\":\"961613\"}},{\"attributeHeader\":{\"labelValue\":\"961615\",\"primaryLabelValue\":\"961615\"}},{\"attributeHeader\":{\"labelValue\":\"961617\",\"primaryLabelValue\":\"961617\"}},{\"attributeHeader\":{\"labelValue\":\"961619\",\"primaryLabelValue\":\"961619\"}},{\"attributeHeader\":{\"labelValue\":\"961621\",\"primaryLabelValue\":\"961621\"}},{\"attributeHeader\":{\"labelValue\":\"961623\",\"primaryLabelValue\":\"961623\"}},{\"attributeHeader\":{\"labelValue\":\"961625\",\"primaryLabelValue\":\"961625\"}},{\"attributeHeader\":{\"labelValue\":\"961627\",\"primaryLabelValue\":\"961627\"}},{\"attributeHeader\":{\"labelValue\":\"961629\",\"primaryLabelValue\":\"961629\"}},{\"attributeHeader\":{\"labelValue\":\"961631\",\"primaryLabelValue\":\"961631\"}},{\"attributeHeader\":{\"labelValue\":\"961633\",\"primaryLabelValue\":\"961633\"}},{\"attributeHeader\":{\"labelValue\":\"961635\",\"primaryLabelValue\":\"961635\"}},{\"attributeHeader\":{\"labelValue\":\"961637\",\"primaryLabelValue\":\"961637\"}},{\"attributeHeader\":{\"labelValue\":\"961639\",\"primaryLabelValue\":\"961639\"}},{\"attributeHeader\":{\"labelValue\":\"961641\",\"primaryLabelValue\":\"961641\"}},{\"attributeHeader\":{\"labelValue\":\"961643\",\"primaryLabelValue\":\"961643\"}},{\"attributeHeader\":{\"labelValue\":\"961645\",\"primaryLabelValue\":\"961645\"}},{\"attributeHeader\":{\"labelValue\":\"961647\",\"primaryLabelValue\":\"961647\"}},{\"attributeHeader\":{\"labelValue\":\"961649\",\"primaryLabelValue\":\"961649\"}},{\"attributeHeader\":{\"labelValue\":\"961651\",\"primaryLabelValue\":\"961651\"}},{\"attributeHeader\":{\"labelValue\":\"961653\",\"primaryLabelValue\":\"961653\"}},{\"attributeHeader\":{\"labelValue\":\"961655\",\"primaryLabelValue\":\"961655\"}},{\"attributeHeader\":{\"labelValue\":\"961657\",\"primaryLabelValue\":\"961657\"}},{\"attributeHeader\":{\"labelValue\":\"961659\",\"primaryLabelValue\":\"961659\"}},{\"attributeHeader\":{\"labelValue\":\"961661\",\"primaryLabelValue\":\"961661\"}},{\"attributeHeader\":{\"labelValue\":\"961663\",\"primaryLabelValue\":\"961663\"}},{\"attributeHeader\":{\"labelValue\":\"961665\",\"primaryLabelValue\":\"961665\"}},{\"attributeHeader\":{\"labelValue\":\"961667\",\"primaryLabelValue\":\"961667\"}},{\"attributeHeader\":{\"labelValue\":\"961669\",\"primaryLabelValue\":\"961669\"}},{\"attributeHeader\":{\"labelValue\":\"961671\",\"primaryLabelValue\":\"961671\"}},{\"attributeHeader\":{\"labelValue\":\"961673\",\"primaryLabelValue\":\"961673\"}},{\"attributeHeader\":{\"labelValue\":\"961675\",\"primaryLabelValue\":\"961675\"}},{\"attributeHeader\":{\"labelValue\":\"961677\",\"primaryLabelValue\":\"961677\"}},{\"attributeHeader\":{\"labelValue\":\"961679\",\"primaryLabelValue\":\"961679\"}},{\"attributeHeader\":{\"labelValue\":\"961681\",\"primaryLabelValue\":\"961681\"}},{\"attributeHeader\":{\"labelValue\":\"961683\",\"primaryLabelValue\":\"961683\"}},{\"attributeHeader\":{\"labelValue\":\"961685\",\"primaryLabelValue\":\"961685\"}},{\"attributeHeader\":{\"labelValue\":\"961687\",\"primaryLabelValue\":\"961687\"}},{\"attributeHeader\":{\"labelValue\":\"961689\",\"primaryLabelValue\":\"961689\"}},{\"attributeHeader\":{\"labelValue\":\"961691\",\"primaryLabelValue\":\"961691\"}},{\"attributeHeader\":{\"labelValue\":\"961693\",\"primaryLabelValue\":\"961693\"}},{\"attributeHeader\":{\"labelValue\":\"961695\",\"primaryLabelValue\":\"961695\"}},{\"attributeHeader\":{\"labelValue\":\"961697\",\"primaryLabelValue\":\"961697\"}},{\"attributeHeader\":{\"labelValue\":\"961699\",\"primaryLabelValue\":\"961699\"}},{\"attributeHeader\":{\"labelValue\":\"961701\",\"primaryLabelValue\":\"961701\"}},{\"attributeHeader\":{\"labelValue\":\"961703\",\"primaryLabelValue\":\"961703\"}},{\"attributeHeader\":{\"labelValue\":\"961705\",\"primaryLabelValue\":\"961705\"}},{\"attributeHeader\":{\"labelValue\":\"961707\",\"primaryLabelValue\":\"961707\"}},{\"attributeHeader\":{\"labelValue\":\"961709\",\"primaryLabelValue\":\"961709\"}},{\"attributeHeader\":{\"labelValue\":\"961711\",\"primaryLabelValue\":\"961711\"}},{\"attributeHeader\":{\"labelValue\":\"961713\",\"primaryLabelValue\":\"961713\"}},{\"attributeHeader\":{\"labelValue\":\"961715\",\"primaryLabelValue\":\"961715\"}},{\"attributeHeader\":{\"labelValue\":\"961717\",\"primaryLabelValue\":\"961717\"}},{\"attributeHeader\":{\"labelValue\":\"961719\",\"primaryLabelValue\":\"961719\"}},{\"attributeHeader\":{\"labelValue\":\"961721\",\"primaryLabelValue\":\"961721\"}},{\"attributeHeader\":{\"labelValue\":\"961723\",\"primaryLabelValue\":\"961723\"}},{\"attributeHeader\":{\"labelValue\":\"961725\",\"primaryLabelValue\":\"961725\"}},{\"attributeHeader\":{\"labelValue\":\"961727\",\"primaryLabelValue\":\"961727\"}},{\"attributeHeader\":{\"labelValue\":\"961729\",\"primaryLabelValue\":\"961729\"}},{\"attributeHeader\":{\"labelValue\":\"961731\",\"primaryLabelValue\":\"961731\"}},{\"attributeHeader\":{\"labelValue\":\"961733\",\"primaryLabelValue\":\"961733\"}},{\"attributeHeader\":{\"labelValue\":\"961735\",\"primaryLabelValue\":\"961735\"}},{\"attributeHeader\":{\"labelValue\":\"961737\",\"primaryLabelValue\":\"961737\"}},{\"attributeHeader\":{\"labelValue\":\"961739\",\"primaryLabelValue\":\"961739\"}},{\"attributeHeader\":{\"labelValue\":\"961741\",\"primaryLabelValue\":\"961741\"}},{\"attributeHeader\":{\"labelValue\":\"961743\",\"primaryLabelValue\":\"961743\"}},{\"attributeHeader\":{\"labelValue\":\"961745\",\"primaryLabelValue\":\"961745\"}},{\"attributeHeader\":{\"labelValue\":\"961747\",\"primaryLabelValue\":\"961747\"}},{\"attributeHeader\":{\"labelValue\":\"961749\",\"primaryLabelValue\":\"961749\"}},{\"attributeHeader\":{\"labelValue\":\"961751\",\"primaryLabelValue\":\"961751\"}},{\"attributeHeader\":{\"labelValue\":\"961753\",\"primaryLabelValue\":\"961753\"}},{\"attributeHeader\":{\"labelValue\":\"961755\",\"primaryLabelValue\":\"961755\"}},{\"attributeHeader\":{\"labelValue\":\"961757\",\"primaryLabelValue\":\"961757\"}},{\"attributeHeader\":{\"labelValue\":\"961759\",\"primaryLabelValue\":\"961759\"}},{\"attributeHeader\":{\"labelValue\":\"961761\",\"primaryLabelValue\":\"961761\"}},{\"attributeHeader\":{\"labelValue\":\"961763\",\"primaryLabelValue\":\"961763\"}},{\"attributeHeader\":{\"labelValue\":\"961765\",\"primaryLabelValue\":\"961765\"}},{\"attributeHeader\":{\"labelValue\":\"961767\",\"primaryLabelValue\":\"961767\"}},{\"attributeHeader\":{\"labelValue\":\"961769\",\"primaryLabelValue\":\"961769\"}},{\"attributeHeader\":{\"labelValue\":\"961771\",\"primaryLabelValue\":\"961771\"}},{\"attributeHeader\":{\"labelValue\":\"961773\",\"primaryLabelValue\":\"961773\"}},{\"attributeHeader\":{\"labelValue\":\"961775\",\"primaryLabelValue\":\"961775\"}},{\"attributeHeader\":{\"labelValue\":\"961777\",\"primaryLabelValue\":\"961777\"}},{\"attributeHeader\":{\"labelValue\":\"961779\",\"primaryLabelValue\":\"961779\"}},{\"attributeHeader\":{\"labelValue\":\"961781\",\"primaryLabelValue\":\"961781\"}},{\"attributeHeader\":{\"labelValue\":\"961783\",\"primaryLabelValue\":\"961783\"}},{\"attributeHeader\":{\"labelValue\":\"961785\",\"primaryLabelValue\":\"961785\"}},{\"attributeHeader\":{\"labelValue\":\"961787\",\"primaryLabelValue\":\"961787\"}},{\"attributeHeader\":{\"labelValue\":\"961791\",\"primaryLabelValue\":\"961791\"}},{\"attributeHeader\":{\"labelValue\":\"961793\",\"primaryLabelValue\":\"961793\"}},{\"attributeHeader\":{\"labelValue\":\"961795\",\"primaryLabelValue\":\"961795\"}},{\"attributeHeader\":{\"labelValue\":\"961797\",\"primaryLabelValue\":\"961797\"}},{\"attributeHeader\":{\"labelValue\":\"961799\",\"primaryLabelValue\":\"961799\"}},{\"attributeHeader\":{\"labelValue\":\"961801\",\"primaryLabelValue\":\"961801\"}},{\"attributeHeader\":{\"labelValue\":\"961803\",\"primaryLabelValue\":\"961803\"}},{\"attributeHeader\":{\"labelValue\":\"961805\",\"primaryLabelValue\":\"961805\"}},{\"attributeHeader\":{\"labelValue\":\"961807\",\"primaryLabelValue\":\"961807\"}},{\"attributeHeader\":{\"labelValue\":\"961809\",\"primaryLabelValue\":\"961809\"}},{\"attributeHeader\":{\"labelValue\":\"961811\",\"primaryLabelValue\":\"961811\"}},{\"attributeHeader\":{\"labelValue\":\"961813\",\"primaryLabelValue\":\"961813\"}},{\"attributeHeader\":{\"labelValue\":\"961815\",\"primaryLabelValue\":\"961815\"}},{\"attributeHeader\":{\"labelValue\":\"961817\",\"primaryLabelValue\":\"961817\"}},{\"attributeHeader\":{\"labelValue\":\"961819\",\"primaryLabelValue\":\"961819\"}},{\"attributeHeader\":{\"labelValue\":\"961821\",\"primaryLabelValue\":\"961821\"}},{\"attributeHeader\":{\"labelValue\":\"961823\",\"primaryLabelValue\":\"961823\"}},{\"attributeHeader\":{\"labelValue\":\"961825\",\"primaryLabelValue\":\"961825\"}},{\"attributeHeader\":{\"labelValue\":\"961827\",\"primaryLabelValue\":\"961827\"}},{\"attributeHeader\":{\"labelValue\":\"961829\",\"primaryLabelValue\":\"961829\"}},{\"attributeHeader\":{\"labelValue\":\"961831\",\"primaryLabelValue\":\"961831\"}},{\"attributeHeader\":{\"labelValue\":\"961833\",\"primaryLabelValue\":\"961833\"}},{\"attributeHeader\":{\"labelValue\":\"961835\",\"primaryLabelValue\":\"961835\"}},{\"attributeHeader\":{\"labelValue\":\"961837\",\"primaryLabelValue\":\"961837\"}},{\"attributeHeader\":{\"labelValue\":\"961839\",\"primaryLabelValue\":\"961839\"}},{\"attributeHeader\":{\"labelValue\":\"961841\",\"primaryLabelValue\":\"961841\"}},{\"attributeHeader\":{\"labelValue\":\"961843\",\"primaryLabelValue\":\"961843\"}},{\"attributeHeader\":{\"labelValue\":\"961845\",\"primaryLabelValue\":\"961845\"}},{\"attributeHeader\":{\"labelValue\":\"961847\",\"primaryLabelValue\":\"961847\"}},{\"attributeHeader\":{\"labelValue\":\"961849\",\"primaryLabelValue\":\"961849\"}},{\"attributeHeader\":{\"labelValue\":\"961851\",\"primaryLabelValue\":\"961851\"}},{\"attributeHeader\":{\"labelValue\":\"961853\",\"primaryLabelValue\":\"961853\"}},{\"attributeHeader\":{\"labelValue\":\"961855\",\"primaryLabelValue\":\"961855\"}},{\"attributeHeader\":{\"labelValue\":\"961857\",\"primaryLabelValue\":\"961857\"}},{\"attributeHeader\":{\"labelValue\":\"961859\",\"primaryLabelValue\":\"961859\"}},{\"attributeHeader\":{\"labelValue\":\"961861\",\"primaryLabelValue\":\"961861\"}},{\"attributeHeader\":{\"labelValue\":\"961863\",\"primaryLabelValue\":\"961863\"}},{\"attributeHeader\":{\"labelValue\":\"961865\",\"primaryLabelValue\":\"961865\"}},{\"attributeHeader\":{\"labelValue\":\"961867\",\"primaryLabelValue\":\"961867\"}},{\"attributeHeader\":{\"labelValue\":\"961869\",\"primaryLabelValue\":\"961869\"}},{\"attributeHeader\":{\"labelValue\":\"961871\",\"primaryLabelValue\":\"961871\"}},{\"attributeHeader\":{\"labelValue\":\"961873\",\"primaryLabelValue\":\"961873\"}},{\"attributeHeader\":{\"labelValue\":\"961875\",\"primaryLabelValue\":\"961875\"}},{\"attributeHeader\":{\"labelValue\":\"961877\",\"primaryLabelValue\":\"961877\"}},{\"attributeHeader\":{\"labelValue\":\"961879\",\"primaryLabelValue\":\"961879\"}},{\"attributeHeader\":{\"labelValue\":\"961881\",\"primaryLabelValue\":\"961881\"}},{\"attributeHeader\":{\"labelValue\":\"961883\",\"primaryLabelValue\":\"961883\"}},{\"attributeHeader\":{\"labelValue\":\"961885\",\"primaryLabelValue\":\"961885\"}},{\"attributeHeader\":{\"labelValue\":\"961887\",\"primaryLabelValue\":\"961887\"}},{\"attributeHeader\":{\"labelValue\":\"961889\",\"primaryLabelValue\":\"961889\"}},{\"attributeHeader\":{\"labelValue\":\"961891\",\"primaryLabelValue\":\"961891\"}},{\"attributeHeader\":{\"labelValue\":\"961893\",\"primaryLabelValue\":\"961893\"}},{\"attributeHeader\":{\"labelValue\":\"961895\",\"primaryLabelValue\":\"961895\"}},{\"attributeHeader\":{\"labelValue\":\"961897\",\"primaryLabelValue\":\"961897\"}},{\"attributeHeader\":{\"labelValue\":\"961899\",\"primaryLabelValue\":\"961899\"}},{\"attributeHeader\":{\"labelValue\":\"961901\",\"primaryLabelValue\":\"961901\"}},{\"attributeHeader\":{\"labelValue\":\"961903\",\"primaryLabelValue\":\"961903\"}},{\"attributeHeader\":{\"labelValue\":\"961905\",\"primaryLabelValue\":\"961905\"}},{\"attributeHeader\":{\"labelValue\":\"961907\",\"primaryLabelValue\":\"961907\"}},{\"attributeHeader\":{\"labelValue\":\"961909\",\"primaryLabelValue\":\"961909\"}},{\"attributeHeader\":{\"labelValue\":\"961911\",\"primaryLabelValue\":\"961911\"}},{\"attributeHeader\":{\"labelValue\":\"961913\",\"primaryLabelValue\":\"961913\"}},{\"attributeHeader\":{\"labelValue\":\"961915\",\"primaryLabelValue\":\"961915\"}},{\"attributeHeader\":{\"labelValue\":\"961917\",\"primaryLabelValue\":\"961917\"}},{\"attributeHeader\":{\"labelValue\":\"961919\",\"primaryLabelValue\":\"961919\"}},{\"attributeHeader\":{\"labelValue\":\"961921\",\"primaryLabelValue\":\"961921\"}},{\"attributeHeader\":{\"labelValue\":\"961923\",\"primaryLabelValue\":\"961923\"}},{\"attributeHeader\":{\"labelValue\":\"961925\",\"primaryLabelValue\":\"961925\"}},{\"attributeHeader\":{\"labelValue\":\"961927\",\"primaryLabelValue\":\"961927\"}},{\"attributeHeader\":{\"labelValue\":\"961929\",\"primaryLabelValue\":\"961929\"}},{\"attributeHeader\":{\"labelValue\":\"961931\",\"primaryLabelValue\":\"961931\"}},{\"attributeHeader\":{\"labelValue\":\"961933\",\"primaryLabelValue\":\"961933\"}},{\"attributeHeader\":{\"labelValue\":\"961935\",\"primaryLabelValue\":\"961935\"}},{\"attributeHeader\":{\"labelValue\":\"961937\",\"primaryLabelValue\":\"961937\"}},{\"attributeHeader\":{\"labelValue\":\"961939\",\"primaryLabelValue\":\"961939\"}},{\"attributeHeader\":{\"labelValue\":\"961941\",\"primaryLabelValue\":\"961941\"}},{\"attributeHeader\":{\"labelValue\":\"961943\",\"primaryLabelValue\":\"961943\"}},{\"attributeHeader\":{\"labelValue\":\"961945\",\"primaryLabelValue\":\"961945\"}},{\"attributeHeader\":{\"labelValue\":\"961947\",\"primaryLabelValue\":\"961947\"}},{\"attributeHeader\":{\"labelValue\":\"961949\",\"primaryLabelValue\":\"961949\"}},{\"attributeHeader\":{\"labelValue\":\"961951\",\"primaryLabelValue\":\"961951\"}},{\"attributeHeader\":{\"labelValue\":\"961953\",\"primaryLabelValue\":\"961953\"}},{\"attributeHeader\":{\"labelValue\":\"961955\",\"primaryLabelValue\":\"961955\"}},{\"attributeHeader\":{\"labelValue\":\"961957\",\"primaryLabelValue\":\"961957\"}},{\"attributeHeader\":{\"labelValue\":\"961959\",\"primaryLabelValue\":\"961959\"}},{\"attributeHeader\":{\"labelValue\":\"961961\",\"primaryLabelValue\":\"961961\"}},{\"attributeHeader\":{\"labelValue\":\"961963\",\"primaryLabelValue\":\"961963\"}},{\"attributeHeader\":{\"labelValue\":\"961965\",\"primaryLabelValue\":\"961965\"}},{\"attributeHeader\":{\"labelValue\":\"961967\",\"primaryLabelValue\":\"961967\"}},{\"attributeHeader\":{\"labelValue\":\"961969\",\"primaryLabelValue\":\"961969\"}},{\"attributeHeader\":{\"labelValue\":\"961971\",\"primaryLabelValue\":\"961971\"}},{\"attributeHeader\":{\"labelValue\":\"961973\",\"primaryLabelValue\":\"961973\"}},{\"attributeHeader\":{\"labelValue\":\"961975\",\"primaryLabelValue\":\"961975\"}},{\"attributeHeader\":{\"labelValue\":\"961977\",\"primaryLabelValue\":\"961977\"}},{\"attributeHeader\":{\"labelValue\":\"961979\",\"primaryLabelValue\":\"961979\"}},{\"attributeHeader\":{\"labelValue\":\"961981\",\"primaryLabelValue\":\"961981\"}},{\"attributeHeader\":{\"labelValue\":\"961983\",\"primaryLabelValue\":\"961983\"}},{\"attributeHeader\":{\"labelValue\":\"961985\",\"primaryLabelValue\":\"961985\"}},{\"attributeHeader\":{\"labelValue\":\"961987\",\"primaryLabelValue\":\"961987\"}},{\"attributeHeader\":{\"labelValue\":\"961989\",\"primaryLabelValue\":\"961989\"}},{\"attributeHeader\":{\"labelValue\":\"961991\",\"primaryLabelValue\":\"961991\"}},{\"attributeHeader\":{\"labelValue\":\"961993\",\"primaryLabelValue\":\"961993\"}},{\"attributeHeader\":{\"labelValue\":\"961995\",\"primaryLabelValue\":\"961995\"}},{\"attributeHeader\":{\"labelValue\":\"961997\",\"primaryLabelValue\":\"961997\"}},{\"attributeHeader\":{\"labelValue\":\"961999\",\"primaryLabelValue\":\"961999\"}},{\"attributeHeader\":{\"labelValue\":\"962001\",\"primaryLabelValue\":\"962001\"}},{\"attributeHeader\":{\"labelValue\":\"962003\",\"primaryLabelValue\":\"962003\"}},{\"attributeHeader\":{\"labelValue\":\"962005\",\"primaryLabelValue\":\"962005\"}},{\"attributeHeader\":{\"labelValue\":\"962007\",\"primaryLabelValue\":\"962007\"}},{\"attributeHeader\":{\"labelValue\":\"962009\",\"primaryLabelValue\":\"962009\"}},{\"attributeHeader\":{\"labelValue\":\"962011\",\"primaryLabelValue\":\"962011\"}},{\"attributeHeader\":{\"labelValue\":\"962013\",\"primaryLabelValue\":\"962013\"}},{\"attributeHeader\":{\"labelValue\":\"962015\",\"primaryLabelValue\":\"962015\"}},{\"attributeHeader\":{\"labelValue\":\"962017\",\"primaryLabelValue\":\"962017\"}},{\"attributeHeader\":{\"labelValue\":\"962019\",\"primaryLabelValue\":\"962019\"}},{\"attributeHeader\":{\"labelValue\":\"962021\",\"primaryLabelValue\":\"962021\"}},{\"attributeHeader\":{\"labelValue\":\"962023\",\"primaryLabelValue\":\"962023\"}},{\"attributeHeader\":{\"labelValue\":\"962025\",\"primaryLabelValue\":\"962025\"}},{\"attributeHeader\":{\"labelValue\":\"962027\",\"primaryLabelValue\":\"962027\"}},{\"attributeHeader\":{\"labelValue\":\"962029\",\"primaryLabelValue\":\"962029\"}},{\"attributeHeader\":{\"labelValue\":\"962031\",\"primaryLabelValue\":\"962031\"}},{\"attributeHeader\":{\"labelValue\":\"962033\",\"primaryLabelValue\":\"962033\"}},{\"attributeHeader\":{\"labelValue\":\"962035\",\"primaryLabelValue\":\"962035\"}},{\"attributeHeader\":{\"labelValue\":\"962037\",\"primaryLabelValue\":\"962037\"}},{\"attributeHeader\":{\"labelValue\":\"962039\",\"primaryLabelValue\":\"962039\"}},{\"attributeHeader\":{\"labelValue\":\"962041\",\"primaryLabelValue\":\"962041\"}},{\"attributeHeader\":{\"labelValue\":\"962043\",\"primaryLabelValue\":\"962043\"}},{\"attributeHeader\":{\"labelValue\":\"962045\",\"primaryLabelValue\":\"962045\"}},{\"attributeHeader\":{\"labelValue\":\"962047\",\"primaryLabelValue\":\"962047\"}},{\"attributeHeader\":{\"labelValue\":\"962049\",\"primaryLabelValue\":\"962049\"}},{\"attributeHeader\":{\"labelValue\":\"962051\",\"primaryLabelValue\":\"962051\"}},{\"attributeHeader\":{\"labelValue\":\"962053\",\"primaryLabelValue\":\"962053\"}},{\"attributeHeader\":{\"labelValue\":\"962055\",\"primaryLabelValue\":\"962055\"}},{\"attributeHeader\":{\"labelValue\":\"962057\",\"primaryLabelValue\":\"962057\"}},{\"attributeHeader\":{\"labelValue\":\"962059\",\"primaryLabelValue\":\"962059\"}},{\"attributeHeader\":{\"labelValue\":\"962061\",\"primaryLabelValue\":\"962061\"}},{\"attributeHeader\":{\"labelValue\":\"962063\",\"primaryLabelValue\":\"962063\"}},{\"attributeHeader\":{\"labelValue\":\"962065\",\"primaryLabelValue\":\"962065\"}},{\"attributeHeader\":{\"labelValue\":\"962067\",\"primaryLabelValue\":\"962067\"}},{\"attributeHeader\":{\"labelValue\":\"962069\",\"primaryLabelValue\":\"962069\"}},{\"attributeHeader\":{\"labelValue\":\"962071\",\"primaryLabelValue\":\"962071\"}},{\"attributeHeader\":{\"labelValue\":\"962073\",\"primaryLabelValue\":\"962073\"}},{\"attributeHeader\":{\"labelValue\":\"962075\",\"primaryLabelValue\":\"962075\"}},{\"attributeHeader\":{\"labelValue\":\"962077\",\"primaryLabelValue\":\"962077\"}},{\"attributeHeader\":{\"labelValue\":\"962079\",\"primaryLabelValue\":\"962079\"}},{\"attributeHeader\":{\"labelValue\":\"962081\",\"primaryLabelValue\":\"962081\"}},{\"attributeHeader\":{\"labelValue\":\"962083\",\"primaryLabelValue\":\"962083\"}},{\"attributeHeader\":{\"labelValue\":\"962085\",\"primaryLabelValue\":\"962085\"}},{\"attributeHeader\":{\"labelValue\":\"962087\",\"primaryLabelValue\":\"962087\"}},{\"attributeHeader\":{\"labelValue\":\"962089\",\"primaryLabelValue\":\"962089\"}},{\"attributeHeader\":{\"labelValue\":\"962091\",\"primaryLabelValue\":\"962091\"}},{\"attributeHeader\":{\"labelValue\":\"962093\",\"primaryLabelValue\":\"962093\"}},{\"attributeHeader\":{\"labelValue\":\"962095\",\"primaryLabelValue\":\"962095\"}},{\"attributeHeader\":{\"labelValue\":\"962097\",\"primaryLabelValue\":\"962097\"}},{\"attributeHeader\":{\"labelValue\":\"962101\",\"primaryLabelValue\":\"962101\"}},{\"attributeHeader\":{\"labelValue\":\"962103\",\"primaryLabelValue\":\"962103\"}},{\"attributeHeader\":{\"labelValue\":\"962105\",\"primaryLabelValue\":\"962105\"}},{\"attributeHeader\":{\"labelValue\":\"962107\",\"primaryLabelValue\":\"962107\"}},{\"attributeHeader\":{\"labelValue\":\"962109\",\"primaryLabelValue\":\"962109\"}},{\"attributeHeader\":{\"labelValue\":\"962111\",\"primaryLabelValue\":\"962111\"}},{\"attributeHeader\":{\"labelValue\":\"962113\",\"primaryLabelValue\":\"962113\"}},{\"attributeHeader\":{\"labelValue\":\"962115\",\"primaryLabelValue\":\"962115\"}},{\"attributeHeader\":{\"labelValue\":\"962117\",\"primaryLabelValue\":\"962117\"}},{\"attributeHeader\":{\"labelValue\":\"962119\",\"primaryLabelValue\":\"962119\"}},{\"attributeHeader\":{\"labelValue\":\"962121\",\"primaryLabelValue\":\"962121\"}},{\"attributeHeader\":{\"labelValue\":\"962123\",\"primaryLabelValue\":\"962123\"}},{\"attributeHeader\":{\"labelValue\":\"962125\",\"primaryLabelValue\":\"962125\"}},{\"attributeHeader\":{\"labelValue\":\"962127\",\"primaryLabelValue\":\"962127\"}},{\"attributeHeader\":{\"labelValue\":\"962129\",\"primaryLabelValue\":\"962129\"}},{\"attributeHeader\":{\"labelValue\":\"962131\",\"primaryLabelValue\":\"962131\"}},{\"attributeHeader\":{\"labelValue\":\"962133\",\"primaryLabelValue\":\"962133\"}},{\"attributeHeader\":{\"labelValue\":\"962135\",\"primaryLabelValue\":\"962135\"}},{\"attributeHeader\":{\"labelValue\":\"962137\",\"primaryLabelValue\":\"962137\"}},{\"attributeHeader\":{\"labelValue\":\"962139\",\"primaryLabelValue\":\"962139\"}},{\"attributeHeader\":{\"labelValue\":\"962141\",\"primaryLabelValue\":\"962141\"}},{\"attributeHeader\":{\"labelValue\":\"962143\",\"primaryLabelValue\":\"962143\"}},{\"attributeHeader\":{\"labelValue\":\"962145\",\"primaryLabelValue\":\"962145\"}},{\"attributeHeader\":{\"labelValue\":\"962147\",\"primaryLabelValue\":\"962147\"}},{\"attributeHeader\":{\"labelValue\":\"962149\",\"primaryLabelValue\":\"962149\"}},{\"attributeHeader\":{\"labelValue\":\"962151\",\"primaryLabelValue\":\"962151\"}},{\"attributeHeader\":{\"labelValue\":\"962153\",\"primaryLabelValue\":\"962153\"}},{\"attributeHeader\":{\"labelValue\":\"962155\",\"primaryLabelValue\":\"962155\"}},{\"attributeHeader\":{\"labelValue\":\"962157\",\"primaryLabelValue\":\"962157\"}},{\"attributeHeader\":{\"labelValue\":\"962161\",\"primaryLabelValue\":\"962161\"}},{\"attributeHeader\":{\"labelValue\":\"962163\",\"primaryLabelValue\":\"962163\"}},{\"attributeHeader\":{\"labelValue\":\"962165\",\"primaryLabelValue\":\"962165\"}},{\"attributeHeader\":{\"labelValue\":\"962167\",\"primaryLabelValue\":\"962167\"}},{\"attributeHeader\":{\"labelValue\":\"962169\",\"primaryLabelValue\":\"962169\"}},{\"attributeHeader\":{\"labelValue\":\"962171\",\"primaryLabelValue\":\"962171\"}},{\"attributeHeader\":{\"labelValue\":\"962173\",\"primaryLabelValue\":\"962173\"}},{\"attributeHeader\":{\"labelValue\":\"962175\",\"primaryLabelValue\":\"962175\"}},{\"attributeHeader\":{\"labelValue\":\"962177\",\"primaryLabelValue\":\"962177\"}},{\"attributeHeader\":{\"labelValue\":\"962179\",\"primaryLabelValue\":\"962179\"}},{\"attributeHeader\":{\"labelValue\":\"962181\",\"primaryLabelValue\":\"962181\"}},{\"attributeHeader\":{\"labelValue\":\"962183\",\"primaryLabelValue\":\"962183\"}},{\"attributeHeader\":{\"labelValue\":\"962185\",\"primaryLabelValue\":\"962185\"}},{\"attributeHeader\":{\"labelValue\":\"962187\",\"primaryLabelValue\":\"962187\"}},{\"attributeHeader\":{\"labelValue\":\"962189\",\"primaryLabelValue\":\"962189\"}},{\"attributeHeader\":{\"labelValue\":\"962191\",\"primaryLabelValue\":\"962191\"}},{\"attributeHeader\":{\"labelValue\":\"962193\",\"primaryLabelValue\":\"962193\"}},{\"attributeHeader\":{\"labelValue\":\"962195\",\"primaryLabelValue\":\"962195\"}},{\"attributeHeader\":{\"labelValue\":\"962197\",\"primaryLabelValue\":\"962197\"}},{\"attributeHeader\":{\"labelValue\":\"962199\",\"primaryLabelValue\":\"962199\"}},{\"attributeHeader\":{\"labelValue\":\"962201\",\"primaryLabelValue\":\"962201\"}},{\"attributeHeader\":{\"labelValue\":\"962203\",\"primaryLabelValue\":\"962203\"}},{\"attributeHeader\":{\"labelValue\":\"962205\",\"primaryLabelValue\":\"962205\"}},{\"attributeHeader\":{\"labelValue\":\"962207\",\"primaryLabelValue\":\"962207\"}},{\"attributeHeader\":{\"labelValue\":\"962209\",\"primaryLabelValue\":\"962209\"}},{\"attributeHeader\":{\"labelValue\":\"962211\",\"primaryLabelValue\":\"962211\"}},{\"attributeHeader\":{\"labelValue\":\"962213\",\"primaryLabelValue\":\"962213\"}},{\"attributeHeader\":{\"labelValue\":\"962215\",\"primaryLabelValue\":\"962215\"}},{\"attributeHeader\":{\"labelValue\":\"962217\",\"primaryLabelValue\":\"962217\"}},{\"attributeHeader\":{\"labelValue\":\"962219\",\"primaryLabelValue\":\"962219\"}},{\"attributeHeader\":{\"labelValue\":\"962221\",\"primaryLabelValue\":\"962221\"}},{\"attributeHeader\":{\"labelValue\":\"962223\",\"primaryLabelValue\":\"962223\"}},{\"attributeHeader\":{\"labelValue\":\"962225\",\"primaryLabelValue\":\"962225\"}},{\"attributeHeader\":{\"labelValue\":\"962227\",\"primaryLabelValue\":\"962227\"}},{\"attributeHeader\":{\"labelValue\":\"962229\",\"primaryLabelValue\":\"962229\"}},{\"attributeHeader\":{\"labelValue\":\"962231\",\"primaryLabelValue\":\"962231\"}},{\"attributeHeader\":{\"labelValue\":\"962233\",\"primaryLabelValue\":\"962233\"}},{\"attributeHeader\":{\"labelValue\":\"962235\",\"primaryLabelValue\":\"962235\"}},{\"attributeHeader\":{\"labelValue\":\"962237\",\"primaryLabelValue\":\"962237\"}},{\"attributeHeader\":{\"labelValue\":\"962239\",\"primaryLabelValue\":\"962239\"}},{\"attributeHeader\":{\"labelValue\":\"962241\",\"primaryLabelValue\":\"962241\"}},{\"attributeHeader\":{\"labelValue\":\"962243\",\"primaryLabelValue\":\"962243\"}},{\"attributeHeader\":{\"labelValue\":\"962245\",\"primaryLabelValue\":\"962245\"}},{\"attributeHeader\":{\"labelValue\":\"962247\",\"primaryLabelValue\":\"962247\"}},{\"attributeHeader\":{\"labelValue\":\"962249\",\"primaryLabelValue\":\"962249\"}},{\"attributeHeader\":{\"labelValue\":\"962251\",\"primaryLabelValue\":\"962251\"}},{\"attributeHeader\":{\"labelValue\":\"962253\",\"primaryLabelValue\":\"962253\"}},{\"attributeHeader\":{\"labelValue\":\"962255\",\"primaryLabelValue\":\"962255\"}},{\"attributeHeader\":{\"labelValue\":\"962257\",\"primaryLabelValue\":\"962257\"}},{\"attributeHeader\":{\"labelValue\":\"962259\",\"primaryLabelValue\":\"962259\"}},{\"attributeHeader\":{\"labelValue\":\"962261\",\"primaryLabelValue\":\"962261\"}},{\"attributeHeader\":{\"labelValue\":\"962263\",\"primaryLabelValue\":\"962263\"}},{\"attributeHeader\":{\"labelValue\":\"962265\",\"primaryLabelValue\":\"962265\"}},{\"attributeHeader\":{\"labelValue\":\"962267\",\"primaryLabelValue\":\"962267\"}},{\"attributeHeader\":{\"labelValue\":\"962269\",\"primaryLabelValue\":\"962269\"}},{\"attributeHeader\":{\"labelValue\":\"962271\",\"primaryLabelValue\":\"962271\"}},{\"attributeHeader\":{\"labelValue\":\"962273\",\"primaryLabelValue\":\"962273\"}},{\"attributeHeader\":{\"labelValue\":\"962275\",\"primaryLabelValue\":\"962275\"}},{\"attributeHeader\":{\"labelValue\":\"962277\",\"primaryLabelValue\":\"962277\"}},{\"attributeHeader\":{\"labelValue\":\"962279\",\"primaryLabelValue\":\"962279\"}},{\"attributeHeader\":{\"labelValue\":\"962281\",\"primaryLabelValue\":\"962281\"}},{\"attributeHeader\":{\"labelValue\":\"962283\",\"primaryLabelValue\":\"962283\"}},{\"attributeHeader\":{\"labelValue\":\"962285\",\"primaryLabelValue\":\"962285\"}},{\"attributeHeader\":{\"labelValue\":\"962287\",\"primaryLabelValue\":\"962287\"}},{\"attributeHeader\":{\"labelValue\":\"962289\",\"primaryLabelValue\":\"962289\"}},{\"attributeHeader\":{\"labelValue\":\"962291\",\"primaryLabelValue\":\"962291\"}},{\"attributeHeader\":{\"labelValue\":\"962293\",\"primaryLabelValue\":\"962293\"}},{\"attributeHeader\":{\"labelValue\":\"962295\",\"primaryLabelValue\":\"962295\"}},{\"attributeHeader\":{\"labelValue\":\"962297\",\"primaryLabelValue\":\"962297\"}},{\"attributeHeader\":{\"labelValue\":\"962299\",\"primaryLabelValue\":\"962299\"}},{\"attributeHeader\":{\"labelValue\":\"962301\",\"primaryLabelValue\":\"962301\"}},{\"attributeHeader\":{\"labelValue\":\"962303\",\"primaryLabelValue\":\"962303\"}},{\"attributeHeader\":{\"labelValue\":\"962305\",\"primaryLabelValue\":\"962305\"}},{\"attributeHeader\":{\"labelValue\":\"962307\",\"primaryLabelValue\":\"962307\"}},{\"attributeHeader\":{\"labelValue\":\"962309\",\"primaryLabelValue\":\"962309\"}},{\"attributeHeader\":{\"labelValue\":\"962311\",\"primaryLabelValue\":\"962311\"}},{\"attributeHeader\":{\"labelValue\":\"962313\",\"primaryLabelValue\":\"962313\"}},{\"attributeHeader\":{\"labelValue\":\"962315\",\"primaryLabelValue\":\"962315\"}},{\"attributeHeader\":{\"labelValue\":\"962317\",\"primaryLabelValue\":\"962317\"}},{\"attributeHeader\":{\"labelValue\":\"962319\",\"primaryLabelValue\":\"962319\"}},{\"attributeHeader\":{\"labelValue\":\"962321\",\"primaryLabelValue\":\"962321\"}},{\"attributeHeader\":{\"labelValue\":\"962323\",\"primaryLabelValue\":\"962323\"}},{\"attributeHeader\":{\"labelValue\":\"962325\",\"primaryLabelValue\":\"962325\"}},{\"attributeHeader\":{\"labelValue\":\"962327\",\"primaryLabelValue\":\"962327\"}},{\"attributeHeader\":{\"labelValue\":\"962329\",\"primaryLabelValue\":\"962329\"}},{\"attributeHeader\":{\"labelValue\":\"962331\",\"primaryLabelValue\":\"962331\"}},{\"attributeHeader\":{\"labelValue\":\"962333\",\"primaryLabelValue\":\"962333\"}},{\"attributeHeader\":{\"labelValue\":\"962335\",\"primaryLabelValue\":\"962335\"}},{\"attributeHeader\":{\"labelValue\":\"962337\",\"primaryLabelValue\":\"962337\"}},{\"attributeHeader\":{\"labelValue\":\"962339\",\"primaryLabelValue\":\"962339\"}},{\"attributeHeader\":{\"labelValue\":\"962341\",\"primaryLabelValue\":\"962341\"}},{\"attributeHeader\":{\"labelValue\":\"962343\",\"primaryLabelValue\":\"962343\"}},{\"attributeHeader\":{\"labelValue\":\"962345\",\"primaryLabelValue\":\"962345\"}},{\"attributeHeader\":{\"labelValue\":\"962347\",\"primaryLabelValue\":\"962347\"}},{\"attributeHeader\":{\"labelValue\":\"962349\",\"primaryLabelValue\":\"962349\"}},{\"attributeHeader\":{\"labelValue\":\"962351\",\"primaryLabelValue\":\"962351\"}},{\"attributeHeader\":{\"labelValue\":\"962353\",\"primaryLabelValue\":\"962353\"}},{\"attributeHeader\":{\"labelValue\":\"962355\",\"primaryLabelValue\":\"962355\"}},{\"attributeHeader\":{\"labelValue\":\"962357\",\"primaryLabelValue\":\"962357\"}},{\"attributeHeader\":{\"labelValue\":\"962359\",\"primaryLabelValue\":\"962359\"}},{\"attributeHeader\":{\"labelValue\":\"962361\",\"primaryLabelValue\":\"962361\"}},{\"attributeHeader\":{\"labelValue\":\"962363\",\"primaryLabelValue\":\"962363\"}},{\"attributeHeader\":{\"labelValue\":\"962365\",\"primaryLabelValue\":\"962365\"}},{\"attributeHeader\":{\"labelValue\":\"962367\",\"primaryLabelValue\":\"962367\"}},{\"attributeHeader\":{\"labelValue\":\"962369\",\"primaryLabelValue\":\"962369\"}},{\"attributeHeader\":{\"labelValue\":\"962371\",\"primaryLabelValue\":\"962371\"}},{\"attributeHeader\":{\"labelValue\":\"962373\",\"primaryLabelValue\":\"962373\"}},{\"attributeHeader\":{\"labelValue\":\"962375\",\"primaryLabelValue\":\"962375\"}},{\"attributeHeader\":{\"labelValue\":\"962377\",\"primaryLabelValue\":\"962377\"}},{\"attributeHeader\":{\"labelValue\":\"962379\",\"primaryLabelValue\":\"962379\"}},{\"attributeHeader\":{\"labelValue\":\"962381\",\"primaryLabelValue\":\"962381\"}},{\"attributeHeader\":{\"labelValue\":\"962383\",\"primaryLabelValue\":\"962383\"}},{\"attributeHeader\":{\"labelValue\":\"962385\",\"primaryLabelValue\":\"962385\"}},{\"attributeHeader\":{\"labelValue\":\"962387\",\"primaryLabelValue\":\"962387\"}},{\"attributeHeader\":{\"labelValue\":\"962389\",\"primaryLabelValue\":\"962389\"}},{\"attributeHeader\":{\"labelValue\":\"962391\",\"primaryLabelValue\":\"962391\"}},{\"attributeHeader\":{\"labelValue\":\"962393\",\"primaryLabelValue\":\"962393\"}},{\"attributeHeader\":{\"labelValue\":\"962395\",\"primaryLabelValue\":\"962395\"}},{\"attributeHeader\":{\"labelValue\":\"962397\",\"primaryLabelValue\":\"962397\"}},{\"attributeHeader\":{\"labelValue\":\"962399\",\"primaryLabelValue\":\"962399\"}},{\"attributeHeader\":{\"labelValue\":\"962401\",\"primaryLabelValue\":\"962401\"}},{\"attributeHeader\":{\"labelValue\":\"962403\",\"primaryLabelValue\":\"962403\"}},{\"attributeHeader\":{\"labelValue\":\"962405\",\"primaryLabelValue\":\"962405\"}},{\"attributeHeader\":{\"labelValue\":\"962407\",\"primaryLabelValue\":\"962407\"}},{\"attributeHeader\":{\"labelValue\":\"962409\",\"primaryLabelValue\":\"962409\"}},{\"attributeHeader\":{\"labelValue\":\"962411\",\"primaryLabelValue\":\"962411\"}},{\"attributeHeader\":{\"labelValue\":\"962413\",\"primaryLabelValue\":\"962413\"}},{\"attributeHeader\":{\"labelValue\":\"962415\",\"primaryLabelValue\":\"962415\"}},{\"attributeHeader\":{\"labelValue\":\"962417\",\"primaryLabelValue\":\"962417\"}},{\"attributeHeader\":{\"labelValue\":\"962419\",\"primaryLabelValue\":\"962419\"}},{\"attributeHeader\":{\"labelValue\":\"962421\",\"primaryLabelValue\":\"962421\"}},{\"attributeHeader\":{\"labelValue\":\"962423\",\"primaryLabelValue\":\"962423\"}},{\"attributeHeader\":{\"labelValue\":\"962425\",\"primaryLabelValue\":\"962425\"}},{\"attributeHeader\":{\"labelValue\":\"962427\",\"primaryLabelValue\":\"962427\"}},{\"attributeHeader\":{\"labelValue\":\"962429\",\"primaryLabelValue\":\"962429\"}},{\"attributeHeader\":{\"labelValue\":\"962431\",\"primaryLabelValue\":\"962431\"}},{\"attributeHeader\":{\"labelValue\":\"962433\",\"primaryLabelValue\":\"962433\"}},{\"attributeHeader\":{\"labelValue\":\"962435\",\"primaryLabelValue\":\"962435\"}},{\"attributeHeader\":{\"labelValue\":\"962437\",\"primaryLabelValue\":\"962437\"}},{\"attributeHeader\":{\"labelValue\":\"962439\",\"primaryLabelValue\":\"962439\"}},{\"attributeHeader\":{\"labelValue\":\"962441\",\"primaryLabelValue\":\"962441\"}},{\"attributeHeader\":{\"labelValue\":\"962443\",\"primaryLabelValue\":\"962443\"}},{\"attributeHeader\":{\"labelValue\":\"962445\",\"primaryLabelValue\":\"962445\"}},{\"attributeHeader\":{\"labelValue\":\"962447\",\"primaryLabelValue\":\"962447\"}},{\"attributeHeader\":{\"labelValue\":\"962449\",\"primaryLabelValue\":\"962449\"}},{\"attributeHeader\":{\"labelValue\":\"962451\",\"primaryLabelValue\":\"962451\"}},{\"attributeHeader\":{\"labelValue\":\"962453\",\"primaryLabelValue\":\"962453\"}},{\"attributeHeader\":{\"labelValue\":\"962455\",\"primaryLabelValue\":\"962455\"}},{\"attributeHeader\":{\"labelValue\":\"962457\",\"primaryLabelValue\":\"962457\"}},{\"attributeHeader\":{\"labelValue\":\"962459\",\"primaryLabelValue\":\"962459\"}},{\"attributeHeader\":{\"labelValue\":\"962461\",\"primaryLabelValue\":\"962461\"}},{\"attributeHeader\":{\"labelValue\":\"962463\",\"primaryLabelValue\":\"962463\"}},{\"attributeHeader\":{\"labelValue\":\"962465\",\"primaryLabelValue\":\"962465\"}},{\"attributeHeader\":{\"labelValue\":\"962467\",\"primaryLabelValue\":\"962467\"}},{\"attributeHeader\":{\"labelValue\":\"962469\",\"primaryLabelValue\":\"962469\"}},{\"attributeHeader\":{\"labelValue\":\"962471\",\"primaryLabelValue\":\"962471\"}},{\"attributeHeader\":{\"labelValue\":\"962473\",\"primaryLabelValue\":\"962473\"}},{\"attributeHeader\":{\"labelValue\":\"962475\",\"primaryLabelValue\":\"962475\"}},{\"attributeHeader\":{\"labelValue\":\"962477\",\"primaryLabelValue\":\"962477\"}},{\"attributeHeader\":{\"labelValue\":\"962479\",\"primaryLabelValue\":\"962479\"}},{\"attributeHeader\":{\"labelValue\":\"962481\",\"primaryLabelValue\":\"962481\"}},{\"attributeHeader\":{\"labelValue\":\"962483\",\"primaryLabelValue\":\"962483\"}},{\"attributeHeader\":{\"labelValue\":\"962485\",\"primaryLabelValue\":\"962485\"}},{\"attributeHeader\":{\"labelValue\":\"962487\",\"primaryLabelValue\":\"962487\"}},{\"attributeHeader\":{\"labelValue\":\"962489\",\"primaryLabelValue\":\"962489\"}},{\"attributeHeader\":{\"labelValue\":\"962491\",\"primaryLabelValue\":\"962491\"}},{\"attributeHeader\":{\"labelValue\":\"962493\",\"primaryLabelValue\":\"962493\"}},{\"attributeHeader\":{\"labelValue\":\"962495\",\"primaryLabelValue\":\"962495\"}},{\"attributeHeader\":{\"labelValue\":\"962497\",\"primaryLabelValue\":\"962497\"}},{\"attributeHeader\":{\"labelValue\":\"962499\",\"primaryLabelValue\":\"962499\"}},{\"attributeHeader\":{\"labelValue\":\"962501\",\"primaryLabelValue\":\"962501\"}},{\"attributeHeader\":{\"labelValue\":\"962503\",\"primaryLabelValue\":\"962503\"}},{\"attributeHeader\":{\"labelValue\":\"962505\",\"primaryLabelValue\":\"962505\"}},{\"attributeHeader\":{\"labelValue\":\"962507\",\"primaryLabelValue\":\"962507\"}},{\"attributeHeader\":{\"labelValue\":\"962509\",\"primaryLabelValue\":\"962509\"}},{\"attributeHeader\":{\"labelValue\":\"962511\",\"primaryLabelValue\":\"962511\"}},{\"attributeHeader\":{\"labelValue\":\"962513\",\"primaryLabelValue\":\"962513\"}},{\"attributeHeader\":{\"labelValue\":\"962515\",\"primaryLabelValue\":\"962515\"}},{\"attributeHeader\":{\"labelValue\":\"962517\",\"primaryLabelValue\":\"962517\"}},{\"attributeHeader\":{\"labelValue\":\"962519\",\"primaryLabelValue\":\"962519\"}},{\"attributeHeader\":{\"labelValue\":\"962521\",\"primaryLabelValue\":\"962521\"}},{\"attributeHeader\":{\"labelValue\":\"962523\",\"primaryLabelValue\":\"962523\"}},{\"attributeHeader\":{\"labelValue\":\"962525\",\"primaryLabelValue\":\"962525\"}},{\"attributeHeader\":{\"labelValue\":\"962527\",\"primaryLabelValue\":\"962527\"}},{\"attributeHeader\":{\"labelValue\":\"962529\",\"primaryLabelValue\":\"962529\"}},{\"attributeHeader\":{\"labelValue\":\"962531\",\"primaryLabelValue\":\"962531\"}},{\"attributeHeader\":{\"labelValue\":\"962533\",\"primaryLabelValue\":\"962533\"}},{\"attributeHeader\":{\"labelValue\":\"962535\",\"primaryLabelValue\":\"962535\"}},{\"attributeHeader\":{\"labelValue\":\"962537\",\"primaryLabelValue\":\"962537\"}},{\"attributeHeader\":{\"labelValue\":\"962539\",\"primaryLabelValue\":\"962539\"}},{\"attributeHeader\":{\"labelValue\":\"962541\",\"primaryLabelValue\":\"962541\"}},{\"attributeHeader\":{\"labelValue\":\"962543\",\"primaryLabelValue\":\"962543\"}},{\"attributeHeader\":{\"labelValue\":\"962545\",\"primaryLabelValue\":\"962545\"}},{\"attributeHeader\":{\"labelValue\":\"962547\",\"primaryLabelValue\":\"962547\"}},{\"attributeHeader\":{\"labelValue\":\"962549\",\"primaryLabelValue\":\"962549\"}},{\"attributeHeader\":{\"labelValue\":\"962551\",\"primaryLabelValue\":\"962551\"}},{\"attributeHeader\":{\"labelValue\":\"962553\",\"primaryLabelValue\":\"962553\"}},{\"attributeHeader\":{\"labelValue\":\"962555\",\"primaryLabelValue\":\"962555\"}},{\"attributeHeader\":{\"labelValue\":\"962557\",\"primaryLabelValue\":\"962557\"}},{\"attributeHeader\":{\"labelValue\":\"962559\",\"primaryLabelValue\":\"962559\"}},{\"attributeHeader\":{\"labelValue\":\"962561\",\"primaryLabelValue\":\"962561\"}},{\"attributeHeader\":{\"labelValue\":\"962563\",\"primaryLabelValue\":\"962563\"}},{\"attributeHeader\":{\"labelValue\":\"962565\",\"primaryLabelValue\":\"962565\"}},{\"attributeHeader\":{\"labelValue\":\"962567\",\"primaryLabelValue\":\"962567\"}},{\"attributeHeader\":{\"labelValue\":\"962569\",\"primaryLabelValue\":\"962569\"}},{\"attributeHeader\":{\"labelValue\":\"962571\",\"primaryLabelValue\":\"962571\"}},{\"attributeHeader\":{\"labelValue\":\"962573\",\"primaryLabelValue\":\"962573\"}},{\"attributeHeader\":{\"labelValue\":\"962575\",\"primaryLabelValue\":\"962575\"}},{\"attributeHeader\":{\"labelValue\":\"962577\",\"primaryLabelValue\":\"962577\"}},{\"attributeHeader\":{\"labelValue\":\"962579\",\"primaryLabelValue\":\"962579\"}},{\"attributeHeader\":{\"labelValue\":\"962581\",\"primaryLabelValue\":\"962581\"}},{\"attributeHeader\":{\"labelValue\":\"962583\",\"primaryLabelValue\":\"962583\"}},{\"attributeHeader\":{\"labelValue\":\"962585\",\"primaryLabelValue\":\"962585\"}},{\"attributeHeader\":{\"labelValue\":\"962587\",\"primaryLabelValue\":\"962587\"}},{\"attributeHeader\":{\"labelValue\":\"962589\",\"primaryLabelValue\":\"962589\"}},{\"attributeHeader\":{\"labelValue\":\"962591\",\"primaryLabelValue\":\"962591\"}},{\"attributeHeader\":{\"labelValue\":\"962593\",\"primaryLabelValue\":\"962593\"}},{\"attributeHeader\":{\"labelValue\":\"962595\",\"primaryLabelValue\":\"962595\"}},{\"attributeHeader\":{\"labelValue\":\"962597\",\"primaryLabelValue\":\"962597\"}},{\"attributeHeader\":{\"labelValue\":\"962599\",\"primaryLabelValue\":\"962599\"}},{\"attributeHeader\":{\"labelValue\":\"962601\",\"primaryLabelValue\":\"962601\"}},{\"attributeHeader\":{\"labelValue\":\"962603\",\"primaryLabelValue\":\"962603\"}},{\"attributeHeader\":{\"labelValue\":\"962605\",\"primaryLabelValue\":\"962605\"}},{\"attributeHeader\":{\"labelValue\":\"962607\",\"primaryLabelValue\":\"962607\"}},{\"attributeHeader\":{\"labelValue\":\"962609\",\"primaryLabelValue\":\"962609\"}},{\"attributeHeader\":{\"labelValue\":\"962611\",\"primaryLabelValue\":\"962611\"}},{\"attributeHeader\":{\"labelValue\":\"962613\",\"primaryLabelValue\":\"962613\"}},{\"attributeHeader\":{\"labelValue\":\"962615\",\"primaryLabelValue\":\"962615\"}},{\"attributeHeader\":{\"labelValue\":\"962617\",\"primaryLabelValue\":\"962617\"}},{\"attributeHeader\":{\"labelValue\":\"962619\",\"primaryLabelValue\":\"962619\"}},{\"attributeHeader\":{\"labelValue\":\"962621\",\"primaryLabelValue\":\"962621\"}},{\"attributeHeader\":{\"labelValue\":\"962623\",\"primaryLabelValue\":\"962623\"}},{\"attributeHeader\":{\"labelValue\":\"962625\",\"primaryLabelValue\":\"962625\"}},{\"attributeHeader\":{\"labelValue\":\"962627\",\"primaryLabelValue\":\"962627\"}},{\"attributeHeader\":{\"labelValue\":\"962629\",\"primaryLabelValue\":\"962629\"}},{\"attributeHeader\":{\"labelValue\":\"962633\",\"primaryLabelValue\":\"962633\"}},{\"attributeHeader\":{\"labelValue\":\"962635\",\"primaryLabelValue\":\"962635\"}},{\"attributeHeader\":{\"labelValue\":\"962637\",\"primaryLabelValue\":\"962637\"}},{\"attributeHeader\":{\"labelValue\":\"962639\",\"primaryLabelValue\":\"962639\"}},{\"attributeHeader\":{\"labelValue\":\"962641\",\"primaryLabelValue\":\"962641\"}},{\"attributeHeader\":{\"labelValue\":\"962643\",\"primaryLabelValue\":\"962643\"}},{\"attributeHeader\":{\"labelValue\":\"962645\",\"primaryLabelValue\":\"962645\"}},{\"attributeHeader\":{\"labelValue\":\"962647\",\"primaryLabelValue\":\"962647\"}},{\"attributeHeader\":{\"labelValue\":\"962649\",\"primaryLabelValue\":\"962649\"}},{\"attributeHeader\":{\"labelValue\":\"962651\",\"primaryLabelValue\":\"962651\"}},{\"attributeHeader\":{\"labelValue\":\"962653\",\"primaryLabelValue\":\"962653\"}},{\"attributeHeader\":{\"labelValue\":\"962655\",\"primaryLabelValue\":\"962655\"}},{\"attributeHeader\":{\"labelValue\":\"962657\",\"primaryLabelValue\":\"962657\"}},{\"attributeHeader\":{\"labelValue\":\"962659\",\"primaryLabelValue\":\"962659\"}},{\"attributeHeader\":{\"labelValue\":\"962661\",\"primaryLabelValue\":\"962661\"}},{\"attributeHeader\":{\"labelValue\":\"962663\",\"primaryLabelValue\":\"962663\"}},{\"attributeHeader\":{\"labelValue\":\"962665\",\"primaryLabelValue\":\"962665\"}},{\"attributeHeader\":{\"labelValue\":\"962667\",\"primaryLabelValue\":\"962667\"}},{\"attributeHeader\":{\"labelValue\":\"962669\",\"primaryLabelValue\":\"962669\"}},{\"attributeHeader\":{\"labelValue\":\"962671\",\"primaryLabelValue\":\"962671\"}},{\"attributeHeader\":{\"labelValue\":\"962673\",\"primaryLabelValue\":\"962673\"}},{\"attributeHeader\":{\"labelValue\":\"962675\",\"primaryLabelValue\":\"962675\"}},{\"attributeHeader\":{\"labelValue\":\"962677\",\"primaryLabelValue\":\"962677\"}},{\"attributeHeader\":{\"labelValue\":\"962679\",\"primaryLabelValue\":\"962679\"}},{\"attributeHeader\":{\"labelValue\":\"962681\",\"primaryLabelValue\":\"962681\"}},{\"attributeHeader\":{\"labelValue\":\"962683\",\"primaryLabelValue\":\"962683\"}},{\"attributeHeader\":{\"labelValue\":\"962685\",\"primaryLabelValue\":\"962685\"}},{\"attributeHeader\":{\"labelValue\":\"962687\",\"primaryLabelValue\":\"962687\"}},{\"attributeHeader\":{\"labelValue\":\"962689\",\"primaryLabelValue\":\"962689\"}},{\"attributeHeader\":{\"labelValue\":\"962691\",\"primaryLabelValue\":\"962691\"}},{\"attributeHeader\":{\"labelValue\":\"962693\",\"primaryLabelValue\":\"962693\"}},{\"attributeHeader\":{\"labelValue\":\"962695\",\"primaryLabelValue\":\"962695\"}},{\"attributeHeader\":{\"labelValue\":\"962697\",\"primaryLabelValue\":\"962697\"}},{\"attributeHeader\":{\"labelValue\":\"962699\",\"primaryLabelValue\":\"962699\"}},{\"attributeHeader\":{\"labelValue\":\"962701\",\"primaryLabelValue\":\"962701\"}},{\"attributeHeader\":{\"labelValue\":\"962703\",\"primaryLabelValue\":\"962703\"}},{\"attributeHeader\":{\"labelValue\":\"962705\",\"primaryLabelValue\":\"962705\"}},{\"attributeHeader\":{\"labelValue\":\"962707\",\"primaryLabelValue\":\"962707\"}},{\"attributeHeader\":{\"labelValue\":\"962709\",\"primaryLabelValue\":\"962709\"}},{\"attributeHeader\":{\"labelValue\":\"962711\",\"primaryLabelValue\":\"962711\"}},{\"attributeHeader\":{\"labelValue\":\"962713\",\"primaryLabelValue\":\"962713\"}},{\"attributeHeader\":{\"labelValue\":\"962715\",\"primaryLabelValue\":\"962715\"}},{\"attributeHeader\":{\"labelValue\":\"962717\",\"primaryLabelValue\":\"962717\"}},{\"attributeHeader\":{\"labelValue\":\"962719\",\"primaryLabelValue\":\"962719\"}},{\"attributeHeader\":{\"labelValue\":\"962721\",\"primaryLabelValue\":\"962721\"}},{\"attributeHeader\":{\"labelValue\":\"962723\",\"primaryLabelValue\":\"962723\"}},{\"attributeHeader\":{\"labelValue\":\"962725\",\"primaryLabelValue\":\"962725\"}},{\"attributeHeader\":{\"labelValue\":\"962727\",\"primaryLabelValue\":\"962727\"}},{\"attributeHeader\":{\"labelValue\":\"962729\",\"primaryLabelValue\":\"962729\"}},{\"attributeHeader\":{\"labelValue\":\"962731\",\"primaryLabelValue\":\"962731\"}},{\"attributeHeader\":{\"labelValue\":\"962733\",\"primaryLabelValue\":\"962733\"}},{\"attributeHeader\":{\"labelValue\":\"962735\",\"primaryLabelValue\":\"962735\"}},{\"attributeHeader\":{\"labelValue\":\"962737\",\"primaryLabelValue\":\"962737\"}},{\"attributeHeader\":{\"labelValue\":\"962739\",\"primaryLabelValue\":\"962739\"}},{\"attributeHeader\":{\"labelValue\":\"962741\",\"primaryLabelValue\":\"962741\"}},{\"attributeHeader\":{\"labelValue\":\"962743\",\"primaryLabelValue\":\"962743\"}},{\"attributeHeader\":{\"labelValue\":\"962745\",\"primaryLabelValue\":\"962745\"}},{\"attributeHeader\":{\"labelValue\":\"962747\",\"primaryLabelValue\":\"962747\"}},{\"attributeHeader\":{\"labelValue\":\"962749\",\"primaryLabelValue\":\"962749\"}},{\"attributeHeader\":{\"labelValue\":\"962751\",\"primaryLabelValue\":\"962751\"}},{\"attributeHeader\":{\"labelValue\":\"962753\",\"primaryLabelValue\":\"962753\"}},{\"attributeHeader\":{\"labelValue\":\"962755\",\"primaryLabelValue\":\"962755\"}},{\"attributeHeader\":{\"labelValue\":\"962757\",\"primaryLabelValue\":\"962757\"}},{\"attributeHeader\":{\"labelValue\":\"962759\",\"primaryLabelValue\":\"962759\"}},{\"attributeHeader\":{\"labelValue\":\"962761\",\"primaryLabelValue\":\"962761\"}},{\"attributeHeader\":{\"labelValue\":\"962763\",\"primaryLabelValue\":\"962763\"}},{\"attributeHeader\":{\"labelValue\":\"962765\",\"primaryLabelValue\":\"962765\"}},{\"attributeHeader\":{\"labelValue\":\"962767\",\"primaryLabelValue\":\"962767\"}},{\"attributeHeader\":{\"labelValue\":\"962769\",\"primaryLabelValue\":\"962769\"}},{\"attributeHeader\":{\"labelValue\":\"962771\",\"primaryLabelValue\":\"962771\"}},{\"attributeHeader\":{\"labelValue\":\"962773\",\"primaryLabelValue\":\"962773\"}},{\"attributeHeader\":{\"labelValue\":\"962775\",\"primaryLabelValue\":\"962775\"}},{\"attributeHeader\":{\"labelValue\":\"962777\",\"primaryLabelValue\":\"962777\"}},{\"attributeHeader\":{\"labelValue\":\"962779\",\"primaryLabelValue\":\"962779\"}},{\"attributeHeader\":{\"labelValue\":\"962781\",\"primaryLabelValue\":\"962781\"}},{\"attributeHeader\":{\"labelValue\":\"962783\",\"primaryLabelValue\":\"962783\"}},{\"attributeHeader\":{\"labelValue\":\"962785\",\"primaryLabelValue\":\"962785\"}},{\"attributeHeader\":{\"labelValue\":\"962787\",\"primaryLabelValue\":\"962787\"}},{\"attributeHeader\":{\"labelValue\":\"962789\",\"primaryLabelValue\":\"962789\"}},{\"attributeHeader\":{\"labelValue\":\"962791\",\"primaryLabelValue\":\"962791\"}},{\"attributeHeader\":{\"labelValue\":\"962793\",\"primaryLabelValue\":\"962793\"}},{\"attributeHeader\":{\"labelValue\":\"962795\",\"primaryLabelValue\":\"962795\"}},{\"attributeHeader\":{\"labelValue\":\"962797\",\"primaryLabelValue\":\"962797\"}},{\"attributeHeader\":{\"labelValue\":\"962799\",\"primaryLabelValue\":\"962799\"}},{\"attributeHeader\":{\"labelValue\":\"962801\",\"primaryLabelValue\":\"962801\"}},{\"attributeHeader\":{\"labelValue\":\"962803\",\"primaryLabelValue\":\"962803\"}},{\"attributeHeader\":{\"labelValue\":\"962805\",\"primaryLabelValue\":\"962805\"}},{\"attributeHeader\":{\"labelValue\":\"962807\",\"primaryLabelValue\":\"962807\"}},{\"attributeHeader\":{\"labelValue\":\"962809\",\"primaryLabelValue\":\"962809\"}},{\"attributeHeader\":{\"labelValue\":\"962811\",\"primaryLabelValue\":\"962811\"}},{\"attributeHeader\":{\"labelValue\":\"962813\",\"primaryLabelValue\":\"962813\"}},{\"attributeHeader\":{\"labelValue\":\"962815\",\"primaryLabelValue\":\"962815\"}},{\"attributeHeader\":{\"labelValue\":\"962817\",\"primaryLabelValue\":\"962817\"}},{\"attributeHeader\":{\"labelValue\":\"962819\",\"primaryLabelValue\":\"962819\"}},{\"attributeHeader\":{\"labelValue\":\"962821\",\"primaryLabelValue\":\"962821\"}},{\"attributeHeader\":{\"labelValue\":\"962823\",\"primaryLabelValue\":\"962823\"}},{\"attributeHeader\":{\"labelValue\":\"962825\",\"primaryLabelValue\":\"962825\"}},{\"attributeHeader\":{\"labelValue\":\"962827\",\"primaryLabelValue\":\"962827\"}},{\"attributeHeader\":{\"labelValue\":\"962829\",\"primaryLabelValue\":\"962829\"}},{\"attributeHeader\":{\"labelValue\":\"962831\",\"primaryLabelValue\":\"962831\"}},{\"attributeHeader\":{\"labelValue\":\"962833\",\"primaryLabelValue\":\"962833\"}},{\"attributeHeader\":{\"labelValue\":\"962835\",\"primaryLabelValue\":\"962835\"}},{\"attributeHeader\":{\"labelValue\":\"962837\",\"primaryLabelValue\":\"962837\"}},{\"attributeHeader\":{\"labelValue\":\"962839\",\"primaryLabelValue\":\"962839\"}},{\"attributeHeader\":{\"labelValue\":\"962843\",\"primaryLabelValue\":\"962843\"}},{\"attributeHeader\":{\"labelValue\":\"962845\",\"primaryLabelValue\":\"962845\"}},{\"attributeHeader\":{\"labelValue\":\"962847\",\"primaryLabelValue\":\"962847\"}},{\"attributeHeader\":{\"labelValue\":\"962849\",\"primaryLabelValue\":\"962849\"}},{\"attributeHeader\":{\"labelValue\":\"962851\",\"primaryLabelValue\":\"962851\"}},{\"attributeHeader\":{\"labelValue\":\"962853\",\"primaryLabelValue\":\"962853\"}},{\"attributeHeader\":{\"labelValue\":\"962857\",\"primaryLabelValue\":\"962857\"}},{\"attributeHeader\":{\"labelValue\":\"962859\",\"primaryLabelValue\":\"962859\"}},{\"attributeHeader\":{\"labelValue\":\"962861\",\"primaryLabelValue\":\"962861\"}},{\"attributeHeader\":{\"labelValue\":\"962863\",\"primaryLabelValue\":\"962863\"}},{\"attributeHeader\":{\"labelValue\":\"962865\",\"primaryLabelValue\":\"962865\"}},{\"attributeHeader\":{\"labelValue\":\"962867\",\"primaryLabelValue\":\"962867\"}},{\"attributeHeader\":{\"labelValue\":\"962869\",\"primaryLabelValue\":\"962869\"}},{\"attributeHeader\":{\"labelValue\":\"962871\",\"primaryLabelValue\":\"962871\"}},{\"attributeHeader\":{\"labelValue\":\"962873\",\"primaryLabelValue\":\"962873\"}},{\"attributeHeader\":{\"labelValue\":\"962875\",\"primaryLabelValue\":\"962875\"}},{\"attributeHeader\":{\"labelValue\":\"962877\",\"primaryLabelValue\":\"962877\"}},{\"attributeHeader\":{\"labelValue\":\"962879\",\"primaryLabelValue\":\"962879\"}},{\"attributeHeader\":{\"labelValue\":\"962881\",\"primaryLabelValue\":\"962881\"}},{\"attributeHeader\":{\"labelValue\":\"962883\",\"primaryLabelValue\":\"962883\"}},{\"attributeHeader\":{\"labelValue\":\"962885\",\"primaryLabelValue\":\"962885\"}},{\"attributeHeader\":{\"labelValue\":\"962887\",\"primaryLabelValue\":\"962887\"}},{\"attributeHeader\":{\"labelValue\":\"962889\",\"primaryLabelValue\":\"962889\"}},{\"attributeHeader\":{\"labelValue\":\"962891\",\"primaryLabelValue\":\"962891\"}},{\"attributeHeader\":{\"labelValue\":\"962893\",\"primaryLabelValue\":\"962893\"}},{\"attributeHeader\":{\"labelValue\":\"962895\",\"primaryLabelValue\":\"962895\"}},{\"attributeHeader\":{\"labelValue\":\"962897\",\"primaryLabelValue\":\"962897\"}},{\"attributeHeader\":{\"labelValue\":\"962899\",\"primaryLabelValue\":\"962899\"}},{\"attributeHeader\":{\"labelValue\":\"962901\",\"primaryLabelValue\":\"962901\"}},{\"attributeHeader\":{\"labelValue\":\"962903\",\"primaryLabelValue\":\"962903\"}},{\"attributeHeader\":{\"labelValue\":\"962905\",\"primaryLabelValue\":\"962905\"}},{\"attributeHeader\":{\"labelValue\":\"962907\",\"primaryLabelValue\":\"962907\"}},{\"attributeHeader\":{\"labelValue\":\"962909\",\"primaryLabelValue\":\"962909\"}},{\"attributeHeader\":{\"labelValue\":\"962911\",\"primaryLabelValue\":\"962911\"}},{\"attributeHeader\":{\"labelValue\":\"962913\",\"primaryLabelValue\":\"962913\"}},{\"attributeHeader\":{\"labelValue\":\"962915\",\"primaryLabelValue\":\"962915\"}},{\"attributeHeader\":{\"labelValue\":\"962917\",\"primaryLabelValue\":\"962917\"}},{\"attributeHeader\":{\"labelValue\":\"962919\",\"primaryLabelValue\":\"962919\"}},{\"attributeHeader\":{\"labelValue\":\"962921\",\"primaryLabelValue\":\"962921\"}},{\"attributeHeader\":{\"labelValue\":\"962923\",\"primaryLabelValue\":\"962923\"}},{\"attributeHeader\":{\"labelValue\":\"962925\",\"primaryLabelValue\":\"962925\"}},{\"attributeHeader\":{\"labelValue\":\"962927\",\"primaryLabelValue\":\"962927\"}},{\"attributeHeader\":{\"labelValue\":\"962929\",\"primaryLabelValue\":\"962929\"}},{\"attributeHeader\":{\"labelValue\":\"962931\",\"primaryLabelValue\":\"962931\"}},{\"attributeHeader\":{\"labelValue\":\"962933\",\"primaryLabelValue\":\"962933\"}},{\"attributeHeader\":{\"labelValue\":\"962935\",\"primaryLabelValue\":\"962935\"}},{\"attributeHeader\":{\"labelValue\":\"962937\",\"primaryLabelValue\":\"962937\"}},{\"attributeHeader\":{\"labelValue\":\"962939\",\"primaryLabelValue\":\"962939\"}},{\"attributeHeader\":{\"labelValue\":\"962941\",\"primaryLabelValue\":\"962941\"}},{\"attributeHeader\":{\"labelValue\":\"962943\",\"primaryLabelValue\":\"962943\"}},{\"attributeHeader\":{\"labelValue\":\"962945\",\"primaryLabelValue\":\"962945\"}},{\"attributeHeader\":{\"labelValue\":\"962949\",\"primaryLabelValue\":\"962949\"}},{\"attributeHeader\":{\"labelValue\":\"962951\",\"primaryLabelValue\":\"962951\"}},{\"attributeHeader\":{\"labelValue\":\"962953\",\"primaryLabelValue\":\"962953\"}},{\"attributeHeader\":{\"labelValue\":\"962955\",\"primaryLabelValue\":\"962955\"}},{\"attributeHeader\":{\"labelValue\":\"962957\",\"primaryLabelValue\":\"962957\"}},{\"attributeHeader\":{\"labelValue\":\"962959\",\"primaryLabelValue\":\"962959\"}},{\"attributeHeader\":{\"labelValue\":\"962961\",\"primaryLabelValue\":\"962961\"}},{\"attributeHeader\":{\"labelValue\":\"962963\",\"primaryLabelValue\":\"962963\"}},{\"attributeHeader\":{\"labelValue\":\"962965\",\"primaryLabelValue\":\"962965\"}},{\"attributeHeader\":{\"labelValue\":\"962967\",\"primaryLabelValue\":\"962967\"}},{\"attributeHeader\":{\"labelValue\":\"962969\",\"primaryLabelValue\":\"962969\"}},{\"attributeHeader\":{\"labelValue\":\"962971\",\"primaryLabelValue\":\"962971\"}},{\"attributeHeader\":{\"labelValue\":\"962973\",\"primaryLabelValue\":\"962973\"}},{\"attributeHeader\":{\"labelValue\":\"962975\",\"primaryLabelValue\":\"962975\"}},{\"attributeHeader\":{\"labelValue\":\"962977\",\"primaryLabelValue\":\"962977\"}},{\"attributeHeader\":{\"labelValue\":\"962979\",\"primaryLabelValue\":\"962979\"}},{\"attributeHeader\":{\"labelValue\":\"962981\",\"primaryLabelValue\":\"962981\"}},{\"attributeHeader\":{\"labelValue\":\"962983\",\"primaryLabelValue\":\"962983\"}},{\"attributeHeader\":{\"labelValue\":\"962985\",\"primaryLabelValue\":\"962985\"}},{\"attributeHeader\":{\"labelValue\":\"962987\",\"primaryLabelValue\":\"962987\"}},{\"attributeHeader\":{\"labelValue\":\"962989\",\"primaryLabelValue\":\"962989\"}},{\"attributeHeader\":{\"labelValue\":\"962991\",\"primaryLabelValue\":\"962991\"}},{\"attributeHeader\":{\"labelValue\":\"962993\",\"primaryLabelValue\":\"962993\"}},{\"attributeHeader\":{\"labelValue\":\"962995\",\"primaryLabelValue\":\"962995\"}},{\"attributeHeader\":{\"labelValue\":\"962997\",\"primaryLabelValue\":\"962997\"}},{\"attributeHeader\":{\"labelValue\":\"962999\",\"primaryLabelValue\":\"962999\"}},{\"attributeHeader\":{\"labelValue\":\"963001\",\"primaryLabelValue\":\"963001\"}},{\"attributeHeader\":{\"labelValue\":\"963005\",\"primaryLabelValue\":\"963005\"}},{\"attributeHeader\":{\"labelValue\":\"963007\",\"primaryLabelValue\":\"963007\"}},{\"attributeHeader\":{\"labelValue\":\"963009\",\"primaryLabelValue\":\"963009\"}},{\"attributeHeader\":{\"labelValue\":\"963011\",\"primaryLabelValue\":\"963011\"}},{\"attributeHeader\":{\"labelValue\":\"963013\",\"primaryLabelValue\":\"963013\"}},{\"attributeHeader\":{\"labelValue\":\"963015\",\"primaryLabelValue\":\"963015\"}},{\"attributeHeader\":{\"labelValue\":\"963017\",\"primaryLabelValue\":\"963017\"}},{\"attributeHeader\":{\"labelValue\":\"963019\",\"primaryLabelValue\":\"963019\"}},{\"attributeHeader\":{\"labelValue\":\"963021\",\"primaryLabelValue\":\"963021\"}},{\"attributeHeader\":{\"labelValue\":\"963023\",\"primaryLabelValue\":\"963023\"}},{\"attributeHeader\":{\"labelValue\":\"963025\",\"primaryLabelValue\":\"963025\"}},{\"attributeHeader\":{\"labelValue\":\"963027\",\"primaryLabelValue\":\"963027\"}},{\"attributeHeader\":{\"labelValue\":\"963029\",\"primaryLabelValue\":\"963029\"}},{\"attributeHeader\":{\"labelValue\":\"963031\",\"primaryLabelValue\":\"963031\"}},{\"attributeHeader\":{\"labelValue\":\"963033\",\"primaryLabelValue\":\"963033\"}},{\"attributeHeader\":{\"labelValue\":\"963035\",\"primaryLabelValue\":\"963035\"}},{\"attributeHeader\":{\"labelValue\":\"963037\",\"primaryLabelValue\":\"963037\"}},{\"attributeHeader\":{\"labelValue\":\"963039\",\"primaryLabelValue\":\"963039\"}},{\"attributeHeader\":{\"labelValue\":\"963041\",\"primaryLabelValue\":\"963041\"}},{\"attributeHeader\":{\"labelValue\":\"963043\",\"primaryLabelValue\":\"963043\"}},{\"attributeHeader\":{\"labelValue\":\"963045\",\"primaryLabelValue\":\"963045\"}},{\"attributeHeader\":{\"labelValue\":\"963047\",\"primaryLabelValue\":\"963047\"}},{\"attributeHeader\":{\"labelValue\":\"963049\",\"primaryLabelValue\":\"963049\"}},{\"attributeHeader\":{\"labelValue\":\"963051\",\"primaryLabelValue\":\"963051\"}},{\"attributeHeader\":{\"labelValue\":\"963053\",\"primaryLabelValue\":\"963053\"}},{\"attributeHeader\":{\"labelValue\":\"963055\",\"primaryLabelValue\":\"963055\"}},{\"attributeHeader\":{\"labelValue\":\"963057\",\"primaryLabelValue\":\"963057\"}},{\"attributeHeader\":{\"labelValue\":\"963059\",\"primaryLabelValue\":\"963059\"}},{\"attributeHeader\":{\"labelValue\":\"963061\",\"primaryLabelValue\":\"963061\"}},{\"attributeHeader\":{\"labelValue\":\"963063\",\"primaryLabelValue\":\"963063\"}},{\"attributeHeader\":{\"labelValue\":\"963065\",\"primaryLabelValue\":\"963065\"}},{\"attributeHeader\":{\"labelValue\":\"963067\",\"primaryLabelValue\":\"963067\"}},{\"attributeHeader\":{\"labelValue\":\"963069\",\"primaryLabelValue\":\"963069\"}},{\"attributeHeader\":{\"labelValue\":\"963071\",\"primaryLabelValue\":\"963071\"}},{\"attributeHeader\":{\"labelValue\":\"963075\",\"primaryLabelValue\":\"963075\"}},{\"attributeHeader\":{\"labelValue\":\"963077\",\"primaryLabelValue\":\"963077\"}},{\"attributeHeader\":{\"labelValue\":\"963079\",\"primaryLabelValue\":\"963079\"}},{\"attributeHeader\":{\"labelValue\":\"963081\",\"primaryLabelValue\":\"963081\"}},{\"attributeHeader\":{\"labelValue\":\"963083\",\"primaryLabelValue\":\"963083\"}},{\"attributeHeader\":{\"labelValue\":\"963085\",\"primaryLabelValue\":\"963085\"}},{\"attributeHeader\":{\"labelValue\":\"963087\",\"primaryLabelValue\":\"963087\"}},{\"attributeHeader\":{\"labelValue\":\"963089\",\"primaryLabelValue\":\"963089\"}},{\"attributeHeader\":{\"labelValue\":\"963091\",\"primaryLabelValue\":\"963091\"}},{\"attributeHeader\":{\"labelValue\":\"963093\",\"primaryLabelValue\":\"963093\"}},{\"attributeHeader\":{\"labelValue\":\"963095\",\"primaryLabelValue\":\"963095\"}},{\"attributeHeader\":{\"labelValue\":\"963097\",\"primaryLabelValue\":\"963097\"}},{\"attributeHeader\":{\"labelValue\":\"963099\",\"primaryLabelValue\":\"963099\"}},{\"attributeHeader\":{\"labelValue\":\"963101\",\"primaryLabelValue\":\"963101\"}},{\"attributeHeader\":{\"labelValue\":\"963103\",\"primaryLabelValue\":\"963103\"}},{\"attributeHeader\":{\"labelValue\":\"963105\",\"primaryLabelValue\":\"963105\"}},{\"attributeHeader\":{\"labelValue\":\"963107\",\"primaryLabelValue\":\"963107\"}},{\"attributeHeader\":{\"labelValue\":\"963109\",\"primaryLabelValue\":\"963109\"}},{\"attributeHeader\":{\"labelValue\":\"963111\",\"primaryLabelValue\":\"963111\"}},{\"attributeHeader\":{\"labelValue\":\"963113\",\"primaryLabelValue\":\"963113\"}},{\"attributeHeader\":{\"labelValue\":\"963115\",\"primaryLabelValue\":\"963115\"}},{\"attributeHeader\":{\"labelValue\":\"963117\",\"primaryLabelValue\":\"963117\"}},{\"attributeHeader\":{\"labelValue\":\"963119\",\"primaryLabelValue\":\"963119\"}},{\"attributeHeader\":{\"labelValue\":\"963121\",\"primaryLabelValue\":\"963121\"}},{\"attributeHeader\":{\"labelValue\":\"963123\",\"primaryLabelValue\":\"963123\"}},{\"attributeHeader\":{\"labelValue\":\"963125\",\"primaryLabelValue\":\"963125\"}},{\"attributeHeader\":{\"labelValue\":\"963127\",\"primaryLabelValue\":\"963127\"}},{\"attributeHeader\":{\"labelValue\":\"963129\",\"primaryLabelValue\":\"963129\"}},{\"attributeHeader\":{\"labelValue\":\"963131\",\"primaryLabelValue\":\"963131\"}},{\"attributeHeader\":{\"labelValue\":\"963133\",\"primaryLabelValue\":\"963133\"}},{\"attributeHeader\":{\"labelValue\":\"963135\",\"primaryLabelValue\":\"963135\"}},{\"attributeHeader\":{\"labelValue\":\"963137\",\"primaryLabelValue\":\"963137\"}},{\"attributeHeader\":{\"labelValue\":\"963139\",\"primaryLabelValue\":\"963139\"}},{\"attributeHeader\":{\"labelValue\":\"963141\",\"primaryLabelValue\":\"963141\"}},{\"attributeHeader\":{\"labelValue\":\"963143\",\"primaryLabelValue\":\"963143\"}},{\"attributeHeader\":{\"labelValue\":\"963145\",\"primaryLabelValue\":\"963145\"}},{\"attributeHeader\":{\"labelValue\":\"963147\",\"primaryLabelValue\":\"963147\"}},{\"attributeHeader\":{\"labelValue\":\"963149\",\"primaryLabelValue\":\"963149\"}},{\"attributeHeader\":{\"labelValue\":\"963151\",\"primaryLabelValue\":\"963151\"}},{\"attributeHeader\":{\"labelValue\":\"963153\",\"primaryLabelValue\":\"963153\"}},{\"attributeHeader\":{\"labelValue\":\"963155\",\"primaryLabelValue\":\"963155\"}},{\"attributeHeader\":{\"labelValue\":\"963157\",\"primaryLabelValue\":\"963157\"}},{\"attributeHeader\":{\"labelValue\":\"963159\",\"primaryLabelValue\":\"963159\"}},{\"attributeHeader\":{\"labelValue\":\"963161\",\"primaryLabelValue\":\"963161\"}},{\"attributeHeader\":{\"labelValue\":\"963163\",\"primaryLabelValue\":\"963163\"}},{\"attributeHeader\":{\"labelValue\":\"963165\",\"primaryLabelValue\":\"963165\"}},{\"attributeHeader\":{\"labelValue\":\"963167\",\"primaryLabelValue\":\"963167\"}},{\"attributeHeader\":{\"labelValue\":\"963169\",\"primaryLabelValue\":\"963169\"}},{\"attributeHeader\":{\"labelValue\":\"963171\",\"primaryLabelValue\":\"963171\"}},{\"attributeHeader\":{\"labelValue\":\"963173\",\"primaryLabelValue\":\"963173\"}},{\"attributeHeader\":{\"labelValue\":\"963175\",\"primaryLabelValue\":\"963175\"}},{\"attributeHeader\":{\"labelValue\":\"963177\",\"primaryLabelValue\":\"963177\"}},{\"attributeHeader\":{\"labelValue\":\"963179\",\"primaryLabelValue\":\"963179\"}},{\"attributeHeader\":{\"labelValue\":\"963181\",\"primaryLabelValue\":\"963181\"}},{\"attributeHeader\":{\"labelValue\":\"963183\",\"primaryLabelValue\":\"963183\"}},{\"attributeHeader\":{\"labelValue\":\"963185\",\"primaryLabelValue\":\"963185\"}},{\"attributeHeader\":{\"labelValue\":\"963187\",\"primaryLabelValue\":\"963187\"}},{\"attributeHeader\":{\"labelValue\":\"963189\",\"primaryLabelValue\":\"963189\"}},{\"attributeHeader\":{\"labelValue\":\"963193\",\"primaryLabelValue\":\"963193\"}},{\"attributeHeader\":{\"labelValue\":\"963195\",\"primaryLabelValue\":\"963195\"}},{\"attributeHeader\":{\"labelValue\":\"963197\",\"primaryLabelValue\":\"963197\"}},{\"attributeHeader\":{\"labelValue\":\"963199\",\"primaryLabelValue\":\"963199\"}},{\"attributeHeader\":{\"labelValue\":\"963201\",\"primaryLabelValue\":\"963201\"}},{\"attributeHeader\":{\"labelValue\":\"963203\",\"primaryLabelValue\":\"963203\"}},{\"attributeHeader\":{\"labelValue\":\"963205\",\"primaryLabelValue\":\"963205\"}},{\"attributeHeader\":{\"labelValue\":\"963207\",\"primaryLabelValue\":\"963207\"}},{\"attributeHeader\":{\"labelValue\":\"963209\",\"primaryLabelValue\":\"963209\"}},{\"attributeHeader\":{\"labelValue\":\"963211\",\"primaryLabelValue\":\"963211\"}},{\"attributeHeader\":{\"labelValue\":\"963213\",\"primaryLabelValue\":\"963213\"}},{\"attributeHeader\":{\"labelValue\":\"963215\",\"primaryLabelValue\":\"963215\"}},{\"attributeHeader\":{\"labelValue\":\"963217\",\"primaryLabelValue\":\"963217\"}},{\"attributeHeader\":{\"labelValue\":\"963219\",\"primaryLabelValue\":\"963219\"}},{\"attributeHeader\":{\"labelValue\":\"963221\",\"primaryLabelValue\":\"963221\"}},{\"attributeHeader\":{\"labelValue\":\"963223\",\"primaryLabelValue\":\"963223\"}},{\"attributeHeader\":{\"labelValue\":\"963225\",\"primaryLabelValue\":\"963225\"}},{\"attributeHeader\":{\"labelValue\":\"963227\",\"primaryLabelValue\":\"963227\"}},{\"attributeHeader\":{\"labelValue\":\"963229\",\"primaryLabelValue\":\"963229\"}},{\"attributeHeader\":{\"labelValue\":\"963231\",\"primaryLabelValue\":\"963231\"}},{\"attributeHeader\":{\"labelValue\":\"963233\",\"primaryLabelValue\":\"963233\"}},{\"attributeHeader\":{\"labelValue\":\"963235\",\"primaryLabelValue\":\"963235\"}},{\"attributeHeader\":{\"labelValue\":\"963237\",\"primaryLabelValue\":\"963237\"}},{\"attributeHeader\":{\"labelValue\":\"963239\",\"primaryLabelValue\":\"963239\"}},{\"attributeHeader\":{\"labelValue\":\"963241\",\"primaryLabelValue\":\"963241\"}},{\"attributeHeader\":{\"labelValue\":\"963243\",\"primaryLabelValue\":\"963243\"}},{\"attributeHeader\":{\"labelValue\":\"963245\",\"primaryLabelValue\":\"963245\"}},{\"attributeHeader\":{\"labelValue\":\"963247\",\"primaryLabelValue\":\"963247\"}},{\"attributeHeader\":{\"labelValue\":\"963249\",\"primaryLabelValue\":\"963249\"}},{\"attributeHeader\":{\"labelValue\":\"963251\",\"primaryLabelValue\":\"963251\"}},{\"attributeHeader\":{\"labelValue\":\"963253\",\"primaryLabelValue\":\"963253\"}},{\"attributeHeader\":{\"labelValue\":\"963255\",\"primaryLabelValue\":\"963255\"}},{\"attributeHeader\":{\"labelValue\":\"963257\",\"primaryLabelValue\":\"963257\"}},{\"attributeHeader\":{\"labelValue\":\"963259\",\"primaryLabelValue\":\"963259\"}},{\"attributeHeader\":{\"labelValue\":\"963261\",\"primaryLabelValue\":\"963261\"}},{\"attributeHeader\":{\"labelValue\":\"963263\",\"primaryLabelValue\":\"963263\"}},{\"attributeHeader\":{\"labelValue\":\"963265\",\"primaryLabelValue\":\"963265\"}},{\"attributeHeader\":{\"labelValue\":\"963267\",\"primaryLabelValue\":\"963267\"}},{\"attributeHeader\":{\"labelValue\":\"963269\",\"primaryLabelValue\":\"963269\"}},{\"attributeHeader\":{\"labelValue\":\"963271\",\"primaryLabelValue\":\"963271\"}},{\"attributeHeader\":{\"labelValue\":\"963273\",\"primaryLabelValue\":\"963273\"}},{\"attributeHeader\":{\"labelValue\":\"963275\",\"primaryLabelValue\":\"963275\"}},{\"attributeHeader\":{\"labelValue\":\"963277\",\"primaryLabelValue\":\"963277\"}},{\"attributeHeader\":{\"labelValue\":\"963279\",\"primaryLabelValue\":\"963279\"}},{\"attributeHeader\":{\"labelValue\":\"963281\",\"primaryLabelValue\":\"963281\"}},{\"attributeHeader\":{\"labelValue\":\"963283\",\"primaryLabelValue\":\"963283\"}},{\"attributeHeader\":{\"labelValue\":\"963285\",\"primaryLabelValue\":\"963285\"}},{\"attributeHeader\":{\"labelValue\":\"963287\",\"primaryLabelValue\":\"963287\"}},{\"attributeHeader\":{\"labelValue\":\"963289\",\"primaryLabelValue\":\"963289\"}},{\"attributeHeader\":{\"labelValue\":\"963291\",\"primaryLabelValue\":\"963291\"}},{\"attributeHeader\":{\"labelValue\":\"963293\",\"primaryLabelValue\":\"963293\"}},{\"attributeHeader\":{\"labelValue\":\"963295\",\"primaryLabelValue\":\"963295\"}},{\"attributeHeader\":{\"labelValue\":\"963297\",\"primaryLabelValue\":\"963297\"}},{\"attributeHeader\":{\"labelValue\":\"963299\",\"primaryLabelValue\":\"963299\"}},{\"attributeHeader\":{\"labelValue\":\"963301\",\"primaryLabelValue\":\"963301\"}},{\"attributeHeader\":{\"labelValue\":\"963303\",\"primaryLabelValue\":\"963303\"}},{\"attributeHeader\":{\"labelValue\":\"963305\",\"primaryLabelValue\":\"963305\"}},{\"attributeHeader\":{\"labelValue\":\"963307\",\"primaryLabelValue\":\"963307\"}},{\"attributeHeader\":{\"labelValue\":\"963309\",\"primaryLabelValue\":\"963309\"}},{\"attributeHeader\":{\"labelValue\":\"963311\",\"primaryLabelValue\":\"963311\"}},{\"attributeHeader\":{\"labelValue\":\"963313\",\"primaryLabelValue\":\"963313\"}},{\"attributeHeader\":{\"labelValue\":\"963315\",\"primaryLabelValue\":\"963315\"}},{\"attributeHeader\":{\"labelValue\":\"963317\",\"primaryLabelValue\":\"963317\"}},{\"attributeHeader\":{\"labelValue\":\"963319\",\"primaryLabelValue\":\"963319\"}},{\"attributeHeader\":{\"labelValue\":\"963321\",\"primaryLabelValue\":\"963321\"}},{\"attributeHeader\":{\"labelValue\":\"963323\",\"primaryLabelValue\":\"963323\"}},{\"attributeHeader\":{\"labelValue\":\"963325\",\"primaryLabelValue\":\"963325\"}},{\"attributeHeader\":{\"labelValue\":\"963327\",\"primaryLabelValue\":\"963327\"}},{\"attributeHeader\":{\"labelValue\":\"963331\",\"primaryLabelValue\":\"963331\"}},{\"attributeHeader\":{\"labelValue\":\"963333\",\"primaryLabelValue\":\"963333\"}},{\"attributeHeader\":{\"labelValue\":\"963335\",\"primaryLabelValue\":\"963335\"}},{\"attributeHeader\":{\"labelValue\":\"963337\",\"primaryLabelValue\":\"963337\"}},{\"attributeHeader\":{\"labelValue\":\"963339\",\"primaryLabelValue\":\"963339\"}},{\"attributeHeader\":{\"labelValue\":\"963341\",\"primaryLabelValue\":\"963341\"}},{\"attributeHeader\":{\"labelValue\":\"963343\",\"primaryLabelValue\":\"963343\"}},{\"attributeHeader\":{\"labelValue\":\"963345\",\"primaryLabelValue\":\"963345\"}},{\"attributeHeader\":{\"labelValue\":\"963347\",\"primaryLabelValue\":\"963347\"}},{\"attributeHeader\":{\"labelValue\":\"963349\",\"primaryLabelValue\":\"963349\"}},{\"attributeHeader\":{\"labelValue\":\"963351\",\"primaryLabelValue\":\"963351\"}},{\"attributeHeader\":{\"labelValue\":\"963353\",\"primaryLabelValue\":\"963353\"}},{\"attributeHeader\":{\"labelValue\":\"963355\",\"primaryLabelValue\":\"963355\"}},{\"attributeHeader\":{\"labelValue\":\"963357\",\"primaryLabelValue\":\"963357\"}},{\"attributeHeader\":{\"labelValue\":\"963359\",\"primaryLabelValue\":\"963359\"}},{\"attributeHeader\":{\"labelValue\":\"963363\",\"primaryLabelValue\":\"963363\"}},{\"attributeHeader\":{\"labelValue\":\"963365\",\"primaryLabelValue\":\"963365\"}},{\"attributeHeader\":{\"labelValue\":\"963367\",\"primaryLabelValue\":\"963367\"}},{\"attributeHeader\":{\"labelValue\":\"963369\",\"primaryLabelValue\":\"963369\"}},{\"attributeHeader\":{\"labelValue\":\"963371\",\"primaryLabelValue\":\"963371\"}},{\"attributeHeader\":{\"labelValue\":\"963373\",\"primaryLabelValue\":\"963373\"}},{\"attributeHeader\":{\"labelValue\":\"963375\",\"primaryLabelValue\":\"963375\"}},{\"attributeHeader\":{\"labelValue\":\"963377\",\"primaryLabelValue\":\"963377\"}},{\"attributeHeader\":{\"labelValue\":\"963379\",\"primaryLabelValue\":\"963379\"}},{\"attributeHeader\":{\"labelValue\":\"963381\",\"primaryLabelValue\":\"963381\"}},{\"attributeHeader\":{\"labelValue\":\"963383\",\"primaryLabelValue\":\"963383\"}},{\"attributeHeader\":{\"labelValue\":\"963385\",\"primaryLabelValue\":\"963385\"}},{\"attributeHeader\":{\"labelValue\":\"963387\",\"primaryLabelValue\":\"963387\"}},{\"attributeHeader\":{\"labelValue\":\"963389\",\"primaryLabelValue\":\"963389\"}},{\"attributeHeader\":{\"labelValue\":\"963391\",\"primaryLabelValue\":\"963391\"}},{\"attributeHeader\":{\"labelValue\":\"963393\",\"primaryLabelValue\":\"963393\"}},{\"attributeHeader\":{\"labelValue\":\"963397\",\"primaryLabelValue\":\"963397\"}},{\"attributeHeader\":{\"labelValue\":\"963399\",\"primaryLabelValue\":\"963399\"}},{\"attributeHeader\":{\"labelValue\":\"963403\",\"primaryLabelValue\":\"963403\"}},{\"attributeHeader\":{\"labelValue\":\"963405\",\"primaryLabelValue\":\"963405\"}},{\"attributeHeader\":{\"labelValue\":\"963407\",\"primaryLabelValue\":\"963407\"}},{\"attributeHeader\":{\"labelValue\":\"963409\",\"primaryLabelValue\":\"963409\"}},{\"attributeHeader\":{\"labelValue\":\"963411\",\"primaryLabelValue\":\"963411\"}},{\"attributeHeader\":{\"labelValue\":\"963413\",\"primaryLabelValue\":\"963413\"}},{\"attributeHeader\":{\"labelValue\":\"963415\",\"primaryLabelValue\":\"963415\"}},{\"attributeHeader\":{\"labelValue\":\"963417\",\"primaryLabelValue\":\"963417\"}},{\"attributeHeader\":{\"labelValue\":\"963419\",\"primaryLabelValue\":\"963419\"}},{\"attributeHeader\":{\"labelValue\":\"963421\",\"primaryLabelValue\":\"963421\"}},{\"attributeHeader\":{\"labelValue\":\"963423\",\"primaryLabelValue\":\"963423\"}},{\"attributeHeader\":{\"labelValue\":\"963425\",\"primaryLabelValue\":\"963425\"}},{\"attributeHeader\":{\"labelValue\":\"963427\",\"primaryLabelValue\":\"963427\"}},{\"attributeHeader\":{\"labelValue\":\"963429\",\"primaryLabelValue\":\"963429\"}},{\"attributeHeader\":{\"labelValue\":\"963431\",\"primaryLabelValue\":\"963431\"}},{\"attributeHeader\":{\"labelValue\":\"963433\",\"primaryLabelValue\":\"963433\"}},{\"attributeHeader\":{\"labelValue\":\"963435\",\"primaryLabelValue\":\"963435\"}},{\"attributeHeader\":{\"labelValue\":\"963437\",\"primaryLabelValue\":\"963437\"}},{\"attributeHeader\":{\"labelValue\":\"963441\",\"primaryLabelValue\":\"963441\"}},{\"attributeHeader\":{\"labelValue\":\"963443\",\"primaryLabelValue\":\"963443\"}},{\"attributeHeader\":{\"labelValue\":\"963445\",\"primaryLabelValue\":\"963445\"}},{\"attributeHeader\":{\"labelValue\":\"963447\",\"primaryLabelValue\":\"963447\"}},{\"attributeHeader\":{\"labelValue\":\"963449\",\"primaryLabelValue\":\"963449\"}},{\"attributeHeader\":{\"labelValue\":\"963451\",\"primaryLabelValue\":\"963451\"}},{\"attributeHeader\":{\"labelValue\":\"963453\",\"primaryLabelValue\":\"963453\"}},{\"attributeHeader\":{\"labelValue\":\"963455\",\"primaryLabelValue\":\"963455\"}},{\"attributeHeader\":{\"labelValue\":\"963457\",\"primaryLabelValue\":\"963457\"}},{\"attributeHeader\":{\"labelValue\":\"963459\",\"primaryLabelValue\":\"963459\"}},{\"attributeHeader\":{\"labelValue\":\"963461\",\"primaryLabelValue\":\"963461\"}},{\"attributeHeader\":{\"labelValue\":\"963463\",\"primaryLabelValue\":\"963463\"}},{\"attributeHeader\":{\"labelValue\":\"963465\",\"primaryLabelValue\":\"963465\"}},{\"attributeHeader\":{\"labelValue\":\"963467\",\"primaryLabelValue\":\"963467\"}},{\"attributeHeader\":{\"labelValue\":\"963469\",\"primaryLabelValue\":\"963469\"}},{\"attributeHeader\":{\"labelValue\":\"963471\",\"primaryLabelValue\":\"963471\"}},{\"attributeHeader\":{\"labelValue\":\"963473\",\"primaryLabelValue\":\"963473\"}},{\"attributeHeader\":{\"labelValue\":\"963475\",\"primaryLabelValue\":\"963475\"}},{\"attributeHeader\":{\"labelValue\":\"963477\",\"primaryLabelValue\":\"963477\"}},{\"attributeHeader\":{\"labelValue\":\"963479\",\"primaryLabelValue\":\"963479\"}},{\"attributeHeader\":{\"labelValue\":\"963481\",\"primaryLabelValue\":\"963481\"}},{\"attributeHeader\":{\"labelValue\":\"963483\",\"primaryLabelValue\":\"963483\"}},{\"attributeHeader\":{\"labelValue\":\"963485\",\"primaryLabelValue\":\"963485\"}},{\"attributeHeader\":{\"labelValue\":\"963487\",\"primaryLabelValue\":\"963487\"}},{\"attributeHeader\":{\"labelValue\":\"963489\",\"primaryLabelValue\":\"963489\"}},{\"attributeHeader\":{\"labelValue\":\"963491\",\"primaryLabelValue\":\"963491\"}},{\"attributeHeader\":{\"labelValue\":\"963493\",\"primaryLabelValue\":\"963493\"}},{\"attributeHeader\":{\"labelValue\":\"963495\",\"primaryLabelValue\":\"963495\"}},{\"attributeHeader\":{\"labelValue\":\"963497\",\"primaryLabelValue\":\"963497\"}},{\"attributeHeader\":{\"labelValue\":\"963499\",\"primaryLabelValue\":\"963499\"}},{\"attributeHeader\":{\"labelValue\":\"963501\",\"primaryLabelValue\":\"963501\"}},{\"attributeHeader\":{\"labelValue\":\"963503\",\"primaryLabelValue\":\"963503\"}},{\"attributeHeader\":{\"labelValue\":\"963507\",\"primaryLabelValue\":\"963507\"}},{\"attributeHeader\":{\"labelValue\":\"963509\",\"primaryLabelValue\":\"963509\"}},{\"attributeHeader\":{\"labelValue\":\"963511\",\"primaryLabelValue\":\"963511\"}},{\"attributeHeader\":{\"labelValue\":\"963513\",\"primaryLabelValue\":\"963513\"}},{\"attributeHeader\":{\"labelValue\":\"963515\",\"primaryLabelValue\":\"963515\"}},{\"attributeHeader\":{\"labelValue\":\"963517\",\"primaryLabelValue\":\"963517\"}},{\"attributeHeader\":{\"labelValue\":\"963519\",\"primaryLabelValue\":\"963519\"}},{\"attributeHeader\":{\"labelValue\":\"963521\",\"primaryLabelValue\":\"963521\"}},{\"attributeHeader\":{\"labelValue\":\"963523\",\"primaryLabelValue\":\"963523\"}},{\"attributeHeader\":{\"labelValue\":\"963525\",\"primaryLabelValue\":\"963525\"}},{\"attributeHeader\":{\"labelValue\":\"963527\",\"primaryLabelValue\":\"963527\"}},{\"attributeHeader\":{\"labelValue\":\"963529\",\"primaryLabelValue\":\"963529\"}},{\"attributeHeader\":{\"labelValue\":\"963531\",\"primaryLabelValue\":\"963531\"}},{\"attributeHeader\":{\"labelValue\":\"963533\",\"primaryLabelValue\":\"963533\"}},{\"attributeHeader\":{\"labelValue\":\"963535\",\"primaryLabelValue\":\"963535\"}},{\"attributeHeader\":{\"labelValue\":\"963537\",\"primaryLabelValue\":\"963537\"}},{\"attributeHeader\":{\"labelValue\":\"963539\",\"primaryLabelValue\":\"963539\"}},{\"attributeHeader\":{\"labelValue\":\"963541\",\"primaryLabelValue\":\"963541\"}},{\"attributeHeader\":{\"labelValue\":\"963543\",\"primaryLabelValue\":\"963543\"}},{\"attributeHeader\":{\"labelValue\":\"963545\",\"primaryLabelValue\":\"963545\"}},{\"attributeHeader\":{\"labelValue\":\"963547\",\"primaryLabelValue\":\"963547\"}},{\"attributeHeader\":{\"labelValue\":\"963549\",\"primaryLabelValue\":\"963549\"}},{\"attributeHeader\":{\"labelValue\":\"963551\",\"primaryLabelValue\":\"963551\"}},{\"attributeHeader\":{\"labelValue\":\"963553\",\"primaryLabelValue\":\"963553\"}},{\"attributeHeader\":{\"labelValue\":\"963555\",\"primaryLabelValue\":\"963555\"}},{\"attributeHeader\":{\"labelValue\":\"963559\",\"primaryLabelValue\":\"963559\"}},{\"attributeHeader\":{\"labelValue\":\"963563\",\"primaryLabelValue\":\"963563\"}},{\"attributeHeader\":{\"labelValue\":\"963565\",\"primaryLabelValue\":\"963565\"}},{\"attributeHeader\":{\"labelValue\":\"963567\",\"primaryLabelValue\":\"963567\"}},{\"attributeHeader\":{\"labelValue\":\"963569\",\"primaryLabelValue\":\"963569\"}},{\"attributeHeader\":{\"labelValue\":\"963571\",\"primaryLabelValue\":\"963571\"}},{\"attributeHeader\":{\"labelValue\":\"963573\",\"primaryLabelValue\":\"963573\"}},{\"attributeHeader\":{\"labelValue\":\"963575\",\"primaryLabelValue\":\"963575\"}},{\"attributeHeader\":{\"labelValue\":\"963577\",\"primaryLabelValue\":\"963577\"}},{\"attributeHeader\":{\"labelValue\":\"963579\",\"primaryLabelValue\":\"963579\"}},{\"attributeHeader\":{\"labelValue\":\"963583\",\"primaryLabelValue\":\"963583\"}},{\"attributeHeader\":{\"labelValue\":\"963585\",\"primaryLabelValue\":\"963585\"}},{\"attributeHeader\":{\"labelValue\":\"963587\",\"primaryLabelValue\":\"963587\"}},{\"attributeHeader\":{\"labelValue\":\"963589\",\"primaryLabelValue\":\"963589\"}},{\"attributeHeader\":{\"labelValue\":\"963591\",\"primaryLabelValue\":\"963591\"}},{\"attributeHeader\":{\"labelValue\":\"963593\",\"primaryLabelValue\":\"963593\"}},{\"attributeHeader\":{\"labelValue\":\"963595\",\"primaryLabelValue\":\"963595\"}},{\"attributeHeader\":{\"labelValue\":\"963597\",\"primaryLabelValue\":\"963597\"}},{\"attributeHeader\":{\"labelValue\":\"963599\",\"primaryLabelValue\":\"963599\"}},{\"attributeHeader\":{\"labelValue\":\"963601\",\"primaryLabelValue\":\"963601\"}},{\"attributeHeader\":{\"labelValue\":\"963603\",\"primaryLabelValue\":\"963603\"}},{\"attributeHeader\":{\"labelValue\":\"963605\",\"primaryLabelValue\":\"963605\"}},{\"attributeHeader\":{\"labelValue\":\"963607\",\"primaryLabelValue\":\"963607\"}},{\"attributeHeader\":{\"labelValue\":\"963609\",\"primaryLabelValue\":\"963609\"}},{\"attributeHeader\":{\"labelValue\":\"963611\",\"primaryLabelValue\":\"963611\"}},{\"attributeHeader\":{\"labelValue\":\"963613\",\"primaryLabelValue\":\"963613\"}},{\"attributeHeader\":{\"labelValue\":\"963615\",\"primaryLabelValue\":\"963615\"}},{\"attributeHeader\":{\"labelValue\":\"963617\",\"primaryLabelValue\":\"963617\"}},{\"attributeHeader\":{\"labelValue\":\"963619\",\"primaryLabelValue\":\"963619\"}},{\"attributeHeader\":{\"labelValue\":\"963621\",\"primaryLabelValue\":\"963621\"}},{\"attributeHeader\":{\"labelValue\":\"963625\",\"primaryLabelValue\":\"963625\"}},{\"attributeHeader\":{\"labelValue\":\"963627\",\"primaryLabelValue\":\"963627\"}},{\"attributeHeader\":{\"labelValue\":\"963631\",\"primaryLabelValue\":\"963631\"}},{\"attributeHeader\":{\"labelValue\":\"963633\",\"primaryLabelValue\":\"963633\"}},{\"attributeHeader\":{\"labelValue\":\"963635\",\"primaryLabelValue\":\"963635\"}},{\"attributeHeader\":{\"labelValue\":\"963637\",\"primaryLabelValue\":\"963637\"}},{\"attributeHeader\":{\"labelValue\":\"963639\",\"primaryLabelValue\":\"963639\"}},{\"attributeHeader\":{\"labelValue\":\"963643\",\"primaryLabelValue\":\"963643\"}},{\"attributeHeader\":{\"labelValue\":\"963647\",\"primaryLabelValue\":\"963647\"}},{\"attributeHeader\":{\"labelValue\":\"963649\",\"primaryLabelValue\":\"963649\"}},{\"attributeHeader\":{\"labelValue\":\"963651\",\"primaryLabelValue\":\"963651\"}},{\"attributeHeader\":{\"labelValue\":\"963653\",\"primaryLabelValue\":\"963653\"}},{\"attributeHeader\":{\"labelValue\":\"963655\",\"primaryLabelValue\":\"963655\"}},{\"attributeHeader\":{\"labelValue\":\"963657\",\"primaryLabelValue\":\"963657\"}},{\"attributeHeader\":{\"labelValue\":\"963659\",\"primaryLabelValue\":\"963659\"}},{\"attributeHeader\":{\"labelValue\":\"963661\",\"primaryLabelValue\":\"963661\"}},{\"attributeHeader\":{\"labelValue\":\"963663\",\"primaryLabelValue\":\"963663\"}},{\"attributeHeader\":{\"labelValue\":\"963665\",\"primaryLabelValue\":\"963665\"}},{\"attributeHeader\":{\"labelValue\":\"963667\",\"primaryLabelValue\":\"963667\"}},{\"attributeHeader\":{\"labelValue\":\"963669\",\"primaryLabelValue\":\"963669\"}},{\"attributeHeader\":{\"labelValue\":\"963671\",\"primaryLabelValue\":\"963671\"}},{\"attributeHeader\":{\"labelValue\":\"963673\",\"primaryLabelValue\":\"963673\"}},{\"attributeHeader\":{\"labelValue\":\"963675\",\"primaryLabelValue\":\"963675\"}},{\"attributeHeader\":{\"labelValue\":\"963677\",\"primaryLabelValue\":\"963677\"}},{\"attributeHeader\":{\"labelValue\":\"963679\",\"primaryLabelValue\":\"963679\"}},{\"attributeHeader\":{\"labelValue\":\"963681\",\"primaryLabelValue\":\"963681\"}},{\"attributeHeader\":{\"labelValue\":\"963683\",\"primaryLabelValue\":\"963683\"}},{\"attributeHeader\":{\"labelValue\":\"963685\",\"primaryLabelValue\":\"963685\"}},{\"attributeHeader\":{\"labelValue\":\"963687\",\"primaryLabelValue\":\"963687\"}},{\"attributeHeader\":{\"labelValue\":\"963689\",\"primaryLabelValue\":\"963689\"}},{\"attributeHeader\":{\"labelValue\":\"963691\",\"primaryLabelValue\":\"963691\"}},{\"attributeHeader\":{\"labelValue\":\"963693\",\"primaryLabelValue\":\"963693\"}},{\"attributeHeader\":{\"labelValue\":\"963695\",\"primaryLabelValue\":\"963695\"}},{\"attributeHeader\":{\"labelValue\":\"963697\",\"primaryLabelValue\":\"963697\"}},{\"attributeHeader\":{\"labelValue\":\"963701\",\"primaryLabelValue\":\"963701\"}},{\"attributeHeader\":{\"labelValue\":\"963703\",\"primaryLabelValue\":\"963703\"}},{\"attributeHeader\":{\"labelValue\":\"963709\",\"primaryLabelValue\":\"963709\"}},{\"attributeHeader\":{\"labelValue\":\"963711\",\"primaryLabelValue\":\"963711\"}},{\"attributeHeader\":{\"labelValue\":\"963713\",\"primaryLabelValue\":\"963713\"}},{\"attributeHeader\":{\"labelValue\":\"963715\",\"primaryLabelValue\":\"963715\"}},{\"attributeHeader\":{\"labelValue\":\"963717\",\"primaryLabelValue\":\"963717\"}},{\"attributeHeader\":{\"labelValue\":\"963719\",\"primaryLabelValue\":\"963719\"}},{\"attributeHeader\":{\"labelValue\":\"963721\",\"primaryLabelValue\":\"963721\"}},{\"attributeHeader\":{\"labelValue\":\"963723\",\"primaryLabelValue\":\"963723\"}},{\"attributeHeader\":{\"labelValue\":\"963725\",\"primaryLabelValue\":\"963725\"}},{\"attributeHeader\":{\"labelValue\":\"963727\",\"primaryLabelValue\":\"963727\"}},{\"attributeHeader\":{\"labelValue\":\"963731\",\"primaryLabelValue\":\"963731\"}},{\"attributeHeader\":{\"labelValue\":\"963733\",\"primaryLabelValue\":\"963733\"}},{\"attributeHeader\":{\"labelValue\":\"963735\",\"primaryLabelValue\":\"963735\"}},{\"attributeHeader\":{\"labelValue\":\"963737\",\"primaryLabelValue\":\"963737\"}},{\"attributeHeader\":{\"labelValue\":\"963739\",\"primaryLabelValue\":\"963739\"}},{\"attributeHeader\":{\"labelValue\":\"963741\",\"primaryLabelValue\":\"963741\"}},{\"attributeHeader\":{\"labelValue\":\"963743\",\"primaryLabelValue\":\"963743\"}},{\"attributeHeader\":{\"labelValue\":\"963745\",\"primaryLabelValue\":\"963745\"}},{\"attributeHeader\":{\"labelValue\":\"963747\",\"primaryLabelValue\":\"963747\"}},{\"attributeHeader\":{\"labelValue\":\"963749\",\"primaryLabelValue\":\"963749\"}},{\"attributeHeader\":{\"labelValue\":\"963751\",\"primaryLabelValue\":\"963751\"}},{\"attributeHeader\":{\"labelValue\":\"963753\",\"primaryLabelValue\":\"963753\"}},{\"attributeHeader\":{\"labelValue\":\"963755\",\"primaryLabelValue\":\"963755\"}},{\"attributeHeader\":{\"labelValue\":\"963757\",\"primaryLabelValue\":\"963757\"}},{\"attributeHeader\":{\"labelValue\":\"963759\",\"primaryLabelValue\":\"963759\"}},{\"attributeHeader\":{\"labelValue\":\"963761\",\"primaryLabelValue\":\"963761\"}},{\"attributeHeader\":{\"labelValue\":\"963765\",\"primaryLabelValue\":\"963765\"}},{\"attributeHeader\":{\"labelValue\":\"963767\",\"primaryLabelValue\":\"963767\"}},{\"attributeHeader\":{\"labelValue\":\"963769\",\"primaryLabelValue\":\"963769\"}},{\"attributeHeader\":{\"labelValue\":\"963771\",\"primaryLabelValue\":\"963771\"}},{\"attributeHeader\":{\"labelValue\":\"963773\",\"primaryLabelValue\":\"963773\"}},{\"attributeHeader\":{\"labelValue\":\"963775\",\"primaryLabelValue\":\"963775\"}},{\"attributeHeader\":{\"labelValue\":\"963777\",\"primaryLabelValue\":\"963777\"}},{\"attributeHeader\":{\"labelValue\":\"963779\",\"primaryLabelValue\":\"963779\"}},{\"attributeHeader\":{\"labelValue\":\"963781\",\"primaryLabelValue\":\"963781\"}},{\"attributeHeader\":{\"labelValue\":\"963783\",\"primaryLabelValue\":\"963783\"}},{\"attributeHeader\":{\"labelValue\":\"963785\",\"primaryLabelValue\":\"963785\"}},{\"attributeHeader\":{\"labelValue\":\"963787\",\"primaryLabelValue\":\"963787\"}},{\"attributeHeader\":{\"labelValue\":\"963789\",\"primaryLabelValue\":\"963789\"}},{\"attributeHeader\":{\"labelValue\":\"963791\",\"primaryLabelValue\":\"963791\"}},{\"attributeHeader\":{\"labelValue\":\"963793\",\"primaryLabelValue\":\"963793\"}},{\"attributeHeader\":{\"labelValue\":\"963795\",\"primaryLabelValue\":\"963795\"}},{\"attributeHeader\":{\"labelValue\":\"963797\",\"primaryLabelValue\":\"963797\"}},{\"attributeHeader\":{\"labelValue\":\"963799\",\"primaryLabelValue\":\"963799\"}},{\"attributeHeader\":{\"labelValue\":\"963801\",\"primaryLabelValue\":\"963801\"}},{\"attributeHeader\":{\"labelValue\":\"963803\",\"primaryLabelValue\":\"963803\"}},{\"attributeHeader\":{\"labelValue\":\"963805\",\"primaryLabelValue\":\"963805\"}},{\"attributeHeader\":{\"labelValue\":\"963807\",\"primaryLabelValue\":\"963807\"}},{\"attributeHeader\":{\"labelValue\":\"963811\",\"primaryLabelValue\":\"963811\"}},{\"attributeHeader\":{\"labelValue\":\"963813\",\"primaryLabelValue\":\"963813\"}},{\"attributeHeader\":{\"labelValue\":\"963817\",\"primaryLabelValue\":\"963817\"}},{\"attributeHeader\":{\"labelValue\":\"963819\",\"primaryLabelValue\":\"963819\"}},{\"attributeHeader\":{\"labelValue\":\"963821\",\"primaryLabelValue\":\"963821\"}},{\"attributeHeader\":{\"labelValue\":\"963823\",\"primaryLabelValue\":\"963823\"}},{\"attributeHeader\":{\"labelValue\":\"963825\",\"primaryLabelValue\":\"963825\"}},{\"attributeHeader\":{\"labelValue\":\"963829\",\"primaryLabelValue\":\"963829\"}},{\"attributeHeader\":{\"labelValue\":\"963831\",\"primaryLabelValue\":\"963831\"}},{\"attributeHeader\":{\"labelValue\":\"963833\",\"primaryLabelValue\":\"963833\"}},{\"attributeHeader\":{\"labelValue\":\"963835\",\"primaryLabelValue\":\"963835\"}},{\"attributeHeader\":{\"labelValue\":\"963837\",\"primaryLabelValue\":\"963837\"}},{\"attributeHeader\":{\"labelValue\":\"963839\",\"primaryLabelValue\":\"963839\"}},{\"attributeHeader\":{\"labelValue\":\"963841\",\"primaryLabelValue\":\"963841\"}},{\"attributeHeader\":{\"labelValue\":\"963843\",\"primaryLabelValue\":\"963843\"}},{\"attributeHeader\":{\"labelValue\":\"963845\",\"primaryLabelValue\":\"963845\"}},{\"attributeHeader\":{\"labelValue\":\"963847\",\"primaryLabelValue\":\"963847\"}},{\"attributeHeader\":{\"labelValue\":\"963849\",\"primaryLabelValue\":\"963849\"}},{\"attributeHeader\":{\"labelValue\":\"963851\",\"primaryLabelValue\":\"963851\"}},{\"attributeHeader\":{\"labelValue\":\"963855\",\"primaryLabelValue\":\"963855\"}},{\"attributeHeader\":{\"labelValue\":\"963857\",\"primaryLabelValue\":\"963857\"}},{\"attributeHeader\":{\"labelValue\":\"963859\",\"primaryLabelValue\":\"963859\"}},{\"attributeHeader\":{\"labelValue\":\"963863\",\"primaryLabelValue\":\"963863\"}},{\"attributeHeader\":{\"labelValue\":\"963865\",\"primaryLabelValue\":\"963865\"}},{\"attributeHeader\":{\"labelValue\":\"963867\",\"primaryLabelValue\":\"963867\"}},{\"attributeHeader\":{\"labelValue\":\"963869\",\"primaryLabelValue\":\"963869\"}},{\"attributeHeader\":{\"labelValue\":\"963871\",\"primaryLabelValue\":\"963871\"}},{\"attributeHeader\":{\"labelValue\":\"963873\",\"primaryLabelValue\":\"963873\"}},{\"attributeHeader\":{\"labelValue\":\"963875\",\"primaryLabelValue\":\"963875\"}},{\"attributeHeader\":{\"labelValue\":\"963877\",\"primaryLabelValue\":\"963877\"}},{\"attributeHeader\":{\"labelValue\":\"963879\",\"primaryLabelValue\":\"963879\"}},{\"attributeHeader\":{\"labelValue\":\"963881\",\"primaryLabelValue\":\"963881\"}},{\"attributeHeader\":{\"labelValue\":\"963883\",\"primaryLabelValue\":\"963883\"}},{\"attributeHeader\":{\"labelValue\":\"963885\",\"primaryLabelValue\":\"963885\"}},{\"attributeHeader\":{\"labelValue\":\"963887\",\"primaryLabelValue\":\"963887\"}},{\"attributeHeader\":{\"labelValue\":\"963889\",\"primaryLabelValue\":\"963889\"}},{\"attributeHeader\":{\"labelValue\":\"963891\",\"primaryLabelValue\":\"963891\"}},{\"attributeHeader\":{\"labelValue\":\"963893\",\"primaryLabelValue\":\"963893\"}},{\"attributeHeader\":{\"labelValue\":\"963895\",\"primaryLabelValue\":\"963895\"}},{\"attributeHeader\":{\"labelValue\":\"963897\",\"primaryLabelValue\":\"963897\"}},{\"attributeHeader\":{\"labelValue\":\"963899\",\"primaryLabelValue\":\"963899\"}},{\"attributeHeader\":{\"labelValue\":\"963901\",\"primaryLabelValue\":\"963901\"}},{\"attributeHeader\":{\"labelValue\":\"963903\",\"primaryLabelValue\":\"963903\"}},{\"attributeHeader\":{\"labelValue\":\"963905\",\"primaryLabelValue\":\"963905\"}},{\"attributeHeader\":{\"labelValue\":\"963907\",\"primaryLabelValue\":\"963907\"}},{\"attributeHeader\":{\"labelValue\":\"963909\",\"primaryLabelValue\":\"963909\"}},{\"attributeHeader\":{\"labelValue\":\"963911\",\"primaryLabelValue\":\"963911\"}},{\"attributeHeader\":{\"labelValue\":\"963913\",\"primaryLabelValue\":\"963913\"}},{\"attributeHeader\":{\"labelValue\":\"963915\",\"primaryLabelValue\":\"963915\"}},{\"attributeHeader\":{\"labelValue\":\"963917\",\"primaryLabelValue\":\"963917\"}},{\"attributeHeader\":{\"labelValue\":\"963919\",\"primaryLabelValue\":\"963919\"}},{\"attributeHeader\":{\"labelValue\":\"963921\",\"primaryLabelValue\":\"963921\"}},{\"attributeHeader\":{\"labelValue\":\"963923\",\"primaryLabelValue\":\"963923\"}},{\"attributeHeader\":{\"labelValue\":\"963925\",\"primaryLabelValue\":\"963925\"}},{\"attributeHeader\":{\"labelValue\":\"963927\",\"primaryLabelValue\":\"963927\"}},{\"attributeHeader\":{\"labelValue\":\"963929\",\"primaryLabelValue\":\"963929\"}},{\"attributeHeader\":{\"labelValue\":\"963931\",\"primaryLabelValue\":\"963931\"}},{\"attributeHeader\":{\"labelValue\":\"963933\",\"primaryLabelValue\":\"963933\"}},{\"attributeHeader\":{\"labelValue\":\"963935\",\"primaryLabelValue\":\"963935\"}},{\"attributeHeader\":{\"labelValue\":\"963937\",\"primaryLabelValue\":\"963937\"}},{\"attributeHeader\":{\"labelValue\":\"963939\",\"primaryLabelValue\":\"963939\"}},{\"attributeHeader\":{\"labelValue\":\"963941\",\"primaryLabelValue\":\"963941\"}},{\"attributeHeader\":{\"labelValue\":\"963943\",\"primaryLabelValue\":\"963943\"}},{\"attributeHeader\":{\"labelValue\":\"963947\",\"primaryLabelValue\":\"963947\"}},{\"attributeHeader\":{\"labelValue\":\"963949\",\"primaryLabelValue\":\"963949\"}},{\"attributeHeader\":{\"labelValue\":\"963951\",\"primaryLabelValue\":\"963951\"}},{\"attributeHeader\":{\"labelValue\":\"963953\",\"primaryLabelValue\":\"963953\"}},{\"attributeHeader\":{\"labelValue\":\"963955\",\"primaryLabelValue\":\"963955\"}},{\"attributeHeader\":{\"labelValue\":\"963959\",\"primaryLabelValue\":\"963959\"}},{\"attributeHeader\":{\"labelValue\":\"963961\",\"primaryLabelValue\":\"963961\"}},{\"attributeHeader\":{\"labelValue\":\"963963\",\"primaryLabelValue\":\"963963\"}},{\"attributeHeader\":{\"labelValue\":\"963965\",\"primaryLabelValue\":\"963965\"}},{\"attributeHeader\":{\"labelValue\":\"963967\",\"primaryLabelValue\":\"963967\"}},{\"attributeHeader\":{\"labelValue\":\"963969\",\"primaryLabelValue\":\"963969\"}},{\"attributeHeader\":{\"labelValue\":\"963973\",\"primaryLabelValue\":\"963973\"}},{\"attributeHeader\":{\"labelValue\":\"963975\",\"primaryLabelValue\":\"963975\"}},{\"attributeHeader\":{\"labelValue\":\"963977\",\"primaryLabelValue\":\"963977\"}},{\"attributeHeader\":{\"labelValue\":\"963979\",\"primaryLabelValue\":\"963979\"}},{\"attributeHeader\":{\"labelValue\":\"963981\",\"primaryLabelValue\":\"963981\"}},{\"attributeHeader\":{\"labelValue\":\"963983\",\"primaryLabelValue\":\"963983\"}},{\"attributeHeader\":{\"labelValue\":\"963985\",\"primaryLabelValue\":\"963985\"}},{\"attributeHeader\":{\"labelValue\":\"963987\",\"primaryLabelValue\":\"963987\"}},{\"attributeHeader\":{\"labelValue\":\"963989\",\"primaryLabelValue\":\"963989\"}},{\"attributeHeader\":{\"labelValue\":\"963991\",\"primaryLabelValue\":\"963991\"}},{\"attributeHeader\":{\"labelValue\":\"963993\",\"primaryLabelValue\":\"963993\"}},{\"attributeHeader\":{\"labelValue\":\"963995\",\"primaryLabelValue\":\"963995\"}},{\"attributeHeader\":{\"labelValue\":\"963997\",\"primaryLabelValue\":\"963997\"}},{\"attributeHeader\":{\"labelValue\":\"963999\",\"primaryLabelValue\":\"963999\"}},{\"attributeHeader\":{\"labelValue\":\"964001\",\"primaryLabelValue\":\"964001\"}},{\"attributeHeader\":{\"labelValue\":\"964003\",\"primaryLabelValue\":\"964003\"}},{\"attributeHeader\":{\"labelValue\":\"964005\",\"primaryLabelValue\":\"964005\"}},{\"attributeHeader\":{\"labelValue\":\"964009\",\"primaryLabelValue\":\"964009\"}},{\"attributeHeader\":{\"labelValue\":\"964011\",\"primaryLabelValue\":\"964011\"}},{\"attributeHeader\":{\"labelValue\":\"964013\",\"primaryLabelValue\":\"964013\"}},{\"attributeHeader\":{\"labelValue\":\"964015\",\"primaryLabelValue\":\"964015\"}},{\"attributeHeader\":{\"labelValue\":\"964017\",\"primaryLabelValue\":\"964017\"}},{\"attributeHeader\":{\"labelValue\":\"964019\",\"primaryLabelValue\":\"964019\"}},{\"attributeHeader\":{\"labelValue\":\"964021\",\"primaryLabelValue\":\"964021\"}},{\"attributeHeader\":{\"labelValue\":\"964023\",\"primaryLabelValue\":\"964023\"}},{\"attributeHeader\":{\"labelValue\":\"964025\",\"primaryLabelValue\":\"964025\"}},{\"attributeHeader\":{\"labelValue\":\"964027\",\"primaryLabelValue\":\"964027\"}},{\"attributeHeader\":{\"labelValue\":\"964029\",\"primaryLabelValue\":\"964029\"}},{\"attributeHeader\":{\"labelValue\":\"964031\",\"primaryLabelValue\":\"964031\"}},{\"attributeHeader\":{\"labelValue\":\"964033\",\"primaryLabelValue\":\"964033\"}},{\"attributeHeader\":{\"labelValue\":\"964035\",\"primaryLabelValue\":\"964035\"}},{\"attributeHeader\":{\"labelValue\":\"964037\",\"primaryLabelValue\":\"964037\"}},{\"attributeHeader\":{\"labelValue\":\"964039\",\"primaryLabelValue\":\"964039\"}},{\"attributeHeader\":{\"labelValue\":\"964045\",\"primaryLabelValue\":\"964045\"}},{\"attributeHeader\":{\"labelValue\":\"964047\",\"primaryLabelValue\":\"964047\"}},{\"attributeHeader\":{\"labelValue\":\"964049\",\"primaryLabelValue\":\"964049\"}},{\"attributeHeader\":{\"labelValue\":\"964051\",\"primaryLabelValue\":\"964051\"}},{\"attributeHeader\":{\"labelValue\":\"964053\",\"primaryLabelValue\":\"964053\"}},{\"attributeHeader\":{\"labelValue\":\"964055\",\"primaryLabelValue\":\"964055\"}},{\"attributeHeader\":{\"labelValue\":\"964057\",\"primaryLabelValue\":\"964057\"}},{\"attributeHeader\":{\"labelValue\":\"964059\",\"primaryLabelValue\":\"964059\"}},{\"attributeHeader\":{\"labelValue\":\"964061\",\"primaryLabelValue\":\"964061\"}},{\"attributeHeader\":{\"labelValue\":\"964063\",\"primaryLabelValue\":\"964063\"}},{\"attributeHeader\":{\"labelValue\":\"964065\",\"primaryLabelValue\":\"964065\"}},{\"attributeHeader\":{\"labelValue\":\"964067\",\"primaryLabelValue\":\"964067\"}},{\"attributeHeader\":{\"labelValue\":\"964071\",\"primaryLabelValue\":\"964071\"}},{\"attributeHeader\":{\"labelValue\":\"964073\",\"primaryLabelValue\":\"964073\"}},{\"attributeHeader\":{\"labelValue\":\"964075\",\"primaryLabelValue\":\"964075\"}},{\"attributeHeader\":{\"labelValue\":\"964077\",\"primaryLabelValue\":\"964077\"}},{\"attributeHeader\":{\"labelValue\":\"964079\",\"primaryLabelValue\":\"964079\"}},{\"attributeHeader\":{\"labelValue\":\"964083\",\"primaryLabelValue\":\"964083\"}},{\"attributeHeader\":{\"labelValue\":\"964084\",\"primaryLabelValue\":\"964084\"}},{\"attributeHeader\":{\"labelValue\":\"964085\",\"primaryLabelValue\":\"964085\"}},{\"attributeHeader\":{\"labelValue\":\"964088\",\"primaryLabelValue\":\"964088\"}},{\"attributeHeader\":{\"labelValue\":\"964089\",\"primaryLabelValue\":\"964089\"}},{\"attributeHeader\":{\"labelValue\":\"964090\",\"primaryLabelValue\":\"964090\"}},{\"attributeHeader\":{\"labelValue\":\"964091\",\"primaryLabelValue\":\"964091\"}},{\"attributeHeader\":{\"labelValue\":\"964092\",\"primaryLabelValue\":\"964092\"}},{\"attributeHeader\":{\"labelValue\":\"964093\",\"primaryLabelValue\":\"964093\"}},{\"attributeHeader\":{\"labelValue\":\"964095\",\"primaryLabelValue\":\"964095\"}},{\"attributeHeader\":{\"labelValue\":\"964096\",\"primaryLabelValue\":\"964096\"}},{\"attributeHeader\":{\"labelValue\":\"964097\",\"primaryLabelValue\":\"964097\"}},{\"attributeHeader\":{\"labelValue\":\"964098\",\"primaryLabelValue\":\"964098\"}},{\"attributeHeader\":{\"labelValue\":\"964100\",\"primaryLabelValue\":\"964100\"}},{\"attributeHeader\":{\"labelValue\":\"964102\",\"primaryLabelValue\":\"964102\"}},{\"attributeHeader\":{\"labelValue\":\"964103\",\"primaryLabelValue\":\"964103\"}},{\"attributeHeader\":{\"labelValue\":\"964104\",\"primaryLabelValue\":\"964104\"}},{\"attributeHeader\":{\"labelValue\":\"964105\",\"primaryLabelValue\":\"964105\"}},{\"attributeHeader\":{\"labelValue\":\"964107\",\"primaryLabelValue\":\"964107\"}},{\"attributeHeader\":{\"labelValue\":\"964108\",\"primaryLabelValue\":\"964108\"}},{\"attributeHeader\":{\"labelValue\":\"964110\",\"primaryLabelValue\":\"964110\"}},{\"attributeHeader\":{\"labelValue\":\"964111\",\"primaryLabelValue\":\"964111\"}},{\"attributeHeader\":{\"labelValue\":\"964112\",\"primaryLabelValue\":\"964112\"}},{\"attributeHeader\":{\"labelValue\":\"964113\",\"primaryLabelValue\":\"964113\"}},{\"attributeHeader\":{\"labelValue\":\"964114\",\"primaryLabelValue\":\"964114\"}},{\"attributeHeader\":{\"labelValue\":\"964115\",\"primaryLabelValue\":\"964115\"}},{\"attributeHeader\":{\"labelValue\":\"964117\",\"primaryLabelValue\":\"964117\"}},{\"attributeHeader\":{\"labelValue\":\"964119\",\"primaryLabelValue\":\"964119\"}},{\"attributeHeader\":{\"labelValue\":\"964121\",\"primaryLabelValue\":\"964121\"}},{\"attributeHeader\":{\"labelValue\":\"964123\",\"primaryLabelValue\":\"964123\"}},{\"attributeHeader\":{\"labelValue\":\"964127\",\"primaryLabelValue\":\"964127\"}},{\"attributeHeader\":{\"labelValue\":\"964128\",\"primaryLabelValue\":\"964128\"}},{\"attributeHeader\":{\"labelValue\":\"964129\",\"primaryLabelValue\":\"964129\"}},{\"attributeHeader\":{\"labelValue\":\"964131\",\"primaryLabelValue\":\"964131\"}},{\"attributeHeader\":{\"labelValue\":\"964132\",\"primaryLabelValue\":\"964132\"}},{\"attributeHeader\":{\"labelValue\":\"964133\",\"primaryLabelValue\":\"964133\"}},{\"attributeHeader\":{\"labelValue\":\"964134\",\"primaryLabelValue\":\"964134\"}},{\"attributeHeader\":{\"labelValue\":\"964135\",\"primaryLabelValue\":\"964135\"}},{\"attributeHeader\":{\"labelValue\":\"964138\",\"primaryLabelValue\":\"964138\"}},{\"attributeHeader\":{\"labelValue\":\"964139\",\"primaryLabelValue\":\"964139\"}},{\"attributeHeader\":{\"labelValue\":\"964140\",\"primaryLabelValue\":\"964140\"}},{\"attributeHeader\":{\"labelValue\":\"964142\",\"primaryLabelValue\":\"964142\"}},{\"attributeHeader\":{\"labelValue\":\"964144\",\"primaryLabelValue\":\"964144\"}},{\"attributeHeader\":{\"labelValue\":\"964145\",\"primaryLabelValue\":\"964145\"}},{\"attributeHeader\":{\"labelValue\":\"964147\",\"primaryLabelValue\":\"964147\"}},{\"attributeHeader\":{\"labelValue\":\"964149\",\"primaryLabelValue\":\"964149\"}},{\"attributeHeader\":{\"labelValue\":\"964150\",\"primaryLabelValue\":\"964150\"}},{\"attributeHeader\":{\"labelValue\":\"964151\",\"primaryLabelValue\":\"964151\"}},{\"attributeHeader\":{\"labelValue\":\"964152\",\"primaryLabelValue\":\"964152\"}},{\"attributeHeader\":{\"labelValue\":\"964153\",\"primaryLabelValue\":\"964153\"}},{\"attributeHeader\":{\"labelValue\":\"964154\",\"primaryLabelValue\":\"964154\"}},{\"attributeHeader\":{\"labelValue\":\"964156\",\"primaryLabelValue\":\"964156\"}},{\"attributeHeader\":{\"labelValue\":\"964157\",\"primaryLabelValue\":\"964157\"}},{\"attributeHeader\":{\"labelValue\":\"964159\",\"primaryLabelValue\":\"964159\"}},{\"attributeHeader\":{\"labelValue\":\"964160\",\"primaryLabelValue\":\"964160\"}},{\"attributeHeader\":{\"labelValue\":\"964161\",\"primaryLabelValue\":\"964161\"}},{\"attributeHeader\":{\"labelValue\":\"964162\",\"primaryLabelValue\":\"964162\"}},{\"attributeHeader\":{\"labelValue\":\"964163\",\"primaryLabelValue\":\"964163\"}},{\"attributeHeader\":{\"labelValue\":\"964164\",\"primaryLabelValue\":\"964164\"}},{\"attributeHeader\":{\"labelValue\":\"964165\",\"primaryLabelValue\":\"964165\"}},{\"attributeHeader\":{\"labelValue\":\"964166\",\"primaryLabelValue\":\"964166\"}},{\"attributeHeader\":{\"labelValue\":\"964167\",\"primaryLabelValue\":\"964167\"}},{\"attributeHeader\":{\"labelValue\":\"964168\",\"primaryLabelValue\":\"964168\"}},{\"attributeHeader\":{\"labelValue\":\"964169\",\"primaryLabelValue\":\"964169\"}},{\"attributeHeader\":{\"labelValue\":\"964170\",\"primaryLabelValue\":\"964170\"}},{\"attributeHeader\":{\"labelValue\":\"964171\",\"primaryLabelValue\":\"964171\"}},{\"attributeHeader\":{\"labelValue\":\"964172\",\"primaryLabelValue\":\"964172\"}},{\"attributeHeader\":{\"labelValue\":\"964173\",\"primaryLabelValue\":\"964173\"}},{\"attributeHeader\":{\"labelValue\":\"964174\",\"primaryLabelValue\":\"964174\"}},{\"attributeHeader\":{\"labelValue\":\"964176\",\"primaryLabelValue\":\"964176\"}},{\"attributeHeader\":{\"labelValue\":\"964178\",\"primaryLabelValue\":\"964178\"}},{\"attributeHeader\":{\"labelValue\":\"964179\",\"primaryLabelValue\":\"964179\"}},{\"attributeHeader\":{\"labelValue\":\"964180\",\"primaryLabelValue\":\"964180\"}},{\"attributeHeader\":{\"labelValue\":\"964182\",\"primaryLabelValue\":\"964182\"}},{\"attributeHeader\":{\"labelValue\":\"964183\",\"primaryLabelValue\":\"964183\"}},{\"attributeHeader\":{\"labelValue\":\"964185\",\"primaryLabelValue\":\"964185\"}},{\"attributeHeader\":{\"labelValue\":\"964187\",\"primaryLabelValue\":\"964187\"}},{\"attributeHeader\":{\"labelValue\":\"964188\",\"primaryLabelValue\":\"964188\"}},{\"attributeHeader\":{\"labelValue\":\"964189\",\"primaryLabelValue\":\"964189\"}},{\"attributeHeader\":{\"labelValue\":\"964190\",\"primaryLabelValue\":\"964190\"}},{\"attributeHeader\":{\"labelValue\":\"964192\",\"primaryLabelValue\":\"964192\"}},{\"attributeHeader\":{\"labelValue\":\"964194\",\"primaryLabelValue\":\"964194\"}},{\"attributeHeader\":{\"labelValue\":\"964195\",\"primaryLabelValue\":\"964195\"}},{\"attributeHeader\":{\"labelValue\":\"964196\",\"primaryLabelValue\":\"964196\"}},{\"attributeHeader\":{\"labelValue\":\"964197\",\"primaryLabelValue\":\"964197\"}},{\"attributeHeader\":{\"labelValue\":\"964199\",\"primaryLabelValue\":\"964199\"}},{\"attributeHeader\":{\"labelValue\":\"964200\",\"primaryLabelValue\":\"964200\"}},{\"attributeHeader\":{\"labelValue\":\"964201\",\"primaryLabelValue\":\"964201\"}},{\"attributeHeader\":{\"labelValue\":\"964203\",\"primaryLabelValue\":\"964203\"}},{\"attributeHeader\":{\"labelValue\":\"964204\",\"primaryLabelValue\":\"964204\"}},{\"attributeHeader\":{\"labelValue\":\"964206\",\"primaryLabelValue\":\"964206\"}},{\"attributeHeader\":{\"labelValue\":\"964208\",\"primaryLabelValue\":\"964208\"}},{\"attributeHeader\":{\"labelValue\":\"964209\",\"primaryLabelValue\":\"964209\"}},{\"attributeHeader\":{\"labelValue\":\"964210\",\"primaryLabelValue\":\"964210\"}},{\"attributeHeader\":{\"labelValue\":\"964211\",\"primaryLabelValue\":\"964211\"}},{\"attributeHeader\":{\"labelValue\":\"964212\",\"primaryLabelValue\":\"964212\"}},{\"attributeHeader\":{\"labelValue\":\"964213\",\"primaryLabelValue\":\"964213\"}},{\"attributeHeader\":{\"labelValue\":\"964214\",\"primaryLabelValue\":\"964214\"}},{\"attributeHeader\":{\"labelValue\":\"964216\",\"primaryLabelValue\":\"964216\"}},{\"attributeHeader\":{\"labelValue\":\"964218\",\"primaryLabelValue\":\"964218\"}},{\"attributeHeader\":{\"labelValue\":\"964219\",\"primaryLabelValue\":\"964219\"}},{\"attributeHeader\":{\"labelValue\":\"964220\",\"primaryLabelValue\":\"964220\"}},{\"attributeHeader\":{\"labelValue\":\"964221\",\"primaryLabelValue\":\"964221\"}},{\"attributeHeader\":{\"labelValue\":\"964222\",\"primaryLabelValue\":\"964222\"}},{\"attributeHeader\":{\"labelValue\":\"964223\",\"primaryLabelValue\":\"964223\"}},{\"attributeHeader\":{\"labelValue\":\"964225\",\"primaryLabelValue\":\"964225\"}},{\"attributeHeader\":{\"labelValue\":\"964227\",\"primaryLabelValue\":\"964227\"}},{\"attributeHeader\":{\"labelValue\":\"964229\",\"primaryLabelValue\":\"964229\"}},{\"attributeHeader\":{\"labelValue\":\"964230\",\"primaryLabelValue\":\"964230\"}},{\"attributeHeader\":{\"labelValue\":\"964231\",\"primaryLabelValue\":\"964231\"}},{\"attributeHeader\":{\"labelValue\":\"964232\",\"primaryLabelValue\":\"964232\"}},{\"attributeHeader\":{\"labelValue\":\"964234\",\"primaryLabelValue\":\"964234\"}},{\"attributeHeader\":{\"labelValue\":\"964236\",\"primaryLabelValue\":\"964236\"}},{\"attributeHeader\":{\"labelValue\":\"964237\",\"primaryLabelValue\":\"964237\"}},{\"attributeHeader\":{\"labelValue\":\"964239\",\"primaryLabelValue\":\"964239\"}},{\"attributeHeader\":{\"labelValue\":\"964241\",\"primaryLabelValue\":\"964241\"}},{\"attributeHeader\":{\"labelValue\":\"964243\",\"primaryLabelValue\":\"964243\"}},{\"attributeHeader\":{\"labelValue\":\"964244\",\"primaryLabelValue\":\"964244\"}},{\"attributeHeader\":{\"labelValue\":\"964245\",\"primaryLabelValue\":\"964245\"}},{\"attributeHeader\":{\"labelValue\":\"964246\",\"primaryLabelValue\":\"964246\"}},{\"attributeHeader\":{\"labelValue\":\"964248\",\"primaryLabelValue\":\"964248\"}},{\"attributeHeader\":{\"labelValue\":\"964250\",\"primaryLabelValue\":\"964250\"}},{\"attributeHeader\":{\"labelValue\":\"964252\",\"primaryLabelValue\":\"964252\"}},{\"attributeHeader\":{\"labelValue\":\"964253\",\"primaryLabelValue\":\"964253\"}},{\"attributeHeader\":{\"labelValue\":\"964255\",\"primaryLabelValue\":\"964255\"}},{\"attributeHeader\":{\"labelValue\":\"964257\",\"primaryLabelValue\":\"964257\"}},{\"attributeHeader\":{\"labelValue\":\"964258\",\"primaryLabelValue\":\"964258\"}},{\"attributeHeader\":{\"labelValue\":\"964259\",\"primaryLabelValue\":\"964259\"}},{\"attributeHeader\":{\"labelValue\":\"964260\",\"primaryLabelValue\":\"964260\"}},{\"attributeHeader\":{\"labelValue\":\"964261\",\"primaryLabelValue\":\"964261\"}},{\"attributeHeader\":{\"labelValue\":\"964262\",\"primaryLabelValue\":\"964262\"}},{\"attributeHeader\":{\"labelValue\":\"964264\",\"primaryLabelValue\":\"964264\"}},{\"attributeHeader\":{\"labelValue\":\"964265\",\"primaryLabelValue\":\"964265\"}},{\"attributeHeader\":{\"labelValue\":\"964267\",\"primaryLabelValue\":\"964267\"}},{\"attributeHeader\":{\"labelValue\":\"964269\",\"primaryLabelValue\":\"964269\"}},{\"attributeHeader\":{\"labelValue\":\"964271\",\"primaryLabelValue\":\"964271\"}},{\"attributeHeader\":{\"labelValue\":\"964272\",\"primaryLabelValue\":\"964272\"}},{\"attributeHeader\":{\"labelValue\":\"964273\",\"primaryLabelValue\":\"964273\"}},{\"attributeHeader\":{\"labelValue\":\"964274\",\"primaryLabelValue\":\"964274\"}},{\"attributeHeader\":{\"labelValue\":\"964275\",\"primaryLabelValue\":\"964275\"}},{\"attributeHeader\":{\"labelValue\":\"964276\",\"primaryLabelValue\":\"964276\"}},{\"attributeHeader\":{\"labelValue\":\"964277\",\"primaryLabelValue\":\"964277\"}},{\"attributeHeader\":{\"labelValue\":\"964278\",\"primaryLabelValue\":\"964278\"}},{\"attributeHeader\":{\"labelValue\":\"964280\",\"primaryLabelValue\":\"964280\"}},{\"attributeHeader\":{\"labelValue\":\"964281\",\"primaryLabelValue\":\"964281\"}},{\"attributeHeader\":{\"labelValue\":\"964282\",\"primaryLabelValue\":\"964282\"}},{\"attributeHeader\":{\"labelValue\":\"964284\",\"primaryLabelValue\":\"964284\"}},{\"attributeHeader\":{\"labelValue\":\"964285\",\"primaryLabelValue\":\"964285\"}},{\"attributeHeader\":{\"labelValue\":\"964287\",\"primaryLabelValue\":\"964287\"}},{\"attributeHeader\":{\"labelValue\":\"964288\",\"primaryLabelValue\":\"964288\"}},{\"attributeHeader\":{\"labelValue\":\"964290\",\"primaryLabelValue\":\"964290\"}},{\"attributeHeader\":{\"labelValue\":\"964291\",\"primaryLabelValue\":\"964291\"}},{\"attributeHeader\":{\"labelValue\":\"964292\",\"primaryLabelValue\":\"964292\"}},{\"attributeHeader\":{\"labelValue\":\"964293\",\"primaryLabelValue\":\"964293\"}},{\"attributeHeader\":{\"labelValue\":\"964295\",\"primaryLabelValue\":\"964295\"}},{\"attributeHeader\":{\"labelValue\":\"964297\",\"primaryLabelValue\":\"964297\"}},{\"attributeHeader\":{\"labelValue\":\"964299\",\"primaryLabelValue\":\"964299\"}},{\"attributeHeader\":{\"labelValue\":\"964301\",\"primaryLabelValue\":\"964301\"}},{\"attributeHeader\":{\"labelValue\":\"964302\",\"primaryLabelValue\":\"964302\"}},{\"attributeHeader\":{\"labelValue\":\"964303\",\"primaryLabelValue\":\"964303\"}},{\"attributeHeader\":{\"labelValue\":\"964304\",\"primaryLabelValue\":\"964304\"}},{\"attributeHeader\":{\"labelValue\":\"964305\",\"primaryLabelValue\":\"964305\"}},{\"attributeHeader\":{\"labelValue\":\"964306\",\"primaryLabelValue\":\"964306\"}},{\"attributeHeader\":{\"labelValue\":\"964307\",\"primaryLabelValue\":\"964307\"}},{\"attributeHeader\":{\"labelValue\":\"964308\",\"primaryLabelValue\":\"964308\"}},{\"attributeHeader\":{\"labelValue\":\"964310\",\"primaryLabelValue\":\"964310\"}},{\"attributeHeader\":{\"labelValue\":\"964312\",\"primaryLabelValue\":\"964312\"}},{\"attributeHeader\":{\"labelValue\":\"964313\",\"primaryLabelValue\":\"964313\"}},{\"attributeHeader\":{\"labelValue\":\"964315\",\"primaryLabelValue\":\"964315\"}},{\"attributeHeader\":{\"labelValue\":\"964317\",\"primaryLabelValue\":\"964317\"}},{\"attributeHeader\":{\"labelValue\":\"964318\",\"primaryLabelValue\":\"964318\"}},{\"attributeHeader\":{\"labelValue\":\"964319\",\"primaryLabelValue\":\"964319\"}},{\"attributeHeader\":{\"labelValue\":\"964321\",\"primaryLabelValue\":\"964321\"}},{\"attributeHeader\":{\"labelValue\":\"964322\",\"primaryLabelValue\":\"964322\"}},{\"attributeHeader\":{\"labelValue\":\"964324\",\"primaryLabelValue\":\"964324\"}},{\"attributeHeader\":{\"labelValue\":\"964325\",\"primaryLabelValue\":\"964325\"}},{\"attributeHeader\":{\"labelValue\":\"964327\",\"primaryLabelValue\":\"964327\"}},{\"attributeHeader\":{\"labelValue\":\"964328\",\"primaryLabelValue\":\"964328\"}},{\"attributeHeader\":{\"labelValue\":\"964329\",\"primaryLabelValue\":\"964329\"}},{\"attributeHeader\":{\"labelValue\":\"964330\",\"primaryLabelValue\":\"964330\"}},{\"attributeHeader\":{\"labelValue\":\"964331\",\"primaryLabelValue\":\"964331\"}},{\"attributeHeader\":{\"labelValue\":\"964332\",\"primaryLabelValue\":\"964332\"}},{\"attributeHeader\":{\"labelValue\":\"964333\",\"primaryLabelValue\":\"964333\"}},{\"attributeHeader\":{\"labelValue\":\"964334\",\"primaryLabelValue\":\"964334\"}},{\"attributeHeader\":{\"labelValue\":\"964335\",\"primaryLabelValue\":\"964335\"}},{\"attributeHeader\":{\"labelValue\":\"964336\",\"primaryLabelValue\":\"964336\"}},{\"attributeHeader\":{\"labelValue\":\"964338\",\"primaryLabelValue\":\"964338\"}},{\"attributeHeader\":{\"labelValue\":\"964339\",\"primaryLabelValue\":\"964339\"}},{\"attributeHeader\":{\"labelValue\":\"964340\",\"primaryLabelValue\":\"964340\"}},{\"attributeHeader\":{\"labelValue\":\"964341\",\"primaryLabelValue\":\"964341\"}},{\"attributeHeader\":{\"labelValue\":\"964342\",\"primaryLabelValue\":\"964342\"}},{\"attributeHeader\":{\"labelValue\":\"964343\",\"primaryLabelValue\":\"964343\"}},{\"attributeHeader\":{\"labelValue\":\"964344\",\"primaryLabelValue\":\"964344\"}},{\"attributeHeader\":{\"labelValue\":\"964345\",\"primaryLabelValue\":\"964345\"}},{\"attributeHeader\":{\"labelValue\":\"964346\",\"primaryLabelValue\":\"964346\"}},{\"attributeHeader\":{\"labelValue\":\"964348\",\"primaryLabelValue\":\"964348\"}},{\"attributeHeader\":{\"labelValue\":\"964349\",\"primaryLabelValue\":\"964349\"}},{\"attributeHeader\":{\"labelValue\":\"964350\",\"primaryLabelValue\":\"964350\"}},{\"attributeHeader\":{\"labelValue\":\"964352\",\"primaryLabelValue\":\"964352\"}},{\"attributeHeader\":{\"labelValue\":\"964354\",\"primaryLabelValue\":\"964354\"}},{\"attributeHeader\":{\"labelValue\":\"964355\",\"primaryLabelValue\":\"964355\"}},{\"attributeHeader\":{\"labelValue\":\"964356\",\"primaryLabelValue\":\"964356\"}},{\"attributeHeader\":{\"labelValue\":\"964357\",\"primaryLabelValue\":\"964357\"}},{\"attributeHeader\":{\"labelValue\":\"964358\",\"primaryLabelValue\":\"964358\"}},{\"attributeHeader\":{\"labelValue\":\"964359\",\"primaryLabelValue\":\"964359\"}},{\"attributeHeader\":{\"labelValue\":\"964360\",\"primaryLabelValue\":\"964360\"}},{\"attributeHeader\":{\"labelValue\":\"964362\",\"primaryLabelValue\":\"964362\"}},{\"attributeHeader\":{\"labelValue\":\"964364\",\"primaryLabelValue\":\"964364\"}},{\"attributeHeader\":{\"labelValue\":\"964365\",\"primaryLabelValue\":\"964365\"}},{\"attributeHeader\":{\"labelValue\":\"964366\",\"primaryLabelValue\":\"964366\"}},{\"attributeHeader\":{\"labelValue\":\"964367\",\"primaryLabelValue\":\"964367\"}},{\"attributeHeader\":{\"labelValue\":\"964368\",\"primaryLabelValue\":\"964368\"}},{\"attributeHeader\":{\"labelValue\":\"964369\",\"primaryLabelValue\":\"964369\"}},{\"attributeHeader\":{\"labelValue\":\"964370\",\"primaryLabelValue\":\"964370\"}},{\"attributeHeader\":{\"labelValue\":\"964371\",\"primaryLabelValue\":\"964371\"}},{\"attributeHeader\":{\"labelValue\":\"964373\",\"primaryLabelValue\":\"964373\"}},{\"attributeHeader\":{\"labelValue\":\"964374\",\"primaryLabelValue\":\"964374\"}},{\"attributeHeader\":{\"labelValue\":\"964375\",\"primaryLabelValue\":\"964375\"}},{\"attributeHeader\":{\"labelValue\":\"964377\",\"primaryLabelValue\":\"964377\"}},{\"attributeHeader\":{\"labelValue\":\"964378\",\"primaryLabelValue\":\"964378\"}},{\"attributeHeader\":{\"labelValue\":\"964380\",\"primaryLabelValue\":\"964380\"}},{\"attributeHeader\":{\"labelValue\":\"964381\",\"primaryLabelValue\":\"964381\"}},{\"attributeHeader\":{\"labelValue\":\"964382\",\"primaryLabelValue\":\"964382\"}},{\"attributeHeader\":{\"labelValue\":\"964383\",\"primaryLabelValue\":\"964383\"}},{\"attributeHeader\":{\"labelValue\":\"964384\",\"primaryLabelValue\":\"964384\"}},{\"attributeHeader\":{\"labelValue\":\"964386\",\"primaryLabelValue\":\"964386\"}},{\"attributeHeader\":{\"labelValue\":\"964387\",\"primaryLabelValue\":\"964387\"}},{\"attributeHeader\":{\"labelValue\":\"964388\",\"primaryLabelValue\":\"964388\"}},{\"attributeHeader\":{\"labelValue\":\"964390\",\"primaryLabelValue\":\"964390\"}},{\"attributeHeader\":{\"labelValue\":\"964392\",\"primaryLabelValue\":\"964392\"}},{\"attributeHeader\":{\"labelValue\":\"964393\",\"primaryLabelValue\":\"964393\"}},{\"attributeHeader\":{\"labelValue\":\"964395\",\"primaryLabelValue\":\"964395\"}},{\"attributeHeader\":{\"labelValue\":\"964396\",\"primaryLabelValue\":\"964396\"}},{\"attributeHeader\":{\"labelValue\":\"964397\",\"primaryLabelValue\":\"964397\"}},{\"attributeHeader\":{\"labelValue\":\"964399\",\"primaryLabelValue\":\"964399\"}},{\"attributeHeader\":{\"labelValue\":\"964400\",\"primaryLabelValue\":\"964400\"}},{\"attributeHeader\":{\"labelValue\":\"964402\",\"primaryLabelValue\":\"964402\"}},{\"attributeHeader\":{\"labelValue\":\"964403\",\"primaryLabelValue\":\"964403\"}},{\"attributeHeader\":{\"labelValue\":\"964405\",\"primaryLabelValue\":\"964405\"}},{\"attributeHeader\":{\"labelValue\":\"964407\",\"primaryLabelValue\":\"964407\"}},{\"attributeHeader\":{\"labelValue\":\"964408\",\"primaryLabelValue\":\"964408\"}},{\"attributeHeader\":{\"labelValue\":\"964410\",\"primaryLabelValue\":\"964410\"}},{\"attributeHeader\":{\"labelValue\":\"964411\",\"primaryLabelValue\":\"964411\"}},{\"attributeHeader\":{\"labelValue\":\"964412\",\"primaryLabelValue\":\"964412\"}},{\"attributeHeader\":{\"labelValue\":\"964413\",\"primaryLabelValue\":\"964413\"}},{\"attributeHeader\":{\"labelValue\":\"964415\",\"primaryLabelValue\":\"964415\"}},{\"attributeHeader\":{\"labelValue\":\"964416\",\"primaryLabelValue\":\"964416\"}},{\"attributeHeader\":{\"labelValue\":\"964418\",\"primaryLabelValue\":\"964418\"}},{\"attributeHeader\":{\"labelValue\":\"964419\",\"primaryLabelValue\":\"964419\"}},{\"attributeHeader\":{\"labelValue\":\"964421\",\"primaryLabelValue\":\"964421\"}},{\"attributeHeader\":{\"labelValue\":\"964422\",\"primaryLabelValue\":\"964422\"}},{\"attributeHeader\":{\"labelValue\":\"964423\",\"primaryLabelValue\":\"964423\"}},{\"attributeHeader\":{\"labelValue\":\"964425\",\"primaryLabelValue\":\"964425\"}},{\"attributeHeader\":{\"labelValue\":\"964426\",\"primaryLabelValue\":\"964426\"}},{\"attributeHeader\":{\"labelValue\":\"964427\",\"primaryLabelValue\":\"964427\"}},{\"attributeHeader\":{\"labelValue\":\"964428\",\"primaryLabelValue\":\"964428\"}},{\"attributeHeader\":{\"labelValue\":\"964429\",\"primaryLabelValue\":\"964429\"}},{\"attributeHeader\":{\"labelValue\":\"964431\",\"primaryLabelValue\":\"964431\"}},{\"attributeHeader\":{\"labelValue\":\"964433\",\"primaryLabelValue\":\"964433\"}},{\"attributeHeader\":{\"labelValue\":\"964434\",\"primaryLabelValue\":\"964434\"}},{\"attributeHeader\":{\"labelValue\":\"964435\",\"primaryLabelValue\":\"964435\"}},{\"attributeHeader\":{\"labelValue\":\"964437\",\"primaryLabelValue\":\"964437\"}},{\"attributeHeader\":{\"labelValue\":\"964438\",\"primaryLabelValue\":\"964438\"}},{\"attributeHeader\":{\"labelValue\":\"964439\",\"primaryLabelValue\":\"964439\"}},{\"attributeHeader\":{\"labelValue\":\"964441\",\"primaryLabelValue\":\"964441\"}},{\"attributeHeader\":{\"labelValue\":\"964442\",\"primaryLabelValue\":\"964442\"}},{\"attributeHeader\":{\"labelValue\":\"964443\",\"primaryLabelValue\":\"964443\"}},{\"attributeHeader\":{\"labelValue\":\"964444\",\"primaryLabelValue\":\"964444\"}},{\"attributeHeader\":{\"labelValue\":\"964445\",\"primaryLabelValue\":\"964445\"}},{\"attributeHeader\":{\"labelValue\":\"964446\",\"primaryLabelValue\":\"964446\"}},{\"attributeHeader\":{\"labelValue\":\"964448\",\"primaryLabelValue\":\"964448\"}},{\"attributeHeader\":{\"labelValue\":\"964449\",\"primaryLabelValue\":\"964449\"}},{\"attributeHeader\":{\"labelValue\":\"964451\",\"primaryLabelValue\":\"964451\"}},{\"attributeHeader\":{\"labelValue\":\"964452\",\"primaryLabelValue\":\"964452\"}},{\"attributeHeader\":{\"labelValue\":\"964453\",\"primaryLabelValue\":\"964453\"}},{\"attributeHeader\":{\"labelValue\":\"964454\",\"primaryLabelValue\":\"964454\"}},{\"attributeHeader\":{\"labelValue\":\"964455\",\"primaryLabelValue\":\"964455\"}},{\"attributeHeader\":{\"labelValue\":\"964456\",\"primaryLabelValue\":\"964456\"}},{\"attributeHeader\":{\"labelValue\":\"964457\",\"primaryLabelValue\":\"964457\"}},{\"attributeHeader\":{\"labelValue\":\"964458\",\"primaryLabelValue\":\"964458\"}},{\"attributeHeader\":{\"labelValue\":\"964460\",\"primaryLabelValue\":\"964460\"}},{\"attributeHeader\":{\"labelValue\":\"964461\",\"primaryLabelValue\":\"964461\"}},{\"attributeHeader\":{\"labelValue\":\"964463\",\"primaryLabelValue\":\"964463\"}},{\"attributeHeader\":{\"labelValue\":\"964465\",\"primaryLabelValue\":\"964465\"}},{\"attributeHeader\":{\"labelValue\":\"964466\",\"primaryLabelValue\":\"964466\"}},{\"attributeHeader\":{\"labelValue\":\"964467\",\"primaryLabelValue\":\"964467\"}},{\"attributeHeader\":{\"labelValue\":\"964468\",\"primaryLabelValue\":\"964468\"}},{\"attributeHeader\":{\"labelValue\":\"964469\",\"primaryLabelValue\":\"964469\"}},{\"attributeHeader\":{\"labelValue\":\"964470\",\"primaryLabelValue\":\"964470\"}},{\"attributeHeader\":{\"labelValue\":\"964471\",\"primaryLabelValue\":\"964471\"}},{\"attributeHeader\":{\"labelValue\":\"964472\",\"primaryLabelValue\":\"964472\"}},{\"attributeHeader\":{\"labelValue\":\"964473\",\"primaryLabelValue\":\"964473\"}},{\"attributeHeader\":{\"labelValue\":\"964474\",\"primaryLabelValue\":\"964474\"}},{\"attributeHeader\":{\"labelValue\":\"964475\",\"primaryLabelValue\":\"964475\"}},{\"attributeHeader\":{\"labelValue\":\"964477\",\"primaryLabelValue\":\"964477\"}},{\"attributeHeader\":{\"labelValue\":\"964479\",\"primaryLabelValue\":\"964479\"}},{\"attributeHeader\":{\"labelValue\":\"964480\",\"primaryLabelValue\":\"964480\"}},{\"attributeHeader\":{\"labelValue\":\"964482\",\"primaryLabelValue\":\"964482\"}},{\"attributeHeader\":{\"labelValue\":\"964483\",\"primaryLabelValue\":\"964483\"}},{\"attributeHeader\":{\"labelValue\":\"964484\",\"primaryLabelValue\":\"964484\"}},{\"attributeHeader\":{\"labelValue\":\"964486\",\"primaryLabelValue\":\"964486\"}},{\"attributeHeader\":{\"labelValue\":\"964487\",\"primaryLabelValue\":\"964487\"}},{\"attributeHeader\":{\"labelValue\":\"964488\",\"primaryLabelValue\":\"964488\"}},{\"attributeHeader\":{\"labelValue\":\"964489\",\"primaryLabelValue\":\"964489\"}},{\"attributeHeader\":{\"labelValue\":\"964491\",\"primaryLabelValue\":\"964491\"}},{\"attributeHeader\":{\"labelValue\":\"964492\",\"primaryLabelValue\":\"964492\"}},{\"attributeHeader\":{\"labelValue\":\"964493\",\"primaryLabelValue\":\"964493\"}},{\"attributeHeader\":{\"labelValue\":\"964494\",\"primaryLabelValue\":\"964494\"}},{\"attributeHeader\":{\"labelValue\":\"964496\",\"primaryLabelValue\":\"964496\"}},{\"attributeHeader\":{\"labelValue\":\"964498\",\"primaryLabelValue\":\"964498\"}},{\"attributeHeader\":{\"labelValue\":\"964500\",\"primaryLabelValue\":\"964500\"}},{\"attributeHeader\":{\"labelValue\":\"964501\",\"primaryLabelValue\":\"964501\"}},{\"attributeHeader\":{\"labelValue\":\"964503\",\"primaryLabelValue\":\"964503\"}},{\"attributeHeader\":{\"labelValue\":\"964505\",\"primaryLabelValue\":\"964505\"}},{\"attributeHeader\":{\"labelValue\":\"964507\",\"primaryLabelValue\":\"964507\"}},{\"attributeHeader\":{\"labelValue\":\"964508\",\"primaryLabelValue\":\"964508\"}},{\"attributeHeader\":{\"labelValue\":\"964509\",\"primaryLabelValue\":\"964509\"}},{\"attributeHeader\":{\"labelValue\":\"964510\",\"primaryLabelValue\":\"964510\"}},{\"attributeHeader\":{\"labelValue\":\"964512\",\"primaryLabelValue\":\"964512\"}},{\"attributeHeader\":{\"labelValue\":\"964514\",\"primaryLabelValue\":\"964514\"}},{\"attributeHeader\":{\"labelValue\":\"964515\",\"primaryLabelValue\":\"964515\"}},{\"attributeHeader\":{\"labelValue\":\"964516\",\"primaryLabelValue\":\"964516\"}},{\"attributeHeader\":{\"labelValue\":\"964517\",\"primaryLabelValue\":\"964517\"}},{\"attributeHeader\":{\"labelValue\":\"964518\",\"primaryLabelValue\":\"964518\"}},{\"attributeHeader\":{\"labelValue\":\"964520\",\"primaryLabelValue\":\"964520\"}},{\"attributeHeader\":{\"labelValue\":\"964521\",\"primaryLabelValue\":\"964521\"}},{\"attributeHeader\":{\"labelValue\":\"964523\",\"primaryLabelValue\":\"964523\"}},{\"attributeHeader\":{\"labelValue\":\"964524\",\"primaryLabelValue\":\"964524\"}},{\"attributeHeader\":{\"labelValue\":\"964525\",\"primaryLabelValue\":\"964525\"}},{\"attributeHeader\":{\"labelValue\":\"964526\",\"primaryLabelValue\":\"964526\"}},{\"attributeHeader\":{\"labelValue\":\"964527\",\"primaryLabelValue\":\"964527\"}},{\"attributeHeader\":{\"labelValue\":\"964529\",\"primaryLabelValue\":\"964529\"}},{\"attributeHeader\":{\"labelValue\":\"964530\",\"primaryLabelValue\":\"964530\"}},{\"attributeHeader\":{\"labelValue\":\"964531\",\"primaryLabelValue\":\"964531\"}},{\"attributeHeader\":{\"labelValue\":\"964533\",\"primaryLabelValue\":\"964533\"}},{\"attributeHeader\":{\"labelValue\":\"964534\",\"primaryLabelValue\":\"964534\"}},{\"attributeHeader\":{\"labelValue\":\"964535\",\"primaryLabelValue\":\"964535\"}},{\"attributeHeader\":{\"labelValue\":\"964537\",\"primaryLabelValue\":\"964537\"}},{\"attributeHeader\":{\"labelValue\":\"964539\",\"primaryLabelValue\":\"964539\"}},{\"attributeHeader\":{\"labelValue\":\"964541\",\"primaryLabelValue\":\"964541\"}},{\"attributeHeader\":{\"labelValue\":\"964542\",\"primaryLabelValue\":\"964542\"}},{\"attributeHeader\":{\"labelValue\":\"964543\",\"primaryLabelValue\":\"964543\"}},{\"attributeHeader\":{\"labelValue\":\"964544\",\"primaryLabelValue\":\"964544\"}},{\"attributeHeader\":{\"labelValue\":\"964545\",\"primaryLabelValue\":\"964545\"}},{\"attributeHeader\":{\"labelValue\":\"964548\",\"primaryLabelValue\":\"964548\"}},{\"attributeHeader\":{\"labelValue\":\"964549\",\"primaryLabelValue\":\"964549\"}},{\"attributeHeader\":{\"labelValue\":\"964550\",\"primaryLabelValue\":\"964550\"}},{\"attributeHeader\":{\"labelValue\":\"964551\",\"primaryLabelValue\":\"964551\"}},{\"attributeHeader\":{\"labelValue\":\"964552\",\"primaryLabelValue\":\"964552\"}},{\"attributeHeader\":{\"labelValue\":\"964554\",\"primaryLabelValue\":\"964554\"}},{\"attributeHeader\":{\"labelValue\":\"964555\",\"primaryLabelValue\":\"964555\"}},{\"attributeHeader\":{\"labelValue\":\"964557\",\"primaryLabelValue\":\"964557\"}},{\"attributeHeader\":{\"labelValue\":\"964558\",\"primaryLabelValue\":\"964558\"}},{\"attributeHeader\":{\"labelValue\":\"964560\",\"primaryLabelValue\":\"964560\"}},{\"attributeHeader\":{\"labelValue\":\"964561\",\"primaryLabelValue\":\"964561\"}},{\"attributeHeader\":{\"labelValue\":\"964562\",\"primaryLabelValue\":\"964562\"}},{\"attributeHeader\":{\"labelValue\":\"964563\",\"primaryLabelValue\":\"964563\"}},{\"attributeHeader\":{\"labelValue\":\"964565\",\"primaryLabelValue\":\"964565\"}},{\"attributeHeader\":{\"labelValue\":\"964567\",\"primaryLabelValue\":\"964567\"}},{\"attributeHeader\":{\"labelValue\":\"964568\",\"primaryLabelValue\":\"964568\"}},{\"attributeHeader\":{\"labelValue\":\"964570\",\"primaryLabelValue\":\"964570\"}},{\"attributeHeader\":{\"labelValue\":\"964572\",\"primaryLabelValue\":\"964572\"}},{\"attributeHeader\":{\"labelValue\":\"964573\",\"primaryLabelValue\":\"964573\"}},{\"attributeHeader\":{\"labelValue\":\"964574\",\"primaryLabelValue\":\"964574\"}},{\"attributeHeader\":{\"labelValue\":\"964575\",\"primaryLabelValue\":\"964575\"}},{\"attributeHeader\":{\"labelValue\":\"964577\",\"primaryLabelValue\":\"964577\"}},{\"attributeHeader\":{\"labelValue\":\"964578\",\"primaryLabelValue\":\"964578\"}},{\"attributeHeader\":{\"labelValue\":\"964579\",\"primaryLabelValue\":\"964579\"}},{\"attributeHeader\":{\"labelValue\":\"964580\",\"primaryLabelValue\":\"964580\"}},{\"attributeHeader\":{\"labelValue\":\"964582\",\"primaryLabelValue\":\"964582\"}},{\"attributeHeader\":{\"labelValue\":\"964584\",\"primaryLabelValue\":\"964584\"}},{\"attributeHeader\":{\"labelValue\":\"964586\",\"primaryLabelValue\":\"964586\"}},{\"attributeHeader\":{\"labelValue\":\"964588\",\"primaryLabelValue\":\"964588\"}},{\"attributeHeader\":{\"labelValue\":\"964589\",\"primaryLabelValue\":\"964589\"}},{\"attributeHeader\":{\"labelValue\":\"964590\",\"primaryLabelValue\":\"964590\"}},{\"attributeHeader\":{\"labelValue\":\"964591\",\"primaryLabelValue\":\"964591\"}},{\"attributeHeader\":{\"labelValue\":\"964592\",\"primaryLabelValue\":\"964592\"}},{\"attributeHeader\":{\"labelValue\":\"964594\",\"primaryLabelValue\":\"964594\"}},{\"attributeHeader\":{\"labelValue\":\"964595\",\"primaryLabelValue\":\"964595\"}},{\"attributeHeader\":{\"labelValue\":\"964596\",\"primaryLabelValue\":\"964596\"}},{\"attributeHeader\":{\"labelValue\":\"964598\",\"primaryLabelValue\":\"964598\"}},{\"attributeHeader\":{\"labelValue\":\"964600\",\"primaryLabelValue\":\"964600\"}},{\"attributeHeader\":{\"labelValue\":\"964601\",\"primaryLabelValue\":\"964601\"}},{\"attributeHeader\":{\"labelValue\":\"964603\",\"primaryLabelValue\":\"964603\"}},{\"attributeHeader\":{\"labelValue\":\"964604\",\"primaryLabelValue\":\"964604\"}},{\"attributeHeader\":{\"labelValue\":\"964605\",\"primaryLabelValue\":\"964605\"}},{\"attributeHeader\":{\"labelValue\":\"964606\",\"primaryLabelValue\":\"964606\"}},{\"attributeHeader\":{\"labelValue\":\"964607\",\"primaryLabelValue\":\"964607\"}},{\"attributeHeader\":{\"labelValue\":\"964608\",\"primaryLabelValue\":\"964608\"}},{\"attributeHeader\":{\"labelValue\":\"964609\",\"primaryLabelValue\":\"964609\"}},{\"attributeHeader\":{\"labelValue\":\"964610\",\"primaryLabelValue\":\"964610\"}},{\"attributeHeader\":{\"labelValue\":\"964611\",\"primaryLabelValue\":\"964611\"}},{\"attributeHeader\":{\"labelValue\":\"964612\",\"primaryLabelValue\":\"964612\"}},{\"attributeHeader\":{\"labelValue\":\"964614\",\"primaryLabelValue\":\"964614\"}},{\"attributeHeader\":{\"labelValue\":\"964615\",\"primaryLabelValue\":\"964615\"}},{\"attributeHeader\":{\"labelValue\":\"964616\",\"primaryLabelValue\":\"964616\"}},{\"attributeHeader\":{\"labelValue\":\"964618\",\"primaryLabelValue\":\"964618\"}},{\"attributeHeader\":{\"labelValue\":\"964620\",\"primaryLabelValue\":\"964620\"}},{\"attributeHeader\":{\"labelValue\":\"964621\",\"primaryLabelValue\":\"964621\"}},{\"attributeHeader\":{\"labelValue\":\"964622\",\"primaryLabelValue\":\"964622\"}},{\"attributeHeader\":{\"labelValue\":\"964624\",\"primaryLabelValue\":\"964624\"}},{\"attributeHeader\":{\"labelValue\":\"964626\",\"primaryLabelValue\":\"964626\"}},{\"attributeHeader\":{\"labelValue\":\"964627\",\"primaryLabelValue\":\"964627\"}},{\"attributeHeader\":{\"labelValue\":\"964629\",\"primaryLabelValue\":\"964629\"}},{\"attributeHeader\":{\"labelValue\":\"964630\",\"primaryLabelValue\":\"964630\"}},{\"attributeHeader\":{\"labelValue\":\"964631\",\"primaryLabelValue\":\"964631\"}},{\"attributeHeader\":{\"labelValue\":\"964632\",\"primaryLabelValue\":\"964632\"}},{\"attributeHeader\":{\"labelValue\":\"964634\",\"primaryLabelValue\":\"964634\"}},{\"attributeHeader\":{\"labelValue\":\"964637\",\"primaryLabelValue\":\"964637\"}},{\"attributeHeader\":{\"labelValue\":\"964638\",\"primaryLabelValue\":\"964638\"}},{\"attributeHeader\":{\"labelValue\":\"964640\",\"primaryLabelValue\":\"964640\"}},{\"attributeHeader\":{\"labelValue\":\"964642\",\"primaryLabelValue\":\"964642\"}},{\"attributeHeader\":{\"labelValue\":\"964644\",\"primaryLabelValue\":\"964644\"}},{\"attributeHeader\":{\"labelValue\":\"964645\",\"primaryLabelValue\":\"964645\"}},{\"attributeHeader\":{\"labelValue\":\"964646\",\"primaryLabelValue\":\"964646\"}},{\"attributeHeader\":{\"labelValue\":\"964647\",\"primaryLabelValue\":\"964647\"}},{\"attributeHeader\":{\"labelValue\":\"964648\",\"primaryLabelValue\":\"964648\"}},{\"attributeHeader\":{\"labelValue\":\"964649\",\"primaryLabelValue\":\"964649\"}},{\"attributeHeader\":{\"labelValue\":\"964650\",\"primaryLabelValue\":\"964650\"}},{\"attributeHeader\":{\"labelValue\":\"964651\",\"primaryLabelValue\":\"964651\"}},{\"attributeHeader\":{\"labelValue\":\"964652\",\"primaryLabelValue\":\"964652\"}},{\"attributeHeader\":{\"labelValue\":\"964654\",\"primaryLabelValue\":\"964654\"}},{\"attributeHeader\":{\"labelValue\":\"964655\",\"primaryLabelValue\":\"964655\"}},{\"attributeHeader\":{\"labelValue\":\"964656\",\"primaryLabelValue\":\"964656\"}},{\"attributeHeader\":{\"labelValue\":\"964658\",\"primaryLabelValue\":\"964658\"}},{\"attributeHeader\":{\"labelValue\":\"964660\",\"primaryLabelValue\":\"964660\"}},{\"attributeHeader\":{\"labelValue\":\"964662\",\"primaryLabelValue\":\"964662\"}},{\"attributeHeader\":{\"labelValue\":\"964663\",\"primaryLabelValue\":\"964663\"}},{\"attributeHeader\":{\"labelValue\":\"964664\",\"primaryLabelValue\":\"964664\"}},{\"attributeHeader\":{\"labelValue\":\"964665\",\"primaryLabelValue\":\"964665\"}},{\"attributeHeader\":{\"labelValue\":\"964666\",\"primaryLabelValue\":\"964666\"}},{\"attributeHeader\":{\"labelValue\":\"964667\",\"primaryLabelValue\":\"964667\"}},{\"attributeHeader\":{\"labelValue\":\"964668\",\"primaryLabelValue\":\"964668\"}},{\"attributeHeader\":{\"labelValue\":\"964669\",\"primaryLabelValue\":\"964669\"}},{\"attributeHeader\":{\"labelValue\":\"964671\",\"primaryLabelValue\":\"964671\"}},{\"attributeHeader\":{\"labelValue\":\"964673\",\"primaryLabelValue\":\"964673\"}},{\"attributeHeader\":{\"labelValue\":\"964674\",\"primaryLabelValue\":\"964674\"}},{\"attributeHeader\":{\"labelValue\":\"964675\",\"primaryLabelValue\":\"964675\"}},{\"attributeHeader\":{\"labelValue\":\"964676\",\"primaryLabelValue\":\"964676\"}},{\"attributeHeader\":{\"labelValue\":\"964678\",\"primaryLabelValue\":\"964678\"}},{\"attributeHeader\":{\"labelValue\":\"964680\",\"primaryLabelValue\":\"964680\"}},{\"attributeHeader\":{\"labelValue\":\"964682\",\"primaryLabelValue\":\"964682\"}},{\"attributeHeader\":{\"labelValue\":\"964683\",\"primaryLabelValue\":\"964683\"}},{\"attributeHeader\":{\"labelValue\":\"964685\",\"primaryLabelValue\":\"964685\"}},{\"attributeHeader\":{\"labelValue\":\"964686\",\"primaryLabelValue\":\"964686\"}},{\"attributeHeader\":{\"labelValue\":\"964687\",\"primaryLabelValue\":\"964687\"}},{\"attributeHeader\":{\"labelValue\":\"964688\",\"primaryLabelValue\":\"964688\"}},{\"attributeHeader\":{\"labelValue\":\"964689\",\"primaryLabelValue\":\"964689\"}},{\"attributeHeader\":{\"labelValue\":\"964690\",\"primaryLabelValue\":\"964690\"}},{\"attributeHeader\":{\"labelValue\":\"964691\",\"primaryLabelValue\":\"964691\"}},{\"attributeHeader\":{\"labelValue\":\"964693\",\"primaryLabelValue\":\"964693\"}},{\"attributeHeader\":{\"labelValue\":\"964694\",\"primaryLabelValue\":\"964694\"}},{\"attributeHeader\":{\"labelValue\":\"964696\",\"primaryLabelValue\":\"964696\"}},{\"attributeHeader\":{\"labelValue\":\"964697\",\"primaryLabelValue\":\"964697\"}},{\"attributeHeader\":{\"labelValue\":\"964698\",\"primaryLabelValue\":\"964698\"}},{\"attributeHeader\":{\"labelValue\":\"964699\",\"primaryLabelValue\":\"964699\"}},{\"attributeHeader\":{\"labelValue\":\"964701\",\"primaryLabelValue\":\"964701\"}},{\"attributeHeader\":{\"labelValue\":\"964702\",\"primaryLabelValue\":\"964702\"}},{\"attributeHeader\":{\"labelValue\":\"964703\",\"primaryLabelValue\":\"964703\"}},{\"attributeHeader\":{\"labelValue\":\"964704\",\"primaryLabelValue\":\"964704\"}},{\"attributeHeader\":{\"labelValue\":\"964705\",\"primaryLabelValue\":\"964705\"}},{\"attributeHeader\":{\"labelValue\":\"964706\",\"primaryLabelValue\":\"964706\"}},{\"attributeHeader\":{\"labelValue\":\"964707\",\"primaryLabelValue\":\"964707\"}},{\"attributeHeader\":{\"labelValue\":\"964709\",\"primaryLabelValue\":\"964709\"}},{\"attributeHeader\":{\"labelValue\":\"964710\",\"primaryLabelValue\":\"964710\"}},{\"attributeHeader\":{\"labelValue\":\"964711\",\"primaryLabelValue\":\"964711\"}},{\"attributeHeader\":{\"labelValue\":\"964712\",\"primaryLabelValue\":\"964712\"}},{\"attributeHeader\":{\"labelValue\":\"964713\",\"primaryLabelValue\":\"964713\"}},{\"attributeHeader\":{\"labelValue\":\"964717\",\"primaryLabelValue\":\"964717\"}},{\"attributeHeader\":{\"labelValue\":\"964718\",\"primaryLabelValue\":\"964718\"}},{\"attributeHeader\":{\"labelValue\":\"964720\",\"primaryLabelValue\":\"964720\"}},{\"attributeHeader\":{\"labelValue\":\"964721\",\"primaryLabelValue\":\"964721\"}},{\"attributeHeader\":{\"labelValue\":\"964722\",\"primaryLabelValue\":\"964722\"}},{\"attributeHeader\":{\"labelValue\":\"964724\",\"primaryLabelValue\":\"964724\"}},{\"attributeHeader\":{\"labelValue\":\"964726\",\"primaryLabelValue\":\"964726\"}},{\"attributeHeader\":{\"labelValue\":\"964727\",\"primaryLabelValue\":\"964727\"}},{\"attributeHeader\":{\"labelValue\":\"964728\",\"primaryLabelValue\":\"964728\"}},{\"attributeHeader\":{\"labelValue\":\"964729\",\"primaryLabelValue\":\"964729\"}},{\"attributeHeader\":{\"labelValue\":\"964730\",\"primaryLabelValue\":\"964730\"}},{\"attributeHeader\":{\"labelValue\":\"964732\",\"primaryLabelValue\":\"964732\"}},{\"attributeHeader\":{\"labelValue\":\"964733\",\"primaryLabelValue\":\"964733\"}},{\"attributeHeader\":{\"labelValue\":\"964734\",\"primaryLabelValue\":\"964734\"}},{\"attributeHeader\":{\"labelValue\":\"964736\",\"primaryLabelValue\":\"964736\"}},{\"attributeHeader\":{\"labelValue\":\"964738\",\"primaryLabelValue\":\"964738\"}},{\"attributeHeader\":{\"labelValue\":\"964739\",\"primaryLabelValue\":\"964739\"}},{\"attributeHeader\":{\"labelValue\":\"964742\",\"primaryLabelValue\":\"964742\"}},{\"attributeHeader\":{\"labelValue\":\"964743\",\"primaryLabelValue\":\"964743\"}},{\"attributeHeader\":{\"labelValue\":\"964745\",\"primaryLabelValue\":\"964745\"}},{\"attributeHeader\":{\"labelValue\":\"964746\",\"primaryLabelValue\":\"964746\"}},{\"attributeHeader\":{\"labelValue\":\"964747\",\"primaryLabelValue\":\"964747\"}},{\"attributeHeader\":{\"labelValue\":\"964748\",\"primaryLabelValue\":\"964748\"}},{\"attributeHeader\":{\"labelValue\":\"964750\",\"primaryLabelValue\":\"964750\"}},{\"attributeHeader\":{\"labelValue\":\"964751\",\"primaryLabelValue\":\"964751\"}},{\"attributeHeader\":{\"labelValue\":\"964753\",\"primaryLabelValue\":\"964753\"}},{\"attributeHeader\":{\"labelValue\":\"964756\",\"primaryLabelValue\":\"964756\"}},{\"attributeHeader\":{\"labelValue\":\"964757\",\"primaryLabelValue\":\"964757\"}},{\"attributeHeader\":{\"labelValue\":\"964759\",\"primaryLabelValue\":\"964759\"}},{\"attributeHeader\":{\"labelValue\":\"964760\",\"primaryLabelValue\":\"964760\"}},{\"attributeHeader\":{\"labelValue\":\"964761\",\"primaryLabelValue\":\"964761\"}},{\"attributeHeader\":{\"labelValue\":\"964763\",\"primaryLabelValue\":\"964763\"}},{\"attributeHeader\":{\"labelValue\":\"964764\",\"primaryLabelValue\":\"964764\"}},{\"attributeHeader\":{\"labelValue\":\"964765\",\"primaryLabelValue\":\"964765\"}},{\"attributeHeader\":{\"labelValue\":\"964766\",\"primaryLabelValue\":\"964766\"}},{\"attributeHeader\":{\"labelValue\":\"964767\",\"primaryLabelValue\":\"964767\"}},{\"attributeHeader\":{\"labelValue\":\"964769\",\"primaryLabelValue\":\"964769\"}},{\"attributeHeader\":{\"labelValue\":\"964772\",\"primaryLabelValue\":\"964772\"}},{\"attributeHeader\":{\"labelValue\":\"964773\",\"primaryLabelValue\":\"964773\"}},{\"attributeHeader\":{\"labelValue\":\"964774\",\"primaryLabelValue\":\"964774\"}},{\"attributeHeader\":{\"labelValue\":\"964776\",\"primaryLabelValue\":\"964776\"}},{\"attributeHeader\":{\"labelValue\":\"964778\",\"primaryLabelValue\":\"964778\"}},{\"attributeHeader\":{\"labelValue\":\"964780\",\"primaryLabelValue\":\"964780\"}},{\"attributeHeader\":{\"labelValue\":\"964781\",\"primaryLabelValue\":\"964781\"}},{\"attributeHeader\":{\"labelValue\":\"964783\",\"primaryLabelValue\":\"964783\"}},{\"attributeHeader\":{\"labelValue\":\"964786\",\"primaryLabelValue\":\"964786\"}},{\"attributeHeader\":{\"labelValue\":\"964787\",\"primaryLabelValue\":\"964787\"}},{\"attributeHeader\":{\"labelValue\":\"964788\",\"primaryLabelValue\":\"964788\"}},{\"attributeHeader\":{\"labelValue\":\"964789\",\"primaryLabelValue\":\"964789\"}},{\"attributeHeader\":{\"labelValue\":\"964791\",\"primaryLabelValue\":\"964791\"}},{\"attributeHeader\":{\"labelValue\":\"964792\",\"primaryLabelValue\":\"964792\"}},{\"attributeHeader\":{\"labelValue\":\"964793\",\"primaryLabelValue\":\"964793\"}},{\"attributeHeader\":{\"labelValue\":\"964795\",\"primaryLabelValue\":\"964795\"}},{\"attributeHeader\":{\"labelValue\":\"964796\",\"primaryLabelValue\":\"964796\"}},{\"attributeHeader\":{\"labelValue\":\"964798\",\"primaryLabelValue\":\"964798\"}},{\"attributeHeader\":{\"labelValue\":\"964799\",\"primaryLabelValue\":\"964799\"}},{\"attributeHeader\":{\"labelValue\":\"964801\",\"primaryLabelValue\":\"964801\"}},{\"attributeHeader\":{\"labelValue\":\"964802\",\"primaryLabelValue\":\"964802\"}},{\"attributeHeader\":{\"labelValue\":\"964803\",\"primaryLabelValue\":\"964803\"}},{\"attributeHeader\":{\"labelValue\":\"964804\",\"primaryLabelValue\":\"964804\"}},{\"attributeHeader\":{\"labelValue\":\"964805\",\"primaryLabelValue\":\"964805\"}},{\"attributeHeader\":{\"labelValue\":\"964808\",\"primaryLabelValue\":\"964808\"}},{\"attributeHeader\":{\"labelValue\":\"964809\",\"primaryLabelValue\":\"964809\"}},{\"attributeHeader\":{\"labelValue\":\"964812\",\"primaryLabelValue\":\"964812\"}},{\"attributeHeader\":{\"labelValue\":\"964813\",\"primaryLabelValue\":\"964813\"}},{\"attributeHeader\":{\"labelValue\":\"964814\",\"primaryLabelValue\":\"964814\"}},{\"attributeHeader\":{\"labelValue\":\"964815\",\"primaryLabelValue\":\"964815\"}},{\"attributeHeader\":{\"labelValue\":\"964816\",\"primaryLabelValue\":\"964816\"}},{\"attributeHeader\":{\"labelValue\":\"964817\",\"primaryLabelValue\":\"964817\"}},{\"attributeHeader\":{\"labelValue\":\"964818\",\"primaryLabelValue\":\"964818\"}},{\"attributeHeader\":{\"labelValue\":\"964819\",\"primaryLabelValue\":\"964819\"}},{\"attributeHeader\":{\"labelValue\":\"964820\",\"primaryLabelValue\":\"964820\"}},{\"attributeHeader\":{\"labelValue\":\"964822\",\"primaryLabelValue\":\"964822\"}},{\"attributeHeader\":{\"labelValue\":\"964823\",\"primaryLabelValue\":\"964823\"}},{\"attributeHeader\":{\"labelValue\":\"964824\",\"primaryLabelValue\":\"964824\"}},{\"attributeHeader\":{\"labelValue\":\"964825\",\"primaryLabelValue\":\"964825\"}},{\"attributeHeader\":{\"labelValue\":\"964826\",\"primaryLabelValue\":\"964826\"}},{\"attributeHeader\":{\"labelValue\":\"964831\",\"primaryLabelValue\":\"964831\"}},{\"attributeHeader\":{\"labelValue\":\"964833\",\"primaryLabelValue\":\"964833\"}},{\"attributeHeader\":{\"labelValue\":\"964835\",\"primaryLabelValue\":\"964835\"}},{\"attributeHeader\":{\"labelValue\":\"964837\",\"primaryLabelValue\":\"964837\"}},{\"attributeHeader\":{\"labelValue\":\"964839\",\"primaryLabelValue\":\"964839\"}},{\"attributeHeader\":{\"labelValue\":\"964841\",\"primaryLabelValue\":\"964841\"}},{\"attributeHeader\":{\"labelValue\":\"964843\",\"primaryLabelValue\":\"964843\"}},{\"attributeHeader\":{\"labelValue\":\"964844\",\"primaryLabelValue\":\"964844\"}},{\"attributeHeader\":{\"labelValue\":\"964845\",\"primaryLabelValue\":\"964845\"}},{\"attributeHeader\":{\"labelValue\":\"964846\",\"primaryLabelValue\":\"964846\"}},{\"attributeHeader\":{\"labelValue\":\"964848\",\"primaryLabelValue\":\"964848\"}},{\"attributeHeader\":{\"labelValue\":\"964849\",\"primaryLabelValue\":\"964849\"}},{\"attributeHeader\":{\"labelValue\":\"964850\",\"primaryLabelValue\":\"964850\"}},{\"attributeHeader\":{\"labelValue\":\"964851\",\"primaryLabelValue\":\"964851\"}},{\"attributeHeader\":{\"labelValue\":\"964852\",\"primaryLabelValue\":\"964852\"}},{\"attributeHeader\":{\"labelValue\":\"964854\",\"primaryLabelValue\":\"964854\"}},{\"attributeHeader\":{\"labelValue\":\"964855\",\"primaryLabelValue\":\"964855\"}},{\"attributeHeader\":{\"labelValue\":\"964856\",\"primaryLabelValue\":\"964856\"}},{\"attributeHeader\":{\"labelValue\":\"964858\",\"primaryLabelValue\":\"964858\"}},{\"attributeHeader\":{\"labelValue\":\"964860\",\"primaryLabelValue\":\"964860\"}},{\"attributeHeader\":{\"labelValue\":\"964862\",\"primaryLabelValue\":\"964862\"}},{\"attributeHeader\":{\"labelValue\":\"964864\",\"primaryLabelValue\":\"964864\"}},{\"attributeHeader\":{\"labelValue\":\"964865\",\"primaryLabelValue\":\"964865\"}},{\"attributeHeader\":{\"labelValue\":\"964866\",\"primaryLabelValue\":\"964866\"}},{\"attributeHeader\":{\"labelValue\":\"964868\",\"primaryLabelValue\":\"964868\"}},{\"attributeHeader\":{\"labelValue\":\"964870\",\"primaryLabelValue\":\"964870\"}},{\"attributeHeader\":{\"labelValue\":\"964871\",\"primaryLabelValue\":\"964871\"}},{\"attributeHeader\":{\"labelValue\":\"964873\",\"primaryLabelValue\":\"964873\"}},{\"attributeHeader\":{\"labelValue\":\"964875\",\"primaryLabelValue\":\"964875\"}},{\"attributeHeader\":{\"labelValue\":\"964877\",\"primaryLabelValue\":\"964877\"}},{\"attributeHeader\":{\"labelValue\":\"964878\",\"primaryLabelValue\":\"964878\"}},{\"attributeHeader\":{\"labelValue\":\"964879\",\"primaryLabelValue\":\"964879\"}},{\"attributeHeader\":{\"labelValue\":\"964880\",\"primaryLabelValue\":\"964880\"}},{\"attributeHeader\":{\"labelValue\":\"964881\",\"primaryLabelValue\":\"964881\"}},{\"attributeHeader\":{\"labelValue\":\"964882\",\"primaryLabelValue\":\"964882\"}},{\"attributeHeader\":{\"labelValue\":\"964883\",\"primaryLabelValue\":\"964883\"}},{\"attributeHeader\":{\"labelValue\":\"964884\",\"primaryLabelValue\":\"964884\"}},{\"attributeHeader\":{\"labelValue\":\"964885\",\"primaryLabelValue\":\"964885\"}},{\"attributeHeader\":{\"labelValue\":\"964886\",\"primaryLabelValue\":\"964886\"}},{\"attributeHeader\":{\"labelValue\":\"964887\",\"primaryLabelValue\":\"964887\"}},{\"attributeHeader\":{\"labelValue\":\"964888\",\"primaryLabelValue\":\"964888\"}},{\"attributeHeader\":{\"labelValue\":\"964890\",\"primaryLabelValue\":\"964890\"}},{\"attributeHeader\":{\"labelValue\":\"964891\",\"primaryLabelValue\":\"964891\"}},{\"attributeHeader\":{\"labelValue\":\"964892\",\"primaryLabelValue\":\"964892\"}},{\"attributeHeader\":{\"labelValue\":\"964893\",\"primaryLabelValue\":\"964893\"}},{\"attributeHeader\":{\"labelValue\":\"964894\",\"primaryLabelValue\":\"964894\"}},{\"attributeHeader\":{\"labelValue\":\"964896\",\"primaryLabelValue\":\"964896\"}},{\"attributeHeader\":{\"labelValue\":\"964897\",\"primaryLabelValue\":\"964897\"}},{\"attributeHeader\":{\"labelValue\":\"964898\",\"primaryLabelValue\":\"964898\"}},{\"attributeHeader\":{\"labelValue\":\"964900\",\"primaryLabelValue\":\"964900\"}},{\"attributeHeader\":{\"labelValue\":\"964901\",\"primaryLabelValue\":\"964901\"}},{\"attributeHeader\":{\"labelValue\":\"964902\",\"primaryLabelValue\":\"964902\"}},{\"attributeHeader\":{\"labelValue\":\"964903\",\"primaryLabelValue\":\"964903\"}},{\"attributeHeader\":{\"labelValue\":\"964905\",\"primaryLabelValue\":\"964905\"}},{\"attributeHeader\":{\"labelValue\":\"964907\",\"primaryLabelValue\":\"964907\"}},{\"attributeHeader\":{\"labelValue\":\"964909\",\"primaryLabelValue\":\"964909\"}},{\"attributeHeader\":{\"labelValue\":\"964911\",\"primaryLabelValue\":\"964911\"}},{\"attributeHeader\":{\"labelValue\":\"964912\",\"primaryLabelValue\":\"964912\"}},{\"attributeHeader\":{\"labelValue\":\"964914\",\"primaryLabelValue\":\"964914\"}},{\"attributeHeader\":{\"labelValue\":\"964915\",\"primaryLabelValue\":\"964915\"}},{\"attributeHeader\":{\"labelValue\":\"964917\",\"primaryLabelValue\":\"964917\"}},{\"attributeHeader\":{\"labelValue\":\"964919\",\"primaryLabelValue\":\"964919\"}},{\"attributeHeader\":{\"labelValue\":\"964921\",\"primaryLabelValue\":\"964921\"}},{\"attributeHeader\":{\"labelValue\":\"964923\",\"primaryLabelValue\":\"964923\"}},{\"attributeHeader\":{\"labelValue\":\"964924\",\"primaryLabelValue\":\"964924\"}},{\"attributeHeader\":{\"labelValue\":\"964926\",\"primaryLabelValue\":\"964926\"}},{\"attributeHeader\":{\"labelValue\":\"964928\",\"primaryLabelValue\":\"964928\"}},{\"attributeHeader\":{\"labelValue\":\"964929\",\"primaryLabelValue\":\"964929\"}},{\"attributeHeader\":{\"labelValue\":\"964930\",\"primaryLabelValue\":\"964930\"}},{\"attributeHeader\":{\"labelValue\":\"964931\",\"primaryLabelValue\":\"964931\"}},{\"attributeHeader\":{\"labelValue\":\"964933\",\"primaryLabelValue\":\"964933\"}},{\"attributeHeader\":{\"labelValue\":\"964935\",\"primaryLabelValue\":\"964935\"}},{\"attributeHeader\":{\"labelValue\":\"964936\",\"primaryLabelValue\":\"964936\"}},{\"attributeHeader\":{\"labelValue\":\"964937\",\"primaryLabelValue\":\"964937\"}},{\"attributeHeader\":{\"labelValue\":\"964939\",\"primaryLabelValue\":\"964939\"}},{\"attributeHeader\":{\"labelValue\":\"964940\",\"primaryLabelValue\":\"964940\"}},{\"attributeHeader\":{\"labelValue\":\"964942\",\"primaryLabelValue\":\"964942\"}},{\"attributeHeader\":{\"labelValue\":\"964943\",\"primaryLabelValue\":\"964943\"}},{\"attributeHeader\":{\"labelValue\":\"964944\",\"primaryLabelValue\":\"964944\"}},{\"attributeHeader\":{\"labelValue\":\"964946\",\"primaryLabelValue\":\"964946\"}},{\"attributeHeader\":{\"labelValue\":\"964947\",\"primaryLabelValue\":\"964947\"}},{\"attributeHeader\":{\"labelValue\":\"964948\",\"primaryLabelValue\":\"964948\"}},{\"attributeHeader\":{\"labelValue\":\"964949\",\"primaryLabelValue\":\"964949\"}},{\"attributeHeader\":{\"labelValue\":\"964950\",\"primaryLabelValue\":\"964950\"}},{\"attributeHeader\":{\"labelValue\":\"964952\",\"primaryLabelValue\":\"964952\"}},{\"attributeHeader\":{\"labelValue\":\"964953\",\"primaryLabelValue\":\"964953\"}},{\"attributeHeader\":{\"labelValue\":\"964954\",\"primaryLabelValue\":\"964954\"}},{\"attributeHeader\":{\"labelValue\":\"964956\",\"primaryLabelValue\":\"964956\"}},{\"attributeHeader\":{\"labelValue\":\"964958\",\"primaryLabelValue\":\"964958\"}},{\"attributeHeader\":{\"labelValue\":\"964960\",\"primaryLabelValue\":\"964960\"}},{\"attributeHeader\":{\"labelValue\":\"964962\",\"primaryLabelValue\":\"964962\"}},{\"attributeHeader\":{\"labelValue\":\"964964\",\"primaryLabelValue\":\"964964\"}},{\"attributeHeader\":{\"labelValue\":\"964965\",\"primaryLabelValue\":\"964965\"}},{\"attributeHeader\":{\"labelValue\":\"964966\",\"primaryLabelValue\":\"964966\"}},{\"attributeHeader\":{\"labelValue\":\"964967\",\"primaryLabelValue\":\"964967\"}},{\"attributeHeader\":{\"labelValue\":\"964968\",\"primaryLabelValue\":\"964968\"}},{\"attributeHeader\":{\"labelValue\":\"964969\",\"primaryLabelValue\":\"964969\"}},{\"attributeHeader\":{\"labelValue\":\"964970\",\"primaryLabelValue\":\"964970\"}},{\"attributeHeader\":{\"labelValue\":\"964971\",\"primaryLabelValue\":\"964971\"}},{\"attributeHeader\":{\"labelValue\":\"964972\",\"primaryLabelValue\":\"964972\"}},{\"attributeHeader\":{\"labelValue\":\"964973\",\"primaryLabelValue\":\"964973\"}},{\"attributeHeader\":{\"labelValue\":\"964974\",\"primaryLabelValue\":\"964974\"}},{\"attributeHeader\":{\"labelValue\":\"964976\",\"primaryLabelValue\":\"964976\"}},{\"attributeHeader\":{\"labelValue\":\"964977\",\"primaryLabelValue\":\"964977\"}},{\"attributeHeader\":{\"labelValue\":\"964978\",\"primaryLabelValue\":\"964978\"}},{\"attributeHeader\":{\"labelValue\":\"964979\",\"primaryLabelValue\":\"964979\"}},{\"attributeHeader\":{\"labelValue\":\"964980\",\"primaryLabelValue\":\"964980\"}},{\"attributeHeader\":{\"labelValue\":\"964981\",\"primaryLabelValue\":\"964981\"}},{\"attributeHeader\":{\"labelValue\":\"964982\",\"primaryLabelValue\":\"964982\"}},{\"attributeHeader\":{\"labelValue\":\"964983\",\"primaryLabelValue\":\"964983\"}},{\"attributeHeader\":{\"labelValue\":\"964984\",\"primaryLabelValue\":\"964984\"}},{\"attributeHeader\":{\"labelValue\":\"964985\",\"primaryLabelValue\":\"964985\"}},{\"attributeHeader\":{\"labelValue\":\"964986\",\"primaryLabelValue\":\"964986\"}},{\"attributeHeader\":{\"labelValue\":\"964988\",\"primaryLabelValue\":\"964988\"}},{\"attributeHeader\":{\"labelValue\":\"964989\",\"primaryLabelValue\":\"964989\"}},{\"attributeHeader\":{\"labelValue\":\"964991\",\"primaryLabelValue\":\"964991\"}},{\"attributeHeader\":{\"labelValue\":\"964992\",\"primaryLabelValue\":\"964992\"}},{\"attributeHeader\":{\"labelValue\":\"964993\",\"primaryLabelValue\":\"964993\"}},{\"attributeHeader\":{\"labelValue\":\"964994\",\"primaryLabelValue\":\"964994\"}},{\"attributeHeader\":{\"labelValue\":\"964995\",\"primaryLabelValue\":\"964995\"}},{\"attributeHeader\":{\"labelValue\":\"964996\",\"primaryLabelValue\":\"964996\"}},{\"attributeHeader\":{\"labelValue\":\"964997\",\"primaryLabelValue\":\"964997\"}},{\"attributeHeader\":{\"labelValue\":\"964999\",\"primaryLabelValue\":\"964999\"}},{\"attributeHeader\":{\"labelValue\":\"965000\",\"primaryLabelValue\":\"965000\"}},{\"attributeHeader\":{\"labelValue\":\"965001\",\"primaryLabelValue\":\"965001\"}},{\"attributeHeader\":{\"labelValue\":\"965002\",\"primaryLabelValue\":\"965002\"}},{\"attributeHeader\":{\"labelValue\":\"965003\",\"primaryLabelValue\":\"965003\"}},{\"attributeHeader\":{\"labelValue\":\"965004\",\"primaryLabelValue\":\"965004\"}},{\"attributeHeader\":{\"labelValue\":\"965005\",\"primaryLabelValue\":\"965005\"}},{\"attributeHeader\":{\"labelValue\":\"965007\",\"primaryLabelValue\":\"965007\"}},{\"attributeHeader\":{\"labelValue\":\"965008\",\"primaryLabelValue\":\"965008\"}},{\"attributeHeader\":{\"labelValue\":\"965009\",\"primaryLabelValue\":\"965009\"}},{\"attributeHeader\":{\"labelValue\":\"965011\",\"primaryLabelValue\":\"965011\"}},{\"attributeHeader\":{\"labelValue\":\"965012\",\"primaryLabelValue\":\"965012\"}},{\"attributeHeader\":{\"labelValue\":\"965013\",\"primaryLabelValue\":\"965013\"}},{\"attributeHeader\":{\"labelValue\":\"965015\",\"primaryLabelValue\":\"965015\"}},{\"attributeHeader\":{\"labelValue\":\"965016\",\"primaryLabelValue\":\"965016\"}},{\"attributeHeader\":{\"labelValue\":\"965017\",\"primaryLabelValue\":\"965017\"}},{\"attributeHeader\":{\"labelValue\":\"965019\",\"primaryLabelValue\":\"965019\"}},{\"attributeHeader\":{\"labelValue\":\"965020\",\"primaryLabelValue\":\"965020\"}},{\"attributeHeader\":{\"labelValue\":\"965021\",\"primaryLabelValue\":\"965021\"}},{\"attributeHeader\":{\"labelValue\":\"965022\",\"primaryLabelValue\":\"965022\"}},{\"attributeHeader\":{\"labelValue\":\"965023\",\"primaryLabelValue\":\"965023\"}},{\"attributeHeader\":{\"labelValue\":\"965024\",\"primaryLabelValue\":\"965024\"}},{\"attributeHeader\":{\"labelValue\":\"965025\",\"primaryLabelValue\":\"965025\"}},{\"attributeHeader\":{\"labelValue\":\"965026\",\"primaryLabelValue\":\"965026\"}},{\"attributeHeader\":{\"labelValue\":\"965028\",\"primaryLabelValue\":\"965028\"}},{\"attributeHeader\":{\"labelValue\":\"965029\",\"primaryLabelValue\":\"965029\"}},{\"attributeHeader\":{\"labelValue\":\"965031\",\"primaryLabelValue\":\"965031\"}},{\"attributeHeader\":{\"labelValue\":\"965032\",\"primaryLabelValue\":\"965032\"}},{\"attributeHeader\":{\"labelValue\":\"965034\",\"primaryLabelValue\":\"965034\"}},{\"attributeHeader\":{\"labelValue\":\"965036\",\"primaryLabelValue\":\"965036\"}},{\"attributeHeader\":{\"labelValue\":\"965038\",\"primaryLabelValue\":\"965038\"}},{\"attributeHeader\":{\"labelValue\":\"965041\",\"primaryLabelValue\":\"965041\"}},{\"attributeHeader\":{\"labelValue\":\"965042\",\"primaryLabelValue\":\"965042\"}},{\"attributeHeader\":{\"labelValue\":\"965044\",\"primaryLabelValue\":\"965044\"}},{\"attributeHeader\":{\"labelValue\":\"965045\",\"primaryLabelValue\":\"965045\"}},{\"attributeHeader\":{\"labelValue\":\"965046\",\"primaryLabelValue\":\"965046\"}},{\"attributeHeader\":{\"labelValue\":\"965047\",\"primaryLabelValue\":\"965047\"}},{\"attributeHeader\":{\"labelValue\":\"965048\",\"primaryLabelValue\":\"965048\"}},{\"attributeHeader\":{\"labelValue\":\"965049\",\"primaryLabelValue\":\"965049\"}},{\"attributeHeader\":{\"labelValue\":\"965050\",\"primaryLabelValue\":\"965050\"}},{\"attributeHeader\":{\"labelValue\":\"965052\",\"primaryLabelValue\":\"965052\"}},{\"attributeHeader\":{\"labelValue\":\"965053\",\"primaryLabelValue\":\"965053\"}},{\"attributeHeader\":{\"labelValue\":\"965055\",\"primaryLabelValue\":\"965055\"}},{\"attributeHeader\":{\"labelValue\":\"965056\",\"primaryLabelValue\":\"965056\"}},{\"attributeHeader\":{\"labelValue\":\"965058\",\"primaryLabelValue\":\"965058\"}},{\"attributeHeader\":{\"labelValue\":\"965059\",\"primaryLabelValue\":\"965059\"}},{\"attributeHeader\":{\"labelValue\":\"965060\",\"primaryLabelValue\":\"965060\"}},{\"attributeHeader\":{\"labelValue\":\"965061\",\"primaryLabelValue\":\"965061\"}},{\"attributeHeader\":{\"labelValue\":\"965062\",\"primaryLabelValue\":\"965062\"}},{\"attributeHeader\":{\"labelValue\":\"965063\",\"primaryLabelValue\":\"965063\"}},{\"attributeHeader\":{\"labelValue\":\"965065\",\"primaryLabelValue\":\"965065\"}},{\"attributeHeader\":{\"labelValue\":\"965066\",\"primaryLabelValue\":\"965066\"}},{\"attributeHeader\":{\"labelValue\":\"965067\",\"primaryLabelValue\":\"965067\"}},{\"attributeHeader\":{\"labelValue\":\"965068\",\"primaryLabelValue\":\"965068\"}},{\"attributeHeader\":{\"labelValue\":\"965069\",\"primaryLabelValue\":\"965069\"}},{\"attributeHeader\":{\"labelValue\":\"965070\",\"primaryLabelValue\":\"965070\"}},{\"attributeHeader\":{\"labelValue\":\"965071\",\"primaryLabelValue\":\"965071\"}},{\"attributeHeader\":{\"labelValue\":\"965072\",\"primaryLabelValue\":\"965072\"}},{\"attributeHeader\":{\"labelValue\":\"965074\",\"primaryLabelValue\":\"965074\"}},{\"attributeHeader\":{\"labelValue\":\"965077\",\"primaryLabelValue\":\"965077\"}},{\"attributeHeader\":{\"labelValue\":\"965078\",\"primaryLabelValue\":\"965078\"}},{\"attributeHeader\":{\"labelValue\":\"965080\",\"primaryLabelValue\":\"965080\"}},{\"attributeHeader\":{\"labelValue\":\"965081\",\"primaryLabelValue\":\"965081\"}},{\"attributeHeader\":{\"labelValue\":\"965083\",\"primaryLabelValue\":\"965083\"}},{\"attributeHeader\":{\"labelValue\":\"965084\",\"primaryLabelValue\":\"965084\"}},{\"attributeHeader\":{\"labelValue\":\"965086\",\"primaryLabelValue\":\"965086\"}},{\"attributeHeader\":{\"labelValue\":\"965087\",\"primaryLabelValue\":\"965087\"}},{\"attributeHeader\":{\"labelValue\":\"965089\",\"primaryLabelValue\":\"965089\"}},{\"attributeHeader\":{\"labelValue\":\"965091\",\"primaryLabelValue\":\"965091\"}},{\"attributeHeader\":{\"labelValue\":\"965092\",\"primaryLabelValue\":\"965092\"}},{\"attributeHeader\":{\"labelValue\":\"965093\",\"primaryLabelValue\":\"965093\"}},{\"attributeHeader\":{\"labelValue\":\"965094\",\"primaryLabelValue\":\"965094\"}},{\"attributeHeader\":{\"labelValue\":\"965095\",\"primaryLabelValue\":\"965095\"}},{\"attributeHeader\":{\"labelValue\":\"965096\",\"primaryLabelValue\":\"965096\"}},{\"attributeHeader\":{\"labelValue\":\"965097\",\"primaryLabelValue\":\"965097\"}},{\"attributeHeader\":{\"labelValue\":\"965098\",\"primaryLabelValue\":\"965098\"}},{\"attributeHeader\":{\"labelValue\":\"965100\",\"primaryLabelValue\":\"965100\"}},{\"attributeHeader\":{\"labelValue\":\"965101\",\"primaryLabelValue\":\"965101\"}},{\"attributeHeader\":{\"labelValue\":\"965102\",\"primaryLabelValue\":\"965102\"}},{\"attributeHeader\":{\"labelValue\":\"965103\",\"primaryLabelValue\":\"965103\"}},{\"attributeHeader\":{\"labelValue\":\"965104\",\"primaryLabelValue\":\"965104\"}},{\"attributeHeader\":{\"labelValue\":\"965106\",\"primaryLabelValue\":\"965106\"}},{\"attributeHeader\":{\"labelValue\":\"965107\",\"primaryLabelValue\":\"965107\"}},{\"attributeHeader\":{\"labelValue\":\"965109\",\"primaryLabelValue\":\"965109\"}},{\"attributeHeader\":{\"labelValue\":\"965110\",\"primaryLabelValue\":\"965110\"}},{\"attributeHeader\":{\"labelValue\":\"965112\",\"primaryLabelValue\":\"965112\"}},{\"attributeHeader\":{\"labelValue\":\"965113\",\"primaryLabelValue\":\"965113\"}},{\"attributeHeader\":{\"labelValue\":\"965114\",\"primaryLabelValue\":\"965114\"}},{\"attributeHeader\":{\"labelValue\":\"965116\",\"primaryLabelValue\":\"965116\"}},{\"attributeHeader\":{\"labelValue\":\"965117\",\"primaryLabelValue\":\"965117\"}},{\"attributeHeader\":{\"labelValue\":\"965118\",\"primaryLabelValue\":\"965118\"}},{\"attributeHeader\":{\"labelValue\":\"965119\",\"primaryLabelValue\":\"965119\"}},{\"attributeHeader\":{\"labelValue\":\"965121\",\"primaryLabelValue\":\"965121\"}},{\"attributeHeader\":{\"labelValue\":\"965122\",\"primaryLabelValue\":\"965122\"}},{\"attributeHeader\":{\"labelValue\":\"965123\",\"primaryLabelValue\":\"965123\"}},{\"attributeHeader\":{\"labelValue\":\"965124\",\"primaryLabelValue\":\"965124\"}},{\"attributeHeader\":{\"labelValue\":\"965125\",\"primaryLabelValue\":\"965125\"}},{\"attributeHeader\":{\"labelValue\":\"965127\",\"primaryLabelValue\":\"965127\"}},{\"attributeHeader\":{\"labelValue\":\"965128\",\"primaryLabelValue\":\"965128\"}},{\"attributeHeader\":{\"labelValue\":\"965129\",\"primaryLabelValue\":\"965129\"}},{\"attributeHeader\":{\"labelValue\":\"965131\",\"primaryLabelValue\":\"965131\"}},{\"attributeHeader\":{\"labelValue\":\"965132\",\"primaryLabelValue\":\"965132\"}},{\"attributeHeader\":{\"labelValue\":\"965133\",\"primaryLabelValue\":\"965133\"}},{\"attributeHeader\":{\"labelValue\":\"965134\",\"primaryLabelValue\":\"965134\"}},{\"attributeHeader\":{\"labelValue\":\"965136\",\"primaryLabelValue\":\"965136\"}},{\"attributeHeader\":{\"labelValue\":\"965138\",\"primaryLabelValue\":\"965138\"}},{\"attributeHeader\":{\"labelValue\":\"965139\",\"primaryLabelValue\":\"965139\"}},{\"attributeHeader\":{\"labelValue\":\"965140\",\"primaryLabelValue\":\"965140\"}},{\"attributeHeader\":{\"labelValue\":\"965142\",\"primaryLabelValue\":\"965142\"}},{\"attributeHeader\":{\"labelValue\":\"965143\",\"primaryLabelValue\":\"965143\"}},{\"attributeHeader\":{\"labelValue\":\"965144\",\"primaryLabelValue\":\"965144\"}},{\"attributeHeader\":{\"labelValue\":\"965145\",\"primaryLabelValue\":\"965145\"}},{\"attributeHeader\":{\"labelValue\":\"965146\",\"primaryLabelValue\":\"965146\"}},{\"attributeHeader\":{\"labelValue\":\"965148\",\"primaryLabelValue\":\"965148\"}},{\"attributeHeader\":{\"labelValue\":\"965149\",\"primaryLabelValue\":\"965149\"}},{\"attributeHeader\":{\"labelValue\":\"965150\",\"primaryLabelValue\":\"965150\"}},{\"attributeHeader\":{\"labelValue\":\"965151\",\"primaryLabelValue\":\"965151\"}},{\"attributeHeader\":{\"labelValue\":\"965152\",\"primaryLabelValue\":\"965152\"}},{\"attributeHeader\":{\"labelValue\":\"965155\",\"primaryLabelValue\":\"965155\"}},{\"attributeHeader\":{\"labelValue\":\"965156\",\"primaryLabelValue\":\"965156\"}},{\"attributeHeader\":{\"labelValue\":\"965157\",\"primaryLabelValue\":\"965157\"}},{\"attributeHeader\":{\"labelValue\":\"965158\",\"primaryLabelValue\":\"965158\"}},{\"attributeHeader\":{\"labelValue\":\"965159\",\"primaryLabelValue\":\"965159\"}},{\"attributeHeader\":{\"labelValue\":\"965160\",\"primaryLabelValue\":\"965160\"}},{\"attributeHeader\":{\"labelValue\":\"965161\",\"primaryLabelValue\":\"965161\"}},{\"attributeHeader\":{\"labelValue\":\"965163\",\"primaryLabelValue\":\"965163\"}},{\"attributeHeader\":{\"labelValue\":\"965165\",\"primaryLabelValue\":\"965165\"}},{\"attributeHeader\":{\"labelValue\":\"965166\",\"primaryLabelValue\":\"965166\"}},{\"attributeHeader\":{\"labelValue\":\"965167\",\"primaryLabelValue\":\"965167\"}},{\"attributeHeader\":{\"labelValue\":\"965168\",\"primaryLabelValue\":\"965168\"}},{\"attributeHeader\":{\"labelValue\":\"965170\",\"primaryLabelValue\":\"965170\"}},{\"attributeHeader\":{\"labelValue\":\"965171\",\"primaryLabelValue\":\"965171\"}},{\"attributeHeader\":{\"labelValue\":\"965172\",\"primaryLabelValue\":\"965172\"}},{\"attributeHeader\":{\"labelValue\":\"965173\",\"primaryLabelValue\":\"965173\"}},{\"attributeHeader\":{\"labelValue\":\"965174\",\"primaryLabelValue\":\"965174\"}},{\"attributeHeader\":{\"labelValue\":\"965176\",\"primaryLabelValue\":\"965176\"}},{\"attributeHeader\":{\"labelValue\":\"965178\",\"primaryLabelValue\":\"965178\"}},{\"attributeHeader\":{\"labelValue\":\"965180\",\"primaryLabelValue\":\"965180\"}},{\"attributeHeader\":{\"labelValue\":\"965181\",\"primaryLabelValue\":\"965181\"}},{\"attributeHeader\":{\"labelValue\":\"965182\",\"primaryLabelValue\":\"965182\"}},{\"attributeHeader\":{\"labelValue\":\"965184\",\"primaryLabelValue\":\"965184\"}},{\"attributeHeader\":{\"labelValue\":\"965186\",\"primaryLabelValue\":\"965186\"}},{\"attributeHeader\":{\"labelValue\":\"965187\",\"primaryLabelValue\":\"965187\"}},{\"attributeHeader\":{\"labelValue\":\"965188\",\"primaryLabelValue\":\"965188\"}},{\"attributeHeader\":{\"labelValue\":\"965189\",\"primaryLabelValue\":\"965189\"}},{\"attributeHeader\":{\"labelValue\":\"965190\",\"primaryLabelValue\":\"965190\"}},{\"attributeHeader\":{\"labelValue\":\"965191\",\"primaryLabelValue\":\"965191\"}},{\"attributeHeader\":{\"labelValue\":\"965192\",\"primaryLabelValue\":\"965192\"}},{\"attributeHeader\":{\"labelValue\":\"965194\",\"primaryLabelValue\":\"965194\"}},{\"attributeHeader\":{\"labelValue\":\"965196\",\"primaryLabelValue\":\"965196\"}},{\"attributeHeader\":{\"labelValue\":\"965197\",\"primaryLabelValue\":\"965197\"}},{\"attributeHeader\":{\"labelValue\":\"965199\",\"primaryLabelValue\":\"965199\"}},{\"attributeHeader\":{\"labelValue\":\"965200\",\"primaryLabelValue\":\"965200\"}},{\"attributeHeader\":{\"labelValue\":\"965201\",\"primaryLabelValue\":\"965201\"}},{\"attributeHeader\":{\"labelValue\":\"965202\",\"primaryLabelValue\":\"965202\"}},{\"attributeHeader\":{\"labelValue\":\"965203\",\"primaryLabelValue\":\"965203\"}},{\"attributeHeader\":{\"labelValue\":\"965205\",\"primaryLabelValue\":\"965205\"}},{\"attributeHeader\":{\"labelValue\":\"965206\",\"primaryLabelValue\":\"965206\"}},{\"attributeHeader\":{\"labelValue\":\"965207\",\"primaryLabelValue\":\"965207\"}},{\"attributeHeader\":{\"labelValue\":\"965208\",\"primaryLabelValue\":\"965208\"}},{\"attributeHeader\":{\"labelValue\":\"965209\",\"primaryLabelValue\":\"965209\"}},{\"attributeHeader\":{\"labelValue\":\"965210\",\"primaryLabelValue\":\"965210\"}},{\"attributeHeader\":{\"labelValue\":\"965212\",\"primaryLabelValue\":\"965212\"}},{\"attributeHeader\":{\"labelValue\":\"965213\",\"primaryLabelValue\":\"965213\"}},{\"attributeHeader\":{\"labelValue\":\"965215\",\"primaryLabelValue\":\"965215\"}},{\"attributeHeader\":{\"labelValue\":\"965217\",\"primaryLabelValue\":\"965217\"}},{\"attributeHeader\":{\"labelValue\":\"965219\",\"primaryLabelValue\":\"965219\"}},{\"attributeHeader\":{\"labelValue\":\"965220\",\"primaryLabelValue\":\"965220\"}},{\"attributeHeader\":{\"labelValue\":\"965221\",\"primaryLabelValue\":\"965221\"}},{\"attributeHeader\":{\"labelValue\":\"965222\",\"primaryLabelValue\":\"965222\"}},{\"attributeHeader\":{\"labelValue\":\"965223\",\"primaryLabelValue\":\"965223\"}},{\"attributeHeader\":{\"labelValue\":\"965224\",\"primaryLabelValue\":\"965224\"}},{\"attributeHeader\":{\"labelValue\":\"965226\",\"primaryLabelValue\":\"965226\"}},{\"attributeHeader\":{\"labelValue\":\"965228\",\"primaryLabelValue\":\"965228\"}},{\"attributeHeader\":{\"labelValue\":\"965229\",\"primaryLabelValue\":\"965229\"}},{\"attributeHeader\":{\"labelValue\":\"965230\",\"primaryLabelValue\":\"965230\"}},{\"attributeHeader\":{\"labelValue\":\"965232\",\"primaryLabelValue\":\"965232\"}},{\"attributeHeader\":{\"labelValue\":\"965233\",\"primaryLabelValue\":\"965233\"}},{\"attributeHeader\":{\"labelValue\":\"965234\",\"primaryLabelValue\":\"965234\"}},{\"attributeHeader\":{\"labelValue\":\"965235\",\"primaryLabelValue\":\"965235\"}},{\"attributeHeader\":{\"labelValue\":\"965236\",\"primaryLabelValue\":\"965236\"}},{\"attributeHeader\":{\"labelValue\":\"965237\",\"primaryLabelValue\":\"965237\"}},{\"attributeHeader\":{\"labelValue\":\"965238\",\"primaryLabelValue\":\"965238\"}},{\"attributeHeader\":{\"labelValue\":\"965239\",\"primaryLabelValue\":\"965239\"}},{\"attributeHeader\":{\"labelValue\":\"965240\",\"primaryLabelValue\":\"965240\"}},{\"attributeHeader\":{\"labelValue\":\"965241\",\"primaryLabelValue\":\"965241\"}},{\"attributeHeader\":{\"labelValue\":\"965242\",\"primaryLabelValue\":\"965242\"}},{\"attributeHeader\":{\"labelValue\":\"965243\",\"primaryLabelValue\":\"965243\"}},{\"attributeHeader\":{\"labelValue\":\"965244\",\"primaryLabelValue\":\"965244\"}},{\"attributeHeader\":{\"labelValue\":\"965245\",\"primaryLabelValue\":\"965245\"}},{\"attributeHeader\":{\"labelValue\":\"965246\",\"primaryLabelValue\":\"965246\"}},{\"attributeHeader\":{\"labelValue\":\"965248\",\"primaryLabelValue\":\"965248\"}},{\"attributeHeader\":{\"labelValue\":\"965249\",\"primaryLabelValue\":\"965249\"}},{\"attributeHeader\":{\"labelValue\":\"965250\",\"primaryLabelValue\":\"965250\"}},{\"attributeHeader\":{\"labelValue\":\"965252\",\"primaryLabelValue\":\"965252\"}},{\"attributeHeader\":{\"labelValue\":\"965253\",\"primaryLabelValue\":\"965253\"}},{\"attributeHeader\":{\"labelValue\":\"965254\",\"primaryLabelValue\":\"965254\"}},{\"attributeHeader\":{\"labelValue\":\"965256\",\"primaryLabelValue\":\"965256\"}},{\"attributeHeader\":{\"labelValue\":\"965259\",\"primaryLabelValue\":\"965259\"}},{\"attributeHeader\":{\"labelValue\":\"965260\",\"primaryLabelValue\":\"965260\"}},{\"attributeHeader\":{\"labelValue\":\"965261\",\"primaryLabelValue\":\"965261\"}},{\"attributeHeader\":{\"labelValue\":\"965262\",\"primaryLabelValue\":\"965262\"}},{\"attributeHeader\":{\"labelValue\":\"965263\",\"primaryLabelValue\":\"965263\"}},{\"attributeHeader\":{\"labelValue\":\"965264\",\"primaryLabelValue\":\"965264\"}},{\"attributeHeader\":{\"labelValue\":\"965265\",\"primaryLabelValue\":\"965265\"}},{\"attributeHeader\":{\"labelValue\":\"965266\",\"primaryLabelValue\":\"965266\"}},{\"attributeHeader\":{\"labelValue\":\"965267\",\"primaryLabelValue\":\"965267\"}},{\"attributeHeader\":{\"labelValue\":\"965268\",\"primaryLabelValue\":\"965268\"}},{\"attributeHeader\":{\"labelValue\":\"965269\",\"primaryLabelValue\":\"965269\"}},{\"attributeHeader\":{\"labelValue\":\"965270\",\"primaryLabelValue\":\"965270\"}},{\"attributeHeader\":{\"labelValue\":\"965271\",\"primaryLabelValue\":\"965271\"}},{\"attributeHeader\":{\"labelValue\":\"965272\",\"primaryLabelValue\":\"965272\"}},{\"attributeHeader\":{\"labelValue\":\"965273\",\"primaryLabelValue\":\"965273\"}},{\"attributeHeader\":{\"labelValue\":\"965274\",\"primaryLabelValue\":\"965274\"}},{\"attributeHeader\":{\"labelValue\":\"965275\",\"primaryLabelValue\":\"965275\"}},{\"attributeHeader\":{\"labelValue\":\"965276\",\"primaryLabelValue\":\"965276\"}},{\"attributeHeader\":{\"labelValue\":\"965278\",\"primaryLabelValue\":\"965278\"}},{\"attributeHeader\":{\"labelValue\":\"965279\",\"primaryLabelValue\":\"965279\"}},{\"attributeHeader\":{\"labelValue\":\"965280\",\"primaryLabelValue\":\"965280\"}},{\"attributeHeader\":{\"labelValue\":\"965282\",\"primaryLabelValue\":\"965282\"}},{\"attributeHeader\":{\"labelValue\":\"965283\",\"primaryLabelValue\":\"965283\"}},{\"attributeHeader\":{\"labelValue\":\"965284\",\"primaryLabelValue\":\"965284\"}},{\"attributeHeader\":{\"labelValue\":\"965285\",\"primaryLabelValue\":\"965285\"}},{\"attributeHeader\":{\"labelValue\":\"965288\",\"primaryLabelValue\":\"965288\"}},{\"attributeHeader\":{\"labelValue\":\"965290\",\"primaryLabelValue\":\"965290\"}},{\"attributeHeader\":{\"labelValue\":\"965291\",\"primaryLabelValue\":\"965291\"}},{\"attributeHeader\":{\"labelValue\":\"965292\",\"primaryLabelValue\":\"965292\"}},{\"attributeHeader\":{\"labelValue\":\"965293\",\"primaryLabelValue\":\"965293\"}},{\"attributeHeader\":{\"labelValue\":\"965294\",\"primaryLabelValue\":\"965294\"}},{\"attributeHeader\":{\"labelValue\":\"965295\",\"primaryLabelValue\":\"965295\"}},{\"attributeHeader\":{\"labelValue\":\"965296\",\"primaryLabelValue\":\"965296\"}},{\"attributeHeader\":{\"labelValue\":\"965297\",\"primaryLabelValue\":\"965297\"}},{\"attributeHeader\":{\"labelValue\":\"965298\",\"primaryLabelValue\":\"965298\"}},{\"attributeHeader\":{\"labelValue\":\"965299\",\"primaryLabelValue\":\"965299\"}},{\"attributeHeader\":{\"labelValue\":\"965300\",\"primaryLabelValue\":\"965300\"}},{\"attributeHeader\":{\"labelValue\":\"965301\",\"primaryLabelValue\":\"965301\"}},{\"attributeHeader\":{\"labelValue\":\"965302\",\"primaryLabelValue\":\"965302\"}},{\"attributeHeader\":{\"labelValue\":\"965304\",\"primaryLabelValue\":\"965304\"}},{\"attributeHeader\":{\"labelValue\":\"965306\",\"primaryLabelValue\":\"965306\"}},{\"attributeHeader\":{\"labelValue\":\"965307\",\"primaryLabelValue\":\"965307\"}},{\"attributeHeader\":{\"labelValue\":\"965308\",\"primaryLabelValue\":\"965308\"}},{\"attributeHeader\":{\"labelValue\":\"965310\",\"primaryLabelValue\":\"965310\"}},{\"attributeHeader\":{\"labelValue\":\"965311\",\"primaryLabelValue\":\"965311\"}},{\"attributeHeader\":{\"labelValue\":\"965313\",\"primaryLabelValue\":\"965313\"}},{\"attributeHeader\":{\"labelValue\":\"965314\",\"primaryLabelValue\":\"965314\"}},{\"attributeHeader\":{\"labelValue\":\"965315\",\"primaryLabelValue\":\"965315\"}},{\"attributeHeader\":{\"labelValue\":\"965316\",\"primaryLabelValue\":\"965316\"}},{\"attributeHeader\":{\"labelValue\":\"965317\",\"primaryLabelValue\":\"965317\"}},{\"attributeHeader\":{\"labelValue\":\"965318\",\"primaryLabelValue\":\"965318\"}},{\"attributeHeader\":{\"labelValue\":\"965319\",\"primaryLabelValue\":\"965319\"}},{\"attributeHeader\":{\"labelValue\":\"965320\",\"primaryLabelValue\":\"965320\"}},{\"attributeHeader\":{\"labelValue\":\"965321\",\"primaryLabelValue\":\"965321\"}},{\"attributeHeader\":{\"labelValue\":\"965322\",\"primaryLabelValue\":\"965322\"}},{\"attributeHeader\":{\"labelValue\":\"965323\",\"primaryLabelValue\":\"965323\"}},{\"attributeHeader\":{\"labelValue\":\"965325\",\"primaryLabelValue\":\"965325\"}},{\"attributeHeader\":{\"labelValue\":\"965326\",\"primaryLabelValue\":\"965326\"}},{\"attributeHeader\":{\"labelValue\":\"965328\",\"primaryLabelValue\":\"965328\"}},{\"attributeHeader\":{\"labelValue\":\"965329\",\"primaryLabelValue\":\"965329\"}},{\"attributeHeader\":{\"labelValue\":\"965331\",\"primaryLabelValue\":\"965331\"}},{\"attributeHeader\":{\"labelValue\":\"965332\",\"primaryLabelValue\":\"965332\"}},{\"attributeHeader\":{\"labelValue\":\"965333\",\"primaryLabelValue\":\"965333\"}},{\"attributeHeader\":{\"labelValue\":\"965335\",\"primaryLabelValue\":\"965335\"}},{\"attributeHeader\":{\"labelValue\":\"965336\",\"primaryLabelValue\":\"965336\"}},{\"attributeHeader\":{\"labelValue\":\"965337\",\"primaryLabelValue\":\"965337\"}},{\"attributeHeader\":{\"labelValue\":\"965338\",\"primaryLabelValue\":\"965338\"}},{\"attributeHeader\":{\"labelValue\":\"965339\",\"primaryLabelValue\":\"965339\"}},{\"attributeHeader\":{\"labelValue\":\"965340\",\"primaryLabelValue\":\"965340\"}},{\"attributeHeader\":{\"labelValue\":\"965341\",\"primaryLabelValue\":\"965341\"}},{\"attributeHeader\":{\"labelValue\":\"965342\",\"primaryLabelValue\":\"965342\"}},{\"attributeHeader\":{\"labelValue\":\"965343\",\"primaryLabelValue\":\"965343\"}},{\"attributeHeader\":{\"labelValue\":\"965345\",\"primaryLabelValue\":\"965345\"}},{\"attributeHeader\":{\"labelValue\":\"965346\",\"primaryLabelValue\":\"965346\"}},{\"attributeHeader\":{\"labelValue\":\"965347\",\"primaryLabelValue\":\"965347\"}},{\"attributeHeader\":{\"labelValue\":\"965349\",\"primaryLabelValue\":\"965349\"}},{\"attributeHeader\":{\"labelValue\":\"965350\",\"primaryLabelValue\":\"965350\"}},{\"attributeHeader\":{\"labelValue\":\"965351\",\"primaryLabelValue\":\"965351\"}},{\"attributeHeader\":{\"labelValue\":\"965353\",\"primaryLabelValue\":\"965353\"}},{\"attributeHeader\":{\"labelValue\":\"965354\",\"primaryLabelValue\":\"965354\"}},{\"attributeHeader\":{\"labelValue\":\"965355\",\"primaryLabelValue\":\"965355\"}},{\"attributeHeader\":{\"labelValue\":\"965357\",\"primaryLabelValue\":\"965357\"}},{\"attributeHeader\":{\"labelValue\":\"965359\",\"primaryLabelValue\":\"965359\"}},{\"attributeHeader\":{\"labelValue\":\"965360\",\"primaryLabelValue\":\"965360\"}},{\"attributeHeader\":{\"labelValue\":\"965361\",\"primaryLabelValue\":\"965361\"}},{\"attributeHeader\":{\"labelValue\":\"965362\",\"primaryLabelValue\":\"965362\"}},{\"attributeHeader\":{\"labelValue\":\"965363\",\"primaryLabelValue\":\"965363\"}},{\"attributeHeader\":{\"labelValue\":\"965365\",\"primaryLabelValue\":\"965365\"}},{\"attributeHeader\":{\"labelValue\":\"965367\",\"primaryLabelValue\":\"965367\"}},{\"attributeHeader\":{\"labelValue\":\"965368\",\"primaryLabelValue\":\"965368\"}},{\"attributeHeader\":{\"labelValue\":\"965370\",\"primaryLabelValue\":\"965370\"}},{\"attributeHeader\":{\"labelValue\":\"965371\",\"primaryLabelValue\":\"965371\"}},{\"attributeHeader\":{\"labelValue\":\"965373\",\"primaryLabelValue\":\"965373\"}},{\"attributeHeader\":{\"labelValue\":\"965375\",\"primaryLabelValue\":\"965375\"}},{\"attributeHeader\":{\"labelValue\":\"965376\",\"primaryLabelValue\":\"965376\"}},{\"attributeHeader\":{\"labelValue\":\"965377\",\"primaryLabelValue\":\"965377\"}},{\"attributeHeader\":{\"labelValue\":\"965378\",\"primaryLabelValue\":\"965378\"}},{\"attributeHeader\":{\"labelValue\":\"965379\",\"primaryLabelValue\":\"965379\"}},{\"attributeHeader\":{\"labelValue\":\"965381\",\"primaryLabelValue\":\"965381\"}},{\"attributeHeader\":{\"labelValue\":\"965382\",\"primaryLabelValue\":\"965382\"}},{\"attributeHeader\":{\"labelValue\":\"965384\",\"primaryLabelValue\":\"965384\"}},{\"attributeHeader\":{\"labelValue\":\"965385\",\"primaryLabelValue\":\"965385\"}},{\"attributeHeader\":{\"labelValue\":\"965386\",\"primaryLabelValue\":\"965386\"}},{\"attributeHeader\":{\"labelValue\":\"965387\",\"primaryLabelValue\":\"965387\"}},{\"attributeHeader\":{\"labelValue\":\"965389\",\"primaryLabelValue\":\"965389\"}},{\"attributeHeader\":{\"labelValue\":\"965390\",\"primaryLabelValue\":\"965390\"}},{\"attributeHeader\":{\"labelValue\":\"965392\",\"primaryLabelValue\":\"965392\"}},{\"attributeHeader\":{\"labelValue\":\"965393\",\"primaryLabelValue\":\"965393\"}},{\"attributeHeader\":{\"labelValue\":\"965394\",\"primaryLabelValue\":\"965394\"}},{\"attributeHeader\":{\"labelValue\":\"965396\",\"primaryLabelValue\":\"965396\"}},{\"attributeHeader\":{\"labelValue\":\"965397\",\"primaryLabelValue\":\"965397\"}},{\"attributeHeader\":{\"labelValue\":\"965399\",\"primaryLabelValue\":\"965399\"}},{\"attributeHeader\":{\"labelValue\":\"965400\",\"primaryLabelValue\":\"965400\"}},{\"attributeHeader\":{\"labelValue\":\"965401\",\"primaryLabelValue\":\"965401\"}},{\"attributeHeader\":{\"labelValue\":\"965402\",\"primaryLabelValue\":\"965402\"}},{\"attributeHeader\":{\"labelValue\":\"965403\",\"primaryLabelValue\":\"965403\"}},{\"attributeHeader\":{\"labelValue\":\"965404\",\"primaryLabelValue\":\"965404\"}},{\"attributeHeader\":{\"labelValue\":\"965405\",\"primaryLabelValue\":\"965405\"}},{\"attributeHeader\":{\"labelValue\":\"965406\",\"primaryLabelValue\":\"965406\"}},{\"attributeHeader\":{\"labelValue\":\"965407\",\"primaryLabelValue\":\"965407\"}},{\"attributeHeader\":{\"labelValue\":\"965408\",\"primaryLabelValue\":\"965408\"}},{\"attributeHeader\":{\"labelValue\":\"965409\",\"primaryLabelValue\":\"965409\"}},{\"attributeHeader\":{\"labelValue\":\"965410\",\"primaryLabelValue\":\"965410\"}},{\"attributeHeader\":{\"labelValue\":\"965411\",\"primaryLabelValue\":\"965411\"}},{\"attributeHeader\":{\"labelValue\":\"965413\",\"primaryLabelValue\":\"965413\"}},{\"attributeHeader\":{\"labelValue\":\"965415\",\"primaryLabelValue\":\"965415\"}},{\"attributeHeader\":{\"labelValue\":\"965416\",\"primaryLabelValue\":\"965416\"}},{\"attributeHeader\":{\"labelValue\":\"965417\",\"primaryLabelValue\":\"965417\"}},{\"attributeHeader\":{\"labelValue\":\"965418\",\"primaryLabelValue\":\"965418\"}},{\"attributeHeader\":{\"labelValue\":\"965419\",\"primaryLabelValue\":\"965419\"}},{\"attributeHeader\":{\"labelValue\":\"965421\",\"primaryLabelValue\":\"965421\"}},{\"attributeHeader\":{\"labelValue\":\"965423\",\"primaryLabelValue\":\"965423\"}},{\"attributeHeader\":{\"labelValue\":\"965425\",\"primaryLabelValue\":\"965425\"}},{\"attributeHeader\":{\"labelValue\":\"965427\",\"primaryLabelValue\":\"965427\"}},{\"attributeHeader\":{\"labelValue\":\"965428\",\"primaryLabelValue\":\"965428\"}},{\"attributeHeader\":{\"labelValue\":\"965429\",\"primaryLabelValue\":\"965429\"}},{\"attributeHeader\":{\"labelValue\":\"965430\",\"primaryLabelValue\":\"965430\"}},{\"attributeHeader\":{\"labelValue\":\"965432\",\"primaryLabelValue\":\"965432\"}},{\"attributeHeader\":{\"labelValue\":\"965433\",\"primaryLabelValue\":\"965433\"}},{\"attributeHeader\":{\"labelValue\":\"965434\",\"primaryLabelValue\":\"965434\"}},{\"attributeHeader\":{\"labelValue\":\"965435\",\"primaryLabelValue\":\"965435\"}},{\"attributeHeader\":{\"labelValue\":\"965436\",\"primaryLabelValue\":\"965436\"}},{\"attributeHeader\":{\"labelValue\":\"965438\",\"primaryLabelValue\":\"965438\"}},{\"attributeHeader\":{\"labelValue\":\"965440\",\"primaryLabelValue\":\"965440\"}},{\"attributeHeader\":{\"labelValue\":\"965441\",\"primaryLabelValue\":\"965441\"}},{\"attributeHeader\":{\"labelValue\":\"965442\",\"primaryLabelValue\":\"965442\"}},{\"attributeHeader\":{\"labelValue\":\"965443\",\"primaryLabelValue\":\"965443\"}},{\"attributeHeader\":{\"labelValue\":\"965445\",\"primaryLabelValue\":\"965445\"}},{\"attributeHeader\":{\"labelValue\":\"965447\",\"primaryLabelValue\":\"965447\"}},{\"attributeHeader\":{\"labelValue\":\"965449\",\"primaryLabelValue\":\"965449\"}},{\"attributeHeader\":{\"labelValue\":\"965450\",\"primaryLabelValue\":\"965450\"}},{\"attributeHeader\":{\"labelValue\":\"965451\",\"primaryLabelValue\":\"965451\"}},{\"attributeHeader\":{\"labelValue\":\"965453\",\"primaryLabelValue\":\"965453\"}},{\"attributeHeader\":{\"labelValue\":\"965454\",\"primaryLabelValue\":\"965454\"}},{\"attributeHeader\":{\"labelValue\":\"965456\",\"primaryLabelValue\":\"965456\"}},{\"attributeHeader\":{\"labelValue\":\"965457\",\"primaryLabelValue\":\"965457\"}},{\"attributeHeader\":{\"labelValue\":\"965458\",\"primaryLabelValue\":\"965458\"}},{\"attributeHeader\":{\"labelValue\":\"965459\",\"primaryLabelValue\":\"965459\"}},{\"attributeHeader\":{\"labelValue\":\"965461\",\"primaryLabelValue\":\"965461\"}},{\"attributeHeader\":{\"labelValue\":\"965462\",\"primaryLabelValue\":\"965462\"}},{\"attributeHeader\":{\"labelValue\":\"965466\",\"primaryLabelValue\":\"965466\"}},{\"attributeHeader\":{\"labelValue\":\"965467\",\"primaryLabelValue\":\"965467\"}},{\"attributeHeader\":{\"labelValue\":\"965469\",\"primaryLabelValue\":\"965469\"}},{\"attributeHeader\":{\"labelValue\":\"965470\",\"primaryLabelValue\":\"965470\"}},{\"attributeHeader\":{\"labelValue\":\"965471\",\"primaryLabelValue\":\"965471\"}},{\"attributeHeader\":{\"labelValue\":\"965473\",\"primaryLabelValue\":\"965473\"}},{\"attributeHeader\":{\"labelValue\":\"965474\",\"primaryLabelValue\":\"965474\"}},{\"attributeHeader\":{\"labelValue\":\"965476\",\"primaryLabelValue\":\"965476\"}},{\"attributeHeader\":{\"labelValue\":\"965477\",\"primaryLabelValue\":\"965477\"}},{\"attributeHeader\":{\"labelValue\":\"965478\",\"primaryLabelValue\":\"965478\"}},{\"attributeHeader\":{\"labelValue\":\"965479\",\"primaryLabelValue\":\"965479\"}},{\"attributeHeader\":{\"labelValue\":\"965481\",\"primaryLabelValue\":\"965481\"}},{\"attributeHeader\":{\"labelValue\":\"965483\",\"primaryLabelValue\":\"965483\"}},{\"attributeHeader\":{\"labelValue\":\"965484\",\"primaryLabelValue\":\"965484\"}},{\"attributeHeader\":{\"labelValue\":\"965485\",\"primaryLabelValue\":\"965485\"}},{\"attributeHeader\":{\"labelValue\":\"965487\",\"primaryLabelValue\":\"965487\"}},{\"attributeHeader\":{\"labelValue\":\"965489\",\"primaryLabelValue\":\"965489\"}},{\"attributeHeader\":{\"labelValue\":\"965490\",\"primaryLabelValue\":\"965490\"}},{\"attributeHeader\":{\"labelValue\":\"965492\",\"primaryLabelValue\":\"965492\"}},{\"attributeHeader\":{\"labelValue\":\"965493\",\"primaryLabelValue\":\"965493\"}},{\"attributeHeader\":{\"labelValue\":\"965496\",\"primaryLabelValue\":\"965496\"}},{\"attributeHeader\":{\"labelValue\":\"965498\",\"primaryLabelValue\":\"965498\"}},{\"attributeHeader\":{\"labelValue\":\"965499\",\"primaryLabelValue\":\"965499\"}},{\"attributeHeader\":{\"labelValue\":\"965500\",\"primaryLabelValue\":\"965500\"}},{\"attributeHeader\":{\"labelValue\":\"965501\",\"primaryLabelValue\":\"965501\"}},{\"attributeHeader\":{\"labelValue\":\"965502\",\"primaryLabelValue\":\"965502\"}},{\"attributeHeader\":{\"labelValue\":\"965504\",\"primaryLabelValue\":\"965504\"}},{\"attributeHeader\":{\"labelValue\":\"965505\",\"primaryLabelValue\":\"965505\"}},{\"attributeHeader\":{\"labelValue\":\"965506\",\"primaryLabelValue\":\"965506\"}},{\"attributeHeader\":{\"labelValue\":\"965508\",\"primaryLabelValue\":\"965508\"}},{\"attributeHeader\":{\"labelValue\":\"965510\",\"primaryLabelValue\":\"965510\"}},{\"attributeHeader\":{\"labelValue\":\"965511\",\"primaryLabelValue\":\"965511\"}},{\"attributeHeader\":{\"labelValue\":\"965512\",\"primaryLabelValue\":\"965512\"}},{\"attributeHeader\":{\"labelValue\":\"965513\",\"primaryLabelValue\":\"965513\"}},{\"attributeHeader\":{\"labelValue\":\"965515\",\"primaryLabelValue\":\"965515\"}},{\"attributeHeader\":{\"labelValue\":\"965516\",\"primaryLabelValue\":\"965516\"}},{\"attributeHeader\":{\"labelValue\":\"965517\",\"primaryLabelValue\":\"965517\"}},{\"attributeHeader\":{\"labelValue\":\"965518\",\"primaryLabelValue\":\"965518\"}},{\"attributeHeader\":{\"labelValue\":\"965520\",\"primaryLabelValue\":\"965520\"}},{\"attributeHeader\":{\"labelValue\":\"965522\",\"primaryLabelValue\":\"965522\"}},{\"attributeHeader\":{\"labelValue\":\"965524\",\"primaryLabelValue\":\"965524\"}},{\"attributeHeader\":{\"labelValue\":\"965525\",\"primaryLabelValue\":\"965525\"}},{\"attributeHeader\":{\"labelValue\":\"965526\",\"primaryLabelValue\":\"965526\"}},{\"attributeHeader\":{\"labelValue\":\"965527\",\"primaryLabelValue\":\"965527\"}},{\"attributeHeader\":{\"labelValue\":\"965528\",\"primaryLabelValue\":\"965528\"}},{\"attributeHeader\":{\"labelValue\":\"965531\",\"primaryLabelValue\":\"965531\"}},{\"attributeHeader\":{\"labelValue\":\"965533\",\"primaryLabelValue\":\"965533\"}},{\"attributeHeader\":{\"labelValue\":\"965534\",\"primaryLabelValue\":\"965534\"}},{\"attributeHeader\":{\"labelValue\":\"965536\",\"primaryLabelValue\":\"965536\"}},{\"attributeHeader\":{\"labelValue\":\"965537\",\"primaryLabelValue\":\"965537\"}},{\"attributeHeader\":{\"labelValue\":\"965538\",\"primaryLabelValue\":\"965538\"}},{\"attributeHeader\":{\"labelValue\":\"965539\",\"primaryLabelValue\":\"965539\"}},{\"attributeHeader\":{\"labelValue\":\"965540\",\"primaryLabelValue\":\"965540\"}},{\"attributeHeader\":{\"labelValue\":\"965541\",\"primaryLabelValue\":\"965541\"}},{\"attributeHeader\":{\"labelValue\":\"965542\",\"primaryLabelValue\":\"965542\"}},{\"attributeHeader\":{\"labelValue\":\"965545\",\"primaryLabelValue\":\"965545\"}},{\"attributeHeader\":{\"labelValue\":\"965546\",\"primaryLabelValue\":\"965546\"}},{\"attributeHeader\":{\"labelValue\":\"965547\",\"primaryLabelValue\":\"965547\"}},{\"attributeHeader\":{\"labelValue\":\"965548\",\"primaryLabelValue\":\"965548\"}},{\"attributeHeader\":{\"labelValue\":\"965549\",\"primaryLabelValue\":\"965549\"}},{\"attributeHeader\":{\"labelValue\":\"965550\",\"primaryLabelValue\":\"965550\"}},{\"attributeHeader\":{\"labelValue\":\"965551\",\"primaryLabelValue\":\"965551\"}},{\"attributeHeader\":{\"labelValue\":\"965552\",\"primaryLabelValue\":\"965552\"}},{\"attributeHeader\":{\"labelValue\":\"965553\",\"primaryLabelValue\":\"965553\"}},{\"attributeHeader\":{\"labelValue\":\"965555\",\"primaryLabelValue\":\"965555\"}},{\"attributeHeader\":{\"labelValue\":\"965557\",\"primaryLabelValue\":\"965557\"}},{\"attributeHeader\":{\"labelValue\":\"965559\",\"primaryLabelValue\":\"965559\"}},{\"attributeHeader\":{\"labelValue\":\"965560\",\"primaryLabelValue\":\"965560\"}},{\"attributeHeader\":{\"labelValue\":\"965562\",\"primaryLabelValue\":\"965562\"}},{\"attributeHeader\":{\"labelValue\":\"965563\",\"primaryLabelValue\":\"965563\"}},{\"attributeHeader\":{\"labelValue\":\"965564\",\"primaryLabelValue\":\"965564\"}},{\"attributeHeader\":{\"labelValue\":\"965565\",\"primaryLabelValue\":\"965565\"}},{\"attributeHeader\":{\"labelValue\":\"965566\",\"primaryLabelValue\":\"965566\"}},{\"attributeHeader\":{\"labelValue\":\"965567\",\"primaryLabelValue\":\"965567\"}},{\"attributeHeader\":{\"labelValue\":\"965569\",\"primaryLabelValue\":\"965569\"}},{\"attributeHeader\":{\"labelValue\":\"965570\",\"primaryLabelValue\":\"965570\"}},{\"attributeHeader\":{\"labelValue\":\"965571\",\"primaryLabelValue\":\"965571\"}},{\"attributeHeader\":{\"labelValue\":\"965572\",\"primaryLabelValue\":\"965572\"}},{\"attributeHeader\":{\"labelValue\":\"965573\",\"primaryLabelValue\":\"965573\"}},{\"attributeHeader\":{\"labelValue\":\"965574\",\"primaryLabelValue\":\"965574\"}},{\"attributeHeader\":{\"labelValue\":\"965576\",\"primaryLabelValue\":\"965576\"}},{\"attributeHeader\":{\"labelValue\":\"965578\",\"primaryLabelValue\":\"965578\"}},{\"attributeHeader\":{\"labelValue\":\"965579\",\"primaryLabelValue\":\"965579\"}},{\"attributeHeader\":{\"labelValue\":\"965580\",\"primaryLabelValue\":\"965580\"}},{\"attributeHeader\":{\"labelValue\":\"965582\",\"primaryLabelValue\":\"965582\"}},{\"attributeHeader\":{\"labelValue\":\"965583\",\"primaryLabelValue\":\"965583\"}},{\"attributeHeader\":{\"labelValue\":\"965584\",\"primaryLabelValue\":\"965584\"}},{\"attributeHeader\":{\"labelValue\":\"965585\",\"primaryLabelValue\":\"965585\"}},{\"attributeHeader\":{\"labelValue\":\"965586\",\"primaryLabelValue\":\"965586\"}},{\"attributeHeader\":{\"labelValue\":\"965587\",\"primaryLabelValue\":\"965587\"}},{\"attributeHeader\":{\"labelValue\":\"965588\",\"primaryLabelValue\":\"965588\"}},{\"attributeHeader\":{\"labelValue\":\"965589\",\"primaryLabelValue\":\"965589\"}},{\"attributeHeader\":{\"labelValue\":\"965591\",\"primaryLabelValue\":\"965591\"}},{\"attributeHeader\":{\"labelValue\":\"965592\",\"primaryLabelValue\":\"965592\"}},{\"attributeHeader\":{\"labelValue\":\"965593\",\"primaryLabelValue\":\"965593\"}},{\"attributeHeader\":{\"labelValue\":\"965595\",\"primaryLabelValue\":\"965595\"}},{\"attributeHeader\":{\"labelValue\":\"965596\",\"primaryLabelValue\":\"965596\"}},{\"attributeHeader\":{\"labelValue\":\"965597\",\"primaryLabelValue\":\"965597\"}},{\"attributeHeader\":{\"labelValue\":\"965600\",\"primaryLabelValue\":\"965600\"}},{\"attributeHeader\":{\"labelValue\":\"965602\",\"primaryLabelValue\":\"965602\"}},{\"attributeHeader\":{\"labelValue\":\"965605\",\"primaryLabelValue\":\"965605\"}},{\"attributeHeader\":{\"labelValue\":\"965606\",\"primaryLabelValue\":\"965606\"}},{\"attributeHeader\":{\"labelValue\":\"965607\",\"primaryLabelValue\":\"965607\"}},{\"attributeHeader\":{\"labelValue\":\"965609\",\"primaryLabelValue\":\"965609\"}},{\"attributeHeader\":{\"labelValue\":\"965611\",\"primaryLabelValue\":\"965611\"}},{\"attributeHeader\":{\"labelValue\":\"965612\",\"primaryLabelValue\":\"965612\"}},{\"attributeHeader\":{\"labelValue\":\"965613\",\"primaryLabelValue\":\"965613\"}},{\"attributeHeader\":{\"labelValue\":\"965614\",\"primaryLabelValue\":\"965614\"}},{\"attributeHeader\":{\"labelValue\":\"965615\",\"primaryLabelValue\":\"965615\"}},{\"attributeHeader\":{\"labelValue\":\"965616\",\"primaryLabelValue\":\"965616\"}},{\"attributeHeader\":{\"labelValue\":\"965617\",\"primaryLabelValue\":\"965617\"}},{\"attributeHeader\":{\"labelValue\":\"965619\",\"primaryLabelValue\":\"965619\"}},{\"attributeHeader\":{\"labelValue\":\"965620\",\"primaryLabelValue\":\"965620\"}},{\"attributeHeader\":{\"labelValue\":\"965621\",\"primaryLabelValue\":\"965621\"}},{\"attributeHeader\":{\"labelValue\":\"965622\",\"primaryLabelValue\":\"965622\"}},{\"attributeHeader\":{\"labelValue\":\"965624\",\"primaryLabelValue\":\"965624\"}},{\"attributeHeader\":{\"labelValue\":\"965625\",\"primaryLabelValue\":\"965625\"}},{\"attributeHeader\":{\"labelValue\":\"965626\",\"primaryLabelValue\":\"965626\"}},{\"attributeHeader\":{\"labelValue\":\"965627\",\"primaryLabelValue\":\"965627\"}},{\"attributeHeader\":{\"labelValue\":\"965628\",\"primaryLabelValue\":\"965628\"}},{\"attributeHeader\":{\"labelValue\":\"965630\",\"primaryLabelValue\":\"965630\"}},{\"attributeHeader\":{\"labelValue\":\"965632\",\"primaryLabelValue\":\"965632\"}},{\"attributeHeader\":{\"labelValue\":\"965634\",\"primaryLabelValue\":\"965634\"}},{\"attributeHeader\":{\"labelValue\":\"965635\",\"primaryLabelValue\":\"965635\"}},{\"attributeHeader\":{\"labelValue\":\"965636\",\"primaryLabelValue\":\"965636\"}},{\"attributeHeader\":{\"labelValue\":\"965637\",\"primaryLabelValue\":\"965637\"}},{\"attributeHeader\":{\"labelValue\":\"965638\",\"primaryLabelValue\":\"965638\"}},{\"attributeHeader\":{\"labelValue\":\"965639\",\"primaryLabelValue\":\"965639\"}},{\"attributeHeader\":{\"labelValue\":\"965640\",\"primaryLabelValue\":\"965640\"}},{\"attributeHeader\":{\"labelValue\":\"965641\",\"primaryLabelValue\":\"965641\"}},{\"attributeHeader\":{\"labelValue\":\"965642\",\"primaryLabelValue\":\"965642\"}},{\"attributeHeader\":{\"labelValue\":\"965643\",\"primaryLabelValue\":\"965643\"}},{\"attributeHeader\":{\"labelValue\":\"965645\",\"primaryLabelValue\":\"965645\"}},{\"attributeHeader\":{\"labelValue\":\"965646\",\"primaryLabelValue\":\"965646\"}},{\"attributeHeader\":{\"labelValue\":\"965648\",\"primaryLabelValue\":\"965648\"}},{\"attributeHeader\":{\"labelValue\":\"965650\",\"primaryLabelValue\":\"965650\"}},{\"attributeHeader\":{\"labelValue\":\"965652\",\"primaryLabelValue\":\"965652\"}},{\"attributeHeader\":{\"labelValue\":\"965653\",\"primaryLabelValue\":\"965653\"}},{\"attributeHeader\":{\"labelValue\":\"965654\",\"primaryLabelValue\":\"965654\"}},{\"attributeHeader\":{\"labelValue\":\"965656\",\"primaryLabelValue\":\"965656\"}},{\"attributeHeader\":{\"labelValue\":\"965657\",\"primaryLabelValue\":\"965657\"}},{\"attributeHeader\":{\"labelValue\":\"965659\",\"primaryLabelValue\":\"965659\"}},{\"attributeHeader\":{\"labelValue\":\"965661\",\"primaryLabelValue\":\"965661\"}},{\"attributeHeader\":{\"labelValue\":\"965663\",\"primaryLabelValue\":\"965663\"}},{\"attributeHeader\":{\"labelValue\":\"965664\",\"primaryLabelValue\":\"965664\"}},{\"attributeHeader\":{\"labelValue\":\"965666\",\"primaryLabelValue\":\"965666\"}},{\"attributeHeader\":{\"labelValue\":\"965668\",\"primaryLabelValue\":\"965668\"}},{\"attributeHeader\":{\"labelValue\":\"965669\",\"primaryLabelValue\":\"965669\"}},{\"attributeHeader\":{\"labelValue\":\"965670\",\"primaryLabelValue\":\"965670\"}},{\"attributeHeader\":{\"labelValue\":\"965672\",\"primaryLabelValue\":\"965672\"}},{\"attributeHeader\":{\"labelValue\":\"965673\",\"primaryLabelValue\":\"965673\"}},{\"attributeHeader\":{\"labelValue\":\"965675\",\"primaryLabelValue\":\"965675\"}},{\"attributeHeader\":{\"labelValue\":\"965676\",\"primaryLabelValue\":\"965676\"}},{\"attributeHeader\":{\"labelValue\":\"965677\",\"primaryLabelValue\":\"965677\"}},{\"attributeHeader\":{\"labelValue\":\"965678\",\"primaryLabelValue\":\"965678\"}},{\"attributeHeader\":{\"labelValue\":\"965679\",\"primaryLabelValue\":\"965679\"}},{\"attributeHeader\":{\"labelValue\":\"965680\",\"primaryLabelValue\":\"965680\"}},{\"attributeHeader\":{\"labelValue\":\"965681\",\"primaryLabelValue\":\"965681\"}},{\"attributeHeader\":{\"labelValue\":\"965682\",\"primaryLabelValue\":\"965682\"}},{\"attributeHeader\":{\"labelValue\":\"965683\",\"primaryLabelValue\":\"965683\"}},{\"attributeHeader\":{\"labelValue\":\"965684\",\"primaryLabelValue\":\"965684\"}},{\"attributeHeader\":{\"labelValue\":\"965685\",\"primaryLabelValue\":\"965685\"}},{\"attributeHeader\":{\"labelValue\":\"965687\",\"primaryLabelValue\":\"965687\"}},{\"attributeHeader\":{\"labelValue\":\"965688\",\"primaryLabelValue\":\"965688\"}},{\"attributeHeader\":{\"labelValue\":\"965689\",\"primaryLabelValue\":\"965689\"}},{\"attributeHeader\":{\"labelValue\":\"965691\",\"primaryLabelValue\":\"965691\"}},{\"attributeHeader\":{\"labelValue\":\"965693\",\"primaryLabelValue\":\"965693\"}},{\"attributeHeader\":{\"labelValue\":\"965695\",\"primaryLabelValue\":\"965695\"}},{\"attributeHeader\":{\"labelValue\":\"965696\",\"primaryLabelValue\":\"965696\"}},{\"attributeHeader\":{\"labelValue\":\"965698\",\"primaryLabelValue\":\"965698\"}},{\"attributeHeader\":{\"labelValue\":\"965700\",\"primaryLabelValue\":\"965700\"}},{\"attributeHeader\":{\"labelValue\":\"965702\",\"primaryLabelValue\":\"965702\"}},{\"attributeHeader\":{\"labelValue\":\"965703\",\"primaryLabelValue\":\"965703\"}},{\"attributeHeader\":{\"labelValue\":\"965704\",\"primaryLabelValue\":\"965704\"}},{\"attributeHeader\":{\"labelValue\":\"965705\",\"primaryLabelValue\":\"965705\"}},{\"attributeHeader\":{\"labelValue\":\"965706\",\"primaryLabelValue\":\"965706\"}},{\"attributeHeader\":{\"labelValue\":\"965708\",\"primaryLabelValue\":\"965708\"}},{\"attributeHeader\":{\"labelValue\":\"965709\",\"primaryLabelValue\":\"965709\"}},{\"attributeHeader\":{\"labelValue\":\"965710\",\"primaryLabelValue\":\"965710\"}},{\"attributeHeader\":{\"labelValue\":\"965711\",\"primaryLabelValue\":\"965711\"}},{\"attributeHeader\":{\"labelValue\":\"965712\",\"primaryLabelValue\":\"965712\"}},{\"attributeHeader\":{\"labelValue\":\"965713\",\"primaryLabelValue\":\"965713\"}},{\"attributeHeader\":{\"labelValue\":\"965714\",\"primaryLabelValue\":\"965714\"}},{\"attributeHeader\":{\"labelValue\":\"965715\",\"primaryLabelValue\":\"965715\"}},{\"attributeHeader\":{\"labelValue\":\"965716\",\"primaryLabelValue\":\"965716\"}},{\"attributeHeader\":{\"labelValue\":\"965717\",\"primaryLabelValue\":\"965717\"}},{\"attributeHeader\":{\"labelValue\":\"965719\",\"primaryLabelValue\":\"965719\"}},{\"attributeHeader\":{\"labelValue\":\"965720\",\"primaryLabelValue\":\"965720\"}},{\"attributeHeader\":{\"labelValue\":\"965722\",\"primaryLabelValue\":\"965722\"}},{\"attributeHeader\":{\"labelValue\":\"965724\",\"primaryLabelValue\":\"965724\"}},{\"attributeHeader\":{\"labelValue\":\"965726\",\"primaryLabelValue\":\"965726\"}},{\"attributeHeader\":{\"labelValue\":\"965727\",\"primaryLabelValue\":\"965727\"}},{\"attributeHeader\":{\"labelValue\":\"965728\",\"primaryLabelValue\":\"965728\"}},{\"attributeHeader\":{\"labelValue\":\"965730\",\"primaryLabelValue\":\"965730\"}},{\"attributeHeader\":{\"labelValue\":\"965732\",\"primaryLabelValue\":\"965732\"}},{\"attributeHeader\":{\"labelValue\":\"965733\",\"primaryLabelValue\":\"965733\"}},{\"attributeHeader\":{\"labelValue\":\"965734\",\"primaryLabelValue\":\"965734\"}},{\"attributeHeader\":{\"labelValue\":\"965735\",\"primaryLabelValue\":\"965735\"}},{\"attributeHeader\":{\"labelValue\":\"965736\",\"primaryLabelValue\":\"965736\"}},{\"attributeHeader\":{\"labelValue\":\"965737\",\"primaryLabelValue\":\"965737\"}},{\"attributeHeader\":{\"labelValue\":\"965738\",\"primaryLabelValue\":\"965738\"}},{\"attributeHeader\":{\"labelValue\":\"965740\",\"primaryLabelValue\":\"965740\"}},{\"attributeHeader\":{\"labelValue\":\"965741\",\"primaryLabelValue\":\"965741\"}},{\"attributeHeader\":{\"labelValue\":\"965743\",\"primaryLabelValue\":\"965743\"}},{\"attributeHeader\":{\"labelValue\":\"965745\",\"primaryLabelValue\":\"965745\"}},{\"attributeHeader\":{\"labelValue\":\"965746\",\"primaryLabelValue\":\"965746\"}},{\"attributeHeader\":{\"labelValue\":\"965747\",\"primaryLabelValue\":\"965747\"}},{\"attributeHeader\":{\"labelValue\":\"965748\",\"primaryLabelValue\":\"965748\"}},{\"attributeHeader\":{\"labelValue\":\"965749\",\"primaryLabelValue\":\"965749\"}},{\"attributeHeader\":{\"labelValue\":\"965750\",\"primaryLabelValue\":\"965750\"}},{\"attributeHeader\":{\"labelValue\":\"965751\",\"primaryLabelValue\":\"965751\"}},{\"attributeHeader\":{\"labelValue\":\"965753\",\"primaryLabelValue\":\"965753\"}},{\"attributeHeader\":{\"labelValue\":\"965754\",\"primaryLabelValue\":\"965754\"}},{\"attributeHeader\":{\"labelValue\":\"965756\",\"primaryLabelValue\":\"965756\"}},{\"attributeHeader\":{\"labelValue\":\"965757\",\"primaryLabelValue\":\"965757\"}},{\"attributeHeader\":{\"labelValue\":\"965758\",\"primaryLabelValue\":\"965758\"}},{\"attributeHeader\":{\"labelValue\":\"965759\",\"primaryLabelValue\":\"965759\"}},{\"attributeHeader\":{\"labelValue\":\"965760\",\"primaryLabelValue\":\"965760\"}},{\"attributeHeader\":{\"labelValue\":\"965762\",\"primaryLabelValue\":\"965762\"}},{\"attributeHeader\":{\"labelValue\":\"965763\",\"primaryLabelValue\":\"965763\"}},{\"attributeHeader\":{\"labelValue\":\"965764\",\"primaryLabelValue\":\"965764\"}},{\"attributeHeader\":{\"labelValue\":\"965766\",\"primaryLabelValue\":\"965766\"}},{\"attributeHeader\":{\"labelValue\":\"965767\",\"primaryLabelValue\":\"965767\"}},{\"attributeHeader\":{\"labelValue\":\"965768\",\"primaryLabelValue\":\"965768\"}},{\"attributeHeader\":{\"labelValue\":\"965770\",\"primaryLabelValue\":\"965770\"}},{\"attributeHeader\":{\"labelValue\":\"965772\",\"primaryLabelValue\":\"965772\"}},{\"attributeHeader\":{\"labelValue\":\"965773\",\"primaryLabelValue\":\"965773\"}},{\"attributeHeader\":{\"labelValue\":\"965775\",\"primaryLabelValue\":\"965775\"}},{\"attributeHeader\":{\"labelValue\":\"965777\",\"primaryLabelValue\":\"965777\"}},{\"attributeHeader\":{\"labelValue\":\"965779\",\"primaryLabelValue\":\"965779\"}},{\"attributeHeader\":{\"labelValue\":\"965780\",\"primaryLabelValue\":\"965780\"}},{\"attributeHeader\":{\"labelValue\":\"965781\",\"primaryLabelValue\":\"965781\"}},{\"attributeHeader\":{\"labelValue\":\"965783\",\"primaryLabelValue\":\"965783\"}},{\"attributeHeader\":{\"labelValue\":\"965785\",\"primaryLabelValue\":\"965785\"}},{\"attributeHeader\":{\"labelValue\":\"965786\",\"primaryLabelValue\":\"965786\"}},{\"attributeHeader\":{\"labelValue\":\"965787\",\"primaryLabelValue\":\"965787\"}},{\"attributeHeader\":{\"labelValue\":\"965788\",\"primaryLabelValue\":\"965788\"}},{\"attributeHeader\":{\"labelValue\":\"965789\",\"primaryLabelValue\":\"965789\"}},{\"attributeHeader\":{\"labelValue\":\"965791\",\"primaryLabelValue\":\"965791\"}},{\"attributeHeader\":{\"labelValue\":\"965792\",\"primaryLabelValue\":\"965792\"}},{\"attributeHeader\":{\"labelValue\":\"965793\",\"primaryLabelValue\":\"965793\"}},{\"attributeHeader\":{\"labelValue\":\"965794\",\"primaryLabelValue\":\"965794\"}},{\"attributeHeader\":{\"labelValue\":\"965795\",\"primaryLabelValue\":\"965795\"}},{\"attributeHeader\":{\"labelValue\":\"965796\",\"primaryLabelValue\":\"965796\"}},{\"attributeHeader\":{\"labelValue\":\"965798\",\"primaryLabelValue\":\"965798\"}},{\"attributeHeader\":{\"labelValue\":\"965799\",\"primaryLabelValue\":\"965799\"}},{\"attributeHeader\":{\"labelValue\":\"965800\",\"primaryLabelValue\":\"965800\"}},{\"attributeHeader\":{\"labelValue\":\"965801\",\"primaryLabelValue\":\"965801\"}},{\"attributeHeader\":{\"labelValue\":\"965802\",\"primaryLabelValue\":\"965802\"}},{\"attributeHeader\":{\"labelValue\":\"965804\",\"primaryLabelValue\":\"965804\"}},{\"attributeHeader\":{\"labelValue\":\"965805\",\"primaryLabelValue\":\"965805\"}},{\"attributeHeader\":{\"labelValue\":\"965807\",\"primaryLabelValue\":\"965807\"}},{\"attributeHeader\":{\"labelValue\":\"965808\",\"primaryLabelValue\":\"965808\"}},{\"attributeHeader\":{\"labelValue\":\"965810\",\"primaryLabelValue\":\"965810\"}},{\"attributeHeader\":{\"labelValue\":\"965811\",\"primaryLabelValue\":\"965811\"}},{\"attributeHeader\":{\"labelValue\":\"965813\",\"primaryLabelValue\":\"965813\"}},{\"attributeHeader\":{\"labelValue\":\"965814\",\"primaryLabelValue\":\"965814\"}},{\"attributeHeader\":{\"labelValue\":\"965816\",\"primaryLabelValue\":\"965816\"}},{\"attributeHeader\":{\"labelValue\":\"965817\",\"primaryLabelValue\":\"965817\"}},{\"attributeHeader\":{\"labelValue\":\"965818\",\"primaryLabelValue\":\"965818\"}},{\"attributeHeader\":{\"labelValue\":\"965819\",\"primaryLabelValue\":\"965819\"}},{\"attributeHeader\":{\"labelValue\":\"965821\",\"primaryLabelValue\":\"965821\"}},{\"attributeHeader\":{\"labelValue\":\"965823\",\"primaryLabelValue\":\"965823\"}},{\"attributeHeader\":{\"labelValue\":\"965825\",\"primaryLabelValue\":\"965825\"}},{\"attributeHeader\":{\"labelValue\":\"965826\",\"primaryLabelValue\":\"965826\"}},{\"attributeHeader\":{\"labelValue\":\"965827\",\"primaryLabelValue\":\"965827\"}},{\"attributeHeader\":{\"labelValue\":\"965829\",\"primaryLabelValue\":\"965829\"}},{\"attributeHeader\":{\"labelValue\":\"965830\",\"primaryLabelValue\":\"965830\"}},{\"attributeHeader\":{\"labelValue\":\"965831\",\"primaryLabelValue\":\"965831\"}},{\"attributeHeader\":{\"labelValue\":\"965833\",\"primaryLabelValue\":\"965833\"}},{\"attributeHeader\":{\"labelValue\":\"965835\",\"primaryLabelValue\":\"965835\"}},{\"attributeHeader\":{\"labelValue\":\"965837\",\"primaryLabelValue\":\"965837\"}},{\"attributeHeader\":{\"labelValue\":\"965838\",\"primaryLabelValue\":\"965838\"}},{\"attributeHeader\":{\"labelValue\":\"965839\",\"primaryLabelValue\":\"965839\"}},{\"attributeHeader\":{\"labelValue\":\"965841\",\"primaryLabelValue\":\"965841\"}},{\"attributeHeader\":{\"labelValue\":\"965842\",\"primaryLabelValue\":\"965842\"}},{\"attributeHeader\":{\"labelValue\":\"965843\",\"primaryLabelValue\":\"965843\"}},{\"attributeHeader\":{\"labelValue\":\"965844\",\"primaryLabelValue\":\"965844\"}},{\"attributeHeader\":{\"labelValue\":\"965845\",\"primaryLabelValue\":\"965845\"}},{\"attributeHeader\":{\"labelValue\":\"965846\",\"primaryLabelValue\":\"965846\"}},{\"attributeHeader\":{\"labelValue\":\"965847\",\"primaryLabelValue\":\"965847\"}},{\"attributeHeader\":{\"labelValue\":\"965848\",\"primaryLabelValue\":\"965848\"}},{\"attributeHeader\":{\"labelValue\":\"965849\",\"primaryLabelValue\":\"965849\"}},{\"attributeHeader\":{\"labelValue\":\"965850\",\"primaryLabelValue\":\"965850\"}},{\"attributeHeader\":{\"labelValue\":\"965852\",\"primaryLabelValue\":\"965852\"}},{\"attributeHeader\":{\"labelValue\":\"965854\",\"primaryLabelValue\":\"965854\"}},{\"attributeHeader\":{\"labelValue\":\"965855\",\"primaryLabelValue\":\"965855\"}},{\"attributeHeader\":{\"labelValue\":\"965856\",\"primaryLabelValue\":\"965856\"}},{\"attributeHeader\":{\"labelValue\":\"965857\",\"primaryLabelValue\":\"965857\"}},{\"attributeHeader\":{\"labelValue\":\"965859\",\"primaryLabelValue\":\"965859\"}},{\"attributeHeader\":{\"labelValue\":\"965860\",\"primaryLabelValue\":\"965860\"}},{\"attributeHeader\":{\"labelValue\":\"965861\",\"primaryLabelValue\":\"965861\"}},{\"attributeHeader\":{\"labelValue\":\"965862\",\"primaryLabelValue\":\"965862\"}},{\"attributeHeader\":{\"labelValue\":\"965863\",\"primaryLabelValue\":\"965863\"}},{\"attributeHeader\":{\"labelValue\":\"965864\",\"primaryLabelValue\":\"965864\"}},{\"attributeHeader\":{\"labelValue\":\"965865\",\"primaryLabelValue\":\"965865\"}},{\"attributeHeader\":{\"labelValue\":\"965867\",\"primaryLabelValue\":\"965867\"}},{\"attributeHeader\":{\"labelValue\":\"965868\",\"primaryLabelValue\":\"965868\"}},{\"attributeHeader\":{\"labelValue\":\"965870\",\"primaryLabelValue\":\"965870\"}},{\"attributeHeader\":{\"labelValue\":\"965871\",\"primaryLabelValue\":\"965871\"}},{\"attributeHeader\":{\"labelValue\":\"965872\",\"primaryLabelValue\":\"965872\"}},{\"attributeHeader\":{\"labelValue\":\"965873\",\"primaryLabelValue\":\"965873\"}},{\"attributeHeader\":{\"labelValue\":\"965874\",\"primaryLabelValue\":\"965874\"}},{\"attributeHeader\":{\"labelValue\":\"965876\",\"primaryLabelValue\":\"965876\"}},{\"attributeHeader\":{\"labelValue\":\"965877\",\"primaryLabelValue\":\"965877\"}},{\"attributeHeader\":{\"labelValue\":\"965878\",\"primaryLabelValue\":\"965878\"}},{\"attributeHeader\":{\"labelValue\":\"965880\",\"primaryLabelValue\":\"965880\"}},{\"attributeHeader\":{\"labelValue\":\"965882\",\"primaryLabelValue\":\"965882\"}},{\"attributeHeader\":{\"labelValue\":\"965883\",\"primaryLabelValue\":\"965883\"}},{\"attributeHeader\":{\"labelValue\":\"965884\",\"primaryLabelValue\":\"965884\"}},{\"attributeHeader\":{\"labelValue\":\"965885\",\"primaryLabelValue\":\"965885\"}},{\"attributeHeader\":{\"labelValue\":\"965888\",\"primaryLabelValue\":\"965888\"}},{\"attributeHeader\":{\"labelValue\":\"965890\",\"primaryLabelValue\":\"965890\"}},{\"attributeHeader\":{\"labelValue\":\"965891\",\"primaryLabelValue\":\"965891\"}},{\"attributeHeader\":{\"labelValue\":\"965892\",\"primaryLabelValue\":\"965892\"}},{\"attributeHeader\":{\"labelValue\":\"965894\",\"primaryLabelValue\":\"965894\"}},{\"attributeHeader\":{\"labelValue\":\"965895\",\"primaryLabelValue\":\"965895\"}},{\"attributeHeader\":{\"labelValue\":\"965896\",\"primaryLabelValue\":\"965896\"}},{\"attributeHeader\":{\"labelValue\":\"965898\",\"primaryLabelValue\":\"965898\"}},{\"attributeHeader\":{\"labelValue\":\"965900\",\"primaryLabelValue\":\"965900\"}},{\"attributeHeader\":{\"labelValue\":\"965901\",\"primaryLabelValue\":\"965901\"}},{\"attributeHeader\":{\"labelValue\":\"965902\",\"primaryLabelValue\":\"965902\"}},{\"attributeHeader\":{\"labelValue\":\"965903\",\"primaryLabelValue\":\"965903\"}},{\"attributeHeader\":{\"labelValue\":\"965904\",\"primaryLabelValue\":\"965904\"}},{\"attributeHeader\":{\"labelValue\":\"965905\",\"primaryLabelValue\":\"965905\"}},{\"attributeHeader\":{\"labelValue\":\"965906\",\"primaryLabelValue\":\"965906\"}},{\"attributeHeader\":{\"labelValue\":\"965908\",\"primaryLabelValue\":\"965908\"}},{\"attributeHeader\":{\"labelValue\":\"965909\",\"primaryLabelValue\":\"965909\"}},{\"attributeHeader\":{\"labelValue\":\"965910\",\"primaryLabelValue\":\"965910\"}},{\"attributeHeader\":{\"labelValue\":\"965912\",\"primaryLabelValue\":\"965912\"}},{\"attributeHeader\":{\"labelValue\":\"965914\",\"primaryLabelValue\":\"965914\"}},{\"attributeHeader\":{\"labelValue\":\"965916\",\"primaryLabelValue\":\"965916\"}},{\"attributeHeader\":{\"labelValue\":\"965917\",\"primaryLabelValue\":\"965917\"}},{\"attributeHeader\":{\"labelValue\":\"965919\",\"primaryLabelValue\":\"965919\"}},{\"attributeHeader\":{\"labelValue\":\"965922\",\"primaryLabelValue\":\"965922\"}},{\"attributeHeader\":{\"labelValue\":\"965923\",\"primaryLabelValue\":\"965923\"}},{\"attributeHeader\":{\"labelValue\":\"965925\",\"primaryLabelValue\":\"965925\"}},{\"attributeHeader\":{\"labelValue\":\"965926\",\"primaryLabelValue\":\"965926\"}},{\"attributeHeader\":{\"labelValue\":\"965927\",\"primaryLabelValue\":\"965927\"}},{\"attributeHeader\":{\"labelValue\":\"965928\",\"primaryLabelValue\":\"965928\"}},{\"attributeHeader\":{\"labelValue\":\"965929\",\"primaryLabelValue\":\"965929\"}},{\"attributeHeader\":{\"labelValue\":\"965930\",\"primaryLabelValue\":\"965930\"}},{\"attributeHeader\":{\"labelValue\":\"965931\",\"primaryLabelValue\":\"965931\"}},{\"attributeHeader\":{\"labelValue\":\"965932\",\"primaryLabelValue\":\"965932\"}},{\"attributeHeader\":{\"labelValue\":\"965934\",\"primaryLabelValue\":\"965934\"}},{\"attributeHeader\":{\"labelValue\":\"965935\",\"primaryLabelValue\":\"965935\"}},{\"attributeHeader\":{\"labelValue\":\"965936\",\"primaryLabelValue\":\"965936\"}},{\"attributeHeader\":{\"labelValue\":\"965937\",\"primaryLabelValue\":\"965937\"}},{\"attributeHeader\":{\"labelValue\":\"965938\",\"primaryLabelValue\":\"965938\"}},{\"attributeHeader\":{\"labelValue\":\"965939\",\"primaryLabelValue\":\"965939\"}},{\"attributeHeader\":{\"labelValue\":\"965941\",\"primaryLabelValue\":\"965941\"}},{\"attributeHeader\":{\"labelValue\":\"965942\",\"primaryLabelValue\":\"965942\"}},{\"attributeHeader\":{\"labelValue\":\"965944\",\"primaryLabelValue\":\"965944\"}},{\"attributeHeader\":{\"labelValue\":\"965946\",\"primaryLabelValue\":\"965946\"}},{\"attributeHeader\":{\"labelValue\":\"965948\",\"primaryLabelValue\":\"965948\"}},{\"attributeHeader\":{\"labelValue\":\"965950\",\"primaryLabelValue\":\"965950\"}},{\"attributeHeader\":{\"labelValue\":\"965951\",\"primaryLabelValue\":\"965951\"}},{\"attributeHeader\":{\"labelValue\":\"965953\",\"primaryLabelValue\":\"965953\"}},{\"attributeHeader\":{\"labelValue\":\"965955\",\"primaryLabelValue\":\"965955\"}},{\"attributeHeader\":{\"labelValue\":\"965956\",\"primaryLabelValue\":\"965956\"}},{\"attributeHeader\":{\"labelValue\":\"965958\",\"primaryLabelValue\":\"965958\"}},{\"attributeHeader\":{\"labelValue\":\"965960\",\"primaryLabelValue\":\"965960\"}},{\"attributeHeader\":{\"labelValue\":\"965961\",\"primaryLabelValue\":\"965961\"}},{\"attributeHeader\":{\"labelValue\":\"965963\",\"primaryLabelValue\":\"965963\"}},{\"attributeHeader\":{\"labelValue\":\"965964\",\"primaryLabelValue\":\"965964\"}},{\"attributeHeader\":{\"labelValue\":\"965965\",\"primaryLabelValue\":\"965965\"}},{\"attributeHeader\":{\"labelValue\":\"965966\",\"primaryLabelValue\":\"965966\"}},{\"attributeHeader\":{\"labelValue\":\"965968\",\"primaryLabelValue\":\"965968\"}},{\"attributeHeader\":{\"labelValue\":\"965969\",\"primaryLabelValue\":\"965969\"}},{\"attributeHeader\":{\"labelValue\":\"965970\",\"primaryLabelValue\":\"965970\"}},{\"attributeHeader\":{\"labelValue\":\"965971\",\"primaryLabelValue\":\"965971\"}},{\"attributeHeader\":{\"labelValue\":\"965972\",\"primaryLabelValue\":\"965972\"}},{\"attributeHeader\":{\"labelValue\":\"965973\",\"primaryLabelValue\":\"965973\"}},{\"attributeHeader\":{\"labelValue\":\"965974\",\"primaryLabelValue\":\"965974\"}},{\"attributeHeader\":{\"labelValue\":\"965976\",\"primaryLabelValue\":\"965976\"}},{\"attributeHeader\":{\"labelValue\":\"965977\",\"primaryLabelValue\":\"965977\"}},{\"attributeHeader\":{\"labelValue\":\"965979\",\"primaryLabelValue\":\"965979\"}},{\"attributeHeader\":{\"labelValue\":\"965981\",\"primaryLabelValue\":\"965981\"}},{\"attributeHeader\":{\"labelValue\":\"965982\",\"primaryLabelValue\":\"965982\"}},{\"attributeHeader\":{\"labelValue\":\"965983\",\"primaryLabelValue\":\"965983\"}},{\"attributeHeader\":{\"labelValue\":\"965985\",\"primaryLabelValue\":\"965985\"}},{\"attributeHeader\":{\"labelValue\":\"965986\",\"primaryLabelValue\":\"965986\"}},{\"attributeHeader\":{\"labelValue\":\"965987\",\"primaryLabelValue\":\"965987\"}},{\"attributeHeader\":{\"labelValue\":\"965989\",\"primaryLabelValue\":\"965989\"}},{\"attributeHeader\":{\"labelValue\":\"965991\",\"primaryLabelValue\":\"965991\"}},{\"attributeHeader\":{\"labelValue\":\"965993\",\"primaryLabelValue\":\"965993\"}},{\"attributeHeader\":{\"labelValue\":\"965994\",\"primaryLabelValue\":\"965994\"}},{\"attributeHeader\":{\"labelValue\":\"965995\",\"primaryLabelValue\":\"965995\"}},{\"attributeHeader\":{\"labelValue\":\"965996\",\"primaryLabelValue\":\"965996\"}},{\"attributeHeader\":{\"labelValue\":\"965997\",\"primaryLabelValue\":\"965997\"}},{\"attributeHeader\":{\"labelValue\":\"965999\",\"primaryLabelValue\":\"965999\"}},{\"attributeHeader\":{\"labelValue\":\"966001\",\"primaryLabelValue\":\"966001\"}},{\"attributeHeader\":{\"labelValue\":\"966002\",\"primaryLabelValue\":\"966002\"}},{\"attributeHeader\":{\"labelValue\":\"966004\",\"primaryLabelValue\":\"966004\"}},{\"attributeHeader\":{\"labelValue\":\"966005\",\"primaryLabelValue\":\"966005\"}},{\"attributeHeader\":{\"labelValue\":\"966007\",\"primaryLabelValue\":\"966007\"}},{\"attributeHeader\":{\"labelValue\":\"966009\",\"primaryLabelValue\":\"966009\"}},{\"attributeHeader\":{\"labelValue\":\"966010\",\"primaryLabelValue\":\"966010\"}},{\"attributeHeader\":{\"labelValue\":\"966011\",\"primaryLabelValue\":\"966011\"}},{\"attributeHeader\":{\"labelValue\":\"966013\",\"primaryLabelValue\":\"966013\"}},{\"attributeHeader\":{\"labelValue\":\"966016\",\"primaryLabelValue\":\"966016\"}},{\"attributeHeader\":{\"labelValue\":\"966017\",\"primaryLabelValue\":\"966017\"}},{\"attributeHeader\":{\"labelValue\":\"966019\",\"primaryLabelValue\":\"966019\"}},{\"attributeHeader\":{\"labelValue\":\"966020\",\"primaryLabelValue\":\"966020\"}},{\"attributeHeader\":{\"labelValue\":\"966021\",\"primaryLabelValue\":\"966021\"}},{\"attributeHeader\":{\"labelValue\":\"966023\",\"primaryLabelValue\":\"966023\"}},{\"attributeHeader\":{\"labelValue\":\"966025\",\"primaryLabelValue\":\"966025\"}},{\"attributeHeader\":{\"labelValue\":\"966026\",\"primaryLabelValue\":\"966026\"}},{\"attributeHeader\":{\"labelValue\":\"966027\",\"primaryLabelValue\":\"966027\"}},{\"attributeHeader\":{\"labelValue\":\"966028\",\"primaryLabelValue\":\"966028\"}},{\"attributeHeader\":{\"labelValue\":\"966029\",\"primaryLabelValue\":\"966029\"}},{\"attributeHeader\":{\"labelValue\":\"966030\",\"primaryLabelValue\":\"966030\"}},{\"attributeHeader\":{\"labelValue\":\"966031\",\"primaryLabelValue\":\"966031\"}},{\"attributeHeader\":{\"labelValue\":\"966033\",\"primaryLabelValue\":\"966033\"}},{\"attributeHeader\":{\"labelValue\":\"966034\",\"primaryLabelValue\":\"966034\"}},{\"attributeHeader\":{\"labelValue\":\"966035\",\"primaryLabelValue\":\"966035\"}},{\"attributeHeader\":{\"labelValue\":\"966036\",\"primaryLabelValue\":\"966036\"}},{\"attributeHeader\":{\"labelValue\":\"966037\",\"primaryLabelValue\":\"966037\"}},{\"attributeHeader\":{\"labelValue\":\"966039\",\"primaryLabelValue\":\"966039\"}},{\"attributeHeader\":{\"labelValue\":\"966041\",\"primaryLabelValue\":\"966041\"}},{\"attributeHeader\":{\"labelValue\":\"966043\",\"primaryLabelValue\":\"966043\"}},{\"attributeHeader\":{\"labelValue\":\"966045\",\"primaryLabelValue\":\"966045\"}},{\"attributeHeader\":{\"labelValue\":\"966047\",\"primaryLabelValue\":\"966047\"}},{\"attributeHeader\":{\"labelValue\":\"966049\",\"primaryLabelValue\":\"966049\"}},{\"attributeHeader\":{\"labelValue\":\"966050\",\"primaryLabelValue\":\"966050\"}},{\"attributeHeader\":{\"labelValue\":\"966051\",\"primaryLabelValue\":\"966051\"}},{\"attributeHeader\":{\"labelValue\":\"966053\",\"primaryLabelValue\":\"966053\"}},{\"attributeHeader\":{\"labelValue\":\"966055\",\"primaryLabelValue\":\"966055\"}},{\"attributeHeader\":{\"labelValue\":\"966057\",\"primaryLabelValue\":\"966057\"}},{\"attributeHeader\":{\"labelValue\":\"966059\",\"primaryLabelValue\":\"966059\"}},{\"attributeHeader\":{\"labelValue\":\"966061\",\"primaryLabelValue\":\"966061\"}},{\"attributeHeader\":{\"labelValue\":\"966062\",\"primaryLabelValue\":\"966062\"}},{\"attributeHeader\":{\"labelValue\":\"966063\",\"primaryLabelValue\":\"966063\"}},{\"attributeHeader\":{\"labelValue\":\"966064\",\"primaryLabelValue\":\"966064\"}},{\"attributeHeader\":{\"labelValue\":\"966066\",\"primaryLabelValue\":\"966066\"}},{\"attributeHeader\":{\"labelValue\":\"966067\",\"primaryLabelValue\":\"966067\"}},{\"attributeHeader\":{\"labelValue\":\"966068\",\"primaryLabelValue\":\"966068\"}},{\"attributeHeader\":{\"labelValue\":\"966069\",\"primaryLabelValue\":\"966069\"}},{\"attributeHeader\":{\"labelValue\":\"966071\",\"primaryLabelValue\":\"966071\"}},{\"attributeHeader\":{\"labelValue\":\"966072\",\"primaryLabelValue\":\"966072\"}},{\"attributeHeader\":{\"labelValue\":\"966074\",\"primaryLabelValue\":\"966074\"}},{\"attributeHeader\":{\"labelValue\":\"966075\",\"primaryLabelValue\":\"966075\"}},{\"attributeHeader\":{\"labelValue\":\"966077\",\"primaryLabelValue\":\"966077\"}},{\"attributeHeader\":{\"labelValue\":\"966079\",\"primaryLabelValue\":\"966079\"}},{\"attributeHeader\":{\"labelValue\":\"966083\",\"primaryLabelValue\":\"966083\"}},{\"attributeHeader\":{\"labelValue\":\"966084\",\"primaryLabelValue\":\"966084\"}},{\"attributeHeader\":{\"labelValue\":\"966085\",\"primaryLabelValue\":\"966085\"}},{\"attributeHeader\":{\"labelValue\":\"966086\",\"primaryLabelValue\":\"966086\"}},{\"attributeHeader\":{\"labelValue\":\"966087\",\"primaryLabelValue\":\"966087\"}},{\"attributeHeader\":{\"labelValue\":\"966088\",\"primaryLabelValue\":\"966088\"}},{\"attributeHeader\":{\"labelValue\":\"966089\",\"primaryLabelValue\":\"966089\"}},{\"attributeHeader\":{\"labelValue\":\"966090\",\"primaryLabelValue\":\"966090\"}},{\"attributeHeader\":{\"labelValue\":\"966091\",\"primaryLabelValue\":\"966091\"}},{\"attributeHeader\":{\"labelValue\":\"966092\",\"primaryLabelValue\":\"966092\"}},{\"attributeHeader\":{\"labelValue\":\"966094\",\"primaryLabelValue\":\"966094\"}},{\"attributeHeader\":{\"labelValue\":\"966095\",\"primaryLabelValue\":\"966095\"}},{\"attributeHeader\":{\"labelValue\":\"966097\",\"primaryLabelValue\":\"966097\"}},{\"attributeHeader\":{\"labelValue\":\"966099\",\"primaryLabelValue\":\"966099\"}},{\"attributeHeader\":{\"labelValue\":\"966101\",\"primaryLabelValue\":\"966101\"}},{\"attributeHeader\":{\"labelValue\":\"966102\",\"primaryLabelValue\":\"966102\"}},{\"attributeHeader\":{\"labelValue\":\"966104\",\"primaryLabelValue\":\"966104\"}},{\"attributeHeader\":{\"labelValue\":\"966105\",\"primaryLabelValue\":\"966105\"}},{\"attributeHeader\":{\"labelValue\":\"966106\",\"primaryLabelValue\":\"966106\"}},{\"attributeHeader\":{\"labelValue\":\"966107\",\"primaryLabelValue\":\"966107\"}},{\"attributeHeader\":{\"labelValue\":\"966109\",\"primaryLabelValue\":\"966109\"}},{\"attributeHeader\":{\"labelValue\":\"966110\",\"primaryLabelValue\":\"966110\"}},{\"attributeHeader\":{\"labelValue\":\"966111\",\"primaryLabelValue\":\"966111\"}},{\"attributeHeader\":{\"labelValue\":\"966113\",\"primaryLabelValue\":\"966113\"}},{\"attributeHeader\":{\"labelValue\":\"966114\",\"primaryLabelValue\":\"966114\"}},{\"attributeHeader\":{\"labelValue\":\"966115\",\"primaryLabelValue\":\"966115\"}},{\"attributeHeader\":{\"labelValue\":\"966116\",\"primaryLabelValue\":\"966116\"}},{\"attributeHeader\":{\"labelValue\":\"966118\",\"primaryLabelValue\":\"966118\"}},{\"attributeHeader\":{\"labelValue\":\"966119\",\"primaryLabelValue\":\"966119\"}},{\"attributeHeader\":{\"labelValue\":\"966120\",\"primaryLabelValue\":\"966120\"}},{\"attributeHeader\":{\"labelValue\":\"966122\",\"primaryLabelValue\":\"966122\"}},{\"attributeHeader\":{\"labelValue\":\"966123\",\"primaryLabelValue\":\"966123\"}},{\"attributeHeader\":{\"labelValue\":\"966125\",\"primaryLabelValue\":\"966125\"}},{\"attributeHeader\":{\"labelValue\":\"966126\",\"primaryLabelValue\":\"966126\"}},{\"attributeHeader\":{\"labelValue\":\"966128\",\"primaryLabelValue\":\"966128\"}},{\"attributeHeader\":{\"labelValue\":\"966129\",\"primaryLabelValue\":\"966129\"}},{\"attributeHeader\":{\"labelValue\":\"966130\",\"primaryLabelValue\":\"966130\"}},{\"attributeHeader\":{\"labelValue\":\"966131\",\"primaryLabelValue\":\"966131\"}},{\"attributeHeader\":{\"labelValue\":\"966132\",\"primaryLabelValue\":\"966132\"}},{\"attributeHeader\":{\"labelValue\":\"966133\",\"primaryLabelValue\":\"966133\"}},{\"attributeHeader\":{\"labelValue\":\"966134\",\"primaryLabelValue\":\"966134\"}},{\"attributeHeader\":{\"labelValue\":\"966136\",\"primaryLabelValue\":\"966136\"}},{\"attributeHeader\":{\"labelValue\":\"966137\",\"primaryLabelValue\":\"966137\"}},{\"attributeHeader\":{\"labelValue\":\"966139\",\"primaryLabelValue\":\"966139\"}},{\"attributeHeader\":{\"labelValue\":\"966140\",\"primaryLabelValue\":\"966140\"}},{\"attributeHeader\":{\"labelValue\":\"966141\",\"primaryLabelValue\":\"966141\"}},{\"attributeHeader\":{\"labelValue\":\"966142\",\"primaryLabelValue\":\"966142\"}},{\"attributeHeader\":{\"labelValue\":\"966143\",\"primaryLabelValue\":\"966143\"}},{\"attributeHeader\":{\"labelValue\":\"966144\",\"primaryLabelValue\":\"966144\"}},{\"attributeHeader\":{\"labelValue\":\"966145\",\"primaryLabelValue\":\"966145\"}},{\"attributeHeader\":{\"labelValue\":\"966147\",\"primaryLabelValue\":\"966147\"}},{\"attributeHeader\":{\"labelValue\":\"966148\",\"primaryLabelValue\":\"966148\"}},{\"attributeHeader\":{\"labelValue\":\"966150\",\"primaryLabelValue\":\"966150\"}},{\"attributeHeader\":{\"labelValue\":\"966151\",\"primaryLabelValue\":\"966151\"}},{\"attributeHeader\":{\"labelValue\":\"966153\",\"primaryLabelValue\":\"966153\"}},{\"attributeHeader\":{\"labelValue\":\"966154\",\"primaryLabelValue\":\"966154\"}},{\"attributeHeader\":{\"labelValue\":\"966156\",\"primaryLabelValue\":\"966156\"}},{\"attributeHeader\":{\"labelValue\":\"966157\",\"primaryLabelValue\":\"966157\"}},{\"attributeHeader\":{\"labelValue\":\"966159\",\"primaryLabelValue\":\"966159\"}},{\"attributeHeader\":{\"labelValue\":\"966160\",\"primaryLabelValue\":\"966160\"}},{\"attributeHeader\":{\"labelValue\":\"966162\",\"primaryLabelValue\":\"966162\"}},{\"attributeHeader\":{\"labelValue\":\"966164\",\"primaryLabelValue\":\"966164\"}},{\"attributeHeader\":{\"labelValue\":\"966165\",\"primaryLabelValue\":\"966165\"}},{\"attributeHeader\":{\"labelValue\":\"966166\",\"primaryLabelValue\":\"966166\"}},{\"attributeHeader\":{\"labelValue\":\"966167\",\"primaryLabelValue\":\"966167\"}},{\"attributeHeader\":{\"labelValue\":\"966168\",\"primaryLabelValue\":\"966168\"}},{\"attributeHeader\":{\"labelValue\":\"966169\",\"primaryLabelValue\":\"966169\"}},{\"attributeHeader\":{\"labelValue\":\"966170\",\"primaryLabelValue\":\"966170\"}},{\"attributeHeader\":{\"labelValue\":\"966171\",\"primaryLabelValue\":\"966171\"}},{\"attributeHeader\":{\"labelValue\":\"966173\",\"primaryLabelValue\":\"966173\"}},{\"attributeHeader\":{\"labelValue\":\"966174\",\"primaryLabelValue\":\"966174\"}},{\"attributeHeader\":{\"labelValue\":\"966176\",\"primaryLabelValue\":\"966176\"}},{\"attributeHeader\":{\"labelValue\":\"966177\",\"primaryLabelValue\":\"966177\"}},{\"attributeHeader\":{\"labelValue\":\"966178\",\"primaryLabelValue\":\"966178\"}},{\"attributeHeader\":{\"labelValue\":\"966179\",\"primaryLabelValue\":\"966179\"}},{\"attributeHeader\":{\"labelValue\":\"966181\",\"primaryLabelValue\":\"966181\"}},{\"attributeHeader\":{\"labelValue\":\"966182\",\"primaryLabelValue\":\"966182\"}},{\"attributeHeader\":{\"labelValue\":\"966183\",\"primaryLabelValue\":\"966183\"}},{\"attributeHeader\":{\"labelValue\":\"966184\",\"primaryLabelValue\":\"966184\"}},{\"attributeHeader\":{\"labelValue\":\"966185\",\"primaryLabelValue\":\"966185\"}},{\"attributeHeader\":{\"labelValue\":\"966187\",\"primaryLabelValue\":\"966187\"}},{\"attributeHeader\":{\"labelValue\":\"966188\",\"primaryLabelValue\":\"966188\"}},{\"attributeHeader\":{\"labelValue\":\"966189\",\"primaryLabelValue\":\"966189\"}},{\"attributeHeader\":{\"labelValue\":\"966190\",\"primaryLabelValue\":\"966190\"}},{\"attributeHeader\":{\"labelValue\":\"966191\",\"primaryLabelValue\":\"966191\"}},{\"attributeHeader\":{\"labelValue\":\"966193\",\"primaryLabelValue\":\"966193\"}},{\"attributeHeader\":{\"labelValue\":\"966194\",\"primaryLabelValue\":\"966194\"}},{\"attributeHeader\":{\"labelValue\":\"966195\",\"primaryLabelValue\":\"966195\"}},{\"attributeHeader\":{\"labelValue\":\"966196\",\"primaryLabelValue\":\"966196\"}},{\"attributeHeader\":{\"labelValue\":\"966198\",\"primaryLabelValue\":\"966198\"}},{\"attributeHeader\":{\"labelValue\":\"966199\",\"primaryLabelValue\":\"966199\"}},{\"attributeHeader\":{\"labelValue\":\"966200\",\"primaryLabelValue\":\"966200\"}},{\"attributeHeader\":{\"labelValue\":\"966201\",\"primaryLabelValue\":\"966201\"}},{\"attributeHeader\":{\"labelValue\":\"966203\",\"primaryLabelValue\":\"966203\"}},{\"attributeHeader\":{\"labelValue\":\"966204\",\"primaryLabelValue\":\"966204\"}},{\"attributeHeader\":{\"labelValue\":\"966206\",\"primaryLabelValue\":\"966206\"}},{\"attributeHeader\":{\"labelValue\":\"966207\",\"primaryLabelValue\":\"966207\"}},{\"attributeHeader\":{\"labelValue\":\"966209\",\"primaryLabelValue\":\"966209\"}},{\"attributeHeader\":{\"labelValue\":\"966211\",\"primaryLabelValue\":\"966211\"}},{\"attributeHeader\":{\"labelValue\":\"966212\",\"primaryLabelValue\":\"966212\"}},{\"attributeHeader\":{\"labelValue\":\"966214\",\"primaryLabelValue\":\"966214\"}},{\"attributeHeader\":{\"labelValue\":\"966215\",\"primaryLabelValue\":\"966215\"}},{\"attributeHeader\":{\"labelValue\":\"966217\",\"primaryLabelValue\":\"966217\"}},{\"attributeHeader\":{\"labelValue\":\"966222\",\"primaryLabelValue\":\"966222\"}},{\"attributeHeader\":{\"labelValue\":\"966223\",\"primaryLabelValue\":\"966223\"}},{\"attributeHeader\":{\"labelValue\":\"966224\",\"primaryLabelValue\":\"966224\"}},{\"attributeHeader\":{\"labelValue\":\"966225\",\"primaryLabelValue\":\"966225\"}},{\"attributeHeader\":{\"labelValue\":\"966226\",\"primaryLabelValue\":\"966226\"}},{\"attributeHeader\":{\"labelValue\":\"966227\",\"primaryLabelValue\":\"966227\"}},{\"attributeHeader\":{\"labelValue\":\"966229\",\"primaryLabelValue\":\"966229\"}},{\"attributeHeader\":{\"labelValue\":\"966230\",\"primaryLabelValue\":\"966230\"}},{\"attributeHeader\":{\"labelValue\":\"966231\",\"primaryLabelValue\":\"966231\"}},{\"attributeHeader\":{\"labelValue\":\"966233\",\"primaryLabelValue\":\"966233\"}},{\"attributeHeader\":{\"labelValue\":\"966234\",\"primaryLabelValue\":\"966234\"}},{\"attributeHeader\":{\"labelValue\":\"966235\",\"primaryLabelValue\":\"966235\"}},{\"attributeHeader\":{\"labelValue\":\"966237\",\"primaryLabelValue\":\"966237\"}},{\"attributeHeader\":{\"labelValue\":\"966239\",\"primaryLabelValue\":\"966239\"}},{\"attributeHeader\":{\"labelValue\":\"966242\",\"primaryLabelValue\":\"966242\"}},{\"attributeHeader\":{\"labelValue\":\"966243\",\"primaryLabelValue\":\"966243\"}},{\"attributeHeader\":{\"labelValue\":\"966244\",\"primaryLabelValue\":\"966244\"}},{\"attributeHeader\":{\"labelValue\":\"966245\",\"primaryLabelValue\":\"966245\"}},{\"attributeHeader\":{\"labelValue\":\"966246\",\"primaryLabelValue\":\"966246\"}},{\"attributeHeader\":{\"labelValue\":\"966247\",\"primaryLabelValue\":\"966247\"}},{\"attributeHeader\":{\"labelValue\":\"966248\",\"primaryLabelValue\":\"966248\"}},{\"attributeHeader\":{\"labelValue\":\"966249\",\"primaryLabelValue\":\"966249\"}},{\"attributeHeader\":{\"labelValue\":\"966250\",\"primaryLabelValue\":\"966250\"}},{\"attributeHeader\":{\"labelValue\":\"966251\",\"primaryLabelValue\":\"966251\"}},{\"attributeHeader\":{\"labelValue\":\"966253\",\"primaryLabelValue\":\"966253\"}},{\"attributeHeader\":{\"labelValue\":\"966255\",\"primaryLabelValue\":\"966255\"}},{\"attributeHeader\":{\"labelValue\":\"966256\",\"primaryLabelValue\":\"966256\"}},{\"attributeHeader\":{\"labelValue\":\"966257\",\"primaryLabelValue\":\"966257\"}},{\"attributeHeader\":{\"labelValue\":\"966258\",\"primaryLabelValue\":\"966258\"}},{\"attributeHeader\":{\"labelValue\":\"966259\",\"primaryLabelValue\":\"966259\"}},{\"attributeHeader\":{\"labelValue\":\"966261\",\"primaryLabelValue\":\"966261\"}},{\"attributeHeader\":{\"labelValue\":\"966262\",\"primaryLabelValue\":\"966262\"}},{\"attributeHeader\":{\"labelValue\":\"966263\",\"primaryLabelValue\":\"966263\"}},{\"attributeHeader\":{\"labelValue\":\"966264\",\"primaryLabelValue\":\"966264\"}},{\"attributeHeader\":{\"labelValue\":\"966265\",\"primaryLabelValue\":\"966265\"}},{\"attributeHeader\":{\"labelValue\":\"966266\",\"primaryLabelValue\":\"966266\"}},{\"attributeHeader\":{\"labelValue\":\"966267\",\"primaryLabelValue\":\"966267\"}},{\"attributeHeader\":{\"labelValue\":\"966268\",\"primaryLabelValue\":\"966268\"}},{\"attributeHeader\":{\"labelValue\":\"966269\",\"primaryLabelValue\":\"966269\"}},{\"attributeHeader\":{\"labelValue\":\"966270\",\"primaryLabelValue\":\"966270\"}},{\"attributeHeader\":{\"labelValue\":\"966271\",\"primaryLabelValue\":\"966271\"}},{\"attributeHeader\":{\"labelValue\":\"966272\",\"primaryLabelValue\":\"966272\"}},{\"attributeHeader\":{\"labelValue\":\"966273\",\"primaryLabelValue\":\"966273\"}},{\"attributeHeader\":{\"labelValue\":\"966275\",\"primaryLabelValue\":\"966275\"}},{\"attributeHeader\":{\"labelValue\":\"966276\",\"primaryLabelValue\":\"966276\"}},{\"attributeHeader\":{\"labelValue\":\"966278\",\"primaryLabelValue\":\"966278\"}},{\"attributeHeader\":{\"labelValue\":\"966279\",\"primaryLabelValue\":\"966279\"}},{\"attributeHeader\":{\"labelValue\":\"966280\",\"primaryLabelValue\":\"966280\"}},{\"attributeHeader\":{\"labelValue\":\"966281\",\"primaryLabelValue\":\"966281\"}},{\"attributeHeader\":{\"labelValue\":\"966282\",\"primaryLabelValue\":\"966282\"}},{\"attributeHeader\":{\"labelValue\":\"966283\",\"primaryLabelValue\":\"966283\"}},{\"attributeHeader\":{\"labelValue\":\"966284\",\"primaryLabelValue\":\"966284\"}},{\"attributeHeader\":{\"labelValue\":\"966285\",\"primaryLabelValue\":\"966285\"}},{\"attributeHeader\":{\"labelValue\":\"966286\",\"primaryLabelValue\":\"966286\"}},{\"attributeHeader\":{\"labelValue\":\"966287\",\"primaryLabelValue\":\"966287\"}},{\"attributeHeader\":{\"labelValue\":\"966288\",\"primaryLabelValue\":\"966288\"}},{\"attributeHeader\":{\"labelValue\":\"966289\",\"primaryLabelValue\":\"966289\"}},{\"attributeHeader\":{\"labelValue\":\"966290\",\"primaryLabelValue\":\"966290\"}},{\"attributeHeader\":{\"labelValue\":\"966291\",\"primaryLabelValue\":\"966291\"}},{\"attributeHeader\":{\"labelValue\":\"966293\",\"primaryLabelValue\":\"966293\"}},{\"attributeHeader\":{\"labelValue\":\"966295\",\"primaryLabelValue\":\"966295\"}},{\"attributeHeader\":{\"labelValue\":\"966297\",\"primaryLabelValue\":\"966297\"}},{\"attributeHeader\":{\"labelValue\":\"966298\",\"primaryLabelValue\":\"966298\"}},{\"attributeHeader\":{\"labelValue\":\"966299\",\"primaryLabelValue\":\"966299\"}},{\"attributeHeader\":{\"labelValue\":\"966300\",\"primaryLabelValue\":\"966300\"}},{\"attributeHeader\":{\"labelValue\":\"966302\",\"primaryLabelValue\":\"966302\"}},{\"attributeHeader\":{\"labelValue\":\"966303\",\"primaryLabelValue\":\"966303\"}},{\"attributeHeader\":{\"labelValue\":\"966305\",\"primaryLabelValue\":\"966305\"}},{\"attributeHeader\":{\"labelValue\":\"966307\",\"primaryLabelValue\":\"966307\"}},{\"attributeHeader\":{\"labelValue\":\"966308\",\"primaryLabelValue\":\"966308\"}},{\"attributeHeader\":{\"labelValue\":\"966309\",\"primaryLabelValue\":\"966309\"}},{\"attributeHeader\":{\"labelValue\":\"966310\",\"primaryLabelValue\":\"966310\"}},{\"attributeHeader\":{\"labelValue\":\"966311\",\"primaryLabelValue\":\"966311\"}},{\"attributeHeader\":{\"labelValue\":\"966312\",\"primaryLabelValue\":\"966312\"}},{\"attributeHeader\":{\"labelValue\":\"966313\",\"primaryLabelValue\":\"966313\"}},{\"attributeHeader\":{\"labelValue\":\"966314\",\"primaryLabelValue\":\"966314\"}},{\"attributeHeader\":{\"labelValue\":\"966315\",\"primaryLabelValue\":\"966315\"}},{\"attributeHeader\":{\"labelValue\":\"966316\",\"primaryLabelValue\":\"966316\"}},{\"attributeHeader\":{\"labelValue\":\"966317\",\"primaryLabelValue\":\"966317\"}},{\"attributeHeader\":{\"labelValue\":\"966318\",\"primaryLabelValue\":\"966318\"}},{\"attributeHeader\":{\"labelValue\":\"966319\",\"primaryLabelValue\":\"966319\"}},{\"attributeHeader\":{\"labelValue\":\"966320\",\"primaryLabelValue\":\"966320\"}},{\"attributeHeader\":{\"labelValue\":\"966321\",\"primaryLabelValue\":\"966321\"}},{\"attributeHeader\":{\"labelValue\":\"966322\",\"primaryLabelValue\":\"966322\"}},{\"attributeHeader\":{\"labelValue\":\"966323\",\"primaryLabelValue\":\"966323\"}},{\"attributeHeader\":{\"labelValue\":\"966324\",\"primaryLabelValue\":\"966324\"}},{\"attributeHeader\":{\"labelValue\":\"966325\",\"primaryLabelValue\":\"966325\"}},{\"attributeHeader\":{\"labelValue\":\"966326\",\"primaryLabelValue\":\"966326\"}},{\"attributeHeader\":{\"labelValue\":\"966327\",\"primaryLabelValue\":\"966327\"}},{\"attributeHeader\":{\"labelValue\":\"966328\",\"primaryLabelValue\":\"966328\"}},{\"attributeHeader\":{\"labelValue\":\"966329\",\"primaryLabelValue\":\"966329\"}},{\"attributeHeader\":{\"labelValue\":\"966330\",\"primaryLabelValue\":\"966330\"}},{\"attributeHeader\":{\"labelValue\":\"966331\",\"primaryLabelValue\":\"966331\"}},{\"attributeHeader\":{\"labelValue\":\"966332\",\"primaryLabelValue\":\"966332\"}},{\"attributeHeader\":{\"labelValue\":\"966333\",\"primaryLabelValue\":\"966333\"}},{\"attributeHeader\":{\"labelValue\":\"966335\",\"primaryLabelValue\":\"966335\"}},{\"attributeHeader\":{\"labelValue\":\"966336\",\"primaryLabelValue\":\"966336\"}},{\"attributeHeader\":{\"labelValue\":\"966337\",\"primaryLabelValue\":\"966337\"}},{\"attributeHeader\":{\"labelValue\":\"966339\",\"primaryLabelValue\":\"966339\"}},{\"attributeHeader\":{\"labelValue\":\"966340\",\"primaryLabelValue\":\"966340\"}},{\"attributeHeader\":{\"labelValue\":\"966341\",\"primaryLabelValue\":\"966341\"}},{\"attributeHeader\":{\"labelValue\":\"966342\",\"primaryLabelValue\":\"966342\"}},{\"attributeHeader\":{\"labelValue\":\"966343\",\"primaryLabelValue\":\"966343\"}},{\"attributeHeader\":{\"labelValue\":\"966344\",\"primaryLabelValue\":\"966344\"}},{\"attributeHeader\":{\"labelValue\":\"966346\",\"primaryLabelValue\":\"966346\"}},{\"attributeHeader\":{\"labelValue\":\"966348\",\"primaryLabelValue\":\"966348\"}},{\"attributeHeader\":{\"labelValue\":\"966349\",\"primaryLabelValue\":\"966349\"}},{\"attributeHeader\":{\"labelValue\":\"966350\",\"primaryLabelValue\":\"966350\"}},{\"attributeHeader\":{\"labelValue\":\"966351\",\"primaryLabelValue\":\"966351\"}},{\"attributeHeader\":{\"labelValue\":\"966352\",\"primaryLabelValue\":\"966352\"}},{\"attributeHeader\":{\"labelValue\":\"966353\",\"primaryLabelValue\":\"966353\"}},{\"attributeHeader\":{\"labelValue\":\"966354\",\"primaryLabelValue\":\"966354\"}},{\"attributeHeader\":{\"labelValue\":\"966355\",\"primaryLabelValue\":\"966355\"}},{\"attributeHeader\":{\"labelValue\":\"966356\",\"primaryLabelValue\":\"966356\"}},{\"attributeHeader\":{\"labelValue\":\"966359\",\"primaryLabelValue\":\"966359\"}},{\"attributeHeader\":{\"labelValue\":\"966360\",\"primaryLabelValue\":\"966360\"}},{\"attributeHeader\":{\"labelValue\":\"966361\",\"primaryLabelValue\":\"966361\"}},{\"attributeHeader\":{\"labelValue\":\"966362\",\"primaryLabelValue\":\"966362\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Hyland Software\",\"primaryLabelValue\":\"Hyland Software\"}},{\"attributeHeader\":{\"labelValue\":\"AMC Entertainment\",\"primaryLabelValue\":\"AMC Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"AC Lens\",\"primaryLabelValue\":\"AC Lens\"}},{\"attributeHeader\":{\"labelValue\":\"(add)ventures\",\"primaryLabelValue\":\"(add)ventures\"}},{\"attributeHeader\":{\"labelValue\":\"(mt) Media Temple\",\"primaryLabelValue\":\"(mt) Media Temple\"}},{\"attributeHeader\":{\"labelValue\":\"@properties\",\"primaryLabelValue\":\"@properties\"}},{\"attributeHeader\":{\"labelValue\":\"7 Medical Systems\",\"primaryLabelValue\":\"7 Medical Systems\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A White Orchid Wedding\",\"primaryLabelValue\":\"A White Orchid Wedding\"}},{\"attributeHeader\":{\"labelValue\":\"A&P Consulting Transportation Engineers\",\"primaryLabelValue\":\"A&P Consulting Transportation Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"A-1 Textiles\",\"primaryLabelValue\":\"A-1 Textiles\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron Oil Company\",\"primaryLabelValue\":\"Aaron Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease\",\"primaryLabelValue\":\"Aaron's Sales and Lease\"}},{\"attributeHeader\":{\"labelValue\":\"Abstract Displays\",\"primaryLabelValue\":\"Abstract Displays\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaris\",\"primaryLabelValue\":\"Acclaris\"}},{\"attributeHeader\":{\"labelValue\":\"Accounting Management Solutions\",\"primaryLabelValue\":\"Accounting Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ACFN Franchised\",\"primaryLabelValue\":\"ACFN Franchised\"}},{\"attributeHeader\":{\"labelValue\":\"Achatz Handmade Pie\",\"primaryLabelValue\":\"Achatz Handmade Pie\"}},{\"attributeHeader\":{\"labelValue\":\"Active Website\",\"primaryLabelValue\":\"Active Website\"}},{\"attributeHeader\":{\"labelValue\":\"Acumen Building Enterprise\",\"primaryLabelValue\":\"Acumen Building Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptik\",\"primaryLabelValue\":\"Adaptik\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Solutions\",\"primaryLabelValue\":\"Adaptive Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ADC Integrated Systems\",\"primaryLabelValue\":\"ADC Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"ADEX Manufacturing Technologies\",\"primaryLabelValue\":\"ADEX Manufacturing Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Adoresoft\",\"primaryLabelValue\":\"Adoresoft\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Brain Monitoring\",\"primaryLabelValue\":\"Advanced Brain Monitoring\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Educational Products\",\"primaryLabelValue\":\"Advanced Educational Products\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Global Communications\",\"primaryLabelValue\":\"Advanced Global Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Systems Engineering\",\"primaryLabelValue\":\"Advanced Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"AdvancedMD Software\",\"primaryLabelValue\":\"AdvancedMD Software\"}},{\"attributeHeader\":{\"labelValue\":\"AdvantageBridal.com\",\"primaryLabelValue\":\"AdvantageBridal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advent Global Solutions\",\"primaryLabelValue\":\"Advent Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Adventure Life\",\"primaryLabelValue\":\"Adventure Life\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Media\",\"primaryLabelValue\":\"Advocate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Networks\",\"primaryLabelValue\":\"Advocate Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aerial Services\",\"primaryLabelValue\":\"Aerial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aero Solutions\",\"primaryLabelValue\":\"Aero Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"agencyQ\",\"primaryLabelValue\":\"agencyQ\"}},{\"attributeHeader\":{\"labelValue\":\"Agile\",\"primaryLabelValue\":\"Agile\"}},{\"attributeHeader\":{\"labelValue\":\"AIMS Power\",\"primaryLabelValue\":\"AIMS Power\"}},{\"attributeHeader\":{\"labelValue\":\"Air Innovations\",\"primaryLabelValue\":\"Air Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Airgun Depot\",\"primaryLabelValue\":\"Airgun Depot\"}},{\"attributeHeader\":{\"labelValue\":\"AKASHA-US\",\"primaryLabelValue\":\"AKASHA-US\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Alexa's Angels\",\"primaryLabelValue\":\"Alexa's Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"A-Life Medical\",\"primaryLabelValue\":\"A-Life Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Alinean\",\"primaryLabelValue\":\"Alinean\"}},{\"attributeHeader\":{\"labelValue\":\"All Access Staging & Productions\",\"primaryLabelValue\":\"All Access Staging & Productions\"}},{\"attributeHeader\":{\"labelValue\":\"All Action Architectural Metal & Glass\",\"primaryLabelValue\":\"All Action Architectural Metal & Glass\"}},{\"attributeHeader\":{\"labelValue\":\"All American Rentals\",\"primaryLabelValue\":\"All American Rentals\"}},{\"attributeHeader\":{\"labelValue\":\"All Covered\",\"primaryLabelValue\":\"All Covered\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"allConnex\",\"primaryLabelValue\":\"allConnex\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryLabelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Benefit Group of Illinois\",\"primaryLabelValue\":\"Alliance Benefit Group of Illinois\"}},{\"attributeHeader\":{\"labelValue\":\"Allmenus.com\",\"primaryLabelValue\":\"Allmenus.com\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Alternate Solutions Homecare\",\"primaryLabelValue\":\"Alternate Solutions Homecare\"}},{\"attributeHeader\":{\"labelValue\":\"Altour\",\"primaryLabelValue\":\"Altour\"}},{\"attributeHeader\":{\"labelValue\":\"Ameresco\",\"primaryLabelValue\":\"Ameresco\"}},{\"attributeHeader\":{\"labelValue\":\"American Bancard\",\"primaryLabelValue\":\"American Bancard\"}},{\"attributeHeader\":{\"labelValue\":\"American Communications\",\"primaryLabelValue\":\"American Communications\"}},{\"attributeHeader\":{\"labelValue\":\"American Fire Restoration\",\"primaryLabelValue\":\"American Fire Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Reporting\",\"primaryLabelValue\":\"American Reporting\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"American Technologies\",\"primaryLabelValue\":\"American Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"American Tire Distributors\",\"primaryLabelValue\":\"American Tire Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"American Unit\",\"primaryLabelValue\":\"American Unit\"}},{\"attributeHeader\":{\"labelValue\":\"America's Window\",\"primaryLabelValue\":\"America's Window\"}},{\"attributeHeader\":{\"labelValue\":\"Amigo Mobility International\",\"primaryLabelValue\":\"Amigo Mobility International\"}},{\"attributeHeader\":{\"labelValue\":\"Amnet Technology Solutions\",\"primaryLabelValue\":\"Amnet Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Anago Cleaning Systems\",\"primaryLabelValue\":\"Anago Cleaning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ANDA Networks\",\"primaryLabelValue\":\"ANDA Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Annie's\",\"primaryLabelValue\":\"Annie's\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Answer Center America\",\"primaryLabelValue\":\"Answer Center America\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerLab\",\"primaryLabelValue\":\"AnswerLab\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerNet\",\"primaryLabelValue\":\"AnswerNet\"}},{\"attributeHeader\":{\"labelValue\":\"Anu Resources Unlimited\",\"primaryLabelValue\":\"Anu Resources Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Instruments\",\"primaryLabelValue\":\"Apex Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"APG\",\"primaryLabelValue\":\"APG\"}},{\"attributeHeader\":{\"labelValue\":\"Appia Communications\",\"primaryLabelValue\":\"Appia Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Trust\",\"primaryLabelValue\":\"Applied Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Apptis\",\"primaryLabelValue\":\"Apptis\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"AQIWO\",\"primaryLabelValue\":\"AQIWO\"}},{\"attributeHeader\":{\"labelValue\":\"Arbor-Nomics Turf\",\"primaryLabelValue\":\"Arbor-Nomics Turf\"}},{\"attributeHeader\":{\"labelValue\":\"Arborwell\",\"primaryLabelValue\":\"Arborwell\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaTech Systems\",\"primaryLabelValue\":\"ArcaTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Arent Fox\",\"primaryLabelValue\":\"Arent Fox\"}},{\"attributeHeader\":{\"labelValue\":\"ARES\",\"primaryLabelValue\":\"ARES\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Capital Management\",\"primaryLabelValue\":\"Argent Capital Management\"}},{\"attributeHeader\":{\"labelValue\":\"ARHD\",\"primaryLabelValue\":\"ARHD\"}},{\"attributeHeader\":{\"labelValue\":\"Aribex\",\"primaryLabelValue\":\"Aribex\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arnold & Porter\",\"primaryLabelValue\":\"Arnold & Porter\"}},{\"attributeHeader\":{\"labelValue\":\"ARRC Technology\",\"primaryLabelValue\":\"ARRC Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Art & Logic\",\"primaryLabelValue\":\"Art & Logic\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP\",\"primaryLabelValue\":\"ASAP\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP Towing & Storage\",\"primaryLabelValue\":\"ASAP Towing & Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend HR\",\"primaryLabelValue\":\"Ascend HR\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Technology\",\"primaryLabelValue\":\"Ascendant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ASI System Integration\",\"primaryLabelValue\":\"ASI System Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Exteriors\",\"primaryLabelValue\":\"Aspen Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"AspireHR\",\"primaryLabelValue\":\"AspireHR\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Atkinson-Baker\",\"primaryLabelValue\":\"Atkinson-Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"Attack!\",\"primaryLabelValue\":\"Attack!\"}},{\"attributeHeader\":{\"labelValue\":\"Audigy Group\",\"primaryLabelValue\":\"Audigy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Audio Messaging Solutions\",\"primaryLabelValue\":\"Audio Messaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Consulting\",\"primaryLabelValue\":\"Avalon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Document Services\",\"primaryLabelValue\":\"Avalon Document Services\"}},{\"attributeHeader\":{\"labelValue\":\"AvcomEast\",\"primaryLabelValue\":\"AvcomEast\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Technical Resources\",\"primaryLabelValue\":\"AVID Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"BackOffice Associates\",\"primaryLabelValue\":\"BackOffice Associates\"}},{\"attributeHeader\":{\"labelValue\":\"BACtrack Breathalyzers\",\"primaryLabelValue\":\"BACtrack Breathalyzers\"}},{\"attributeHeader\":{\"labelValue\":\"Baggallini\",\"primaryLabelValue\":\"Baggallini\"}},{\"attributeHeader\":{\"labelValue\":\"Bain Medina Bain\",\"primaryLabelValue\":\"Bain Medina Bain\"}},{\"attributeHeader\":{\"labelValue\":\"Baker & McKenzie\",\"primaryLabelValue\":\"Baker & McKenzie\"}},{\"attributeHeader\":{\"labelValue\":\"BakerRisk\",\"primaryLabelValue\":\"BakerRisk\"}},{\"attributeHeader\":{\"labelValue\":\"BalancePoint\",\"primaryLabelValue\":\"BalancePoint\"}},{\"attributeHeader\":{\"labelValue\":\"Bamco\",\"primaryLabelValue\":\"Bamco\"}},{\"attributeHeader\":{\"labelValue\":\"BandCon\",\"primaryLabelValue\":\"BandCon\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Barbara Lynch Gruppo\",\"primaryLabelValue\":\"Barbara Lynch Gruppo\"}},{\"attributeHeader\":{\"labelValue\":\"Barnes & Thornburg\",\"primaryLabelValue\":\"Barnes & Thornburg\"}},{\"attributeHeader\":{\"labelValue\":\"Bars + Tone\",\"primaryLabelValue\":\"Bars + Tone\"}},{\"attributeHeader\":{\"labelValue\":\"Bay Bridge Decision Technologies\",\"primaryLabelValue\":\"Bay Bridge Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Baystate Financial Services\",\"primaryLabelValue\":\"Baystate Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"BB&E \",\"primaryLabelValue\":\"BB&E \"}},{\"attributeHeader\":{\"labelValue\":\"BBH Solutions\",\"primaryLabelValue\":\"BBH Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BBS Technologies\",\"primaryLabelValue\":\"BBS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Application Services\",\"primaryLabelValue\":\"Beacon Application Services\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beau-coup Wedding Favors\",\"primaryLabelValue\":\"Beau-coup Wedding Favors\"}},{\"attributeHeader\":{\"labelValue\":\"BeavEx\",\"primaryLabelValue\":\"BeavEx\"}},{\"attributeHeader\":{\"labelValue\":\"Bell ATM Service\",\"primaryLabelValue\":\"Bell ATM Service\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Express Services\",\"primaryLabelValue\":\"Benefit Express Services\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bennett Landscape\",\"primaryLabelValue\":\"Bennett Landscape\"}},{\"attributeHeader\":{\"labelValue\":\"Berk Wiper Converting\",\"primaryLabelValue\":\"Berk Wiper Converting\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Beverly Prior Architects\",\"primaryLabelValue\":\"Beverly Prior Architects\"}},{\"attributeHeader\":{\"labelValue\":\"BeyondTrust\",\"primaryLabelValue\":\"BeyondTrust\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Billtrust\",\"primaryLabelValue\":\"Billtrust\"}},{\"attributeHeader\":{\"labelValue\":\"Binary Tree\",\"primaryLabelValue\":\"Binary Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Biocare Medical\",\"primaryLabelValue\":\"Biocare Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BirdDog Solutions\",\"primaryLabelValue\":\"BirdDog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"Blank Rome\",\"primaryLabelValue\":\"Blank Rome\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blu SKY Restoration Contractors\",\"primaryLabelValue\":\"Blu SKY Restoration Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Exhibits\",\"primaryLabelValue\":\"Blue Sky Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Factory\",\"primaryLabelValue\":\"Blue Sky Factory\"}},{\"attributeHeader\":{\"labelValue\":\"BlueCotton\",\"primaryLabelValue\":\"BlueCotton\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"BlueWave Computing\",\"primaryLabelValue\":\"BlueWave Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluewolf\",\"primaryLabelValue\":\"Bluewolf\"}},{\"attributeHeader\":{\"labelValue\":\"BOC International\",\"primaryLabelValue\":\"BOC International\"}},{\"attributeHeader\":{\"labelValue\":\"Body Central\",\"primaryLabelValue\":\"Body Central\"}},{\"attributeHeader\":{\"labelValue\":\"Bogota Latin Bistro\",\"primaryLabelValue\":\"Bogota Latin Bistro\"}},{\"attributeHeader\":{\"labelValue\":\"Boice.net\",\"primaryLabelValue\":\"Boice.net\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Health Economics\",\"primaryLabelValue\":\"Boston Health Economics\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BPA International\",\"primaryLabelValue\":\"BPA International\"}},{\"attributeHeader\":{\"labelValue\":\"Bradley Arant Boult Cummings\",\"primaryLabelValue\":\"Bradley Arant Boult Cummings\"}},{\"attributeHeader\":{\"labelValue\":\"Branco Enterprises\",\"primaryLabelValue\":\"Branco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Brandwise\",\"primaryLabelValue\":\"Brandwise\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Cork Human Capital\",\"primaryLabelValue\":\"Brian Cork Human Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Briteskies\",\"primaryLabelValue\":\"Briteskies\"}},{\"attributeHeader\":{\"labelValue\":\"BroadRiver\",\"primaryLabelValue\":\"BroadRiver\"}},{\"attributeHeader\":{\"labelValue\":\"BroadSoft\",\"primaryLabelValue\":\"BroadSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Bronto Software\",\"primaryLabelValue\":\"Bronto Software\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Brewery\",\"primaryLabelValue\":\"Brooklyn Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Medical Industries\",\"primaryLabelValue\":\"Brown Medical Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Exchange\",\"primaryLabelValue\":\"Buffalo Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Filter\",\"primaryLabelValue\":\"Buffalo Filter\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bullhorn\",\"primaryLabelValue\":\"Bullhorn\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Burwood Group\",\"primaryLabelValue\":\"Burwood Group\"}},{\"attributeHeader\":{\"labelValue\":\"Busey Group\",\"primaryLabelValue\":\"Busey Group\"}},{\"attributeHeader\":{\"labelValue\":\"BusinessOnLine\",\"primaryLabelValue\":\"BusinessOnLine\"}},{\"attributeHeader\":{\"labelValue\":\"C&G Technologies\",\"primaryLabelValue\":\"C&G Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C&S Companies\",\"primaryLabelValue\":\"C&S Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Manufacturing Business\",\"primaryLabelValue\":\"Cable Manufacturing Business\"}},{\"attributeHeader\":{\"labelValue\":\"Cahill Gordon & Reindel\",\"primaryLabelValue\":\"Cahill Gordon & Reindel\"}},{\"attributeHeader\":{\"labelValue\":\"Cali Bamboo\",\"primaryLabelValue\":\"Cali Bamboo\"}},{\"attributeHeader\":{\"labelValue\":\"Callis Communications\",\"primaryLabelValue\":\"Callis Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Cameta Camera\",\"primaryLabelValue\":\"Cameta Camera\"}},{\"attributeHeader\":{\"labelValue\":\"Candle Warmers Etc.\",\"primaryLabelValue\":\"Candle Warmers Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"CandyWarehouse.com\",\"primaryLabelValue\":\"CandyWarehouse.com\"}},{\"attributeHeader\":{\"labelValue\":\"Canyon Manufacturing Services\",\"primaryLabelValue\":\"Canyon Manufacturing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Hill Exxon\",\"primaryLabelValue\":\"Capitol Hill Exxon\"}},{\"attributeHeader\":{\"labelValue\":\"Capps Manufacturing\",\"primaryLabelValue\":\"Capps Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone Brokerage\",\"primaryLabelValue\":\"Capstone Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Caribbean Food Delights\",\"primaryLabelValue\":\"Caribbean Food Delights\"}},{\"attributeHeader\":{\"labelValue\":\"Carlson Timber Products\",\"primaryLabelValue\":\"Carlson Timber Products\"}},{\"attributeHeader\":{\"labelValue\":\"Carousel Industries\",\"primaryLabelValue\":\"Carousel Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Carrillo Business Technologies\",\"primaryLabelValue\":\"Carrillo Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CaseTech\",\"primaryLabelValue\":\"CaseTech\"}},{\"attributeHeader\":{\"labelValue\":\"Cash Cycle Solutions\",\"primaryLabelValue\":\"Cash Cycle Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Marketing\",\"primaryLabelValue\":\"Catapult Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Cayenne Creative Group\",\"primaryLabelValue\":\"Cayenne Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"CBT Nuggets\",\"primaryLabelValue\":\"CBT Nuggets\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Presentation Systems\",\"primaryLabelValue\":\"CCS Presentation Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CD+M Lighting Design Group\",\"primaryLabelValue\":\"CD+M Lighting Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Celerant Technology\",\"primaryLabelValue\":\"Celerant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Cellu Tissue Holdings\",\"primaryLabelValue\":\"Cellu Tissue Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy International Services\",\"primaryLabelValue\":\"Cenergy International Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cen-Med Enterprises\",\"primaryLabelValue\":\"Cen-Med Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Centerpoint Builders\",\"primaryLabelValue\":\"Centerpoint Builders\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"CentraComm Communications\",\"primaryLabelValue\":\"CentraComm Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Central Packaging\",\"primaryLabelValue\":\"Central Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Centric Consulting\",\"primaryLabelValue\":\"Centric Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"CenturyNovelty.com\",\"primaryLabelValue\":\"CenturyNovelty.com\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Aviation Services\",\"primaryLabelValue\":\"Certified Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Languages International\",\"primaryLabelValue\":\"Certified Languages International\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Restoration Drycleaning Network\",\"primaryLabelValue\":\"Certified Restoration Drycleaning Network\"}},{\"attributeHeader\":{\"labelValue\":\"CETRA Language Solutions\",\"primaryLabelValue\":\"CETRA Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman Kelly\",\"primaryLabelValue\":\"Chapman Kelly\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chen and Associates\",\"primaryLabelValue\":\"Chen and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Chicago Apartment Finders\",\"primaryLabelValue\":\"Chicago Apartment Finders\"}},{\"attributeHeader\":{\"labelValue\":\"Chocolate Maven Bakery & Cafe\",\"primaryLabelValue\":\"Chocolate Maven Bakery & Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"CHR Solutions\",\"primaryLabelValue\":\"CHR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chutes International\",\"primaryLabelValue\":\"Chutes International\"}},{\"attributeHeader\":{\"labelValue\":\"Citrin Cooperman\",\"primaryLabelValue\":\"Citrin Cooperman\"}},{\"attributeHeader\":{\"labelValue\":\"City Wide Maintenance of Colorado\",\"primaryLabelValue\":\"City Wide Maintenance of Colorado\"}},{\"attributeHeader\":{\"labelValue\":\"CKR Interactive\",\"primaryLabelValue\":\"CKR Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Resource Group\",\"primaryLabelValue\":\"Clarity Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Classified Ventures\",\"primaryLabelValue\":\"Classified Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clean Air Gardening\",\"primaryLabelValue\":\"Clean Air Gardening\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"Clearstar.net\",\"primaryLabelValue\":\"Clearstar.net\"}},{\"attributeHeader\":{\"labelValue\":\"Cleveland Medical Devices\",\"primaryLabelValue\":\"Cleveland Medical Devices\"}},{\"attributeHeader\":{\"labelValue\":\"ClickAway Computers & Networking\",\"primaryLabelValue\":\"ClickAway Computers & Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Clima-Tech\",\"primaryLabelValue\":\"Clima-Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Research Management\",\"primaryLabelValue\":\"Clinical Research Management\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resource Network\",\"primaryLabelValue\":\"Clinical Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"Clover Technologies Group\",\"primaryLabelValue\":\"Clover Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"CME Associates\",\"primaryLabelValue\":\"CME Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CMS Forex\",\"primaryLabelValue\":\"CMS Forex\"}},{\"attributeHeader\":{\"labelValue\":\"COCC\",\"primaryLabelValue\":\"COCC\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"CoffeeForLess.com\",\"primaryLabelValue\":\"CoffeeForLess.com\"}},{\"attributeHeader\":{\"labelValue\":\"CognitiveData\",\"primaryLabelValue\":\"CognitiveData\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen & Company\",\"primaryLabelValue\":\"Cohen & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cohn Marketing\",\"primaryLabelValue\":\"Cohn Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Keepers\",\"primaryLabelValue\":\"Comfort Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"Communication Company of South Bend\",\"primaryLabelValue\":\"Communication Company of South Bend\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Community Waste Disposal\",\"primaryLabelValue\":\"Community Waste Disposal\"}},{\"attributeHeader\":{\"labelValue\":\"Comm-Works\",\"primaryLabelValue\":\"Comm-Works\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Book & Media Supply\",\"primaryLabelValue\":\"Complete Book & Media Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Resources\",\"primaryLabelValue\":\"Complete Pharmacy Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"CompSource\",\"primaryLabelValue\":\"CompSource\"}},{\"attributeHeader\":{\"labelValue\":\"CompuTech Systems\",\"primaryLabelValue\":\"CompuTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Aided Technology\",\"primaryLabelValue\":\"Computer Aided Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Computing System Innovations\",\"primaryLabelValue\":\"Computing System Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"ConceptSolutions\",\"primaryLabelValue\":\"ConceptSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Engineering Group\",\"primaryLabelValue\":\"Concord Engineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"ConnectWise\",\"primaryLabelValue\":\"ConnectWise\"}},{\"attributeHeader\":{\"labelValue\":\"Connextions\",\"primaryLabelValue\":\"Connextions\"}},{\"attributeHeader\":{\"labelValue\":\"Connolly\",\"primaryLabelValue\":\"Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Conservice\",\"primaryLabelValue\":\"Conservice\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Container\",\"primaryLabelValue\":\"Consolidated Container\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Office Systems\",\"primaryLabelValue\":\"Consolidated Office Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Consona\",\"primaryLabelValue\":\"Consona\"}},{\"attributeHeader\":{\"labelValue\":\"Constellation Software Engineering\",\"primaryLabelValue\":\"Constellation Software Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Construction Coordinators\",\"primaryLabelValue\":\"Construction Coordinators\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Cellular\",\"primaryLabelValue\":\"Consumer Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Contingent Network Services\",\"primaryLabelValue\":\"Contingent Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Continuant\",\"primaryLabelValue\":\"Continuant\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Consulting Group\",\"primaryLabelValue\":\"Convergence Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Marketing\",\"primaryLabelValue\":\"Convergence Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corgan Associates\",\"primaryLabelValue\":\"Corgan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Appraisal Services\",\"primaryLabelValue\":\"Cornerstone Appraisal Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Detention Products\",\"primaryLabelValue\":\"Cornerstone Detention Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Information Technologies\",\"primaryLabelValue\":\"Cornerstone Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Staffing Solutions\",\"primaryLabelValue\":\"CornerStone Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate IT Solutions\",\"primaryLabelValue\":\"Corporate IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Network Services\",\"primaryLabelValue\":\"Corporate Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Results\",\"primaryLabelValue\":\"Corporate Results\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covington & Burling\",\"primaryLabelValue\":\"Covington & Burling\"}},{\"attributeHeader\":{\"labelValue\":\"Cozen O'Connor\",\"primaryLabelValue\":\"Cozen O'Connor\"}},{\"attributeHeader\":{\"labelValue\":\"CPI Solutions\",\"primaryLabelValue\":\"CPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"CR Software\",\"primaryLabelValue\":\"CR Software\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Criterion Systems\",\"primaryLabelValue\":\"Criterion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Crowley Marine\",\"primaryLabelValue\":\"Crowley Marine\"}},{\"attributeHeader\":{\"labelValue\":\"CS Technology\",\"primaryLabelValue\":\"CS Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CSI Electrical Contractors\",\"primaryLabelValue\":\"CSI Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"cSubs\",\"primaryLabelValue\":\"cSubs\"}},{\"attributeHeader\":{\"labelValue\":\"CTI Resource Management Services\",\"primaryLabelValue\":\"CTI Resource Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cufflinks.com\",\"primaryLabelValue\":\"Cufflinks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cuisine Unlimited Catering & Special Events\",\"primaryLabelValue\":\"Cuisine Unlimited Catering & Special Events\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Culmen International\",\"primaryLabelValue\":\"Culmen International\"}},{\"attributeHeader\":{\"labelValue\":\"Culpepper & Associates Security Services\",\"primaryLabelValue\":\"Culpepper & Associates Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Customized Energy Solutions\",\"primaryLabelValue\":\"Customized Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cyber Switching\",\"primaryLabelValue\":\"Cyber Switching\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cyrus Innovation\",\"primaryLabelValue\":\"Cyrus Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"D. Honore\",\"primaryLabelValue\":\"D. Honore\"}},{\"attributeHeader\":{\"labelValue\":\"Dancing Deer Baking Company\",\"primaryLabelValue\":\"Dancing Deer Baking Company\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Innovations\",\"primaryLabelValue\":\"Data Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"DataArt\",\"primaryLabelValue\":\"DataArt\"}},{\"attributeHeader\":{\"labelValue\":\"DataPipe\",\"primaryLabelValue\":\"DataPipe\"}},{\"attributeHeader\":{\"labelValue\":\"DataServ\",\"primaryLabelValue\":\"DataServ\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Polk & Wardwell\",\"primaryLabelValue\":\"Davis Polk & Wardwell\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Trucking\",\"primaryLabelValue\":\"Davis Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean & Draper Insurance Agency\",\"primaryLabelValue\":\"Dean & Draper Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DeSantis Breindel\",\"primaryLabelValue\":\"DeSantis Breindel\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dickstein Shapiro\",\"primaryLabelValue\":\"Dickstein Shapiro\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Blue Global\",\"primaryLabelValue\":\"Digital Blue Global\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Intelligence Systems\",\"primaryLabelValue\":\"Digital Intelligence Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Incorporation\",\"primaryLabelValue\":\"Direct Incorporation\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Two-Way Radio\",\"primaryLabelValue\":\"Discount Two-Way Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Discountmugs.com\",\"primaryLabelValue\":\"Discountmugs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Industrial Staffing\",\"primaryLabelValue\":\"Diversified Industrial Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"DMD Data Systems\",\"primaryLabelValue\":\"DMD Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Doctor Diabetic Supply\",\"primaryLabelValue\":\"Doctor Diabetic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Docutrend Imaging Solutions\",\"primaryLabelValue\":\"Docutrend Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dodge Communications\",\"primaryLabelValue\":\"Dodge Communications\"}},{\"attributeHeader\":{\"labelValue\":\"D'Onofrio & Son\",\"primaryLabelValue\":\"D'Onofrio & Son\"}},{\"attributeHeader\":{\"labelValue\":\"DOOR3 Business Applications\",\"primaryLabelValue\":\"DOOR3 Business Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Doormation\",\"primaryLabelValue\":\"Doormation\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Consulting & Computer Services\",\"primaryLabelValue\":\"Douglas Consulting & Computer Services\"}},{\"attributeHeader\":{\"labelValue\":\"dreamGEAR\",\"primaryLabelValue\":\"dreamGEAR\"}},{\"attributeHeader\":{\"labelValue\":\"Drilling Info\",\"primaryLabelValue\":\"Drilling Info\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Duo Consulting\",\"primaryLabelValue\":\"Duo Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"E.C. Ortiz & Co.\",\"primaryLabelValue\":\"E.C. Ortiz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eastbiz.com\",\"primaryLabelValue\":\"Eastbiz.com\"}},{\"attributeHeader\":{\"labelValue\":\"e-BI International\",\"primaryLabelValue\":\"e-BI International\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eClinicalWorks\",\"primaryLabelValue\":\"eClinicalWorks\"}},{\"attributeHeader\":{\"labelValue\":\"eCoast Sales Solutions\",\"primaryLabelValue\":\"eCoast Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Economic Modeling Specialists\",\"primaryLabelValue\":\"Economic Modeling Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"EdgeRock Technology Partners\",\"primaryLabelValue\":\"EdgeRock Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Edgetech I.G.\",\"primaryLabelValue\":\"Edgetech I.G.\"}},{\"attributeHeader\":{\"labelValue\":\"Edify Technologies\",\"primaryLabelValue\":\"Edify Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"eDimensional\",\"primaryLabelValue\":\"eDimensional\"}},{\"attributeHeader\":{\"labelValue\":\"EDTS\",\"primaryLabelValue\":\"EDTS\"}},{\"attributeHeader\":{\"labelValue\":\"Education Management Solutions\",\"primaryLabelValue\":\"Education Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Services of America\",\"primaryLabelValue\":\"Educational Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"Edwards Project Solutions\",\"primaryLabelValue\":\"Edwards Project Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eeBoo\",\"primaryLabelValue\":\"eeBoo\"}},{\"attributeHeader\":{\"labelValue\":\"eFashionSolutions\",\"primaryLabelValue\":\"eFashionSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobal\",\"primaryLabelValue\":\"eGlobal\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"EIS Office Solutions\",\"primaryLabelValue\":\"EIS Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ektron\",\"primaryLabelValue\":\"Ektron\"}},{\"attributeHeader\":{\"labelValue\":\"El Camino Charter Lines\",\"primaryLabelValue\":\"El Camino Charter Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Elastec\",\"primaryLabelValue\":\"Elastec\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Element Fusion\",\"primaryLabelValue\":\"Element Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Elite CME\",\"primaryLabelValue\":\"Elite CME\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eloqua\",\"primaryLabelValue\":\"Eloqua\"}},{\"attributeHeader\":{\"labelValue\":\"EMI - Online Research Solutions\",\"primaryLabelValue\":\"EMI - Online Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emmi Solutions\",\"primaryLabelValue\":\"Emmi Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Central\",\"primaryLabelValue\":\"Energy Central\"}},{\"attributeHeader\":{\"labelValue\":\"EnerSys\",\"primaryLabelValue\":\"EnerSys\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy Life Foods\",\"primaryLabelValue\":\"Enjoy Life Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy The City North\",\"primaryLabelValue\":\"Enjoy The City North\"}},{\"attributeHeader\":{\"labelValue\":\"Enroute Computer Solutions\",\"primaryLabelValue\":\"Enroute Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Entec Services\",\"primaryLabelValue\":\"Entec Services\"}},{\"attributeHeader\":{\"labelValue\":\"Entellects\",\"primaryLabelValue\":\"Entellects\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Management Specialists\",\"primaryLabelValue\":\"Environmental Management Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Products & Services of Vermont\",\"primaryLabelValue\":\"Environmental Products & Services of Vermont\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Standards\",\"primaryLabelValue\":\"Environmental Standards\"}},{\"attributeHeader\":{\"labelValue\":\"ePath Learning\",\"primaryLabelValue\":\"ePath Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Ephox\",\"primaryLabelValue\":\"Ephox\"}},{\"attributeHeader\":{\"labelValue\":\"ePlan Services\",\"primaryLabelValue\":\"ePlan Services\"}},{\"attributeHeader\":{\"labelValue\":\"Equilar\",\"primaryLabelValue\":\"Equilar\"}},{\"attributeHeader\":{\"labelValue\":\"eSolutions\",\"primaryLabelValue\":\"eSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"E-Solutions\",\"primaryLabelValue\":\"E-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Euclid Technology\",\"primaryLabelValue\":\"Euclid Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Event Architects\",\"primaryLabelValue\":\"Event Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Everglades Technologies\",\"primaryLabelValue\":\"Everglades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EverStaff\",\"primaryLabelValue\":\"EverStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Evocative\",\"primaryLabelValue\":\"Evocative\"}},{\"attributeHeader\":{\"labelValue\":\"Evoke Technologies\",\"primaryLabelValue\":\"Evoke Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Exhibits, A Swords Company\",\"primaryLabelValue\":\"Excalibur Exhibits, A Swords Company\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Technology\",\"primaryLabelValue\":\"Excalibur Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Excelsior Defense\",\"primaryLabelValue\":\"Excelsior Defense\"}},{\"attributeHeader\":{\"labelValue\":\"Exigen Services\",\"primaryLabelValue\":\"Exigen Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Express Travel\",\"primaryLabelValue\":\"Express Travel\"}},{\"attributeHeader\":{\"labelValue\":\"Extreme Pizza\",\"primaryLabelValue\":\"Extreme Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"eXude Benefits Group\",\"primaryLabelValue\":\"eXude Benefits Group\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Faegre & Benson\",\"primaryLabelValue\":\"Faegre & Benson\"}},{\"attributeHeader\":{\"labelValue\":\"Fairway Market\",\"primaryLabelValue\":\"Fairway Market\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Farwest Sports\",\"primaryLabelValue\":\"Farwest Sports\"}},{\"attributeHeader\":{\"labelValue\":\"fassforward consulting group\",\"primaryLabelValue\":\"fassforward consulting group\"}},{\"attributeHeader\":{\"labelValue\":\"Faultless Laundry Company\",\"primaryLabelValue\":\"Faultless Laundry Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Information Technologies\",\"primaryLabelValue\":\"Federated Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fedtech\",\"primaryLabelValue\":\"Fedtech\"}},{\"attributeHeader\":{\"labelValue\":\"Fenwick & West\",\"primaryLabelValue\":\"Fenwick & West\"}},{\"attributeHeader\":{\"labelValue\":\"Ferris Coffee & Nut\",\"primaryLabelValue\":\"Ferris Coffee & Nut\"}},{\"attributeHeader\":{\"labelValue\":\"FI Consulting\",\"primaryLabelValue\":\"FI Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelitone Logistics\",\"primaryLabelValue\":\"Fidelitone Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Fifth Avenue Restaurant Group\",\"primaryLabelValue\":\"Fifth Avenue Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Investments\",\"primaryLabelValue\":\"Financial Investments\"}},{\"attributeHeader\":{\"labelValue\":\"Find Great People\",\"primaryLabelValue\":\"Find Great People\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Finger Lakes Business Services\",\"primaryLabelValue\":\"Finger Lakes Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Firespring\",\"primaryLabelValue\":\"Firespring\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"First In Service Travel\",\"primaryLabelValue\":\"First In Service Travel\"}},{\"attributeHeader\":{\"labelValue\":\"First Interstate BancSystem\",\"primaryLabelValue\":\"First Interstate BancSystem\"}},{\"attributeHeader\":{\"labelValue\":\"First Tech Direct\",\"primaryLabelValue\":\"First Tech Direct\"}},{\"attributeHeader\":{\"labelValue\":\"First Western Financial\",\"primaryLabelValue\":\"First Western Financial\"}},{\"attributeHeader\":{\"labelValue\":\"firstPRO Inc.\",\"primaryLabelValue\":\"firstPRO Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher Tank Company\",\"primaryLabelValue\":\"Fisher Tank Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher/Unitech\",\"primaryLabelValue\":\"Fisher/Unitech\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Together Holdings\",\"primaryLabelValue\":\"Fitness Together Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Feet\",\"primaryLabelValue\":\"Fleet Feet\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Food Group\",\"primaryLabelValue\":\"Flying Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Foodguys\",\"primaryLabelValue\":\"Foodguys\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Fox Rothschild\",\"primaryLabelValue\":\"Fox Rothschild\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"Friedman\",\"primaryLabelValue\":\"Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"Frontline International\",\"primaryLabelValue\":\"Frontline International\"}},{\"attributeHeader\":{\"labelValue\":\"Frost Brown Todd\",\"primaryLabelValue\":\"Frost Brown Todd\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"Fusco Personnel\",\"primaryLabelValue\":\"Fusco Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Services\",\"primaryLabelValue\":\"Futura Services\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"FXFOWLE Architects\",\"primaryLabelValue\":\"FXFOWLE Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gaithersburg Air Conditioning & Heating\",\"primaryLabelValue\":\"Gaithersburg Air Conditioning & Heating\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Galison Mudpuppy\",\"primaryLabelValue\":\"Galison Mudpuppy\"}},{\"attributeHeader\":{\"labelValue\":\"GAP Solutions\",\"primaryLabelValue\":\"GAP Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Garner Holt Productions\",\"primaryLabelValue\":\"Garner Holt Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Gas Depot Oil\",\"primaryLabelValue\":\"Gas Depot Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Gatski Commercial Real Estate Services\",\"primaryLabelValue\":\"Gatski Commercial Real Estate Services\"}},{\"attributeHeader\":{\"labelValue\":\"GB Investments\",\"primaryLabelValue\":\"GB Investments\"}},{\"attributeHeader\":{\"labelValue\":\"GDB International\",\"primaryLabelValue\":\"GDB International\"}},{\"attributeHeader\":{\"labelValue\":\"Geary Interactive\",\"primaryLabelValue\":\"Geary Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GelScrubs\",\"primaryLabelValue\":\"GelScrubs\"}},{\"attributeHeader\":{\"labelValue\":\"Geneca\",\"primaryLabelValue\":\"Geneca\"}},{\"attributeHeader\":{\"labelValue\":\"General Oil\",\"primaryLabelValue\":\"General Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GeoLearning\",\"primaryLabelValue\":\"GeoLearning\"}},{\"attributeHeader\":{\"labelValue\":\"Geonetric\",\"primaryLabelValue\":\"Geonetric\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GH2 Architects\",\"primaryLabelValue\":\"GH2 Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gibbons\",\"primaryLabelValue\":\"Gibbons\"}},{\"attributeHeader\":{\"labelValue\":\"Gibson, Dunn & Crutcher\",\"primaryLabelValue\":\"Gibson, Dunn & Crutcher\"}},{\"attributeHeader\":{\"labelValue\":\"Gilsbar\",\"primaryLabelValue\":\"Gilsbar\"}},{\"attributeHeader\":{\"labelValue\":\"Ginter Electrical Contractors\",\"primaryLabelValue\":\"Ginter Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Systems\",\"primaryLabelValue\":\"Gold Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"GolfTEC Enterprises\",\"primaryLabelValue\":\"GolfTEC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwin Procter\",\"primaryLabelValue\":\"Goodwin Procter\"}},{\"attributeHeader\":{\"labelValue\":\"Gordon & Rees\",\"primaryLabelValue\":\"Gordon & Rees\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Governor's Distributors\",\"primaryLabelValue\":\"Governor's Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"Graham Behavioral Services\",\"primaryLabelValue\":\"Graham Behavioral Services\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Harvest Franchising\",\"primaryLabelValue\":\"Great Harvest Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Home Health & Hospice\",\"primaryLabelValue\":\"Great Lakes Home Health & Hospice\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Wire & Cable\",\"primaryLabelValue\":\"Great Lakes Wire & Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Green Dot\",\"primaryLabelValue\":\"Green Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Brand Strategy\",\"primaryLabelValue\":\"Greenberg Brand Strategy\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Traurig\",\"primaryLabelValue\":\"Greenberg Traurig\"}},{\"attributeHeader\":{\"labelValue\":\"Greene Resources\",\"primaryLabelValue\":\"Greene Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Greenstein, Rogoff, Olsen & Co.\",\"primaryLabelValue\":\"Greenstein, Rogoff, Olsen & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Medical Technologies\",\"primaryLabelValue\":\"Greenway Medical Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Transportation Services\",\"primaryLabelValue\":\"Greenway Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Group DCA\",\"primaryLabelValue\":\"Group DCA\"}},{\"attributeHeader\":{\"labelValue\":\"Group Health Solutions\",\"primaryLabelValue\":\"Group Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Group Mobile\",\"primaryLabelValue\":\"Group Mobile\"}},{\"attributeHeader\":{\"labelValue\":\"Grove City Dental\",\"primaryLabelValue\":\"Grove City Dental\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GStek\",\"primaryLabelValue\":\"GStek\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"GTN Technical Staffing\",\"primaryLabelValue\":\"GTN Technical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Guaranteed Rate\",\"primaryLabelValue\":\"Guaranteed Rate\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Financial Group\",\"primaryLabelValue\":\"Guidant Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Partners\",\"primaryLabelValue\":\"Guidant Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"GWI\",\"primaryLabelValue\":\"GWI\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Steel Fabricators\",\"primaryLabelValue\":\"H&H Steel Fabricators\"}},{\"attributeHeader\":{\"labelValue\":\"Haig Service\",\"primaryLabelValue\":\"Haig Service\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Construction\",\"primaryLabelValue\":\"Hanson Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harmony Healthcare International\",\"primaryLabelValue\":\"Harmony Healthcare International\"}},{\"attributeHeader\":{\"labelValue\":\"Harpoon Brewery\",\"primaryLabelValue\":\"Harpoon Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Hawkeye\",\"primaryLabelValue\":\"Hawkeye\"}},{\"attributeHeader\":{\"labelValue\":\"HCA\",\"primaryLabelValue\":\"HCA\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"HealthPort Technologies\",\"primaryLabelValue\":\"HealthPort Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HealthTrans\",\"primaryLabelValue\":\"HealthTrans\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"Hellerman Baretz Communications\",\"primaryLabelValue\":\"Hellerman Baretz Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Henderson Engineers\",\"primaryLabelValue\":\"Henderson Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hershey Systems\",\"primaryLabelValue\":\"Hershey Systems\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hinshaw & Culbertson\",\"primaryLabelValue\":\"Hinshaw & Culbertson\"}},{\"attributeHeader\":{\"labelValue\":\"Home Warranty of America\",\"primaryLabelValue\":\"Home Warranty of America\"}},{\"attributeHeader\":{\"labelValue\":\"Honest Tea\",\"primaryLabelValue\":\"Honest Tea\"}},{\"attributeHeader\":{\"labelValue\":\"Honigman Miller Schwartz and Cohn\",\"primaryLabelValue\":\"Honigman Miller Schwartz and Cohn\"}},{\"attributeHeader\":{\"labelValue\":\"Hooven-Dayton\",\"primaryLabelValue\":\"Hooven-Dayton\"}},{\"attributeHeader\":{\"labelValue\":\"Hornblower Marine Services\",\"primaryLabelValue\":\"Hornblower Marine Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hospital Solutions\",\"primaryLabelValue\":\"Hospital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Housing Helpers\",\"primaryLabelValue\":\"Housing Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"HRsmart\",\"primaryLabelValue\":\"HRsmart\"}},{\"attributeHeader\":{\"labelValue\":\"Huberty & Associates\",\"primaryLabelValue\":\"Huberty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hughes Hubbard & Reed\",\"primaryLabelValue\":\"Hughes Hubbard & Reed\"}},{\"attributeHeader\":{\"labelValue\":\"I.O. Metro\",\"primaryLabelValue\":\"I.O. Metro\"}},{\"attributeHeader\":{\"labelValue\":\"IBBS\",\"primaryLabelValue\":\"IBBS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Specialized Transport\",\"primaryLabelValue\":\"ICON Specialized Transport\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ICR\",\"primaryLabelValue\":\"ICR\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"ICSN\",\"primaryLabelValue\":\"ICSN\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Integrations\",\"primaryLabelValue\":\"Ideal Integrations\"}},{\"attributeHeader\":{\"labelValue\":\"Identity Marketing & Public Relations\",\"primaryLabelValue\":\"Identity Marketing & Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"ImageTrend\",\"primaryLabelValue\":\"ImageTrend\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Imavex\",\"primaryLabelValue\":\"Imavex\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"immixGroup\",\"primaryLabelValue\":\"immixGroup\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Group\",\"primaryLabelValue\":\"Impact Group\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Management Services\",\"primaryLabelValue\":\"Impact Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"inBusiness Services\",\"primaryLabelValue\":\"inBusiness Services\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"Infosurv\",\"primaryLabelValue\":\"Infosurv\"}},{\"attributeHeader\":{\"labelValue\":\"InfoZen\",\"primaryLabelValue\":\"InfoZen\"}},{\"attributeHeader\":{\"labelValue\":\"InkHead\",\"primaryLabelValue\":\"InkHead\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Wireless Technologies\",\"primaryLabelValue\":\"Innovative Wireless Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inphi Corporation\",\"primaryLabelValue\":\"Inphi Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Insala\",\"primaryLabelValue\":\"Insala\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"Inspec Tech\",\"primaryLabelValue\":\"Inspec Tech\"}},{\"attributeHeader\":{\"labelValue\":\"INT Technologies\",\"primaryLabelValue\":\"INT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Integrant\",\"primaryLabelValue\":\"Integrant\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Pro Services\",\"primaryLabelValue\":\"Integrated Pro Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Project Management\",\"primaryLabelValue\":\"Integrated Project Management\"}},{\"attributeHeader\":{\"labelValue\":\"Integrative Logic Marketing Group\",\"primaryLabelValue\":\"Integrative Logic Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Staffing Solutions\",\"primaryLabelValue\":\"Integrity Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Access Systems of NC\",\"primaryLabelValue\":\"Intelligent Access Systems of NC\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Decisions\",\"primaryLabelValue\":\"Intelligent Decisions\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Logistics\",\"primaryLabelValue\":\"Intelligent Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligentsia Coffee\",\"primaryLabelValue\":\"Intelligentsia Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"Inter Technologies\",\"primaryLabelValue\":\"Inter Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Interbank FX\",\"primaryLabelValue\":\"Interbank FX\"}},{\"attributeHeader\":{\"labelValue\":\"Interbit Data\",\"primaryLabelValue\":\"Interbit Data\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim HealthCare\",\"primaryLabelValue\":\"Interim HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Physicians\",\"primaryLabelValue\":\"Interim Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"International Education\",\"primaryLabelValue\":\"International Education\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorks\",\"primaryLabelValue\":\"InterWorks\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorld Highway\",\"primaryLabelValue\":\"InterWorld Highway\"}},{\"attributeHeader\":{\"labelValue\":\"Invision\",\"primaryLabelValue\":\"Invision\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"Iostudio\",\"primaryLabelValue\":\"Iostudio\"}},{\"attributeHeader\":{\"labelValue\":\"iPipeline\",\"primaryLabelValue\":\"iPipeline\"}},{\"attributeHeader\":{\"labelValue\":\"IQ Pipeline\",\"primaryLabelValue\":\"IQ Pipeline\"}},{\"attributeHeader\":{\"labelValue\":\"Iron Data Solutions\",\"primaryLabelValue\":\"Iron Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Isamax Snacks\",\"primaryLabelValue\":\"Isamax Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"IssueTrak\",\"primaryLabelValue\":\"IssueTrak\"}},{\"attributeHeader\":{\"labelValue\":\"ISWest\",\"primaryLabelValue\":\"ISWest\"}},{\"attributeHeader\":{\"labelValue\":\"iSys\",\"primaryLabelValue\":\"iSys\"}},{\"attributeHeader\":{\"labelValue\":\"iTalent\",\"primaryLabelValue\":\"iTalent\"}},{\"attributeHeader\":{\"labelValue\":\"ITSolutions\",\"primaryLabelValue\":\"ITSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"J&S Tool\",\"primaryLabelValue\":\"J&S Tool\"}},{\"attributeHeader\":{\"labelValue\":\"J&T Coins\",\"primaryLabelValue\":\"J&T Coins\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Jacquette Consulting\",\"primaryLabelValue\":\"Jacquette Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Jarrett Logistics Systems\",\"primaryLabelValue\":\"Jarrett Logistics Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Jaster-Quintanilla\",\"primaryLabelValue\":\"Jaster-Quintanilla\"}},{\"attributeHeader\":{\"labelValue\":\"Jawood\",\"primaryLabelValue\":\"Jawood\"}},{\"attributeHeader\":{\"labelValue\":\"Jensen Audio Visual\",\"primaryLabelValue\":\"Jensen Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jiffy Lube\",\"primaryLabelValue\":\"Jiffy Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Jimenez Custom Painting\",\"primaryLabelValue\":\"Jimenez Custom Painting\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Jones Day\",\"primaryLabelValue\":\"Jones Day\"}},{\"attributeHeader\":{\"labelValue\":\"Journey Mexico\",\"primaryLabelValue\":\"Journey Mexico\"}},{\"attributeHeader\":{\"labelValue\":\"Juice Pharma Worldwide\",\"primaryLabelValue\":\"Juice Pharma Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Jump2 Group\",\"primaryLabelValue\":\"Jump2 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jung's Trucking\",\"primaryLabelValue\":\"Jung's Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"Just Marketing International\",\"primaryLabelValue\":\"Just Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Kansas City Home Care\",\"primaryLabelValue\":\"Kansas City Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Kapnick Insurance Group\",\"primaryLabelValue\":\"Kapnick Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"KAYA Associates\",\"primaryLabelValue\":\"KAYA Associates\"}},{\"attributeHeader\":{\"labelValue\":\"KaZaK Composites\",\"primaryLabelValue\":\"KaZaK Composites\"}},{\"attributeHeader\":{\"labelValue\":\"KBK Technologies\",\"primaryLabelValue\":\"KBK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Keating Magee Marketing Communications\",\"primaryLabelValue\":\"Keating Magee Marketing Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Capital Properties\",\"primaryLabelValue\":\"Keller Williams Capital Properties\"}},{\"attributeHeader\":{\"labelValue\":\"Kenosia Construction\",\"primaryLabelValue\":\"Kenosia Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Kerusso\",\"primaryLabelValue\":\"Kerusso\"}},{\"attributeHeader\":{\"labelValue\":\"Keste\",\"primaryLabelValue\":\"Keste\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kim and Scott's Gourmet Pretzels\",\"primaryLabelValue\":\"Kim and Scott's Gourmet Pretzels\"}},{\"attributeHeader\":{\"labelValue\":\"King & Spalding\",\"primaryLabelValue\":\"King & Spalding\"}},{\"attributeHeader\":{\"labelValue\":\"KleenMark\",\"primaryLabelValue\":\"KleenMark\"}},{\"attributeHeader\":{\"labelValue\":\"kmG Hauling\",\"primaryLabelValue\":\"kmG Hauling\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Technologies\",\"primaryLabelValue\":\"Knight Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Knock Knock\",\"primaryLabelValue\":\"Knock Knock\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Infusion\",\"primaryLabelValue\":\"Knowledge Infusion\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge United\",\"primaryLabelValue\":\"Knowledge United\"}},{\"attributeHeader\":{\"labelValue\":\"Kobie Marketing\",\"primaryLabelValue\":\"Kobie Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kraus Commercial Roofing\",\"primaryLabelValue\":\"Kraus Commercial Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Kum & Go\",\"primaryLabelValue\":\"Kum & Go\"}},{\"attributeHeader\":{\"labelValue\":\"LabConnect\",\"primaryLabelValue\":\"LabConnect\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert Vet Supply\",\"primaryLabelValue\":\"Lambert Vet Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert, Edwards & Associates\",\"primaryLabelValue\":\"Lambert, Edwards & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Language Line Services\",\"primaryLabelValue\":\"Language Line Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laritech\",\"primaryLabelValue\":\"Laritech\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Spine Institute\",\"primaryLabelValue\":\"Laser Spine Institute\"}},{\"attributeHeader\":{\"labelValue\":\"LaserGifts\",\"primaryLabelValue\":\"LaserGifts\"}},{\"attributeHeader\":{\"labelValue\":\"LasX Industries\",\"primaryLabelValue\":\"LasX Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Latisys\",\"primaryLabelValue\":\"Latisys\"}},{\"attributeHeader\":{\"labelValue\":\"Latshaw Drilling & Exploration\",\"primaryLabelValue\":\"Latshaw Drilling & Exploration\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"Lawyer Trane\",\"primaryLabelValue\":\"Lawyer Trane\"}},{\"attributeHeader\":{\"labelValue\":\"Layla Grayce\",\"primaryLabelValue\":\"Layla Grayce\"}},{\"attributeHeader\":{\"labelValue\":\"LeadDog Marketing Group\",\"primaryLabelValue\":\"LeadDog Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Leader Bank\",\"primaryLabelValue\":\"Leader Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Interactive\",\"primaryLabelValue\":\"LeapFrog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Learning Evolution\",\"primaryLabelValue\":\"Learning Evolution\"}},{\"attributeHeader\":{\"labelValue\":\"LearningRx\",\"primaryLabelValue\":\"LearningRx\"}},{\"attributeHeader\":{\"labelValue\":\"LearnSomething\",\"primaryLabelValue\":\"LearnSomething\"}},{\"attributeHeader\":{\"labelValue\":\"LetterLogic\",\"primaryLabelValue\":\"LetterLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Tree Service\",\"primaryLabelValue\":\"Lewis Tree Service\"}},{\"attributeHeader\":{\"labelValue\":\"Lexco Cable\",\"primaryLabelValue\":\"Lexco Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Lexington Design + Fabrication\",\"primaryLabelValue\":\"Lexington Design + Fabrication\"}},{\"attributeHeader\":{\"labelValue\":\"LibreDigital\",\"primaryLabelValue\":\"LibreDigital\"}},{\"attributeHeader\":{\"labelValue\":\"Libsys\",\"primaryLabelValue\":\"Libsys\"}},{\"attributeHeader\":{\"labelValue\":\"LifeScript\",\"primaryLabelValue\":\"LifeScript\"}},{\"attributeHeader\":{\"labelValue\":\"LightEdge Solutions\",\"primaryLabelValue\":\"LightEdge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lightspeed Systems\",\"primaryLabelValue\":\"Lightspeed Systems\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidAgents Healthcare\",\"primaryLabelValue\":\"LiquidAgents Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidHub\",\"primaryLabelValue\":\"LiquidHub\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidSpoke\",\"primaryLabelValue\":\"LiquidSpoke\"}},{\"attributeHeader\":{\"labelValue\":\"Littler Mendelson\",\"primaryLabelValue\":\"Littler Mendelson\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"LMR Solutions\",\"primaryLabelValue\":\"LMR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Locke Lord Bissell & Liddell\",\"primaryLabelValue\":\"Locke Lord Bissell & Liddell\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"Lokion\",\"primaryLabelValue\":\"Lokion\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Glass Technologies\",\"primaryLabelValue\":\"M3 Glass Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magazines.com\",\"primaryLabelValue\":\"Magazines.com\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"MAIC\",\"primaryLabelValue\":\"MAIC\"}},{\"attributeHeader\":{\"labelValue\":\"Management Solutions\",\"primaryLabelValue\":\"Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Manatt, Phelps & Phillips\",\"primaryLabelValue\":\"Manatt, Phelps & Phillips\"}},{\"attributeHeader\":{\"labelValue\":\"Manifest Digital\",\"primaryLabelValue\":\"Manifest Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Man-Machine Systems Assessment\",\"primaryLabelValue\":\"Man-Machine Systems Assessment\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Maple Systems\",\"primaryLabelValue\":\"Maple Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Maritime International\",\"primaryLabelValue\":\"Maritime International\"}},{\"attributeHeader\":{\"labelValue\":\"Market Force Information\",\"primaryLabelValue\":\"Market Force Information\"}},{\"attributeHeader\":{\"labelValue\":\"Market Probe\",\"primaryLabelValue\":\"Market Probe\"}},{\"attributeHeader\":{\"labelValue\":\"MarketLeverage Interactive Advertising\",\"primaryLabelValue\":\"MarketLeverage Interactive Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Marstel-Day\",\"primaryLabelValue\":\"Marstel-Day\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Dawes Analytics\",\"primaryLabelValue\":\"Martin Dawes Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MAS Medical Staffing\",\"primaryLabelValue\":\"MAS Medical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Masterfit Medical Supply\",\"primaryLabelValue\":\"Masterfit Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"MaxEmail\",\"primaryLabelValue\":\"MaxEmail\"}},{\"attributeHeader\":{\"labelValue\":\"MaxVision\",\"primaryLabelValue\":\"MaxVision\"}},{\"attributeHeader\":{\"labelValue\":\"Mazzone Management Group\",\"primaryLabelValue\":\"Mazzone Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"MC Sign\",\"primaryLabelValue\":\"MC Sign\"}},{\"attributeHeader\":{\"labelValue\":\"MCAD Technologies\",\"primaryLabelValue\":\"MCAD Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"McElvain Oil & Gas Properties\",\"primaryLabelValue\":\"McElvain Oil & Gas Properties\"}},{\"attributeHeader\":{\"labelValue\":\"McGovern Physical Therapy Associates\",\"primaryLabelValue\":\"McGovern Physical Therapy Associates\"}},{\"attributeHeader\":{\"labelValue\":\"McGuireWoods\",\"primaryLabelValue\":\"McGuireWoods\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Group\",\"primaryLabelValue\":\"McKinley Group\"}},{\"attributeHeader\":{\"labelValue\":\"McMurry\",\"primaryLabelValue\":\"McMurry\"}},{\"attributeHeader\":{\"labelValue\":\"MCR\",\"primaryLabelValue\":\"MCR\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MED3000\",\"primaryLabelValue\":\"MED3000\"}},{\"attributeHeader\":{\"labelValue\":\"MedExpress Pharmacy\",\"primaryLabelValue\":\"MedExpress Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"MediaMind\",\"primaryLabelValue\":\"MediaMind\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Packaging\",\"primaryLabelValue\":\"Medical Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Present Value\",\"primaryLabelValue\":\"Medical Present Value\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"Medrec\",\"primaryLabelValue\":\"Medrec\"}},{\"attributeHeader\":{\"labelValue\":\"MedThink Communications\",\"primaryLabelValue\":\"MedThink Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Meeting Alliance\",\"primaryLabelValue\":\"Meeting Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Mellace Family Brands\",\"primaryLabelValue\":\"Mellace Family Brands\"}},{\"attributeHeader\":{\"labelValue\":\"Member Solutions\",\"primaryLabelValue\":\"Member Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Menlo Innovations\",\"primaryLabelValue\":\"Menlo Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Imaging Solutions\",\"primaryLabelValue\":\"Meridian Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"meridianEMR\",\"primaryLabelValue\":\"meridianEMR\"}},{\"attributeHeader\":{\"labelValue\":\"Metastorm\",\"primaryLabelValue\":\"Metastorm\"}},{\"attributeHeader\":{\"labelValue\":\"MetroStar Systems\",\"primaryLabelValue\":\"MetroStar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Microcom Technologies\",\"primaryLabelValue\":\"Microcom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIG\",\"primaryLabelValue\":\"MIG\"}},{\"attributeHeader\":{\"labelValue\":\"Miles-McClellan Construction\",\"primaryLabelValue\":\"Miles-McClellan Construction\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"mindSHIFT Technologies\",\"primaryLabelValue\":\"mindSHIFT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner Houston\",\"primaryLabelValue\":\"Miner Houston\"}},{\"attributeHeader\":{\"labelValue\":\"Miron Construction\",\"primaryLabelValue\":\"Miron Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Monin\",\"primaryLabelValue\":\"Monin\"}},{\"attributeHeader\":{\"labelValue\":\"Moochie\",\"primaryLabelValue\":\"Moochie\"}},{\"attributeHeader\":{\"labelValue\":\"Moody Nolan\",\"primaryLabelValue\":\"Moody Nolan\"}},{\"attributeHeader\":{\"labelValue\":\"Moore & Van Allen\",\"primaryLabelValue\":\"Moore & Van Allen\"}},{\"attributeHeader\":{\"labelValue\":\"MoreVisibility\",\"primaryLabelValue\":\"MoreVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Mosaica Education\",\"primaryLabelValue\":\"Mosaica Education\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MResult\",\"primaryLabelValue\":\"MResult\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"MTCI\",\"primaryLabelValue\":\"MTCI\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Namaste Solar Electric\",\"primaryLabelValue\":\"Namaste Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Narragansett Brewing\",\"primaryLabelValue\":\"Narragansett Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"National Asset Recovery Services\",\"primaryLabelValue\":\"National Asset Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"National Electronic Attachment\",\"primaryLabelValue\":\"National Electronic Attachment\"}},{\"attributeHeader\":{\"labelValue\":\"National Energy Control\",\"primaryLabelValue\":\"National Energy Control\"}},{\"attributeHeader\":{\"labelValue\":\"National Link\",\"primaryLabelValue\":\"National Link\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Nationwide Payment Solutions\",\"primaryLabelValue\":\"Nationwide Payment Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Natural Way Lawn and Tree\",\"primaryLabelValue\":\"Natural Way Lawn and Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Navarro Research and Engineering\",\"primaryLabelValue\":\"Navarro Research and Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Navicus\",\"primaryLabelValue\":\"Navicus\"}},{\"attributeHeader\":{\"labelValue\":\"nCircle\",\"primaryLabelValue\":\"nCircle\"}},{\"attributeHeader\":{\"labelValue\":\"Neibauer Dental\",\"primaryLabelValue\":\"Neibauer Dental\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Mullins Riley & Scarborough\",\"primaryLabelValue\":\"Nelson Mullins Riley & Scarborough\"}},{\"attributeHeader\":{\"labelValue\":\"Net Optics\",\"primaryLabelValue\":\"Net Optics\"}},{\"attributeHeader\":{\"labelValue\":\"NET Systems\",\"primaryLabelValue\":\"NET Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"NETE\",\"primaryLabelValue\":\"NETE\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetPlanner Systems\",\"primaryLabelValue\":\"NetPlanner Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NetSpend\",\"primaryLabelValue\":\"NetSpend\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NetVision Resources\",\"primaryLabelValue\":\"NetVision Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Network Infrastructure Technologies\",\"primaryLabelValue\":\"Network Infrastructure Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Networking for Future\",\"primaryLabelValue\":\"Networking for Future\"}},{\"attributeHeader\":{\"labelValue\":\"Neudesic\",\"primaryLabelValue\":\"Neudesic\"}},{\"attributeHeader\":{\"labelValue\":\"Neumann Systems Group\",\"primaryLabelValue\":\"Neumann Systems Group\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Belgium Brewing\",\"primaryLabelValue\":\"New Belgium Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New England Medical Transcription\",\"primaryLabelValue\":\"New England Medical Transcription\"}},{\"attributeHeader\":{\"labelValue\":\"New England Natural Bakers\",\"primaryLabelValue\":\"New England Natural Bakers\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Gateway\",\"primaryLabelValue\":\"New Media Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"NewAgeSys\",\"primaryLabelValue\":\"NewAgeSys\"}},{\"attributeHeader\":{\"labelValue\":\"NewsGator\",\"primaryLabelValue\":\"NewsGator\"}},{\"attributeHeader\":{\"labelValue\":\"Newsways Services\",\"primaryLabelValue\":\"Newsways Services\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nexcess.net\",\"primaryLabelValue\":\"Nexcess.net\"}},{\"attributeHeader\":{\"labelValue\":\"NikSoft Systems\",\"primaryLabelValue\":\"NikSoft Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NimbleUser\",\"primaryLabelValue\":\"NimbleUser\"}},{\"attributeHeader\":{\"labelValue\":\"Niner Bikes\",\"primaryLabelValue\":\"Niner Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"nLight\",\"primaryLabelValue\":\"nLight\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NMR Consulting\",\"primaryLabelValue\":\"NMR Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Non-Public Educational Services\",\"primaryLabelValue\":\"Non-Public Educational Services\"}},{\"attributeHeader\":{\"labelValue\":\"Norman's Gift Shops\",\"primaryLabelValue\":\"Norman's Gift Shops\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"North Wind\",\"primaryLabelValue\":\"North Wind\"}},{\"attributeHeader\":{\"labelValue\":\"Northern Building Products\",\"primaryLabelValue\":\"Northern Building Products\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Logistics\",\"primaryLabelValue\":\"Northwest Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"NouvEON\",\"primaryLabelValue\":\"NouvEON\"}},{\"attributeHeader\":{\"labelValue\":\"Nova USA Wood Products\",\"primaryLabelValue\":\"Nova USA Wood Products\"}},{\"attributeHeader\":{\"labelValue\":\"NPI Solutions\",\"primaryLabelValue\":\"NPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NSK\",\"primaryLabelValue\":\"NSK\"}},{\"attributeHeader\":{\"labelValue\":\"NSTAR Global Services\",\"primaryLabelValue\":\"NSTAR Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutiva\",\"primaryLabelValue\":\"Nutiva\"}},{\"attributeHeader\":{\"labelValue\":\"NWN\",\"primaryLabelValue\":\"NWN\"}},{\"attributeHeader\":{\"labelValue\":\"O2 Fitness Clubs\",\"primaryLabelValue\":\"O2 Fitness Clubs\"}},{\"attributeHeader\":{\"labelValue\":\"Obtiva\",\"primaryLabelValue\":\"Obtiva\"}},{\"attributeHeader\":{\"labelValue\":\"Octagon Research Solutions\",\"primaryLabelValue\":\"Octagon Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Beacon\",\"primaryLabelValue\":\"Office Beacon\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"OFS Solutions\",\"primaryLabelValue\":\"OFS Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"OMG National\",\"primaryLabelValue\":\"OMG National\"}},{\"attributeHeader\":{\"labelValue\":\"One Source Talent\",\"primaryLabelValue\":\"One Source Talent\"}},{\"attributeHeader\":{\"labelValue\":\"O'Neil & Associates\",\"primaryLabelValue\":\"O'Neil & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"ONLC Training Centers\",\"primaryLabelValue\":\"ONLC Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems Technologies\",\"primaryLabelValue\":\"Open Systems Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Synthesis\",\"primaryLabelValue\":\"Optimal Synthesis\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMech\",\"primaryLabelValue\":\"OptiMech\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OSAM Document Solutions\",\"primaryLabelValue\":\"OSAM Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outdoor Motor Sports\",\"primaryLabelValue\":\"Outdoor Motor Sports\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Ovations Food Services\",\"primaryLabelValue\":\"Ovations Food Services\"}},{\"attributeHeader\":{\"labelValue\":\"Overture Partners\",\"primaryLabelValue\":\"Overture Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pace Computer Solutions\",\"primaryLabelValue\":\"Pace Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Software Publishing\",\"primaryLabelValue\":\"Pacific Software Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Padilla Construction Services\",\"primaryLabelValue\":\"Padilla Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pallet Central Enterprises\",\"primaryLabelValue\":\"Pallet Central Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Palm Beach Tan\",\"primaryLabelValue\":\"Palm Beach Tan\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Corporate Housing\",\"primaryLabelValue\":\"Paragon Corporate Housing\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paramount Technologies\",\"primaryLabelValue\":\"Paramount Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health\",\"primaryLabelValue\":\"Passport Health\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Patel Consultants\",\"primaryLabelValue\":\"Patel Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Pathmark Transportation\",\"primaryLabelValue\":\"Pathmark Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"PatioShoppers.com\",\"primaryLabelValue\":\"PatioShoppers.com\"}},{\"attributeHeader\":{\"labelValue\":\"Patrick Henry Creative Promotions\",\"primaryLabelValue\":\"Patrick Henry Creative Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Patterson Belknap Webb & Tyler\",\"primaryLabelValue\":\"Patterson Belknap Webb & Tyler\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Hastings, Janofsky & Walker\",\"primaryLabelValue\":\"Paul, Hastings, Janofsky & Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\",\"primaryLabelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"Paylocity\",\"primaryLabelValue\":\"Paylocity\"}},{\"attributeHeader\":{\"labelValue\":\"PCD Group\",\"primaryLabelValue\":\"PCD Group\"}},{\"attributeHeader\":{\"labelValue\":\"PCN Network\",\"primaryLabelValue\":\"PCN Network\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Auto Racing Supplies\",\"primaryLabelValue\":\"Pegasus Auto Racing Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"Pelican Products\",\"primaryLabelValue\":\"Pelican Products\"}},{\"attributeHeader\":{\"labelValue\":\"Peloton Advantage\",\"primaryLabelValue\":\"Peloton Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Pensco Trust\",\"primaryLabelValue\":\"Pensco Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Pentec Health\",\"primaryLabelValue\":\"Pentec Health\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleAdmin\",\"primaryLabelValue\":\"PeopleAdmin\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleTec\",\"primaryLabelValue\":\"PeopleTec\"}},{\"attributeHeader\":{\"labelValue\":\"PepperDash Technology\",\"primaryLabelValue\":\"PepperDash Technology\"}},{\"attributeHeader\":{\"labelValue\":\"PERI\",\"primaryLabelValue\":\"PERI\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter E-Security\",\"primaryLabelValue\":\"Perimeter E-Security\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter Technology\",\"primaryLabelValue\":\"Perimeter Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Peritus\",\"primaryLabelValue\":\"Peritus\"}},{\"attributeHeader\":{\"labelValue\":\"Petrus Brands\",\"primaryLabelValue\":\"Petrus Brands\"}},{\"attributeHeader\":{\"labelValue\":\"PetSafe\",\"primaryLabelValue\":\"PetSafe\"}},{\"attributeHeader\":{\"labelValue\":\"Pfister Energy\",\"primaryLabelValue\":\"Pfister Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Phillips Painting\",\"primaryLabelValue\":\"Phillips Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Integration\",\"primaryLabelValue\":\"Phoenix Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Photon Infotech\",\"primaryLabelValue\":\"Photon Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Picis\",\"primaryLabelValue\":\"Picis\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Technical Resources\",\"primaryLabelValue\":\"Pinnacle Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Piston Group\",\"primaryLabelValue\":\"Piston Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Technologies\",\"primaryLabelValue\":\"Plan B Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Plano-Coudon\",\"primaryLabelValue\":\"Plano-Coudon\"}},{\"attributeHeader\":{\"labelValue\":\"PLCs Plus International\",\"primaryLabelValue\":\"PLCs Plus International\"}},{\"attributeHeader\":{\"labelValue\":\"Plenus Group\",\"primaryLabelValue\":\"Plenus Group\"}},{\"attributeHeader\":{\"labelValue\":\"Plus One Health Management\",\"primaryLabelValue\":\"Plus One Health Management\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Direct\",\"primaryLabelValue\":\"Polaris Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Portable Church Industries\",\"primaryLabelValue\":\"Portable Church Industries\"}},{\"attributeHeader\":{\"labelValue\":\"PostcardMania\",\"primaryLabelValue\":\"PostcardMania\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Power Equipment Direct\",\"primaryLabelValue\":\"Power Equipment Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Power Home Technologies\",\"primaryLabelValue\":\"Power Home Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PowerON Services\",\"primaryLabelValue\":\"PowerON Services\"}},{\"attributeHeader\":{\"labelValue\":\"Practical Computer Applications\",\"primaryLabelValue\":\"Practical Computer Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Practice Management Center\",\"primaryLabelValue\":\"Practice Management Center\"}},{\"attributeHeader\":{\"labelValue\":\"PreCash\",\"primaryLabelValue\":\"PreCash\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Flow Technologies\",\"primaryLabelValue\":\"Precision Flow Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Solutions\",\"primaryLabelValue\":\"Preferred Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preludesys\",\"primaryLabelValue\":\"Preludesys\"}},{\"attributeHeader\":{\"labelValue\":\"Premier BPO\",\"primaryLabelValue\":\"Premier BPO\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"PrintFlex Graphics\",\"primaryLabelValue\":\"PrintFlex Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prisma Graphic\",\"primaryLabelValue\":\"Prisma Graphic\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Processes Unlimited International\",\"primaryLabelValue\":\"Processes Unlimited International\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Builders Supply\",\"primaryLabelValue\":\"Professional Builders Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Contractors Services\",\"primaryLabelValue\":\"Professional Contractors Services\"}},{\"attributeHeader\":{\"labelValue\":\"Project Development Services\",\"primaryLabelValue\":\"Project Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Projility\",\"primaryLabelValue\":\"Projility\"}},{\"attributeHeader\":{\"labelValue\":\"Prometheus Laboratories\",\"primaryLabelValue\":\"Prometheus Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"ProSites\",\"primaryLabelValue\":\"ProSites\"}},{\"attributeHeader\":{\"labelValue\":\"Proto Labs\",\"primaryLabelValue\":\"Proto Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Providea Conferencing\",\"primaryLabelValue\":\"Providea Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"PSP & Digital\",\"primaryLabelValue\":\"PSP & Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Purchasing Power\",\"primaryLabelValue\":\"Purchasing Power\"}},{\"attributeHeader\":{\"labelValue\":\"PureSafety\",\"primaryLabelValue\":\"PureSafety\"}},{\"attributeHeader\":{\"labelValue\":\"Puritan Products\",\"primaryLabelValue\":\"Puritan Products\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Consulting\",\"primaryLabelValue\":\"Pyramid Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Services\",\"primaryLabelValue\":\"Pyramid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramyd Air\",\"primaryLabelValue\":\"Pyramyd Air\"}},{\"attributeHeader\":{\"labelValue\":\"QED National\",\"primaryLabelValue\":\"QED National\"}},{\"attributeHeader\":{\"labelValue\":\"Qortex\",\"primaryLabelValue\":\"Qortex\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Qualys\",\"primaryLabelValue\":\"Qualys\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quarles & Brady\",\"primaryLabelValue\":\"Quarles & Brady\"}},{\"attributeHeader\":{\"labelValue\":\"Quickcomm Software Solutions\",\"primaryLabelValue\":\"Quickcomm Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R Square\",\"primaryLabelValue\":\"R Square\"}},{\"attributeHeader\":{\"labelValue\":\"R.W. Garcia\",\"primaryLabelValue\":\"R.W. Garcia\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"RailComm\",\"primaryLabelValue\":\"RailComm\"}},{\"attributeHeader\":{\"labelValue\":\"Raising Cane's Chicken Fingers\",\"primaryLabelValue\":\"Raising Cane's Chicken Fingers\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Product Development Group\",\"primaryLabelValue\":\"Rapid Product Development Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"RDG Planning & Design\",\"primaryLabelValue\":\"RDG Planning & Design\"}},{\"attributeHeader\":{\"labelValue\":\"RDK Engineers\",\"primaryLabelValue\":\"RDK Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"Red Book Solutions\",\"primaryLabelValue\":\"Red Book Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Redemption Plus\",\"primaryLabelValue\":\"Redemption Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Redpepper\",\"primaryLabelValue\":\"Redpepper\"}},{\"attributeHeader\":{\"labelValue\":\"Regenesis Biomedical\",\"primaryLabelValue\":\"Regenesis Biomedical\"}},{\"attributeHeader\":{\"labelValue\":\"RehabAbilities\",\"primaryLabelValue\":\"RehabAbilities\"}},{\"attributeHeader\":{\"labelValue\":\"Reichard Staffing\",\"primaryLabelValue\":\"Reichard Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Comfort\",\"primaryLabelValue\":\"Reliable Comfort\"}},{\"attributeHeader\":{\"labelValue\":\"Relocation.com\",\"primaryLabelValue\":\"Relocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Renters Warehouse\",\"primaryLabelValue\":\"Renters Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Return Path\",\"primaryLabelValue\":\"Return Path\"}},{\"attributeHeader\":{\"labelValue\":\"RevereIT\",\"primaryLabelValue\":\"RevereIT\"}},{\"attributeHeader\":{\"labelValue\":\"Revolution Prep\",\"primaryLabelValue\":\"Revolution Prep\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RHG Group\",\"primaryLabelValue\":\"RHG Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rhythmlink International\",\"primaryLabelValue\":\"Rhythmlink International\"}},{\"attributeHeader\":{\"labelValue\":\"RightStar\",\"primaryLabelValue\":\"RightStar\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"RigPower\",\"primaryLabelValue\":\"RigPower\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun Farms\",\"primaryLabelValue\":\"Rising Sun Farms\"}},{\"attributeHeader\":{\"labelValue\":\"RMI\",\"primaryLabelValue\":\"RMI\"}},{\"attributeHeader\":{\"labelValue\":\"Robanda International\",\"primaryLabelValue\":\"Robanda International\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"RockCorps\",\"primaryLabelValue\":\"RockCorps\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rockhouse Bar\",\"primaryLabelValue\":\"Rockhouse Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Rocky Mountain Sanitation\",\"primaryLabelValue\":\"Rocky Mountain Sanitation\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ropes & Gray\",\"primaryLabelValue\":\"Ropes & Gray\"}},{\"attributeHeader\":{\"labelValue\":\"Ross Mortgage\",\"primaryLabelValue\":\"Ross Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"Rowpar Pharmaceuticals\",\"primaryLabelValue\":\"Rowpar Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Electric\",\"primaryLabelValue\":\"Rumsey Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Engineers\",\"primaryLabelValue\":\"Rumsey Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"S and Y Industries\",\"primaryLabelValue\":\"S and Y Industries\"}},{\"attributeHeader\":{\"labelValue\":\"S3\",\"primaryLabelValue\":\"S3\"}},{\"attributeHeader\":{\"labelValue\":\"Safeguard Properties\",\"primaryLabelValue\":\"Safeguard Properties\"}},{\"attributeHeader\":{\"labelValue\":\"SafeNet\",\"primaryLabelValue\":\"SafeNet\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Technology International\",\"primaryLabelValue\":\"Safety Technology International\"}},{\"attributeHeader\":{\"labelValue\":\"Sanger & Eby\",\"primaryLabelValue\":\"Sanger & Eby\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Savannah Bee\",\"primaryLabelValue\":\"Savannah Bee\"}},{\"attributeHeader\":{\"labelValue\":\"SB&B Foods\",\"primaryLabelValue\":\"SB&B Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SC&H Group\",\"primaryLabelValue\":\"SC&H Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schermer Kuehl\",\"primaryLabelValue\":\"Schermer Kuehl\"}},{\"attributeHeader\":{\"labelValue\":\"Schiff Hardin\",\"primaryLabelValue\":\"Schiff Hardin\"}},{\"attributeHeader\":{\"labelValue\":\"Schipul\",\"primaryLabelValue\":\"Schipul\"}},{\"attributeHeader\":{\"labelValue\":\"Schultz and Summers Engineering\",\"primaryLabelValue\":\"Schultz and Summers Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ScripNet\",\"primaryLabelValue\":\"ScripNet\"}},{\"attributeHeader\":{\"labelValue\":\"SDLC Partners\",\"primaryLabelValue\":\"SDLC Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeaSpine\",\"primaryLabelValue\":\"SeaSpine\"}},{\"attributeHeader\":{\"labelValue\":\"Seaway Printing\",\"primaryLabelValue\":\"Seaway Printing\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security Card Services\",\"primaryLabelValue\":\"Security Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Security Management Consulting\",\"primaryLabelValue\":\"Security Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Sedgwick, Detert, Moran & Arnold\",\"primaryLabelValue\":\"Sedgwick, Detert, Moran & Arnold\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"SEI Boston\",\"primaryLabelValue\":\"SEI Boston\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Selerant\",\"primaryLabelValue\":\"Selerant\"}},{\"attributeHeader\":{\"labelValue\":\"Semper Home Loans\",\"primaryLabelValue\":\"Semper Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Senn Dunn Insurance\",\"primaryLabelValue\":\"Senn Dunn Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Senovva\",\"primaryLabelValue\":\"Senovva\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"Serpa Packaging Solutions\",\"primaryLabelValue\":\"Serpa Packaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Service Express\",\"primaryLabelValue\":\"Service Express\"}},{\"attributeHeader\":{\"labelValue\":\"ServiceForce\",\"primaryLabelValue\":\"ServiceForce\"}},{\"attributeHeader\":{\"labelValue\":\"Servigistics\",\"primaryLabelValue\":\"Servigistics\"}},{\"attributeHeader\":{\"labelValue\":\"SES Advisors\",\"primaryLabelValue\":\"SES Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Sewell Direct\",\"primaryLabelValue\":\"Sewell Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Seyfarth Shaw\",\"primaryLabelValue\":\"Seyfarth Shaw\"}},{\"attributeHeader\":{\"labelValue\":\"SGA Group\",\"primaryLabelValue\":\"SGA Group\"}},{\"attributeHeader\":{\"labelValue\":\"SGIS\",\"primaryLabelValue\":\"SGIS\"}},{\"attributeHeader\":{\"labelValue\":\"Shannon & Wilson\",\"primaryLabelValue\":\"Shannon & Wilson\"}},{\"attributeHeader\":{\"labelValue\":\"Sharper Impressions Painting\",\"primaryLabelValue\":\"Sharper Impressions Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Sheppard, Mullin, Richter & Hampton\",\"primaryLabelValue\":\"Sheppard, Mullin, Richter & Hampton\"}},{\"attributeHeader\":{\"labelValue\":\"Shoptech Industrial Software\",\"primaryLabelValue\":\"Shoptech Industrial Software\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"ShuBee\",\"primaryLabelValue\":\"ShuBee\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Nevada\",\"primaryLabelValue\":\"Sierra Nevada\"}},{\"attributeHeader\":{\"labelValue\":\"Silicon Forest Electronics\",\"primaryLabelValue\":\"Silicon Forest Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SilverTech\",\"primaryLabelValue\":\"SilverTech\"}},{\"attributeHeader\":{\"labelValue\":\"simpleview\",\"primaryLabelValue\":\"simpleview\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Siren Interactive\",\"primaryLabelValue\":\"Siren Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Sitewire\",\"primaryLabelValue\":\"Sitewire\"}},{\"attributeHeader\":{\"labelValue\":\"Skadden, Arps, Slate, Meagher & Flom\",\"primaryLabelValue\":\"Skadden, Arps, Slate, Meagher & Flom\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"SLM - Facility Solutions Nationwide\",\"primaryLabelValue\":\"SLM - Facility Solutions Nationwide\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Destinations\",\"primaryLabelValue\":\"Smart Destinations\"}},{\"attributeHeader\":{\"labelValue\":\"Smart IMS\",\"primaryLabelValue\":\"Smart IMS\"}},{\"attributeHeader\":{\"labelValue\":\"Smarter Security Systems\",\"primaryLabelValue\":\"Smarter Security Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Brands Group\",\"primaryLabelValue\":\"Smile Brands Group\"}},{\"attributeHeader\":{\"labelValue\":\"Smith-Dahmer Associates\",\"primaryLabelValue\":\"Smith-Dahmer Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Smith's Machine\",\"primaryLabelValue\":\"Smith's Machine\"}},{\"attributeHeader\":{\"labelValue\":\"Snack Factory\",\"primaryLabelValue\":\"Snack Factory\"}},{\"attributeHeader\":{\"labelValue\":\"Snapcab By Bostock\",\"primaryLabelValue\":\"Snapcab By Bostock\"}},{\"attributeHeader\":{\"labelValue\":\"SNL Financial\",\"primaryLabelValue\":\"SNL Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Software Transformations\",\"primaryLabelValue\":\"Software Transformations\"}},{\"attributeHeader\":{\"labelValue\":\"SoftWriters\",\"primaryLabelValue\":\"SoftWriters\"}},{\"attributeHeader\":{\"labelValue\":\"Sole Supports\",\"primaryLabelValue\":\"Sole Supports\"}},{\"attributeHeader\":{\"labelValue\":\"Solid Earth\",\"primaryLabelValue\":\"Solid Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Solution Design Group\",\"primaryLabelValue\":\"Solution Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Southeast Media\",\"primaryLabelValue\":\"Southeast Media\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Prestige Industries\",\"primaryLabelValue\":\"Southern Prestige Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spark Public Relations\",\"primaryLabelValue\":\"Spark Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"SpectorSoft\",\"primaryLabelValue\":\"SpectorSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Human Resource Systems\",\"primaryLabelValue\":\"Spectrum Human Resource Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SpeechCycle\",\"primaryLabelValue\":\"SpeechCycle\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Sphere of Influence\",\"primaryLabelValue\":\"Sphere of Influence\"}},{\"attributeHeader\":{\"labelValue\":\"Spillman Technologies\",\"primaryLabelValue\":\"Spillman Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Splice Communications\",\"primaryLabelValue\":\"Splice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"SRSsoft\",\"primaryLabelValue\":\"SRSsoft\"}},{\"attributeHeader\":{\"labelValue\":\"SS&C Technologies Holdings\",\"primaryLabelValue\":\"SS&C Technologies Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"SSD Technology Partners\",\"primaryLabelValue\":\"SSD Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"SSi Furnishings\",\"primaryLabelValue\":\"SSi Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Staffing Plus\",\"primaryLabelValue\":\"Staffing Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Standing Dog Interactive\",\"primaryLabelValue\":\"Standing Dog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Stanek Holdco\",\"primaryLabelValue\":\"Stanek Holdco\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"SteelCell of North America\",\"primaryLabelValue\":\"SteelCell of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Stellar Solutions\",\"primaryLabelValue\":\"Stellar Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"STG International\",\"primaryLabelValue\":\"STG International\"}},{\"attributeHeader\":{\"labelValue\":\"Stoltenberg Consulting\",\"primaryLabelValue\":\"Stoltenberg Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Stone Brewing\",\"primaryLabelValue\":\"Stone Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Storreytime\",\"primaryLabelValue\":\"Storreytime\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Staffing Solutions (Detroit, MI)\",\"primaryLabelValue\":\"Strategic Staffing Solutions (Detroit, MI)\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Structured Communication Systems\",\"primaryLabelValue\":\"Structured Communication Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Technology\",\"primaryLabelValue\":\"Summit Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Sunbelt Software\",\"primaryLabelValue\":\"Sunbelt Software\"}},{\"attributeHeader\":{\"labelValue\":\"Sundance Vacations\",\"primaryLabelValue\":\"Sundance Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Sundt Construction\",\"primaryLabelValue\":\"Sundt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Minting\",\"primaryLabelValue\":\"Sunshine Minting\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Press\",\"primaryLabelValue\":\"Superior Press\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Support Resources\",\"primaryLabelValue\":\"Superior Support Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sustainable Harvest Coffee Importers\",\"primaryLabelValue\":\"Sustainable Harvest Coffee Importers\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Swiger Coil Systems\",\"primaryLabelValue\":\"Swiger Coil Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Swiss Watch International\",\"primaryLabelValue\":\"Swiss Watch International\"}},{\"attributeHeader\":{\"labelValue\":\"Sygnetics\",\"primaryLabelValue\":\"Sygnetics\"}},{\"attributeHeader\":{\"labelValue\":\"SymbolArts\",\"primaryLabelValue\":\"SymbolArts\"}},{\"attributeHeader\":{\"labelValue\":\"Symetra Financial\",\"primaryLabelValue\":\"Symetra Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Synacor\",\"primaryLabelValue\":\"Synacor\"}},{\"attributeHeader\":{\"labelValue\":\"Synch-Solutions\",\"primaryLabelValue\":\"Synch-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&T Solutions\",\"primaryLabelValue\":\"T&T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T.B. Penick & Sons\",\"primaryLabelValue\":\"T.B. Penick & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"T2 Systems\",\"primaryLabelValue\":\"T2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TAJ Technologies\",\"primaryLabelValue\":\"TAJ Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Talyst\",\"primaryLabelValue\":\"Talyst\"}},{\"attributeHeader\":{\"labelValue\":\"TargetCast tcm\",\"primaryLabelValue\":\"TargetCast tcm\"}},{\"attributeHeader\":{\"labelValue\":\"Tastefully Simple\",\"primaryLabelValue\":\"Tastefully Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Tasty Catering\",\"primaryLabelValue\":\"Tasty Catering\"}},{\"attributeHeader\":{\"labelValue\":\"Tax Resolution Services\",\"primaryLabelValue\":\"Tax Resolution Services\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"Techead\",\"primaryLabelValue\":\"Techead\"}},{\"attributeHeader\":{\"labelValue\":\"Technatomy\",\"primaryLabelValue\":\"Technatomy\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Resource Group\",\"primaryLabelValue\":\"Technical Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Technosoft\",\"primaryLabelValue\":\"Technosoft\"}},{\"attributeHeader\":{\"labelValue\":\"TechSmith\",\"primaryLabelValue\":\"TechSmith\"}},{\"attributeHeader\":{\"labelValue\":\"TechSource\",\"primaryLabelValue\":\"TechSource\"}},{\"attributeHeader\":{\"labelValue\":\"TEK Microsystems\",\"primaryLabelValue\":\"TEK Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"Teksavers\",\"primaryLabelValue\":\"Teksavers\"}},{\"attributeHeader\":{\"labelValue\":\"Temporary Housing Directory\",\"primaryLabelValue\":\"Temporary Housing Directory\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Texsun Pools\",\"primaryLabelValue\":\"Texsun Pools\"}},{\"attributeHeader\":{\"labelValue\":\"That's Good HR\",\"primaryLabelValue\":\"That's Good HR\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Alternative Board\",\"primaryLabelValue\":\"The Alternative Board\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Coffee Bean & Tea Leaf\",\"primaryLabelValue\":\"The Coffee Bean & Tea Leaf\"}},{\"attributeHeader\":{\"labelValue\":\"The EMMES Corporation\",\"primaryLabelValue\":\"The EMMES Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Experts\",\"primaryLabelValue\":\"The Experts\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Market\",\"primaryLabelValue\":\"The Fresh Market\"}},{\"attributeHeader\":{\"labelValue\":\"The Glenture Group\",\"primaryLabelValue\":\"The Glenture Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Inspection Group\",\"primaryLabelValue\":\"The Inspection Group\"}},{\"attributeHeader\":{\"labelValue\":\"The James Group\",\"primaryLabelValue\":\"The James Group\"}},{\"attributeHeader\":{\"labelValue\":\"The LaSalle Network\",\"primaryLabelValue\":\"The LaSalle Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Lavidge Company\",\"primaryLabelValue\":\"The Lavidge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Leads Network\",\"primaryLabelValue\":\"The Leads Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Legacy Network\",\"primaryLabelValue\":\"The Legacy Network\"}},{\"attributeHeader\":{\"labelValue\":\"The List\",\"primaryLabelValue\":\"The List\"}},{\"attributeHeader\":{\"labelValue\":\"The Logic Group\",\"primaryLabelValue\":\"The Logic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Logistics Company\",\"primaryLabelValue\":\"The Logistics Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Macomb Group\",\"primaryLabelValue\":\"The Macomb Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Maslow Media Group\",\"primaryLabelValue\":\"The Maslow Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Matrix Companies\",\"primaryLabelValue\":\"The Matrix Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Maven Group\",\"primaryLabelValue\":\"The Maven Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Millennium Group\",\"primaryLabelValue\":\"The Millennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Newtron Group\",\"primaryLabelValue\":\"The Newtron Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Presidio Group\",\"primaryLabelValue\":\"The Presidio Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PTR Group\",\"primaryLabelValue\":\"The PTR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Royalty Network\",\"primaryLabelValue\":\"The Royalty Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Saxon Group\",\"primaryLabelValue\":\"The Saxon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Shams Group\",\"primaryLabelValue\":\"The Shams Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Wentwood Companies\",\"primaryLabelValue\":\"The Wentwood Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Tier 1 Performance Solutions\",\"primaryLabelValue\":\"Tier 1 Performance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Timbercon\",\"primaryLabelValue\":\"Timbercon\"}},{\"attributeHeader\":{\"labelValue\":\"Timeshare Relief\",\"primaryLabelValue\":\"Timeshare Relief\"}},{\"attributeHeader\":{\"labelValue\":\"Tire Group International\",\"primaryLabelValue\":\"Tire Group International\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"TitleVest\",\"primaryLabelValue\":\"TitleVest\"}},{\"attributeHeader\":{\"labelValue\":\"tmg-e*media\",\"primaryLabelValue\":\"tmg-e*media\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"TMW Systems\",\"primaryLabelValue\":\"TMW Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TOD\",\"primaryLabelValue\":\"TOD\"}},{\"attributeHeader\":{\"labelValue\":\"Today's Business Solutions\",\"primaryLabelValue\":\"Today's Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Tolunay-Wong Engineers\",\"primaryLabelValue\":\"Tolunay-Wong Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Topaz Systems\",\"primaryLabelValue\":\"Topaz Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TopSpot Internet Marketing\",\"primaryLabelValue\":\"TopSpot Internet Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Total Medical Solutions\",\"primaryLabelValue\":\"Total Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Total Quality Logistics\",\"primaryLabelValue\":\"Total Quality Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Totally Tickets\",\"primaryLabelValue\":\"Totally Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"TransExpress\",\"primaryLabelValue\":\"TransExpress\"}},{\"attributeHeader\":{\"labelValue\":\"Transfinder\",\"primaryLabelValue\":\"Transfinder\"}},{\"attributeHeader\":{\"labelValue\":\"TransPerfect\",\"primaryLabelValue\":\"TransPerfect\"}},{\"attributeHeader\":{\"labelValue\":\"Transportation Insight\",\"primaryLabelValue\":\"Transportation Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Transtyle\",\"primaryLabelValue\":\"Transtyle\"}},{\"attributeHeader\":{\"labelValue\":\"Tree of Life Bookstores\",\"primaryLabelValue\":\"Tree of Life Bookstores\"}},{\"attributeHeader\":{\"labelValue\":\"Treo Solutions\",\"primaryLabelValue\":\"Treo Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Resources\",\"primaryLabelValue\":\"Triad Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Contract Management\",\"primaryLabelValue\":\"Trident Contract Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trilibis\",\"primaryLabelValue\":\"Trilibis\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Creek\",\"primaryLabelValue\":\"Triple Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Tristar Products\",\"primaryLabelValue\":\"Tristar Products\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TruPay\",\"primaryLabelValue\":\"TruPay\"}},{\"attributeHeader\":{\"labelValue\":\"Trusant Technologies\",\"primaryLabelValue\":\"Trusant Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tully Rinckey\",\"primaryLabelValue\":\"Tully Rinckey\"}},{\"attributeHeader\":{\"labelValue\":\"Turbocam\",\"primaryLabelValue\":\"Turbocam\"}},{\"attributeHeader\":{\"labelValue\":\"Turner Industries\",\"primaryLabelValue\":\"Turner Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Turning Technologies\",\"primaryLabelValue\":\"Turning Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Island Foods\",\"primaryLabelValue\":\"Turtle Island Foods\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Tax Advantage\",\"primaryLabelValue\":\"U.S. Tax Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Unidine\",\"primaryLabelValue\":\"Unidine\"}},{\"attributeHeader\":{\"labelValue\":\"United Data Technologies\",\"primaryLabelValue\":\"United Data Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"US Tech Solutions\",\"primaryLabelValue\":\"US Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US21\",\"primaryLabelValue\":\"US21\"}},{\"attributeHeader\":{\"labelValue\":\"USA Mortgage\",\"primaryLabelValue\":\"USA Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"User Insight\",\"primaryLabelValue\":\"User Insight\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Valir Health\",\"primaryLabelValue\":\"Valir Health\"}},{\"attributeHeader\":{\"labelValue\":\"VanderHouwen\",\"primaryLabelValue\":\"VanderHouwen\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"Vedicsoft\",\"primaryLabelValue\":\"Vedicsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Venable\",\"primaryLabelValue\":\"Venable\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vera Bradley\",\"primaryLabelValue\":\"Vera Bradley\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Engineering\",\"primaryLabelValue\":\"Veracity Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"VeriStor Systems\",\"primaryLabelValue\":\"VeriStor Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Verndale\",\"primaryLabelValue\":\"Verndale\"}},{\"attributeHeader\":{\"labelValue\":\"Verst Group\",\"primaryLabelValue\":\"Verst Group\"}},{\"attributeHeader\":{\"labelValue\":\"Verti-Crete\",\"primaryLabelValue\":\"Verti-Crete\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilan\",\"primaryLabelValue\":\"Vigilan\"}},{\"attributeHeader\":{\"labelValue\":\"Villa Fresh Italian Kitchen\",\"primaryLabelValue\":\"Villa Fresh Italian Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Graffiti\",\"primaryLabelValue\":\"Virtual Graffiti\"}},{\"attributeHeader\":{\"labelValue\":\"Visionet Systems\",\"primaryLabelValue\":\"Visionet Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Visp.net\",\"primaryLabelValue\":\"Visp.net\"}},{\"attributeHeader\":{\"labelValue\":\"Vista Window\",\"primaryLabelValue\":\"Vista Window\"}},{\"attributeHeader\":{\"labelValue\":\"VitaDigest.com\",\"primaryLabelValue\":\"VitaDigest.com\"}},{\"attributeHeader\":{\"labelValue\":\"Vitalize Consulting Solutions\",\"primaryLabelValue\":\"Vitalize Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Vladimir Jones\",\"primaryLabelValue\":\"Vladimir Jones\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Vosges Haut Chocolat\",\"primaryLabelValue\":\"Vosges Haut Chocolat\"}},{\"attributeHeader\":{\"labelValue\":\"Vozzcom\",\"primaryLabelValue\":\"Vozzcom\"}},{\"attributeHeader\":{\"labelValue\":\"VSoft\",\"primaryLabelValue\":\"VSoft\"}},{\"attributeHeader\":{\"labelValue\":\"VST Consulting\",\"primaryLabelValue\":\"VST Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"VXI Global Solutions\",\"primaryLabelValue\":\"VXI Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"WahlcoMetroflex\",\"primaryLabelValue\":\"WahlcoMetroflex\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wallace\",\"primaryLabelValue\":\"Wallace\"}},{\"attributeHeader\":{\"labelValue\":\"Wasatch Software\",\"primaryLabelValue\":\"Wasatch Software\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Direct\",\"primaryLabelValue\":\"Wave Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Form Systems\",\"primaryLabelValue\":\"Wave Form Systems\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"Weather Decision Technologies\",\"primaryLabelValue\":\"Weather Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WebsiteBiz\",\"primaryLabelValue\":\"WebsiteBiz\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"West\",\"primaryLabelValue\":\"West\"}},{\"attributeHeader\":{\"labelValue\":\"Western Dovetail\",\"primaryLabelValue\":\"Western Dovetail\"}},{\"attributeHeader\":{\"labelValue\":\"Western Petroleum\",\"primaryLabelValue\":\"Western Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"WFN Strategies\",\"primaryLabelValue\":\"WFN Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"WhatSheBuys\",\"primaryLabelValue\":\"WhatSheBuys\"}},{\"attributeHeader\":{\"labelValue\":\"White & Case\",\"primaryLabelValue\":\"White & Case\"}},{\"attributeHeader\":{\"labelValue\":\"White Horse\",\"primaryLabelValue\":\"White Horse\"}},{\"attributeHeader\":{\"labelValue\":\"Whiteriver Construction\",\"primaryLabelValue\":\"Whiteriver Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Williams & Connolly\",\"primaryLabelValue\":\"Williams & Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Distribution\",\"primaryLabelValue\":\"Windy City Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless City\",\"primaryLabelValue\":\"Wireless City\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wiss, Janney, Elstner Associates\",\"primaryLabelValue\":\"Wiss, Janney, Elstner Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wittenberg Weiner Consulting\",\"primaryLabelValue\":\"Wittenberg Weiner Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WolfePak\",\"primaryLabelValue\":\"WolfePak\"}},{\"attributeHeader\":{\"labelValue\":\"Wonderland Enchanted Bakery\",\"primaryLabelValue\":\"Wonderland Enchanted Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"WorkSmart\",\"primaryLabelValue\":\"WorkSmart\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Travel Staffing\",\"primaryLabelValue\":\"Worldwide Travel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Wpromote\",\"primaryLabelValue\":\"Wpromote\"}},{\"attributeHeader\":{\"labelValue\":\"XCEND Group\",\"primaryLabelValue\":\"XCEND Group\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"XPO\",\"primaryLabelValue\":\"XPO\"}},{\"attributeHeader\":{\"labelValue\":\"Yellow Cab Company of Dallas Fort Worth\",\"primaryLabelValue\":\"Yellow Cab Company of Dallas Fort Worth\"}},{\"attributeHeader\":{\"labelValue\":\"Yerba Buena Engineering & Construction\",\"primaryLabelValue\":\"Yerba Buena Engineering & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zekiah Technologies\",\"primaryLabelValue\":\"Zekiah Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zillion Technologies\",\"primaryLabelValue\":\"Zillion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zooom Printing\",\"primaryLabelValue\":\"Zooom Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Zoup! Fresh Soup\",\"primaryLabelValue\":\"Zoup! Fresh Soup\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 Postcards\",\"primaryLabelValue\":\"1-800 Postcards\"}},{\"attributeHeader\":{\"labelValue\":\"2HB Software Designs\",\"primaryLabelValue\":\"2HB Software Designs\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"4th Source\",\"primaryLabelValue\":\"4th Source\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"90octane\",\"primaryLabelValue\":\"90octane\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"A Squared Group\",\"primaryLabelValue\":\"A Squared Group\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"ABBTech Staffing Services\",\"primaryLabelValue\":\"ABBTech Staffing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Able Patrol and Guard\",\"primaryLabelValue\":\"Able Patrol and Guard\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Absolute Concrete Construction\",\"primaryLabelValue\":\"Absolute Concrete Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accelera Solutions\",\"primaryLabelValue\":\"Accelera Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Display Group\",\"primaryLabelValue\":\"Access Display Group\"}},{\"attributeHeader\":{\"labelValue\":\"Action Envelope\",\"primaryLabelValue\":\"Action Envelope\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Materials\",\"primaryLabelValue\":\"Adaptive Materials\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage PressurePro\",\"primaryLabelValue\":\"Advantage PressurePro\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Radiology Billing\",\"primaryLabelValue\":\"Advocate Radiology Billing\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aeneas Internet and Telephone\",\"primaryLabelValue\":\"Aeneas Internet and Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Air Serv\",\"primaryLabelValue\":\"Air Serv\"}},{\"attributeHeader\":{\"labelValue\":\"Airnet Group\",\"primaryLabelValue\":\"Airnet Group\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"Akerman Senterfitt\",\"primaryLabelValue\":\"Akerman Senterfitt\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Alcorn McBride\",\"primaryLabelValue\":\"Alcorn McBride\"}},{\"attributeHeader\":{\"labelValue\":\"Alexander Open Systems\",\"primaryLabelValue\":\"Alexander Open Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Copy Products\",\"primaryLabelValue\":\"All Copy Products\"}},{\"attributeHeader\":{\"labelValue\":\"All4\",\"primaryLabelValue\":\"All4\"}},{\"attributeHeader\":{\"labelValue\":\"Allconnect\",\"primaryLabelValue\":\"Allconnect\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Technologies\",\"primaryLabelValue\":\"Alliance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Allied 100\",\"primaryLabelValue\":\"Allied 100\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Source\",\"primaryLabelValue\":\"Alpha Source\"}},{\"attributeHeader\":{\"labelValue\":\"Alston & Bird\",\"primaryLabelValue\":\"Alston & Bird\"}},{\"attributeHeader\":{\"labelValue\":\"altE\",\"primaryLabelValue\":\"altE\"}},{\"attributeHeader\":{\"labelValue\":\"Altec Solutions Group\",\"primaryLabelValue\":\"Altec Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Always Best Care Senior Services\",\"primaryLabelValue\":\"Always Best Care Senior Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"American Broadband\",\"primaryLabelValue\":\"American Broadband\"}},{\"attributeHeader\":{\"labelValue\":\"American Business Solutions\",\"primaryLabelValue\":\"American Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Home Companions\",\"primaryLabelValue\":\"American Home Companions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"American Swiss Products\",\"primaryLabelValue\":\"American Swiss Products\"}},{\"attributeHeader\":{\"labelValue\":\"AmeriQuest Transportation Services\",\"primaryLabelValue\":\"AmeriQuest Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amherst Partners\",\"primaryLabelValue\":\"Amherst Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Amotec\",\"primaryLabelValue\":\"Amotec\"}},{\"attributeHeader\":{\"labelValue\":\"Amyx\",\"primaryLabelValue\":\"Amyx\"}},{\"attributeHeader\":{\"labelValue\":\"Anadarko Industries\",\"primaryLabelValue\":\"Anadarko Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Andera\",\"primaryLabelValue\":\"Andera\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews Kurth\",\"primaryLabelValue\":\"Andrews Kurth\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"AngelVision\",\"primaryLabelValue\":\"AngelVision\"}},{\"attributeHeader\":{\"labelValue\":\"Anthem Media Group\",\"primaryLabelValue\":\"Anthem Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"AnythingIT\",\"primaryLabelValue\":\"AnythingIT\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"AnytimeCostumes.com\",\"primaryLabelValue\":\"AnytimeCostumes.com\"}},{\"attributeHeader\":{\"labelValue\":\"AOD Software\",\"primaryLabelValue\":\"AOD Software\"}},{\"attributeHeader\":{\"labelValue\":\"APCO Worldwide\",\"primaryLabelValue\":\"APCO Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Print Technologies\",\"primaryLabelValue\":\"Apex Print Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Technology Group\",\"primaryLabelValue\":\"Apex Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Apple-Metro\",\"primaryLabelValue\":\"Apple-Metro\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Data\",\"primaryLabelValue\":\"Applied Data\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Scientific Instrumentation\",\"primaryLabelValue\":\"Applied Scientific Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"APT Research\",\"primaryLabelValue\":\"APT Research\"}},{\"attributeHeader\":{\"labelValue\":\"Aqua Superstore\",\"primaryLabelValue\":\"Aqua Superstore\"}},{\"attributeHeader\":{\"labelValue\":\"Aquifer Solutions\",\"primaryLabelValue\":\"Aquifer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Arizon Companies\",\"primaryLabelValue\":\"Arizon Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Arizona Blinds\",\"primaryLabelValue\":\"Arizona Blinds\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arketi Group\",\"primaryLabelValue\":\"Arketi Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Partnership\",\"primaryLabelValue\":\"Arrow Partnership\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Arrowhead Advertising\",\"primaryLabelValue\":\"Arrowhead Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Artech Information Systems\",\"primaryLabelValue\":\"Artech Information Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend One\",\"primaryLabelValue\":\"Ascend One\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ASE Technology\",\"primaryLabelValue\":\"ASE Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ashland Technologies\",\"primaryLabelValue\":\"Ashland Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Transportation\",\"primaryLabelValue\":\"Aspen Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Aspire Systems\",\"primaryLabelValue\":\"Aspire Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Asset Protection and Security Services\",\"primaryLabelValue\":\"Asset Protection and Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Astir IT Solutions\",\"primaryLabelValue\":\"Astir IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A-T Solutions\",\"primaryLabelValue\":\"A-T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Oil Company\",\"primaryLabelValue\":\"Atlas Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"Auction Systems Auctioneers & Appraisers\",\"primaryLabelValue\":\"Auction Systems Auctioneers & Appraisers\"}},{\"attributeHeader\":{\"labelValue\":\"Autohaus Arizona\",\"primaryLabelValue\":\"Autohaus Arizona\"}},{\"attributeHeader\":{\"labelValue\":\"Automated Voice & Data Solutions\",\"primaryLabelValue\":\"Automated Voice & Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Global Solutions\",\"primaryLabelValue\":\"Avalon Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avenue You Beauty Store\",\"primaryLabelValue\":\"Avenue You Beauty Store\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Ink\",\"primaryLabelValue\":\"AVID Ink\"}},{\"attributeHeader\":{\"labelValue\":\"Avisena\",\"primaryLabelValue\":\"Avisena\"}},{\"attributeHeader\":{\"labelValue\":\"Avondale Partners\",\"primaryLabelValue\":\"Avondale Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Aware Web Solutions\",\"primaryLabelValue\":\"Aware Web Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AWSI\",\"primaryLabelValue\":\"AWSI\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Aztec Systems\",\"primaryLabelValue\":\"Aztec Systems\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"BackgroundChecks.com\",\"primaryLabelValue\":\"BackgroundChecks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryLabelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"}},{\"attributeHeader\":{\"labelValue\":\"BankServ\",\"primaryLabelValue\":\"BankServ\"}},{\"attributeHeader\":{\"labelValue\":\"Barhorst Insurance Group\",\"primaryLabelValue\":\"Barhorst Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"Battle Resource Management\",\"primaryLabelValue\":\"Battle Resource Management\"}},{\"attributeHeader\":{\"labelValue\":\"Batzner Pest Management\",\"primaryLabelValue\":\"Batzner Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"BBE\",\"primaryLabelValue\":\"BBE\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Belmont Labs\",\"primaryLabelValue\":\"Belmont Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Benjamin Franklin Plumbing\",\"primaryLabelValue\":\"Benjamin Franklin Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Best Upon Request\",\"primaryLabelValue\":\"Best Upon Request\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"Bevilacqua Research Corporation\",\"primaryLabelValue\":\"Bevilacqua Research Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"BI Consulting Group\",\"primaryLabelValue\":\"BI Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Big Red Fasteners\",\"primaryLabelValue\":\"Big Red Fasteners\"}},{\"attributeHeader\":{\"labelValue\":\"BioPharm Systems\",\"primaryLabelValue\":\"BioPharm Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blair Companies\",\"primaryLabelValue\":\"Blair Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Blinc\",\"primaryLabelValue\":\"Blinc\"}},{\"attributeHeader\":{\"labelValue\":\"Blitz\",\"primaryLabelValue\":\"Blitz\"}},{\"attributeHeader\":{\"labelValue\":\"Blount Fine Foods\",\"primaryLabelValue\":\"Blount Fine Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Baker\",\"primaryLabelValue\":\"Blue Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Blue C Advertising\",\"primaryLabelValue\":\"Blue C Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Moon Works\",\"primaryLabelValue\":\"Blue Moon Works\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Star Partners\",\"primaryLabelValue\":\"Blue Star Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"Bodybuilding.com\",\"primaryLabelValue\":\"Bodybuilding.com\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Brand Up\",\"primaryLabelValue\":\"Brand Up\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"Business Network Consulting\",\"primaryLabelValue\":\"Business Network Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"BusinesSuites\",\"primaryLabelValue\":\"BusinesSuites\"}},{\"attributeHeader\":{\"labelValue\":\"BuyATimeshare.com\",\"primaryLabelValue\":\"BuyATimeshare.com\"}},{\"attributeHeader\":{\"labelValue\":\"Byrum Heating & A/C\",\"primaryLabelValue\":\"Byrum Heating & A/C\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"CableOrganizer.com\",\"primaryLabelValue\":\"CableOrganizer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Rio\",\"primaryLabelValue\":\"Cafe Rio\"}},{\"attributeHeader\":{\"labelValue\":\"Calhoun International\",\"primaryLabelValue\":\"Calhoun International\"}},{\"attributeHeader\":{\"labelValue\":\"Call Experts\",\"primaryLabelValue\":\"Call Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"CalPOP.com\",\"primaryLabelValue\":\"CalPOP.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cambria Solutions\",\"primaryLabelValue\":\"Cambria Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campfire Interactive\",\"primaryLabelValue\":\"Campfire Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Capital Investment Advisors\",\"primaryLabelValue\":\"Capital Investment Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Capital TechSearch\",\"primaryLabelValue\":\"Capital TechSearch\"}},{\"attributeHeader\":{\"labelValue\":\"CapRock Communications\",\"primaryLabelValue\":\"CapRock Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"CapTech Ventures\",\"primaryLabelValue\":\"CapTech Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Culinary Services\",\"primaryLabelValue\":\"Cardinal Culinary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carolina Tree Care\",\"primaryLabelValue\":\"Carolina Tree Care\"}},{\"attributeHeader\":{\"labelValue\":\"Carter Brothers\",\"primaryLabelValue\":\"Carter Brothers\"}},{\"attributeHeader\":{\"labelValue\":\"Cascades Technologies\",\"primaryLabelValue\":\"Cascades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cases By Source\",\"primaryLabelValue\":\"Cases By Source\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Cassaday & Company\",\"primaryLabelValue\":\"Cassaday & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cat5 Commerce\",\"primaryLabelValue\":\"Cat5 Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"Catacel\",\"primaryLabelValue\":\"Catacel\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst\",\"primaryLabelValue\":\"Catalyst\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Repository Systems\",\"primaryLabelValue\":\"Catalyst Repository Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Technology\",\"primaryLabelValue\":\"Catapult Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Centare Group\",\"primaryLabelValue\":\"Centare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Central Welding Supply\",\"primaryLabelValue\":\"Central Welding Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Centrinex\",\"primaryLabelValue\":\"Centrinex\"}},{\"attributeHeader\":{\"labelValue\":\"Centro\",\"primaryLabelValue\":\"Centro\"}},{\"attributeHeader\":{\"labelValue\":\"Century Service Affiliates\",\"primaryLabelValue\":\"Century Service Affiliates\"}},{\"attributeHeader\":{\"labelValue\":\"CH Mack\",\"primaryLabelValue\":\"CH Mack\"}},{\"attributeHeader\":{\"labelValue\":\"Chacon Autos\",\"primaryLabelValue\":\"Chacon Autos\"}},{\"attributeHeader\":{\"labelValue\":\"Chansen Publishing\",\"primaryLabelValue\":\"Chansen Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman and Cutler\",\"primaryLabelValue\":\"Chapman and Cutler\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cherry Optical\",\"primaryLabelValue\":\"Cherry Optical\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Choctaw Professional Resources Enterprise\",\"primaryLabelValue\":\"Choctaw Professional Resources Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Circle Computer Resources\",\"primaryLabelValue\":\"Circle Computer Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CityTwist\",\"primaryLabelValue\":\"CityTwist\"}},{\"attributeHeader\":{\"labelValue\":\"CK Environmental\",\"primaryLabelValue\":\"CK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Consulting\",\"primaryLabelValue\":\"Clarity Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clary Business Machines\",\"primaryLabelValue\":\"Clary Business Machines\"}},{\"attributeHeader\":{\"labelValue\":\"ClassBook.com\",\"primaryLabelValue\":\"ClassBook.com\"}},{\"attributeHeader\":{\"labelValue\":\"Classic Instruments\",\"primaryLabelValue\":\"Classic Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Cleary Gottlieb Steen & Hamilton\",\"primaryLabelValue\":\"Cleary Gottlieb Steen & Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"clevermethod\",\"primaryLabelValue\":\"clevermethod\"}},{\"attributeHeader\":{\"labelValue\":\"Clickstop\",\"primaryLabelValue\":\"Clickstop\"}},{\"attributeHeader\":{\"labelValue\":\"Clockwork Home Services\",\"primaryLabelValue\":\"Clockwork Home Services\"}},{\"attributeHeader\":{\"labelValue\":\"CloseOutStore.net\",\"primaryLabelValue\":\"CloseOutStore.net\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"CMA Consulting Services\",\"primaryLabelValue\":\"CMA Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CMI\",\"primaryLabelValue\":\"CMI\"}},{\"attributeHeader\":{\"labelValue\":\"CMIT Solutions\",\"primaryLabelValue\":\"CMIT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Logistics Group\",\"primaryLabelValue\":\"Coastal Logistics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobb Pediatric Therapy Services\",\"primaryLabelValue\":\"Cobb Pediatric Therapy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cobble Hill Trailer Sales\",\"primaryLabelValue\":\"Cobble Hill Trailer Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Code Shred\",\"primaryLabelValue\":\"Code Shred\"}},{\"attributeHeader\":{\"labelValue\":\"Codeworks\",\"primaryLabelValue\":\"Codeworks\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Solutions\",\"primaryLabelValue\":\"Cogent Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ColdCypress\",\"primaryLabelValue\":\"ColdCypress\"}},{\"attributeHeader\":{\"labelValue\":\"Colo4Dallas\",\"primaryLabelValue\":\"Colo4Dallas\"}},{\"attributeHeader\":{\"labelValue\":\"Color-Ad\",\"primaryLabelValue\":\"Color-Ad\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Comm3\",\"primaryLabelValue\":\"Comm3\"}},{\"attributeHeader\":{\"labelValue\":\"Comp Consults\",\"primaryLabelValue\":\"Comp Consults\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Healthcare Communications\",\"primaryLabelValue\":\"Compass Healthcare Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Compendium\",\"primaryLabelValue\":\"Compendium\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Payroll Processing\",\"primaryLabelValue\":\"Complete Payroll Processing\"}},{\"attributeHeader\":{\"labelValue\":\"CompNation\",\"primaryLabelValue\":\"CompNation\"}},{\"attributeHeader\":{\"labelValue\":\"Compusoft Integrated Solutions\",\"primaryLabelValue\":\"Compusoft Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Solutions and Software International\",\"primaryLabelValue\":\"Computer Solutions and Software International\"}},{\"attributeHeader\":{\"labelValue\":\"Computerized Facility Integration\",\"primaryLabelValue\":\"Computerized Facility Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Concentric Healthcare Solutions\",\"primaryLabelValue\":\"Concentric Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Professional Services\",\"primaryLabelValue\":\"Concord Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Cable Solutions\",\"primaryLabelValue\":\"Consolidated Cable Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Consultedge\",\"primaryLabelValue\":\"Consultedge\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Sales Solutions\",\"primaryLabelValue\":\"Consumer Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contemporary Staffing Solutions\",\"primaryLabelValue\":\"Contemporary Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Data Services\",\"primaryLabelValue\":\"Convention Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Models & Talent\",\"primaryLabelValue\":\"Convention Models & Talent\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Cooley Godward Kronish\",\"primaryLabelValue\":\"Cooley Godward Kronish\"}},{\"attributeHeader\":{\"labelValue\":\"Corbin\",\"primaryLabelValue\":\"Corbin\"}},{\"attributeHeader\":{\"labelValue\":\"CoreMedical Group\",\"primaryLabelValue\":\"CoreMedical Group\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Allocation Services\",\"primaryLabelValue\":\"Corporate Allocation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Safe Specialists\",\"primaryLabelValue\":\"Corporate Safe Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Technologies\",\"primaryLabelValue\":\"Corporate Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate United\",\"primaryLabelValue\":\"Corporate United\"}},{\"attributeHeader\":{\"labelValue\":\"Cotter Consulting\",\"primaryLabelValue\":\"Cotter Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cottonwood Financial\",\"primaryLabelValue\":\"Cottonwood Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CRAssociates\",\"primaryLabelValue\":\"CRAssociates\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Lodging Solutions\",\"primaryLabelValue\":\"Creative Lodging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Presentations\",\"primaryLabelValue\":\"Creative Presentations\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Tent International\",\"primaryLabelValue\":\"Creative Tent International\"}},{\"attributeHeader\":{\"labelValue\":\"Crescent City Packaging\",\"primaryLabelValue\":\"Crescent City Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis\",\"primaryLabelValue\":\"Crowe Paradis\"}},{\"attributeHeader\":{\"labelValue\":\"Crowell & Moring\",\"primaryLabelValue\":\"Crowell & Moring\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Finishing Systems\",\"primaryLabelValue\":\"Crystal Finishing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\",\"primaryLabelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Effective Solutions\",\"primaryLabelValue\":\"Customer Effective Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cutter & Company\",\"primaryLabelValue\":\"Cutter & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cvision Technologies\",\"primaryLabelValue\":\"Cvision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CyDex Pharmaceuticals\",\"primaryLabelValue\":\"CyDex Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Cyquent\",\"primaryLabelValue\":\"Cyquent\"}},{\"attributeHeader\":{\"labelValue\":\"D&K Engineering\",\"primaryLabelValue\":\"D&K Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Dagher Engineering\",\"primaryLabelValue\":\"Dagher Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Data Center Resources\",\"primaryLabelValue\":\"Data Center Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Data Processing Services\",\"primaryLabelValue\":\"Data Processing Services\"}},{\"attributeHeader\":{\"labelValue\":\"DataCert\",\"primaryLabelValue\":\"DataCert\"}},{\"attributeHeader\":{\"labelValue\":\"DataDirect Networks\",\"primaryLabelValue\":\"DataDirect Networks\"}},{\"attributeHeader\":{\"labelValue\":\"DataMart Direct\",\"primaryLabelValue\":\"DataMart Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datotel\",\"primaryLabelValue\":\"Datotel\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Wright Tremaine\",\"primaryLabelValue\":\"Davis Wright Tremaine\"}},{\"attributeHeader\":{\"labelValue\":\"Dawson Logistics\",\"primaryLabelValue\":\"Dawson Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Daymark Solutions\",\"primaryLabelValue\":\"Daymark Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dayspring Restoration\",\"primaryLabelValue\":\"Dayspring Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Evans & Associates\",\"primaryLabelValue\":\"Dean Evans & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dean's Professional Service\",\"primaryLabelValue\":\"Dean's Professional Service\"}},{\"attributeHeader\":{\"labelValue\":\"deciBel Research\",\"primaryLabelValue\":\"deciBel Research\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Resources, Inc.\",\"primaryLabelValue\":\"Decision Resources, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Technologies\",\"primaryLabelValue\":\"Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Defran Systems\",\"primaryLabelValue\":\"Defran Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Del Sol\",\"primaryLabelValue\":\"Del Sol\"}},{\"attributeHeader\":{\"labelValue\":\"Delta T Equipment\",\"primaryLabelValue\":\"Delta T Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Dexclusive.com\",\"primaryLabelValue\":\"Dexclusive.com\"}},{\"attributeHeader\":{\"labelValue\":\"DGE\",\"primaryLabelValue\":\"DGE\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Pharmacy Services\",\"primaryLabelValue\":\"Diamond Pharmacy Services\"}},{\"attributeHeader\":{\"labelValue\":\"DiaTri\",\"primaryLabelValue\":\"DiaTri\"}},{\"attributeHeader\":{\"labelValue\":\"DICE\",\"primaryLabelValue\":\"DICE\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Prospectors\",\"primaryLabelValue\":\"Digital Prospectors\"}},{\"attributeHeader\":{\"labelValue\":\"Digitek Computer Products\",\"primaryLabelValue\":\"Digitek Computer Products\"}},{\"attributeHeader\":{\"labelValue\":\"Dinsmore & Shohl\",\"primaryLabelValue\":\"Dinsmore & Shohl\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomaframe.com\",\"primaryLabelValue\":\"Diplomaframe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Dimensions\",\"primaryLabelValue\":\"Direct Dimensions\"}},{\"attributeHeader\":{\"labelValue\":\"directFX Solutions\",\"primaryLabelValue\":\"directFX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Ramps.com\",\"primaryLabelValue\":\"Discount Ramps.com\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Lynx\",\"primaryLabelValue\":\"Diverse Lynx\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Marketing Group\",\"primaryLabelValue\":\"Diversified Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"DKI Services\",\"primaryLabelValue\":\"DKI Services\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DLT Solutions\",\"primaryLabelValue\":\"DLT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DMG Federal\",\"primaryLabelValue\":\"DMG Federal\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Document Solutions\",\"primaryLabelValue\":\"Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Doherty Enterprises\",\"primaryLabelValue\":\"Doherty Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Dougherty & Associates\",\"primaryLabelValue\":\"Dougherty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DRE\",\"primaryLabelValue\":\"DRE\"}},{\"attributeHeader\":{\"labelValue\":\"Drinker Biddle & Reath\",\"primaryLabelValue\":\"Drinker Biddle & Reath\"}},{\"attributeHeader\":{\"labelValue\":\"DSCI\",\"primaryLabelValue\":\"DSCI\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Dutch Valley Auto Works\",\"primaryLabelValue\":\"Dutch Valley Auto Works\"}},{\"attributeHeader\":{\"labelValue\":\"DyKnow\",\"primaryLabelValue\":\"DyKnow\"}},{\"attributeHeader\":{\"labelValue\":\"DynaFire\",\"primaryLabelValue\":\"DynaFire\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Language Center\",\"primaryLabelValue\":\"Dynamic Language Center\"}},{\"attributeHeader\":{\"labelValue\":\"DynaVox\",\"primaryLabelValue\":\"DynaVox\"}},{\"attributeHeader\":{\"labelValue\":\"E & B Natural Resources Management\",\"primaryLabelValue\":\"E & B Natural Resources Management\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Eagan Insurance Agency\",\"primaryLabelValue\":\"Eagan Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Armored Services\",\"primaryLabelValue\":\"Eastern Armored Services\"}},{\"attributeHeader\":{\"labelValue\":\"Easy-Turf\",\"primaryLabelValue\":\"Easy-Turf\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eckenhoff Saunders Architects\",\"primaryLabelValue\":\"Eckenhoff Saunders Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Chic Consignments\",\"primaryLabelValue\":\"Eco-Chic Consignments\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Edifecs\",\"primaryLabelValue\":\"Edifecs\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Data Systems\",\"primaryLabelValue\":\"Educational Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Efficient Lighting\",\"primaryLabelValue\":\"Efficient Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"eFulfillment Service\",\"primaryLabelValue\":\"eFulfillment Service\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobalTech\",\"primaryLabelValue\":\"eGlobalTech\"}},{\"attributeHeader\":{\"labelValue\":\"El Clasificado\",\"primaryLabelValue\":\"El Clasificado\"}},{\"attributeHeader\":{\"labelValue\":\"El Paseo Limousine\",\"primaryLabelValue\":\"El Paseo Limousine\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Data Payment Systems\",\"primaryLabelValue\":\"Electronic Data Payment Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Elite SEM\",\"primaryLabelValue\":\"Elite SEM\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Storage Solutions\",\"primaryLabelValue\":\"Elite Storage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Management\",\"primaryLabelValue\":\"e-Management\"}},{\"attributeHeader\":{\"labelValue\":\"eMazzanti Technologies\",\"primaryLabelValue\":\"eMazzanti Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"EMC Advertising\",\"primaryLabelValue\":\"EMC Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Emergtech Business Solutions\",\"primaryLabelValue\":\"Emergtech Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emkat\",\"primaryLabelValue\":\"Emkat\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eMortgage Logic\",\"primaryLabelValue\":\"eMortgage Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Emplicity\",\"primaryLabelValue\":\"Emplicity\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Plus\",\"primaryLabelValue\":\"Employment Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Screening Services\",\"primaryLabelValue\":\"Employment Screening Services\"}},{\"attributeHeader\":{\"labelValue\":\"EMS\",\"primaryLabelValue\":\"EMS\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Endsight\",\"primaryLabelValue\":\"Endsight\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Kitchen\",\"primaryLabelValue\":\"Energy Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyFirst\",\"primaryLabelValue\":\"EnergyFirst\"}},{\"attributeHeader\":{\"labelValue\":\"EnerNex\",\"primaryLabelValue\":\"EnerNex\"}},{\"attributeHeader\":{\"labelValue\":\"Enmon Enterprises\",\"primaryLabelValue\":\"Enmon Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Enovate\",\"primaryLabelValue\":\"Enovate\"}},{\"attributeHeader\":{\"labelValue\":\"Entrance Software\",\"primaryLabelValue\":\"Entrance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Envestnet\",\"primaryLabelValue\":\"Envestnet\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro Clean Services\",\"primaryLabelValue\":\"Enviro Clean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro-Safe Consulting\",\"primaryLabelValue\":\"Enviro-Safe Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Equus Software\",\"primaryLabelValue\":\"Equus Software\"}},{\"attributeHeader\":{\"labelValue\":\"eROI\",\"primaryLabelValue\":\"eROI\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"eScreen\",\"primaryLabelValue\":\"eScreen\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSilo\",\"primaryLabelValue\":\"eSilo\"}},{\"attributeHeader\":{\"labelValue\":\"ESP Technologies\",\"primaryLabelValue\":\"ESP Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"E-Technologies Group\",\"primaryLabelValue\":\"E-Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Eureka Holdings\",\"primaryLabelValue\":\"Eureka Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Euro-Pro\",\"primaryLabelValue\":\"Euro-Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Evergreen Lumber & Truss\",\"primaryLabelValue\":\"Evergreen Lumber & Truss\"}},{\"attributeHeader\":{\"labelValue\":\"Everon Technology Services\",\"primaryLabelValue\":\"Everon Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"EverySport.net\",\"primaryLabelValue\":\"EverySport.net\"}},{\"attributeHeader\":{\"labelValue\":\"eVestment Alliance\",\"primaryLabelValue\":\"eVestment Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Evolv Solutions\",\"primaryLabelValue\":\"Evolv Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"eWinWin\",\"primaryLabelValue\":\"eWinWin\"}},{\"attributeHeader\":{\"labelValue\":\"Exclusive Concepts\",\"primaryLabelValue\":\"Exclusive Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"ExecuTeam Staffing\",\"primaryLabelValue\":\"ExecuTeam Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Executive Clothiers\",\"primaryLabelValue\":\"Executive Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"Exploring.com\",\"primaryLabelValue\":\"Exploring.com\"}},{\"attributeHeader\":{\"labelValue\":\"Express Air Freight Unlimited\",\"primaryLabelValue\":\"Express Air Freight Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Extrakare\",\"primaryLabelValue\":\"Extrakare\"}},{\"attributeHeader\":{\"labelValue\":\"Exxel Outdoors\",\"primaryLabelValue\":\"Exxel Outdoors\"}},{\"attributeHeader\":{\"labelValue\":\"Fabrique\",\"primaryLabelValue\":\"Fabrique\"}},{\"attributeHeader\":{\"labelValue\":\"FairCode Associates\",\"primaryLabelValue\":\"FairCode Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Containers\",\"primaryLabelValue\":\"Falcon Containers\"}},{\"attributeHeader\":{\"labelValue\":\"Family Heritage Life Insurance Company of America\",\"primaryLabelValue\":\"Family Heritage Life Insurance Company of America\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fantastic Sams Hair Salons\",\"primaryLabelValue\":\"Fantastic Sams Hair Salons\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Trac Transportation\",\"primaryLabelValue\":\"Fast Trac Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"FastMac\",\"primaryLabelValue\":\"FastMac\"}},{\"attributeHeader\":{\"labelValue\":\"Fathom SEO\",\"primaryLabelValue\":\"Fathom SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Wholesale\",\"primaryLabelValue\":\"Federated Wholesale\"}},{\"attributeHeader\":{\"labelValue\":\"Fellowship Technologies\",\"primaryLabelValue\":\"Fellowship Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"FGM Architects\",\"primaryLabelValue\":\"FGM Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Designs\",\"primaryLabelValue\":\"Fine Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Promotions\",\"primaryLabelValue\":\"Fine Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\",\"primaryLabelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\"}},{\"attributeHeader\":{\"labelValue\":\"Fire & Flavor\",\"primaryLabelValue\":\"Fire & Flavor\"}},{\"attributeHeader\":{\"labelValue\":\"FireStream WorldWide\",\"primaryLabelValue\":\"FireStream WorldWide\"}},{\"attributeHeader\":{\"labelValue\":\"First Dental Health\",\"primaryLabelValue\":\"First Dental Health\"}},{\"attributeHeader\":{\"labelValue\":\"First Hospitality Group\",\"primaryLabelValue\":\"First Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fish & Richardson\",\"primaryLabelValue\":\"Fish & Richardson\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Five Star Restoration & Construction\",\"primaryLabelValue\":\"Five Star Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Management Solutions\",\"primaryLabelValue\":\"Fleet Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FleetCor Technologies\",\"primaryLabelValue\":\"FleetCor Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fluent Language Solutions\",\"primaryLabelValue\":\"Fluent Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Forensics Consulting Solutions\",\"primaryLabelValue\":\"Forensics Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Riders\",\"primaryLabelValue\":\"Fortis Riders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Title\",\"primaryLabelValue\":\"Foundation Title\"}},{\"attributeHeader\":{\"labelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\",\"primaryLabelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\"}},{\"attributeHeader\":{\"labelValue\":\"Fraser Communications\",\"primaryLabelValue\":\"Fraser Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Fredon\",\"primaryLabelValue\":\"Fredon\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Consulting Group\",\"primaryLabelValue\":\"Freedom Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Healthcare Staffing\",\"primaryLabelValue\":\"Freedom Healthcare Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Metals\",\"primaryLabelValue\":\"Freedom Metals\"}},{\"attributeHeader\":{\"labelValue\":\"FreightCenter\",\"primaryLabelValue\":\"FreightCenter\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"Front Gate Tickets\",\"primaryLabelValue\":\"Front Gate Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Fuellgraf Electric\",\"primaryLabelValue\":\"Fuellgraf Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum IT Services\",\"primaryLabelValue\":\"Fulcrum IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"Fulfillment Strategies International\",\"primaryLabelValue\":\"Fulfillment Strategies International\"}},{\"attributeHeader\":{\"labelValue\":\"Full Circle Wireless\",\"primaryLabelValue\":\"Full Circle Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Fullhouse\",\"primaryLabelValue\":\"Fullhouse\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"Future Media Concepts\",\"primaryLabelValue\":\"Future Media Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"G&A Partners\",\"primaryLabelValue\":\"G&A Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Gafcon\",\"primaryLabelValue\":\"Gafcon\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Galaxy Desserts\",\"primaryLabelValue\":\"Galaxy Desserts\"}},{\"attributeHeader\":{\"labelValue\":\"Gallaher & Associates\",\"primaryLabelValue\":\"Gallaher & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"GAME - Great American Merchandise & Events\",\"primaryLabelValue\":\"GAME - Great American Merchandise & Events\"}},{\"attributeHeader\":{\"labelValue\":\"Game Quest & Game Quest International\",\"primaryLabelValue\":\"Game Quest & Game Quest International\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Garcia Research\",\"primaryLabelValue\":\"Garcia Research\"}},{\"attributeHeader\":{\"labelValue\":\"Gardere Wynne Sewell\",\"primaryLabelValue\":\"Gardere Wynne Sewell\"}},{\"attributeHeader\":{\"labelValue\":\"Garland Industries\",\"primaryLabelValue\":\"Garland Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Garvey's Office Products\",\"primaryLabelValue\":\"Garvey's Office Products\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GBCblue\",\"primaryLabelValue\":\"GBCblue\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genica\",\"primaryLabelValue\":\"Genica\"}},{\"attributeHeader\":{\"labelValue\":\"GEO Consultants\",\"primaryLabelValue\":\"GEO Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Gerimedix\",\"primaryLabelValue\":\"Gerimedix\"}},{\"attributeHeader\":{\"labelValue\":\"Gersh Academy\",\"primaryLabelValue\":\"Gersh Academy\"}},{\"attributeHeader\":{\"labelValue\":\"GetWellNetwork\",\"primaryLabelValue\":\"GetWellNetwork\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Gibraltar Construction\",\"primaryLabelValue\":\"Gibraltar Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Gilero\",\"primaryLabelValue\":\"Gilero\"}},{\"attributeHeader\":{\"labelValue\":\"GlassHouse Technologies\",\"primaryLabelValue\":\"GlassHouse Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Aviation Holdings\",\"primaryLabelValue\":\"Global Aviation Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Global Futures & Forex\",\"primaryLabelValue\":\"Global Futures & Forex\"}},{\"attributeHeader\":{\"labelValue\":\"Global Medical Imaging\",\"primaryLabelValue\":\"Global Medical Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Globoforce\",\"primaryLabelValue\":\"Globoforce\"}},{\"attributeHeader\":{\"labelValue\":\"Glory Days Grill\",\"primaryLabelValue\":\"Glory Days Grill\"}},{\"attributeHeader\":{\"labelValue\":\"Glow Networks\",\"primaryLabelValue\":\"Glow Networks\"}},{\"attributeHeader\":{\"labelValue\":\"GMI\",\"primaryLabelValue\":\"GMI\"}},{\"attributeHeader\":{\"labelValue\":\"GNet Group\",\"primaryLabelValue\":\"GNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goddard Systems\",\"primaryLabelValue\":\"Goddard Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gongos Research\",\"primaryLabelValue\":\"Gongos Research\"}},{\"attributeHeader\":{\"labelValue\":\"goodmortgage.com\",\"primaryLabelValue\":\"goodmortgage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Gotham Technology Group\",\"primaryLabelValue\":\"Gotham Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goulston & Storrs\",\"primaryLabelValue\":\"Goulston & Storrs\"}},{\"attributeHeader\":{\"labelValue\":\"Gramercy Insurance\",\"primaryLabelValue\":\"Gramercy Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Greenleaf Environmental Group\",\"primaryLabelValue\":\"Greenleaf Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Greenwood Industries\",\"primaryLabelValue\":\"Greenwood Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Group Insurance Solutions\",\"primaryLabelValue\":\"Group Insurance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Gruskin Group\",\"primaryLabelValue\":\"Gruskin Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gryphon Technologies\",\"primaryLabelValue\":\"Gryphon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Guzov Ofsink\",\"primaryLabelValue\":\"Guzov Ofsink\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Gun Range Shooting Sports Outlet\",\"primaryLabelValue\":\"H&H Gun Range Shooting Sports Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Halperns' Purveyors of Steak & Seafood\",\"primaryLabelValue\":\"Halperns' Purveyors of Steak & Seafood\"}},{\"attributeHeader\":{\"labelValue\":\"Handi-Ramp\",\"primaryLabelValue\":\"Handi-Ramp\"}},{\"attributeHeader\":{\"labelValue\":\"Hanover Fire & Casualty Insurance\",\"primaryLabelValue\":\"Hanover Fire & Casualty Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Hargrove Engineers + Constructors\",\"primaryLabelValue\":\"Hargrove Engineers + Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Hawk Consultants\",\"primaryLabelValue\":\"Hawk Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Hayes Management Consulting\",\"primaryLabelValue\":\"Hayes Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"Health Integrated\",\"primaryLabelValue\":\"Health Integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Health Market Science\",\"primaryLabelValue\":\"Health Market Science\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Strategy Group\",\"primaryLabelValue\":\"Healthcare Strategy Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCareSeeker.com\",\"primaryLabelValue\":\"HealthCareSeeker.com\"}},{\"attributeHeader\":{\"labelValue\":\"Healthwise\",\"primaryLabelValue\":\"Healthwise\"}},{\"attributeHeader\":{\"labelValue\":\"Heartland Business Systems\",\"primaryLabelValue\":\"Heartland Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heartline Fitness Systems\",\"primaryLabelValue\":\"Heartline Fitness Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heath Ceramics\",\"primaryLabelValue\":\"Heath Ceramics\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hendrick Construction\",\"primaryLabelValue\":\"Hendrick Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Herbspro.com\",\"primaryLabelValue\":\"Herbspro.com\"}},{\"attributeHeader\":{\"labelValue\":\"Heschong Mahone Group\",\"primaryLabelValue\":\"Heschong Mahone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hewett-Kier Construction\",\"primaryLabelValue\":\"Hewett-Kier Construction\"}},{\"attributeHeader\":{\"labelValue\":\"HGA Architects and Engineers\",\"primaryLabelValue\":\"HGA Architects and Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Highland Products Group\",\"primaryLabelValue\":\"Highland Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hiller Plumbing, Heating & Cooling\",\"primaryLabelValue\":\"Hiller Plumbing, Heating & Cooling\"}},{\"attributeHeader\":{\"labelValue\":\"Hinda\",\"primaryLabelValue\":\"Hinda\"}},{\"attributeHeader\":{\"labelValue\":\"Hire Methods\",\"primaryLabelValue\":\"Hire Methods\"}},{\"attributeHeader\":{\"labelValue\":\"Hirease\",\"primaryLabelValue\":\"Hirease\"}},{\"attributeHeader\":{\"labelValue\":\"Hi-Speed\",\"primaryLabelValue\":\"Hi-Speed\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Hoffman Media\",\"primaryLabelValue\":\"Hoffman Media\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"Holland & Hart\",\"primaryLabelValue\":\"Holland & Hart\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (AL)\",\"primaryLabelValue\":\"Home Instead Senior Care (AL)\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Technology\",\"primaryLabelValue\":\"Horizon Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Horsemen Investigations\",\"primaryLabelValue\":\"Horsemen Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"Hosted Solutions Acquisitions\",\"primaryLabelValue\":\"Hosted Solutions Acquisitions\"}},{\"attributeHeader\":{\"labelValue\":\"House of Antique Hardware\",\"primaryLabelValue\":\"House of Antique Hardware\"}},{\"attributeHeader\":{\"labelValue\":\"HSP Direct\",\"primaryLabelValue\":\"HSP Direct\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Hudson Baylor\",\"primaryLabelValue\":\"Hudson Baylor\"}},{\"attributeHeader\":{\"labelValue\":\"Human Technologies\",\"primaryLabelValue\":\"Human Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Humble Abode\",\"primaryLabelValue\":\"Humble Abode\"}},{\"attributeHeader\":{\"labelValue\":\"Hunt & Sons\",\"primaryLabelValue\":\"Hunt & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Hunton & Williams\",\"primaryLabelValue\":\"Hunton & Williams\"}},{\"attributeHeader\":{\"labelValue\":\"HVR Advanced Power Components\",\"primaryLabelValue\":\"HVR Advanced Power Components\"}},{\"attributeHeader\":{\"labelValue\":\"I&I Software\",\"primaryLabelValue\":\"I&I Software\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"Iatric Systems\",\"primaryLabelValue\":\"Iatric Systems\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Holdings\",\"primaryLabelValue\":\"IBT Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"ICE Technologies\",\"primaryLabelValue\":\"ICE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Information Consultants\",\"primaryLabelValue\":\"ICON Information Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"iCore Networks\",\"primaryLabelValue\":\"iCore Networks\"}},{\"attributeHeader\":{\"labelValue\":\"iCruise.com\",\"primaryLabelValue\":\"iCruise.com\"}},{\"attributeHeader\":{\"labelValue\":\"ICS Marketing Support Services\",\"primaryLabelValue\":\"ICS Marketing Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"IDC Technologies\",\"primaryLabelValue\":\"IDC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Innovations\",\"primaryLabelValue\":\"Ideal Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"iFreedom Direct\",\"primaryLabelValue\":\"iFreedom Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ikaria\",\"primaryLabelValue\":\"Ikaria\"}},{\"attributeHeader\":{\"labelValue\":\"iLink Systems\",\"primaryLabelValue\":\"iLink Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Image One\",\"primaryLabelValue\":\"Image One\"}},{\"attributeHeader\":{\"labelValue\":\"ImageFIRST Healthcare Laundry Specialists\",\"primaryLabelValue\":\"ImageFIRST Healthcare Laundry Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"ImageSoft\",\"primaryLabelValue\":\"ImageSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging On Call\",\"primaryLabelValue\":\"Imaging On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Networking\",\"primaryLabelValue\":\"Impact Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Technologies\",\"primaryLabelValue\":\"Impact Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Impressions In Print\",\"primaryLabelValue\":\"Impressions In Print\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"InCircuit Development\",\"primaryLabelValue\":\"InCircuit Development\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"InfiniEdge Software\",\"primaryLabelValue\":\"InfiniEdge Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Network Solutions\",\"primaryLabelValue\":\"Infinity Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Info Directions\",\"primaryLabelValue\":\"Info Directions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Access Systems\",\"primaryLabelValue\":\"Information Access Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Inno Pak\",\"primaryLabelValue\":\"Inno Pak\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Analytics\",\"primaryLabelValue\":\"Innovative Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Integration\",\"primaryLabelValue\":\"Innovative Integration\"}},{\"attributeHeader\":{\"labelValue\":\"InsightsNow\",\"primaryLabelValue\":\"InsightsNow\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Office of America\",\"primaryLabelValue\":\"Insurance Office of America\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Revolution\",\"primaryLabelValue\":\"Insurance Revolution\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Enclosures\",\"primaryLabelValue\":\"Integra Enclosures\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Technologies\",\"primaryLabelValue\":\"Integration Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligrated\",\"primaryLabelValue\":\"Intelligrated\"}},{\"attributeHeader\":{\"labelValue\":\"IntePros Federal\",\"primaryLabelValue\":\"IntePros Federal\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterMed Biomedical Services\",\"primaryLabelValue\":\"InterMed Biomedical Services\"}},{\"attributeHeader\":{\"labelValue\":\"International Medical Resources\",\"primaryLabelValue\":\"International Medical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"International Sourcing\",\"primaryLabelValue\":\"International Sourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"IntraLinks Holdings\",\"primaryLabelValue\":\"IntraLinks Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InVue Security Products\",\"primaryLabelValue\":\"InVue Security Products\"}},{\"attributeHeader\":{\"labelValue\":\"iPay Technologies\",\"primaryLabelValue\":\"iPay Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IPiphany\",\"primaryLabelValue\":\"IPiphany\"}},{\"attributeHeader\":{\"labelValue\":\"IPLogic\",\"primaryLabelValue\":\"IPLogic\"}},{\"attributeHeader\":{\"labelValue\":\"iQor\",\"primaryLabelValue\":\"iQor\"}},{\"attributeHeader\":{\"labelValue\":\"IronTraffic\",\"primaryLabelValue\":\"IronTraffic\"}},{\"attributeHeader\":{\"labelValue\":\"Isagenix International\",\"primaryLabelValue\":\"Isagenix International\"}},{\"attributeHeader\":{\"labelValue\":\"iSi Environmental Services\",\"primaryLabelValue\":\"iSi Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"ISITE Design\",\"primaryLabelValue\":\"ISITE Design\"}},{\"attributeHeader\":{\"labelValue\":\"Isokinetics\",\"primaryLabelValue\":\"Isokinetics\"}},{\"attributeHeader\":{\"labelValue\":\"iSpace\",\"primaryLabelValue\":\"iSpace\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"IT Partners\",\"primaryLabelValue\":\"IT Partners\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"ITS\",\"primaryLabelValue\":\"ITS\"}},{\"attributeHeader\":{\"labelValue\":\"IVCi\",\"primaryLabelValue\":\"IVCi\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"ivgStores\",\"primaryLabelValue\":\"ivgStores\"}},{\"attributeHeader\":{\"labelValue\":\"Jack and Adam's Bicycles\",\"primaryLabelValue\":\"Jack and Adam's Bicycles\"}},{\"attributeHeader\":{\"labelValue\":\"Jack's Small Engine & Generator Service\",\"primaryLabelValue\":\"Jack's Small Engine & Generator Service\"}},{\"attributeHeader\":{\"labelValue\":\"Jacksonville Beach Pediatric Care Center\",\"primaryLabelValue\":\"Jacksonville Beach Pediatric Care Center\"}},{\"attributeHeader\":{\"labelValue\":\"Jacobs Agency\",\"primaryLabelValue\":\"Jacobs Agency\"}},{\"attributeHeader\":{\"labelValue\":\"James Engle Custom Homes\",\"primaryLabelValue\":\"James Engle Custom Homes\"}},{\"attributeHeader\":{\"labelValue\":\"JAT Software\",\"primaryLabelValue\":\"JAT Software\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Jazzercise\",\"primaryLabelValue\":\"Jazzercise\"}},{\"attributeHeader\":{\"labelValue\":\"JB Management\",\"primaryLabelValue\":\"JB Management\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"Jeffer, Mangels, Butler & Marmaro\",\"primaryLabelValue\":\"Jeffer, Mangels, Butler & Marmaro\"}},{\"attributeHeader\":{\"labelValue\":\"Jelec USA\",\"primaryLabelValue\":\"Jelec USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jenkins Security Consultants\",\"primaryLabelValue\":\"Jenkins Security Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Jimmy Beans Wool\",\"primaryLabelValue\":\"Jimmy Beans Wool\"}},{\"attributeHeader\":{\"labelValue\":\"Jordan Health Services\",\"primaryLabelValue\":\"Jordan Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"JPL\",\"primaryLabelValue\":\"JPL\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"KaMedData\",\"primaryLabelValue\":\"KaMedData\"}},{\"attributeHeader\":{\"labelValue\":\"Kasowitz, Benson, Torres & Friedman\",\"primaryLabelValue\":\"Kasowitz, Benson, Torres & Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"KaTom Restaurant Supply\",\"primaryLabelValue\":\"KaTom Restaurant Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Kazoo & Company Toys\",\"primaryLabelValue\":\"Kazoo & Company Toys\"}},{\"attributeHeader\":{\"labelValue\":\"KBW Financial Staffing & Recruiting\",\"primaryLabelValue\":\"KBW Financial Staffing & Recruiting\"}},{\"attributeHeader\":{\"labelValue\":\"Kee Safety\",\"primaryLabelValue\":\"Kee Safety\"}},{\"attributeHeader\":{\"labelValue\":\"Keeprs\",\"primaryLabelValue\":\"Keeprs\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Advantage\",\"primaryLabelValue\":\"Keller Williams Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"KeySource Medical\",\"primaryLabelValue\":\"KeySource Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Kimpton Hotels and Restaurants\",\"primaryLabelValue\":\"Kimpton Hotels and Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Knobbe, Martens, Olson & Bear\",\"primaryLabelValue\":\"Knobbe, Martens, Olson & Bear\"}},{\"attributeHeader\":{\"labelValue\":\"Kramer Levin Naftalis & Frankel\",\"primaryLabelValue\":\"Kramer Levin Naftalis & Frankel\"}},{\"attributeHeader\":{\"labelValue\":\"Kutak Rock\",\"primaryLabelValue\":\"Kutak Rock\"}},{\"attributeHeader\":{\"labelValue\":\"Kutir\",\"primaryLabelValue\":\"Kutir\"}},{\"attributeHeader\":{\"labelValue\":\"L & S Retail Ventures\",\"primaryLabelValue\":\"L & S Retail Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"L.A. Burdick Chocolate\",\"primaryLabelValue\":\"L.A. Burdick Chocolate\"}},{\"attributeHeader\":{\"labelValue\":\"LAgraphico\",\"primaryLabelValue\":\"LAgraphico\"}},{\"attributeHeader\":{\"labelValue\":\"LAI International\",\"primaryLabelValue\":\"LAI International\"}},{\"attributeHeader\":{\"labelValue\":\"Lakeshore Engineering Services\",\"primaryLabelValue\":\"Lakeshore Engineering Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lapre Scali & Company Insurance Services\",\"primaryLabelValue\":\"Lapre Scali & Company Insurance Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laptec\",\"primaryLabelValue\":\"Laptec\"}},{\"attributeHeader\":{\"labelValue\":\"Lasertec\",\"primaryLabelValue\":\"Lasertec\"}},{\"attributeHeader\":{\"labelValue\":\"Late July Organic Snacks\",\"primaryLabelValue\":\"Late July Organic Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"Latham & Watkins\",\"primaryLabelValue\":\"Latham & Watkins\"}},{\"attributeHeader\":{\"labelValue\":\"Latitude Software\",\"primaryLabelValue\":\"Latitude Software\"}},{\"attributeHeader\":{\"labelValue\":\"LawLogix Group\",\"primaryLabelValue\":\"LawLogix Group\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Le Chaperone Rouge Schools\",\"primaryLabelValue\":\"Le Chaperone Rouge Schools\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Solutions\",\"primaryLabelValue\":\"LeapFrog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lebakkens of Wisconsin\",\"primaryLabelValue\":\"Lebakkens of Wisconsin\"}},{\"attributeHeader\":{\"labelValue\":\"Lectrus\",\"primaryLabelValue\":\"Lectrus\"}},{\"attributeHeader\":{\"labelValue\":\"Lee Mathews Equipment\",\"primaryLabelValue\":\"Lee Mathews Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"LeGacy Resource\",\"primaryLabelValue\":\"LeGacy Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Lewellyn Technology\",\"primaryLabelValue\":\"Lewellyn Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Pumps\",\"primaryLabelValue\":\"Liberty Pumps\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tax Service\",\"primaryLabelValue\":\"Liberty Tax Service\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeCare Medical Services\",\"primaryLabelValue\":\"LifeCare Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"LimoRes.net\",\"primaryLabelValue\":\"LimoRes.net\"}},{\"attributeHeader\":{\"labelValue\":\"Link Construction Group\",\"primaryLabelValue\":\"Link Construction Group\"}},{\"attributeHeader\":{\"labelValue\":\"Linx\",\"primaryLabelValue\":\"Linx\"}},{\"attributeHeader\":{\"labelValue\":\"Lionfish Creative\",\"primaryLabelValue\":\"Lionfish Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"List Innovative Solutions\",\"primaryLabelValue\":\"List Innovative Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Litigation Services\",\"primaryLabelValue\":\"Litigation Services\"}},{\"attributeHeader\":{\"labelValue\":\"liveBooks\",\"primaryLabelValue\":\"liveBooks\"}},{\"attributeHeader\":{\"labelValue\":\"LiveOffice\",\"primaryLabelValue\":\"LiveOffice\"}},{\"attributeHeader\":{\"labelValue\":\"LivHOME\",\"primaryLabelValue\":\"LivHOME\"}},{\"attributeHeader\":{\"labelValue\":\"LoadSpring Solutions\",\"primaryLabelValue\":\"LoadSpring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Loeb & Loeb\",\"primaryLabelValue\":\"Loeb & Loeb\"}},{\"attributeHeader\":{\"labelValue\":\"Loeffler Randall\",\"primaryLabelValue\":\"Loeffler Randall\"}},{\"attributeHeader\":{\"labelValue\":\"Logan's Roadhouse\",\"primaryLabelValue\":\"Logan's Roadhouse\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"Look's Gourmet Food\",\"primaryLabelValue\":\"Look's Gourmet Food\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lowe Engineers\",\"primaryLabelValue\":\"Lowe Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"LPL Investment Holdings\",\"primaryLabelValue\":\"LPL Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"LTC Financial Partners\",\"primaryLabelValue\":\"LTC Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Lumenate\",\"primaryLabelValue\":\"Lumenate\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Luminit\",\"primaryLabelValue\":\"Luminit\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lyon Roofing\",\"primaryLabelValue\":\"Lyon Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"M S International\",\"primaryLabelValue\":\"M S International\"}},{\"attributeHeader\":{\"labelValue\":\"M Space Holdings\",\"primaryLabelValue\":\"M Space Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"M2M Communications\",\"primaryLabelValue\":\"M2M Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mailings Unlimited\",\"primaryLabelValue\":\"Mailings Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Makovsky + Company\",\"primaryLabelValue\":\"Makovsky + Company\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Management Services Northwest\",\"primaryLabelValue\":\"Management Services Northwest\"}},{\"attributeHeader\":{\"labelValue\":\"Mankin Media Systems\",\"primaryLabelValue\":\"Mankin Media Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Maranda Enterprises\",\"primaryLabelValue\":\"Maranda Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Marco's Franchising\",\"primaryLabelValue\":\"Marco's Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"Market America\",\"primaryLabelValue\":\"Market America\"}},{\"attributeHeader\":{\"labelValue\":\"Market Street Solutions\",\"primaryLabelValue\":\"Market Street Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MarketCounsel\",\"primaryLabelValue\":\"MarketCounsel\"}},{\"attributeHeader\":{\"labelValue\":\"MarketSphere Consulting\",\"primaryLabelValue\":\"MarketSphere Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MarketWave\",\"primaryLabelValue\":\"MarketWave\"}},{\"attributeHeader\":{\"labelValue\":\"Marlin Network\",\"primaryLabelValue\":\"Marlin Network\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Massage Envy\",\"primaryLabelValue\":\"Massage Envy\"}},{\"attributeHeader\":{\"labelValue\":\"MasterGardening.com\",\"primaryLabelValue\":\"MasterGardening.com\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Communications\",\"primaryLabelValue\":\"Maverick Communications\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaximumASP\",\"primaryLabelValue\":\"MaximumASP\"}},{\"attributeHeader\":{\"labelValue\":\"maxIT Healthcare\",\"primaryLabelValue\":\"maxIT Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Mayday Industries\",\"primaryLabelValue\":\"Mayday Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Mayer Brown\",\"primaryLabelValue\":\"Mayer Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Mayorga Coffee\",\"primaryLabelValue\":\"Mayorga Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCFA\",\"primaryLabelValue\":\"MCFA\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Wentworth\",\"primaryLabelValue\":\"McGraw Wentworth\"}},{\"attributeHeader\":{\"labelValue\":\"McMahon Associates\",\"primaryLabelValue\":\"McMahon Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MedAllocators\",\"primaryLabelValue\":\"MedAllocators\"}},{\"attributeHeader\":{\"labelValue\":\"Media Brokers International\",\"primaryLabelValue\":\"Media Brokers International\"}},{\"attributeHeader\":{\"labelValue\":\"MediConnect Global\",\"primaryLabelValue\":\"MediConnect Global\"}},{\"attributeHeader\":{\"labelValue\":\"MediGain\",\"primaryLabelValue\":\"MediGain\"}},{\"attributeHeader\":{\"labelValue\":\"Medistar\",\"primaryLabelValue\":\"Medistar\"}},{\"attributeHeader\":{\"labelValue\":\"MedNet Solutions\",\"primaryLabelValue\":\"MedNet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MedRisk\",\"primaryLabelValue\":\"MedRisk\"}},{\"attributeHeader\":{\"labelValue\":\"MedSeek\",\"primaryLabelValue\":\"MedSeek\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"Medwing.com\",\"primaryLabelValue\":\"Medwing.com\"}},{\"attributeHeader\":{\"labelValue\":\"MegaPath\",\"primaryLabelValue\":\"MegaPath\"}},{\"attributeHeader\":{\"labelValue\":\"Meier Architecture - Engineering\",\"primaryLabelValue\":\"Meier Architecture - Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"MemoryTen\",\"primaryLabelValue\":\"MemoryTen\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Merz Apothecary\",\"primaryLabelValue\":\"Merz Apothecary\"}},{\"attributeHeader\":{\"labelValue\":\"Metal Resource Solutions\",\"primaryLabelValue\":\"Metal Resource Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Metrofuser\",\"primaryLabelValue\":\"Metrofuser\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Michigan Custom Machines\",\"primaryLabelValue\":\"Michigan Custom Machines\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microfluidic Systems\",\"primaryLabelValue\":\"Microfluidic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Micromedics\",\"primaryLabelValue\":\"Micromedics\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTrain Technologies\",\"primaryLabelValue\":\"MicroTrain Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Underground Technology\",\"primaryLabelValue\":\"Midwest Underground Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Systems\",\"primaryLabelValue\":\"Milestone Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Military Products Group\",\"primaryLabelValue\":\"Military Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"MilitaryByOwner Advertising\",\"primaryLabelValue\":\"MilitaryByOwner Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Milsoft Utility Solutions\",\"primaryLabelValue\":\"Milsoft Utility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MindLeaf Technologies\",\"primaryLabelValue\":\"MindLeaf Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner El Paso\",\"primaryLabelValue\":\"Miner El Paso\"}},{\"attributeHeader\":{\"labelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\",\"primaryLabelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\"}},{\"attributeHeader\":{\"labelValue\":\"MIPRO Consulting\",\"primaryLabelValue\":\"MIPRO Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MiresBall\",\"primaryLabelValue\":\"MiresBall\"}},{\"attributeHeader\":{\"labelValue\":\"Mirion Technologies\",\"primaryLabelValue\":\"Mirion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miro Consulting\",\"primaryLabelValue\":\"Miro Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MISource\",\"primaryLabelValue\":\"MISource\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Support\",\"primaryLabelValue\":\"Mission Support\"}},{\"attributeHeader\":{\"labelValue\":\"Modern Technology Solutions\",\"primaryLabelValue\":\"Modern Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Modo\",\"primaryLabelValue\":\"Modo\"}},{\"attributeHeader\":{\"labelValue\":\"Monitoring Solutions\",\"primaryLabelValue\":\"Monitoring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Monitronics International\",\"primaryLabelValue\":\"Monitronics International\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan, Lewis & Bockius\",\"primaryLabelValue\":\"Morgan, Lewis & Bockius\"}},{\"attributeHeader\":{\"labelValue\":\"Morpheus Media\",\"primaryLabelValue\":\"Morpheus Media\"}},{\"attributeHeader\":{\"labelValue\":\"Mortgagebot\",\"primaryLabelValue\":\"Mortgagebot\"}},{\"attributeHeader\":{\"labelValue\":\"MOSAK Advertising & Insights\",\"primaryLabelValue\":\"MOSAK Advertising & Insights\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"Motive Interactive\",\"primaryLabelValue\":\"Motive Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mountainside Fitness Centers\",\"primaryLabelValue\":\"Mountainside Fitness Centers\"}},{\"attributeHeader\":{\"labelValue\":\"MPAY\",\"primaryLabelValue\":\"MPAY\"}},{\"attributeHeader\":{\"labelValue\":\"mPower Software Services\",\"primaryLabelValue\":\"mPower Software Services\"}},{\"attributeHeader\":{\"labelValue\":\"MRM Construction Services\",\"primaryLabelValue\":\"MRM Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"MTCSC\",\"primaryLabelValue\":\"MTCSC\"}},{\"attributeHeader\":{\"labelValue\":\"Multi Business Systems\",\"primaryLabelValue\":\"Multi Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Bank Services\",\"primaryLabelValue\":\"Multi-Bank Services\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Media Masters\",\"primaryLabelValue\":\"Multi-Media Masters\"}},{\"attributeHeader\":{\"labelValue\":\"Munger, Tolles & Olson\",\"primaryLabelValue\":\"Munger, Tolles & Olson\"}},{\"attributeHeader\":{\"labelValue\":\"Murdoch Security & Investigations\",\"primaryLabelValue\":\"Murdoch Security & Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Mutex Systems\",\"primaryLabelValue\":\"Mutex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MVS\",\"primaryLabelValue\":\"MVS\"}},{\"attributeHeader\":{\"labelValue\":\"Myriad Supply\",\"primaryLabelValue\":\"Myriad Supply\"}},{\"attributeHeader\":{\"labelValue\":\"N.P. Construction of North Florida\",\"primaryLabelValue\":\"N.P. Construction of North Florida\"}},{\"attributeHeader\":{\"labelValue\":\"Naplia\",\"primaryLabelValue\":\"Naplia\"}},{\"attributeHeader\":{\"labelValue\":\"Nascent Systems\",\"primaryLabelValue\":\"Nascent Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Food Group\",\"primaryLabelValue\":\"National Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National Recovery Agency\",\"primaryLabelValue\":\"National Recovery Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Navicure\",\"primaryLabelValue\":\"Navicure\"}},{\"attributeHeader\":{\"labelValue\":\"NavigationArts\",\"primaryLabelValue\":\"NavigationArts\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Near Infinity\",\"primaryLabelValue\":\"Near Infinity\"}},{\"attributeHeader\":{\"labelValue\":\"NeoCom Solutions\",\"primaryLabelValue\":\"NeoCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NeoSystems\",\"primaryLabelValue\":\"NeoSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Nerds On Call\",\"primaryLabelValue\":\"Nerds On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net Transcripts\",\"primaryLabelValue\":\"Net Transcripts\"}},{\"attributeHeader\":{\"labelValue\":\"Net@Work\",\"primaryLabelValue\":\"Net@Work\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"Neteon Technologies\",\"primaryLabelValue\":\"Neteon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NetGain\",\"primaryLabelValue\":\"NetGain\"}},{\"attributeHeader\":{\"labelValue\":\"NETtime Solutions\",\"primaryLabelValue\":\"NETtime Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Network International\",\"primaryLabelValue\":\"Network International\"}},{\"attributeHeader\":{\"labelValue\":\"Network9\",\"primaryLabelValue\":\"Network9\"}},{\"attributeHeader\":{\"labelValue\":\"Nevada State Corporate Network\",\"primaryLabelValue\":\"Nevada State Corporate Network\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Flight Charters\",\"primaryLabelValue\":\"New Flight Charters\"}},{\"attributeHeader\":{\"labelValue\":\"New Holland Brewing\",\"primaryLabelValue\":\"New Holland Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Learning\",\"primaryLabelValue\":\"New Media Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Newegg\",\"primaryLabelValue\":\"Newegg\"}},{\"attributeHeader\":{\"labelValue\":\"Newgen Technologies\",\"primaryLabelValue\":\"Newgen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NEXT Financial Holdings\",\"primaryLabelValue\":\"NEXT Financial Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Nextrials\",\"primaryLabelValue\":\"Nextrials\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Nital Trading\",\"primaryLabelValue\":\"Nital Trading\"}},{\"attributeHeader\":{\"labelValue\":\"No Limit Motorsport\",\"primaryLabelValue\":\"No Limit Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Moving\",\"primaryLabelValue\":\"NorthStar Moving\"}},{\"attributeHeader\":{\"labelValue\":\"NovaCopy\",\"primaryLabelValue\":\"NovaCopy\"}},{\"attributeHeader\":{\"labelValue\":\"NOVO 1\",\"primaryLabelValue\":\"NOVO 1\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelicor\",\"primaryLabelValue\":\"Ntelicor\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Safety Associates\",\"primaryLabelValue\":\"Nuclear Safety Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"NuView Systems\",\"primaryLabelValue\":\"NuView Systems\"}},{\"attributeHeader\":{\"labelValue\":\"O2B Kids\",\"primaryLabelValue\":\"O2B Kids\"}},{\"attributeHeader\":{\"labelValue\":\"Oak Grove Technologies\",\"primaryLabelValue\":\"Oak Grove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Systems\",\"primaryLabelValue\":\"Oasis Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Object Technology Solutions\",\"primaryLabelValue\":\"Object Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ObjectNet Technologies\",\"primaryLabelValue\":\"ObjectNet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OmniVue\",\"primaryLabelValue\":\"OmniVue\"}},{\"attributeHeader\":{\"labelValue\":\"OnDemand Resources\",\"primaryLabelValue\":\"OnDemand Resources\"}},{\"attributeHeader\":{\"labelValue\":\"One Call Now\",\"primaryLabelValue\":\"One Call Now\"}},{\"attributeHeader\":{\"labelValue\":\"One Source\",\"primaryLabelValue\":\"One Source\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Environmental\",\"primaryLabelValue\":\"One Stop Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OneMD\",\"primaryLabelValue\":\"OneMD\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"OpenLink Financial\",\"primaryLabelValue\":\"OpenLink Financial\"}},{\"attributeHeader\":{\"labelValue\":\"OpenSpirit\",\"primaryLabelValue\":\"OpenSpirit\"}},{\"attributeHeader\":{\"labelValue\":\"Operative\",\"primaryLabelValue\":\"Operative\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMA\",\"primaryLabelValue\":\"OptiMA\"}},{\"attributeHeader\":{\"labelValue\":\"Optimum Technology Solutions\",\"primaryLabelValue\":\"Optimum Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oracle Diagnostic Laboratories\",\"primaryLabelValue\":\"Oracle Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Logic\",\"primaryLabelValue\":\"Orbit Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Organize.com\",\"primaryLabelValue\":\"Organize.com\"}},{\"attributeHeader\":{\"labelValue\":\"OriGene Technologies\",\"primaryLabelValue\":\"OriGene Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Orrick, Herrington & Sutcliffe\",\"primaryLabelValue\":\"Orrick, Herrington & Sutcliffe\"}},{\"attributeHeader\":{\"labelValue\":\"Otto Environmental Systems\",\"primaryLabelValue\":\"Otto Environmental Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outreach Telecom and Energy\",\"primaryLabelValue\":\"Outreach Telecom and Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Outsource Partners International\",\"primaryLabelValue\":\"Outsource Partners International\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Payroll\",\"primaryLabelValue\":\"Ovation Payroll\"}},{\"attributeHeader\":{\"labelValue\":\"overstockArt.com\",\"primaryLabelValue\":\"overstockArt.com\"}},{\"attributeHeader\":{\"labelValue\":\"P.W. Grosser Consulting\",\"primaryLabelValue\":\"P.W. Grosser Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Market International\",\"primaryLabelValue\":\"Pacific Market International\"}},{\"attributeHeader\":{\"labelValue\":\"Para-Plus Translations\",\"primaryLabelValue\":\"Para-Plus Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Park\",\"primaryLabelValue\":\"Park\"}},{\"attributeHeader\":{\"labelValue\":\"Parks Associates\",\"primaryLabelValue\":\"Parks Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partners + Napier\",\"primaryLabelValue\":\"Partners + Napier\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Electrical Services\",\"primaryLabelValue\":\"Partners Electrical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Parts Town\",\"primaryLabelValue\":\"Parts Town\"}},{\"attributeHeader\":{\"labelValue\":\"Partsearch Technologies\",\"primaryLabelValue\":\"Partsearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PayLock\",\"primaryLabelValue\":\"PayLock\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Processing\",\"primaryLabelValue\":\"Payment Processing\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"PC Parts\",\"primaryLabelValue\":\"PC Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Peach New Media\",\"primaryLabelValue\":\"Peach New Media\"}},{\"attributeHeader\":{\"labelValue\":\"Peak Health Solutions\",\"primaryLabelValue\":\"Peak Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pediatric Therapeutic Services\",\"primaryLabelValue\":\"Pediatric Therapeutic Services\"}},{\"attributeHeader\":{\"labelValue\":\"PEI\",\"primaryLabelValue\":\"PEI\"}},{\"attributeHeader\":{\"labelValue\":\"Pennoni Associates\",\"primaryLabelValue\":\"Pennoni Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Pentagroup Financial\",\"primaryLabelValue\":\"Pentagroup Financial\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleFinders.com\",\"primaryLabelValue\":\"PeopleFinders.com\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"Peppercom\",\"primaryLabelValue\":\"Peppercom\"}},{\"attributeHeader\":{\"labelValue\":\"PerfectPower\",\"primaryLabelValue\":\"PerfectPower\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Results\",\"primaryLabelValue\":\"Performance Results\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Software\",\"primaryLabelValue\":\"Performance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins+Will\",\"primaryLabelValue\":\"Perkins+Will\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Doctors of America\",\"primaryLabelValue\":\"Pet Doctors of America\"}},{\"attributeHeader\":{\"labelValue\":\"Petersen\",\"primaryLabelValue\":\"Petersen\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharma-Care\",\"primaryLabelValue\":\"Pharma-Care\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaSmart\",\"primaryLabelValue\":\"PharmaSmart\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaStrat\",\"primaryLabelValue\":\"PharmaStrat\"}},{\"attributeHeader\":{\"labelValue\":\"Photo Science\",\"primaryLabelValue\":\"Photo Science\"}},{\"attributeHeader\":{\"labelValue\":\"Phydeaux\",\"primaryLabelValue\":\"Phydeaux\"}},{\"attributeHeader\":{\"labelValue\":\"PicScout\",\"primaryLabelValue\":\"PicScout\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Publishing Group\",\"primaryLabelValue\":\"Pinnacle Publishing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Pita Pit USA\",\"primaryLabelValue\":\"Pita Pit USA\"}},{\"attributeHeader\":{\"labelValue\":\"PJA Advertising + Marketing\",\"primaryLabelValue\":\"PJA Advertising + Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"PlainsCapital\",\"primaryLabelValue\":\"PlainsCapital\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Fitness\",\"primaryLabelValue\":\"Planet Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Plant Fantasies\",\"primaryLabelValue\":\"Plant Fantasies\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"PLS Financial Services\",\"primaryLabelValue\":\"PLS Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"PMOLink\",\"primaryLabelValue\":\"PMOLink\"}},{\"attributeHeader\":{\"labelValue\":\"PolicyTech\",\"primaryLabelValue\":\"PolicyTech\"}},{\"attributeHeader\":{\"labelValue\":\"PolySource\",\"primaryLabelValue\":\"PolySource\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portal Solutions\",\"primaryLabelValue\":\"Portal Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Power Pro-Tech Services\",\"primaryLabelValue\":\"Power Pro-Tech Services\"}},{\"attributeHeader\":{\"labelValue\":\"PowerDirect Marketing\",\"primaryLabelValue\":\"PowerDirect Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Laser Services\",\"primaryLabelValue\":\"Precision Laser Services\"}},{\"attributeHeader\":{\"labelValue\":\"Predictive Service\",\"primaryLabelValue\":\"Predictive Service\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Medical Marketing\",\"primaryLabelValue\":\"Preferred Medical Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Graphics\",\"primaryLabelValue\":\"Premier Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prestige Employee Administrators\",\"primaryLabelValue\":\"Prestige Employee Administrators\"}},{\"attributeHeader\":{\"labelValue\":\"Preval\",\"primaryLabelValue\":\"Preval\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PrintRunner\",\"primaryLabelValue\":\"PrintRunner\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pro-Air Services\",\"primaryLabelValue\":\"Pro-Air Services\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Promotion Consultants\",\"primaryLabelValue\":\"Proforma Promotion Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Spectrum Print Graphics\",\"primaryLabelValue\":\"Proforma Spectrum Print Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Progressive Medical\",\"primaryLabelValue\":\"Progressive Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Project Leadership Associates\",\"primaryLabelValue\":\"Project Leadership Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Projections\",\"primaryLabelValue\":\"Projections\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Promedica\",\"primaryLabelValue\":\"Promedica\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prosoft Technology Group\",\"primaryLabelValue\":\"Prosoft Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"ProtoType Industries\",\"primaryLabelValue\":\"ProtoType Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Providus\",\"primaryLabelValue\":\"Providus\"}},{\"attributeHeader\":{\"labelValue\":\"PSS-Product Support Solutions\",\"primaryLabelValue\":\"PSS-Product Support Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Puente Construction Enterprises\",\"primaryLabelValue\":\"Puente Construction Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse 360\",\"primaryLabelValue\":\"Pulse 360\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse Systems\",\"primaryLabelValue\":\"Pulse Systems\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Qosina\",\"primaryLabelValue\":\"Qosina\"}},{\"attributeHeader\":{\"labelValue\":\"Quagga\",\"primaryLabelValue\":\"Quagga\"}},{\"attributeHeader\":{\"labelValue\":\"Quaker Steak & Lube\",\"primaryLabelValue\":\"Quaker Steak & Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Wine & Spirits\",\"primaryLabelValue\":\"Quality Wine & Spirits\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Research International\",\"primaryLabelValue\":\"Quantum Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"QueBIT\",\"primaryLabelValue\":\"QueBIT\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quorum Business Solutions\",\"primaryLabelValue\":\"Quorum Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R2C Group\",\"primaryLabelValue\":\"R2C Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radical Support\",\"primaryLabelValue\":\"Radical Support\"}},{\"attributeHeader\":{\"labelValue\":\"Radio Flyer\",\"primaryLabelValue\":\"Radio Flyer\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"Radius Financial Group\",\"primaryLabelValue\":\"Radius Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"RAM Technologies\",\"primaryLabelValue\":\"RAM Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Learning Deployment\",\"primaryLabelValue\":\"Rapid Learning Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Raven Rock Workwear\",\"primaryLabelValue\":\"Raven Rock Workwear\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reality Check Network\",\"primaryLabelValue\":\"Reality Check Network\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recurrent Technologies\",\"primaryLabelValue\":\"Recurrent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Red Arrow Logistics\",\"primaryLabelValue\":\"Red Arrow Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Red Cloud Promotions\",\"primaryLabelValue\":\"Red Cloud Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Red Restaurant Group\",\"primaryLabelValue\":\"Red Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"Reliant Transportation\",\"primaryLabelValue\":\"Reliant Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Renewal Design-Build\",\"primaryLabelValue\":\"Renewal Design-Build\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"Rescue Social Change Group\",\"primaryLabelValue\":\"Rescue Social Change Group\"}},{\"attributeHeader\":{\"labelValue\":\"Respira Medical\",\"primaryLabelValue\":\"Respira Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Responsys\",\"primaryLabelValue\":\"Responsys\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Maintenance Service\",\"primaryLabelValue\":\"Retail Maintenance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"RevenueMed\",\"primaryLabelValue\":\"RevenueMed\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Richland\",\"primaryLabelValue\":\"Richland\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RightAnswers\",\"primaryLabelValue\":\"RightAnswers\"}},{\"attributeHeader\":{\"labelValue\":\"RightStaff\",\"primaryLabelValue\":\"RightStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Rinkya\",\"primaryLabelValue\":\"Rinkya\"}},{\"attributeHeader\":{\"labelValue\":\"Road Ranger\",\"primaryLabelValue\":\"Road Ranger\"}},{\"attributeHeader\":{\"labelValue\":\"Roadrunner Transportation Services\",\"primaryLabelValue\":\"Roadrunner Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Rocket Direct Communications\",\"primaryLabelValue\":\"Rocket Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Rokkan\",\"primaryLabelValue\":\"Rokkan\"}},{\"attributeHeader\":{\"labelValue\":\"Rothstein Kass\",\"primaryLabelValue\":\"Rothstein Kass\"}},{\"attributeHeader\":{\"labelValue\":\"Roy Englebrecht Promotions\",\"primaryLabelValue\":\"Roy Englebrecht Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"RPA Engineering\",\"primaryLabelValue\":\"RPA Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"RPI\",\"primaryLabelValue\":\"RPI\"}},{\"attributeHeader\":{\"labelValue\":\"Rumors Salon and Spa\",\"primaryLabelValue\":\"Rumors Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Rustic Crust\",\"primaryLabelValue\":\"Rustic Crust\"}},{\"attributeHeader\":{\"labelValue\":\"RW Armstrong\",\"primaryLabelValue\":\"RW Armstrong\"}},{\"attributeHeader\":{\"labelValue\":\"S&A Cherokee\",\"primaryLabelValue\":\"S&A Cherokee\"}},{\"attributeHeader\":{\"labelValue\":\"S.A. Technology\",\"primaryLabelValue\":\"S.A. Technology\"}},{\"attributeHeader\":{\"labelValue\":\"S4\",\"primaryLabelValue\":\"S4\"}},{\"attributeHeader\":{\"labelValue\":\"Saddleback Plumbing\",\"primaryLabelValue\":\"Saddleback Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"Safe Systems\",\"primaryLabelValue\":\"Safe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Safespan Platform Systems\",\"primaryLabelValue\":\"Safespan Platform Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Environmental Consulting\",\"primaryLabelValue\":\"Sage Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Saladworks\",\"primaryLabelValue\":\"Saladworks\"}},{\"attributeHeader\":{\"labelValue\":\"Sales Partnerships\",\"primaryLabelValue\":\"Sales Partnerships\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Sansay\",\"primaryLabelValue\":\"Sansay\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Saratoga Technologies\",\"primaryLabelValue\":\"Saratoga Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Schill Landscaping and Lawn Care Services\",\"primaryLabelValue\":\"Schill Landscaping and Lawn Care Services\"}},{\"attributeHeader\":{\"labelValue\":\"School House Learning Communities\",\"primaryLabelValue\":\"School House Learning Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Schoolwires\",\"primaryLabelValue\":\"Schoolwires\"}},{\"attributeHeader\":{\"labelValue\":\"Schulte Roth & Zabel\",\"primaryLabelValue\":\"Schulte Roth & Zabel\"}},{\"attributeHeader\":{\"labelValue\":\"Schumacher Group\",\"primaryLabelValue\":\"Schumacher Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schweitzer Engineering Laboratories\",\"primaryLabelValue\":\"Schweitzer Engineering Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Your Trip\",\"primaryLabelValue\":\"Scrap Your Trip\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"SDG\",\"primaryLabelValue\":\"SDG\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Second Wind\",\"primaryLabelValue\":\"Second Wind\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Securicon\",\"primaryLabelValue\":\"Securicon\"}},{\"attributeHeader\":{\"labelValue\":\"Select Communications\",\"primaryLabelValue\":\"Select Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Select Transportation\",\"primaryLabelValue\":\"Select Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Whole Health\",\"primaryLabelValue\":\"Senior Whole Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sense Corp\",\"primaryLabelValue\":\"Sense Corp\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Sentient\",\"primaryLabelValue\":\"Sentient\"}},{\"attributeHeader\":{\"labelValue\":\"Sentry Communications & Security\",\"primaryLabelValue\":\"Sentry Communications & Security\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeriousShops.com\",\"primaryLabelValue\":\"SeriousShops.com\"}},{\"attributeHeader\":{\"labelValue\":\"ServerCentral\",\"primaryLabelValue\":\"ServerCentral\"}},{\"attributeHeader\":{\"labelValue\":\"Service By Medallion\",\"primaryLabelValue\":\"Service By Medallion\"}},{\"attributeHeader\":{\"labelValue\":\"Servi-Tek\",\"primaryLabelValue\":\"Servi-Tek\"}},{\"attributeHeader\":{\"labelValue\":\"SetFocus\",\"primaryLabelValue\":\"SetFocus\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"Shook, Hardy & Bacon\",\"primaryLabelValue\":\"Shook, Hardy & Bacon\"}},{\"attributeHeader\":{\"labelValue\":\"Showdown Displays\",\"primaryLabelValue\":\"Showdown Displays\"}},{\"attributeHeader\":{\"labelValue\":\"SIA Group\",\"primaryLabelValue\":\"SIA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sideman & Bancroft\",\"primaryLabelValue\":\"Sideman & Bancroft\"}},{\"attributeHeader\":{\"labelValue\":\"Sidley Austin\",\"primaryLabelValue\":\"Sidley Austin\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Fencing & Flooring Systems\",\"primaryLabelValue\":\"Signature Fencing & Flooring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Gumpertz & Heger\",\"primaryLabelValue\":\"Simpson Gumpertz & Heger\"}},{\"attributeHeader\":{\"labelValue\":\"SkillStorm\",\"primaryLabelValue\":\"SkillStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skoda Minotti\",\"primaryLabelValue\":\"Skoda Minotti\"}},{\"attributeHeader\":{\"labelValue\":\"SkyBitz\",\"primaryLabelValue\":\"SkyBitz\"}},{\"attributeHeader\":{\"labelValue\":\"SmartCEO Media\",\"primaryLabelValue\":\"SmartCEO Media\"}},{\"attributeHeader\":{\"labelValue\":\"SmartLinx Solutions\",\"primaryLabelValue\":\"SmartLinx Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPak Equine\",\"primaryLabelValue\":\"SmartPak Equine\"}},{\"attributeHeader\":{\"labelValue\":\"SmartRevenue\",\"primaryLabelValue\":\"SmartRevenue\"}},{\"attributeHeader\":{\"labelValue\":\"Smartronix\",\"primaryLabelValue\":\"Smartronix\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SofterWare\",\"primaryLabelValue\":\"SofterWare\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorg Architects\",\"primaryLabelValue\":\"Sorg Architects\"}},{\"attributeHeader\":{\"labelValue\":\"SoundSense\",\"primaryLabelValue\":\"SoundSense\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diagnostic Laboratories\",\"primaryLabelValue\":\"Southern Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diversified Technologies\",\"primaryLabelValue\":\"Southern Diversified Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Southwest Solutions Group\",\"primaryLabelValue\":\"Southwest Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sovereign Consulting\",\"primaryLabelValue\":\"Sovereign Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"space150\",\"primaryLabelValue\":\"space150\"}},{\"attributeHeader\":{\"labelValue\":\"SpaceBound\",\"primaryLabelValue\":\"SpaceBound\"}},{\"attributeHeader\":{\"labelValue\":\"SPADAC\",\"primaryLabelValue\":\"SPADAC\"}},{\"attributeHeader\":{\"labelValue\":\"SPEAR Physical Therapy\",\"primaryLabelValue\":\"SPEAR Physical Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"SpectraSensors\",\"primaryLabelValue\":\"SpectraSensors\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Controls\",\"primaryLabelValue\":\"Spectrum Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Industries\",\"primaryLabelValue\":\"Spectrum Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Technologies\",\"primaryLabelValue\":\"Spectrum Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Squire, Sanders & Dempsey\",\"primaryLabelValue\":\"Squire, Sanders & Dempsey\"}},{\"attributeHeader\":{\"labelValue\":\"SRI Telecom\",\"primaryLabelValue\":\"SRI Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stafflogix\",\"primaryLabelValue\":\"Stafflogix\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Stalwart\",\"primaryLabelValue\":\"Stalwart\"}},{\"attributeHeader\":{\"labelValue\":\"StarTech.com\",\"primaryLabelValue\":\"StarTech.com\"}},{\"attributeHeader\":{\"labelValue\":\"Stefan Sydor Optics\",\"primaryLabelValue\":\"Stefan Sydor Optics\"}},{\"attributeHeader\":{\"labelValue\":\"STI Electronics\",\"primaryLabelValue\":\"STI Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Stinson Morrison Hecker\",\"primaryLabelValue\":\"Stinson Morrison Hecker\"}},{\"attributeHeader\":{\"labelValue\":\"Stoel Rives\",\"primaryLabelValue\":\"Stoel Rives\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Fundraising\",\"primaryLabelValue\":\"Strategic Fundraising\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Strike Construction\",\"primaryLabelValue\":\"Strike Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Struxture Architects\",\"primaryLabelValue\":\"Struxture Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Studio 921 Salon & Day Spa\",\"primaryLabelValue\":\"Studio 921 Salon & Day Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sun Light & Power\",\"primaryLabelValue\":\"Sun Light & Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunrise Hitek\",\"primaryLabelValue\":\"Sunrise Hitek\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Kids Juvenile Products\",\"primaryLabelValue\":\"Sunshine Kids Juvenile Products\"}},{\"attributeHeader\":{\"labelValue\":\"SunStar\",\"primaryLabelValue\":\"SunStar\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Linen Service\",\"primaryLabelValue\":\"Superior Linen Service\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Petroleum\",\"primaryLabelValue\":\"Superior Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Supermarket Source\",\"primaryLabelValue\":\"Supermarket Source\"}},{\"attributeHeader\":{\"labelValue\":\"SuperTech\",\"primaryLabelValue\":\"SuperTech\"}},{\"attributeHeader\":{\"labelValue\":\"Supremesoft\",\"primaryLabelValue\":\"Supremesoft\"}},{\"attributeHeader\":{\"labelValue\":\"SureScore\",\"primaryLabelValue\":\"SureScore\"}},{\"attributeHeader\":{\"labelValue\":\"Surf Cowboy\",\"primaryLabelValue\":\"Surf Cowboy\"}},{\"attributeHeader\":{\"labelValue\":\"Surmotech\",\"primaryLabelValue\":\"Surmotech\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Asbill & Brennan\",\"primaryLabelValue\":\"Sutherland Asbill & Brennan\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Global Services\",\"primaryLabelValue\":\"Sutherland Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Suzannes Specialties\",\"primaryLabelValue\":\"Suzannes Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"SWS Re-Distribution\",\"primaryLabelValue\":\"SWS Re-Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Syncroness\",\"primaryLabelValue\":\"Syncroness\"}},{\"attributeHeader\":{\"labelValue\":\"Synergy Solutions\",\"primaryLabelValue\":\"Synergy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&W Operations\",\"primaryLabelValue\":\"T&W Operations\"}},{\"attributeHeader\":{\"labelValue\":\"Tabar\",\"primaryLabelValue\":\"Tabar\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Tailored Label Products\",\"primaryLabelValue\":\"Tailored Label Products\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Talon Professional Services\",\"primaryLabelValue\":\"Talon Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Talon/LPE\",\"primaryLabelValue\":\"Talon/LPE\"}},{\"attributeHeader\":{\"labelValue\":\"Tanager\",\"primaryLabelValue\":\"Tanager\"}},{\"attributeHeader\":{\"labelValue\":\"Tandem HR\",\"primaryLabelValue\":\"Tandem HR\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"Taphandles\",\"primaryLabelValue\":\"Taphandles\"}},{\"attributeHeader\":{\"labelValue\":\"Taras Techniques\",\"primaryLabelValue\":\"Taras Techniques\"}},{\"attributeHeader\":{\"labelValue\":\"TargetX\",\"primaryLabelValue\":\"TargetX\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"TC3 Telecom\",\"primaryLabelValue\":\"TC3 Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"TCG\",\"primaryLabelValue\":\"TCG\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"TDK Technologies\",\"primaryLabelValue\":\"TDK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Manufacturing\",\"primaryLabelValue\":\"Tech Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Techbarn.com\",\"primaryLabelValue\":\"Techbarn.com\"}},{\"attributeHeader\":{\"labelValue\":\"TechniPak\",\"primaryLabelValue\":\"TechniPak\"}},{\"attributeHeader\":{\"labelValue\":\"TechnoDyne\",\"primaryLabelValue\":\"TechnoDyne\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Tekpros\",\"primaryLabelValue\":\"Tekpros\"}},{\"attributeHeader\":{\"labelValue\":\"TeleProviders\",\"primaryLabelValue\":\"TeleProviders\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TGA Solutions\",\"primaryLabelValue\":\"TGA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"TharpeRobbins\",\"primaryLabelValue\":\"TharpeRobbins\"}},{\"attributeHeader\":{\"labelValue\":\"The Allied Power Group\",\"primaryLabelValue\":\"The Allied Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aspen Brands Company\",\"primaryLabelValue\":\"The Aspen Brands Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Barbour Group\",\"primaryLabelValue\":\"The Barbour Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Benecon Group\",\"primaryLabelValue\":\"The Benecon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Design People\",\"primaryLabelValue\":\"The Design People\"}},{\"attributeHeader\":{\"labelValue\":\"The Exit Light Company\",\"primaryLabelValue\":\"The Exit Light Company\"}},{\"attributeHeader\":{\"labelValue\":\"The FruitGuys\",\"primaryLabelValue\":\"The FruitGuys\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Go Daddy Group\",\"primaryLabelValue\":\"The Go Daddy Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Hamister Group\",\"primaryLabelValue\":\"The Hamister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Intermarket Group\",\"primaryLabelValue\":\"The Intermarket Group\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Linc Group\",\"primaryLabelValue\":\"The Linc Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Lobster Place\",\"primaryLabelValue\":\"The Lobster Place\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Online 401(k)\",\"primaryLabelValue\":\"The Online 401(k)\"}},{\"attributeHeader\":{\"labelValue\":\"The Onyx Group\",\"primaryLabelValue\":\"The Onyx Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Phia Group\",\"primaryLabelValue\":\"The Phia Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Planet\",\"primaryLabelValue\":\"The Planet\"}},{\"attributeHeader\":{\"labelValue\":\"The Portaro Group\",\"primaryLabelValue\":\"The Portaro Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PSP Group\",\"primaryLabelValue\":\"The PSP Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Tellennium Group\",\"primaryLabelValue\":\"The Tellennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The TM Group\",\"primaryLabelValue\":\"The TM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Transtec Group\",\"primaryLabelValue\":\"The Transtec Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Velez Corporation\",\"primaryLabelValue\":\"The Velez Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Thinkwell Group\",\"primaryLabelValue\":\"Thinkwell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Third Sun Solar & Wind Power\",\"primaryLabelValue\":\"Third Sun Solar & Wind Power\"}},{\"attributeHeader\":{\"labelValue\":\"Third Wave Systems\",\"primaryLabelValue\":\"Third Wave Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ThomasArts\",\"primaryLabelValue\":\"ThomasArts\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson & Knight\",\"primaryLabelValue\":\"Thompson & Knight\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Creek\",\"primaryLabelValue\":\"Thompson Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Ticket Alternative\",\"primaryLabelValue\":\"Ticket Alternative\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TIG Global\",\"primaryLabelValue\":\"TIG Global\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Claw\",\"primaryLabelValue\":\"Tiger Claw\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Commissary Services\",\"primaryLabelValue\":\"Tiger Commissary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Time Timer\",\"primaryLabelValue\":\"Time Timer\"}},{\"attributeHeader\":{\"labelValue\":\"TIPS Consulting\",\"primaryLabelValue\":\"TIPS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"TireMax of North America\",\"primaryLabelValue\":\"TireMax of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Total Beverage Solution\",\"primaryLabelValue\":\"Total Beverage Solution\"}},{\"attributeHeader\":{\"labelValue\":\"Touchtown\",\"primaryLabelValue\":\"Touchtown\"}},{\"attributeHeader\":{\"labelValue\":\"Town Money Saver\",\"primaryLabelValue\":\"Town Money Saver\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Trade the Markets\",\"primaryLabelValue\":\"Trade the Markets\"}},{\"attributeHeader\":{\"labelValue\":\"Traf-Tex\",\"primaryLabelValue\":\"Traf-Tex\"}},{\"attributeHeader\":{\"labelValue\":\"Trans Atlantic Systems\",\"primaryLabelValue\":\"Trans Atlantic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Traube Tent\",\"primaryLabelValue\":\"Traube Tent\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Digital Media\",\"primaryLabelValue\":\"Triad Digital Media\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Tribeca Technology Solutons\",\"primaryLabelValue\":\"Tribeca Technology Solutons\"}},{\"attributeHeader\":{\"labelValue\":\"Trideum\",\"primaryLabelValue\":\"Trideum\"}},{\"attributeHeader\":{\"labelValue\":\"Trinet Internet Solutions\",\"primaryLabelValue\":\"Trinet Internet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trisonics\",\"primaryLabelValue\":\"Trisonics\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"Tri-Win Digital Print and Mail Services\",\"primaryLabelValue\":\"Tri-Win Digital Print and Mail Services\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TrollAndToad.com\",\"primaryLabelValue\":\"TrollAndToad.com\"}},{\"attributeHeader\":{\"labelValue\":\"Tropical Smoothie Cafe\",\"primaryLabelValue\":\"Tropical Smoothie Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"TrueNorth\",\"primaryLabelValue\":\"TrueNorth\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"T-Scan\",\"primaryLabelValue\":\"T-Scan\"}},{\"attributeHeader\":{\"labelValue\":\"TTS\",\"primaryLabelValue\":\"TTS\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Tundra Specialties\",\"primaryLabelValue\":\"Tundra Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"Two West\",\"primaryLabelValue\":\"Two West\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"U-GRO Learning Centres\",\"primaryLabelValue\":\"U-GRO Learning Centres\"}},{\"attributeHeader\":{\"labelValue\":\"Ultimate Nursing Services\",\"primaryLabelValue\":\"Ultimate Nursing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Unishippers\",\"primaryLabelValue\":\"Unishippers\"}},{\"attributeHeader\":{\"labelValue\":\"United Bank of El Paso del Norte\",\"primaryLabelValue\":\"United Bank of El Paso del Norte\"}},{\"attributeHeader\":{\"labelValue\":\"United Global Logistics\",\"primaryLabelValue\":\"United Global Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"United Source One\",\"primaryLabelValue\":\"United Source One\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Univar\",\"primaryLabelValue\":\"Univar\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Accounting Center\",\"primaryLabelValue\":\"Universal Accounting Center\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Services of America\",\"primaryLabelValue\":\"Universal Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uno Alla Volta\",\"primaryLabelValue\":\"Uno Alla Volta\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Pharmacy\",\"primaryLabelValue\":\"Upstate Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"US LED\",\"primaryLabelValue\":\"US LED\"}},{\"attributeHeader\":{\"labelValue\":\"US Markerboard\",\"primaryLabelValue\":\"US Markerboard\"}},{\"attributeHeader\":{\"labelValue\":\"USGC\",\"primaryLabelValue\":\"USGC\"}},{\"attributeHeader\":{\"labelValue\":\"V12 Group\",\"primaryLabelValue\":\"V12 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Valador\",\"primaryLabelValue\":\"Valador\"}},{\"attributeHeader\":{\"labelValue\":\"Validity Screening Solutions\",\"primaryLabelValue\":\"Validity Screening Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Valley Recycling\",\"primaryLabelValue\":\"Valley Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"VarData\",\"primaryLabelValue\":\"VarData\"}},{\"attributeHeader\":{\"labelValue\":\"VarsityPlaza\",\"primaryLabelValue\":\"VarsityPlaza\"}},{\"attributeHeader\":{\"labelValue\":\"Venda\",\"primaryLabelValue\":\"Venda\"}},{\"attributeHeader\":{\"labelValue\":\"VentureNet\",\"primaryLabelValue\":\"VentureNet\"}},{\"attributeHeader\":{\"labelValue\":\"Venturity Financial Partners\",\"primaryLabelValue\":\"Venturity Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Veritis Group\",\"primaryLabelValue\":\"Veritis Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vernier Software & Technology\",\"primaryLabelValue\":\"Vernier Software & Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Vertafore\",\"primaryLabelValue\":\"Vertafore\"}},{\"attributeHeader\":{\"labelValue\":\"Vertical Marketing Network\",\"primaryLabelValue\":\"Vertical Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"VerticalResponse\",\"primaryLabelValue\":\"VerticalResponse\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vindicia\",\"primaryLabelValue\":\"Vindicia\"}},{\"attributeHeader\":{\"labelValue\":\"Vinson & Elkins\",\"primaryLabelValue\":\"Vinson & Elkins\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual\",\"primaryLabelValue\":\"Virtual\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Hold Technology\",\"primaryLabelValue\":\"Virtual Hold Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Virtustream\",\"primaryLabelValue\":\"Virtustream\"}},{\"attributeHeader\":{\"labelValue\":\"VisionOne\",\"primaryLabelValue\":\"VisionOne\"}},{\"attributeHeader\":{\"labelValue\":\"Visual Concepts\",\"primaryLabelValue\":\"Visual Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Vizio\",\"primaryLabelValue\":\"Vizio\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vocera Communications\",\"primaryLabelValue\":\"Vocera Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Vocon\",\"primaryLabelValue\":\"Vocon\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Vormittag Associates\",\"primaryLabelValue\":\"Vormittag Associates\"}},{\"attributeHeader\":{\"labelValue\":\"V-Soft Consulting Group\",\"primaryLabelValue\":\"V-Soft Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WAGIC\",\"primaryLabelValue\":\"WAGIC\"}},{\"attributeHeader\":{\"labelValue\":\"Walling Data\",\"primaryLabelValue\":\"Walling Data\"}},{\"attributeHeader\":{\"labelValue\":\"Water Associates\",\"primaryLabelValue\":\"Water Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Watermark\",\"primaryLabelValue\":\"Watermark\"}},{\"attributeHeader\":{\"labelValue\":\"WCS Lending\",\"primaryLabelValue\":\"WCS Lending\"}},{\"attributeHeader\":{\"labelValue\":\"WebVisible\",\"primaryLabelValue\":\"WebVisible\"}},{\"attributeHeader\":{\"labelValue\":\"Weed Man\",\"primaryLabelValue\":\"Weed Man\"}},{\"attributeHeader\":{\"labelValue\":\"Weil, Gotshal & Manges\",\"primaryLabelValue\":\"Weil, Gotshal & Manges\"}},{\"attributeHeader\":{\"labelValue\":\"Welocalize\",\"primaryLabelValue\":\"Welocalize\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Western International Securities\",\"primaryLabelValue\":\"Western International Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wheat Systems Integration\",\"primaryLabelValue\":\"Wheat Systems Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Machine & Tool\",\"primaryLabelValue\":\"Whelan Machine & Tool\"}},{\"attributeHeader\":{\"labelValue\":\"White Glove Technologies\",\"primaryLabelValue\":\"White Glove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WideOrbit\",\"primaryLabelValue\":\"WideOrbit\"}},{\"attributeHeader\":{\"labelValue\":\"Wier & Associates\",\"primaryLabelValue\":\"Wier & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wildtree\",\"primaryLabelValue\":\"Wildtree\"}},{\"attributeHeader\":{\"labelValue\":\"Wilshire Connection\",\"primaryLabelValue\":\"Wilshire Connection\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\",\"primaryLabelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Sonsini Goodrich & Rosati\",\"primaryLabelValue\":\"Wilson Sonsini Goodrich & Rosati\"}},{\"attributeHeader\":{\"labelValue\":\"Wimmer Solutions\",\"primaryLabelValue\":\"Wimmer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Winder Farms\",\"primaryLabelValue\":\"Winder Farms\"}},{\"attributeHeader\":{\"labelValue\":\"WineCommune\",\"primaryLabelValue\":\"WineCommune\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Zone\",\"primaryLabelValue\":\"Wireless Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Wiser Company\",\"primaryLabelValue\":\"Wiser Company\"}},{\"attributeHeader\":{\"labelValue\":\"Wojan Window & Door\",\"primaryLabelValue\":\"Wojan Window & Door\"}},{\"attributeHeader\":{\"labelValue\":\"Woodward Design+Build\",\"primaryLabelValue\":\"Woodward Design+Build\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WorldLink\",\"primaryLabelValue\":\"WorldLink\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Supply\",\"primaryLabelValue\":\"Worldwide Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Wound Care Advantage\",\"primaryLabelValue\":\"Wound Care Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Xantrion\",\"primaryLabelValue\":\"Xantrion\"}},{\"attributeHeader\":{\"labelValue\":\"Xchange Telecom\",\"primaryLabelValue\":\"Xchange Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"XeteX\",\"primaryLabelValue\":\"XeteX\"}},{\"attributeHeader\":{\"labelValue\":\"XIFIN\",\"primaryLabelValue\":\"XIFIN\"}},{\"attributeHeader\":{\"labelValue\":\"Xplane\",\"primaryLabelValue\":\"Xplane\"}},{\"attributeHeader\":{\"labelValue\":\"Xterprise\",\"primaryLabelValue\":\"Xterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ZGF Architects\",\"primaryLabelValue\":\"ZGF Architects\"}},{\"attributeHeader\":{\"labelValue\":\"ZirMed\",\"primaryLabelValue\":\"ZirMed\"}},{\"attributeHeader\":{\"labelValue\":\"Zobmondo!! Entertainment\",\"primaryLabelValue\":\"Zobmondo!! Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"123 Exteriors\",\"primaryLabelValue\":\"123 Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"1-888-OhioComp\",\"primaryLabelValue\":\"1-888-OhioComp\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"3E\",\"primaryLabelValue\":\"3E\"}},{\"attributeHeader\":{\"labelValue\":\"4Wall Entertainment\",\"primaryLabelValue\":\"4Wall Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"5LINX Enterprises\",\"primaryLabelValue\":\"5LINX Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"7 Simple Machines\",\"primaryLabelValue\":\"7 Simple Machines\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"A&R Tarpaulins\",\"primaryLabelValue\":\"A&R Tarpaulins\"}},{\"attributeHeader\":{\"labelValue\":\"A. Pomerantz & Co.\",\"primaryLabelValue\":\"A. Pomerantz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Tutor U\",\"primaryLabelValue\":\"A+ Tutor U\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Plumbing\",\"primaryLabelValue\":\"Abacus Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"ABCOMRents.com\",\"primaryLabelValue\":\"ABCOMRents.com\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"ACAI Associates\",\"primaryLabelValue\":\"ACAI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access Worldwide\",\"primaryLabelValue\":\"Access Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaim Technical Services\",\"primaryLabelValue\":\"Acclaim Technical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Account Control Technology\",\"primaryLabelValue\":\"Account Control Technology\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Achieve3000\",\"primaryLabelValue\":\"Achieve3000\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Acquity Group\",\"primaryLabelValue\":\"Acquity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"Actio\",\"primaryLabelValue\":\"Actio\"}},{\"attributeHeader\":{\"labelValue\":\"Action Target\",\"primaryLabelValue\":\"Action Target\"}},{\"attributeHeader\":{\"labelValue\":\"Acxius Strategic Consulting\",\"primaryLabelValue\":\"Acxius Strategic Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Facial Plastic Surgery Center\",\"primaryLabelValue\":\"Advanced Facial Plastic Surgery Center\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Network Solutions\",\"primaryLabelValue\":\"Advanced Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technical Solutions\",\"primaryLabelValue\":\"Advanced Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Vision Research\",\"primaryLabelValue\":\"Advanced Vision Research\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AdvertiseDoorToDoor.com\",\"primaryLabelValue\":\"AdvertiseDoorToDoor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aerodyn Engineering\",\"primaryLabelValue\":\"Aerodyn Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Affinion Group Holdings\",\"primaryLabelValue\":\"Affinion Group Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"AGM Container Controls\",\"primaryLabelValue\":\"AGM Container Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Agosto\",\"primaryLabelValue\":\"Agosto\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"AIReS\",\"primaryLabelValue\":\"AIReS\"}},{\"attributeHeader\":{\"labelValue\":\"AIRSIS\",\"primaryLabelValue\":\"AIRSIS\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"AKA Media\",\"primaryLabelValue\":\"AKA Media\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Albrecht & Co.\",\"primaryLabelValue\":\"Albrecht & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Phase Security\",\"primaryLabelValue\":\"All Phase Security\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Sensors Corporation\",\"primaryLabelValue\":\"All Sensors Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Corporation of America\",\"primaryLabelValue\":\"Allen Corporation of America\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Solutions Group\",\"primaryLabelValue\":\"Alliance Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Allied Industries\",\"primaryLabelValue\":\"Allied Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Alltrust Insurance\",\"primaryLabelValue\":\"Alltrust Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Access\",\"primaryLabelValue\":\"Alpine Access\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Waste & Recycling\",\"primaryLabelValue\":\"Alpine Waste & Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Alps Controls\",\"primaryLabelValue\":\"Alps Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Amadeus Consulting\",\"primaryLabelValue\":\"Amadeus Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amelia's\",\"primaryLabelValue\":\"Amelia's\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American Exteriors\",\"primaryLabelValue\":\"American Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"American Paper Optics\",\"primaryLabelValue\":\"American Paper Optics\"}},{\"attributeHeader\":{\"labelValue\":\"American Portfolios Financial Services\",\"primaryLabelValue\":\"American Portfolios Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"American Specialty Health\",\"primaryLabelValue\":\"American Specialty Health\"}},{\"attributeHeader\":{\"labelValue\":\"AmericaRx.com\",\"primaryLabelValue\":\"AmericaRx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Americollect\",\"primaryLabelValue\":\"Americollect\"}},{\"attributeHeader\":{\"labelValue\":\"Ameri-Kleen\",\"primaryLabelValue\":\"Ameri-Kleen\"}},{\"attributeHeader\":{\"labelValue\":\"Amtek Consulting\",\"primaryLabelValue\":\"Amtek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews & Company\",\"primaryLabelValue\":\"Andrews & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annapolis Micro Systems\",\"primaryLabelValue\":\"Annapolis Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annese & Associates\",\"primaryLabelValue\":\"Annese & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AnthroTronix\",\"primaryLabelValue\":\"AnthroTronix\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Systems\",\"primaryLabelValue\":\"Apex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"Aprimo\",\"primaryLabelValue\":\"Aprimo\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptela\",\"primaryLabelValue\":\"Aptela\"}},{\"attributeHeader\":{\"labelValue\":\"Aquire\",\"primaryLabelValue\":\"Aquire\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Marketing Services\",\"primaryLabelValue\":\"Archway Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Arcus\",\"primaryLabelValue\":\"Arcus\"}},{\"attributeHeader\":{\"labelValue\":\"Area51-ESG\",\"primaryLabelValue\":\"Area51-ESG\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadium\",\"primaryLabelValue\":\"Arkadium\"}},{\"attributeHeader\":{\"labelValue\":\"Armedia\",\"primaryLabelValue\":\"Armedia\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"Arora Engineers\",\"primaryLabelValue\":\"Arora Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Arroyo Process Equipment\",\"primaryLabelValue\":\"Arroyo Process Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASD\",\"primaryLabelValue\":\"ASD\"}},{\"attributeHeader\":{\"labelValue\":\"ASK Staffing\",\"primaryLabelValue\":\"ASK Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"Astek Wallcovering\",\"primaryLabelValue\":\"Astek Wallcovering\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT Conference\",\"primaryLabelValue\":\"AT Conference\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Business Technologies\",\"primaryLabelValue\":\"Atlantic Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Travel International\",\"primaryLabelValue\":\"Atlas Travel International\"}},{\"attributeHeader\":{\"labelValue\":\"AtNetPlus\",\"primaryLabelValue\":\"AtNetPlus\"}},{\"attributeHeader\":{\"labelValue\":\"Atomic Tattoos\",\"primaryLabelValue\":\"Atomic Tattoos\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"Austin Ribbon & Computer\",\"primaryLabelValue\":\"Austin Ribbon & Computer\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Events\",\"primaryLabelValue\":\"Automotive Events\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Product Consultants\",\"primaryLabelValue\":\"Automotive Product Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"AutoTec\",\"primaryLabelValue\":\"AutoTec\"}},{\"attributeHeader\":{\"labelValue\":\"Avalanche Creative Services\",\"primaryLabelValue\":\"Avalanche Creative Services\"}},{\"attributeHeader\":{\"labelValue\":\"Avalex Technologies Corporation\",\"primaryLabelValue\":\"Avalex Technologies Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Avidian Technologies\",\"primaryLabelValue\":\"Avidian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Avineon\",\"primaryLabelValue\":\"Avineon\"}},{\"attributeHeader\":{\"labelValue\":\"AVT Simulation\",\"primaryLabelValue\":\"AVT Simulation\"}},{\"attributeHeader\":{\"labelValue\":\"Axeda\",\"primaryLabelValue\":\"Axeda\"}},{\"attributeHeader\":{\"labelValue\":\"Axis Teknologies\",\"primaryLabelValue\":\"Axis Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axispoint\",\"primaryLabelValue\":\"Axispoint\"}},{\"attributeHeader\":{\"labelValue\":\"Azavea\",\"primaryLabelValue\":\"Azavea\"}},{\"attributeHeader\":{\"labelValue\":\"B Resource\",\"primaryLabelValue\":\"B Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Bailey Kennedy\",\"primaryLabelValue\":\"Bailey Kennedy\"}},{\"attributeHeader\":{\"labelValue\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryLabelValue\":\"Ballard Spahr Andrews & Ingersoll\"}},{\"attributeHeader\":{\"labelValue\":\"Bamko\",\"primaryLabelValue\":\"Bamko\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Barrack's Cater Inn\",\"primaryLabelValue\":\"Barrack's Cater Inn\"}},{\"attributeHeader\":{\"labelValue\":\"Barrister Global Services Network\",\"primaryLabelValue\":\"Barrister Global Services Network\"}},{\"attributeHeader\":{\"labelValue\":\"Basic\",\"primaryLabelValue\":\"Basic\"}},{\"attributeHeader\":{\"labelValue\":\"Basic Commerce and Industries\",\"primaryLabelValue\":\"Basic Commerce and Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Batteries Plus\",\"primaryLabelValue\":\"Batteries Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Baxa\",\"primaryLabelValue\":\"Baxa\"}},{\"attributeHeader\":{\"labelValue\":\"Bay State Computers\",\"primaryLabelValue\":\"Bay State Computers\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Partners\",\"primaryLabelValue\":\"Beacon Partners\"}},{\"attributeHeader\":{\"labelValue\":\"BEAR Data Systems\",\"primaryLabelValue\":\"BEAR Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Bearse Manufacturing\",\"primaryLabelValue\":\"Bearse Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Beauty Supply Warehouse\",\"primaryLabelValue\":\"Beauty Supply Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Benchworks\",\"primaryLabelValue\":\"Benchworks\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Strategies\",\"primaryLabelValue\":\"Benefit Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Best Items International\",\"primaryLabelValue\":\"Best Items International\"}},{\"attributeHeader\":{\"labelValue\":\"BG Medicine\",\"primaryLabelValue\":\"BG Medicine\"}},{\"attributeHeader\":{\"labelValue\":\"BHI Advanced Internet\",\"primaryLabelValue\":\"BHI Advanced Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Big Ass Fan Company\",\"primaryLabelValue\":\"Big Ass Fan Company\"}},{\"attributeHeader\":{\"labelValue\":\"BIGresearch\",\"primaryLabelValue\":\"BIGresearch\"}},{\"attributeHeader\":{\"labelValue\":\"Bingham McCutchen\",\"primaryLabelValue\":\"Bingham McCutchen\"}},{\"attributeHeader\":{\"labelValue\":\"BioHorizons\",\"primaryLabelValue\":\"BioHorizons\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birch Communications\",\"primaryLabelValue\":\"Birch Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Bit-Wizards Custom Software Solutions\",\"primaryLabelValue\":\"Bit-Wizards Custom Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BizXchange\",\"primaryLabelValue\":\"BizXchange\"}},{\"attributeHeader\":{\"labelValue\":\"Blacklist\",\"primaryLabelValue\":\"Blacklist\"}},{\"attributeHeader\":{\"labelValue\":\"Blink Consulting\",\"primaryLabelValue\":\"Blink Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Gecko\",\"primaryLabelValue\":\"Blue Gecko\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bluefish Wireless Management\",\"primaryLabelValue\":\"Bluefish Wireless Management\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"Booz Allen Hamilton\",\"primaryLabelValue\":\"Booz Allen Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"BrakeQuip\",\"primaryLabelValue\":\"BrakeQuip\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Breaking Ground Contracting\",\"primaryLabelValue\":\"Breaking Ground Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Burt Hill\",\"primaryLabelValue\":\"Burt Hill\"}},{\"attributeHeader\":{\"labelValue\":\"Butler/Till Media Services\",\"primaryLabelValue\":\"Butler/Till Media Services\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"Cables Plus\",\"primaryLabelValue\":\"Cables Plus\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Calix Networks\",\"primaryLabelValue\":\"Calix Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Call One\",\"primaryLabelValue\":\"Call One\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"CAM Services\",\"primaryLabelValue\":\"CAM Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge Home Health Care\",\"primaryLabelValue\":\"Cambridge Home Health Care\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"CandyRific\",\"primaryLabelValue\":\"CandyRific\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cape Medical Supply\",\"primaryLabelValue\":\"Cape Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Capinc\",\"primaryLabelValue\":\"Capinc\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Concierge\",\"primaryLabelValue\":\"Capitol Concierge\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Captiva Marketing\",\"primaryLabelValue\":\"Captiva Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Carbon Resources\",\"primaryLabelValue\":\"Carbon Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Cardenas Marketing Network\",\"primaryLabelValue\":\"Cardenas Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"Career Step\",\"primaryLabelValue\":\"Career Step\"}},{\"attributeHeader\":{\"labelValue\":\"Cargo Transportation Services\",\"primaryLabelValue\":\"Cargo Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carlisle Staffing\",\"primaryLabelValue\":\"Carlisle Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Carlton Fields\",\"primaryLabelValue\":\"Carlton Fields\"}},{\"attributeHeader\":{\"labelValue\":\"Cascade Asset Management\",\"primaryLabelValue\":\"Cascade Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Casco Contractors\",\"primaryLabelValue\":\"Casco Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Casey Research\",\"primaryLabelValue\":\"Casey Research\"}},{\"attributeHeader\":{\"labelValue\":\"Castle Rock Innovations\",\"primaryLabelValue\":\"Castle Rock Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Search\",\"primaryLabelValue\":\"Catalyst Search\"}},{\"attributeHeader\":{\"labelValue\":\"Catch the Moment\",\"primaryLabelValue\":\"Catch the Moment\"}},{\"attributeHeader\":{\"labelValue\":\"CBOE Holdings\",\"primaryLabelValue\":\"CBOE Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Marketing Solutions\",\"primaryLabelValue\":\"CCG Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cell Business Equipment\",\"primaryLabelValue\":\"Cell Business Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Centerstance\",\"primaryLabelValue\":\"Centerstance\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Century Bankcard Services\",\"primaryLabelValue\":\"Century Bankcard Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ceteris\",\"primaryLabelValue\":\"Ceteris\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chadbourne & Parke\",\"primaryLabelValue\":\"Chadbourne & Parke\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Charley's Grilled Subs\",\"primaryLabelValue\":\"Charley's Grilled Subs\"}},{\"attributeHeader\":{\"labelValue\":\"Chemco Products\",\"primaryLabelValue\":\"Chemco Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Child Enterprises\",\"primaryLabelValue\":\"Child Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Chop't Creative Salad\",\"primaryLabelValue\":\"Chop't Creative Salad\"}},{\"attributeHeader\":{\"labelValue\":\"ChristianCinema.com\",\"primaryLabelValue\":\"ChristianCinema.com\"}},{\"attributeHeader\":{\"labelValue\":\"Chroma Technology\",\"primaryLabelValue\":\"Chroma Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CiCi's Pizza\",\"primaryLabelValue\":\"CiCi's Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"CJ Pony Parts\",\"primaryLabelValue\":\"CJ Pony Parts\"}},{\"attributeHeader\":{\"labelValue\":\"CJP Communications\",\"primaryLabelValue\":\"CJP Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clinix Medical Information Services\",\"primaryLabelValue\":\"Clinix Medical Information Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CNSI\",\"primaryLabelValue\":\"CNSI\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Environmental Group\",\"primaryLabelValue\":\"Coastal Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobalt\",\"primaryLabelValue\":\"Cobalt\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen, Eric and Associates\",\"primaryLabelValue\":\"Cohen, Eric and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coins For Anything\",\"primaryLabelValue\":\"Coins For Anything\"}},{\"attributeHeader\":{\"labelValue\":\"Coin-Tainer\",\"primaryLabelValue\":\"Coin-Tainer\"}},{\"attributeHeader\":{\"labelValue\":\"Coler & Colantonio\",\"primaryLabelValue\":\"Coler & Colantonio\"}},{\"attributeHeader\":{\"labelValue\":\"Collabera\",\"primaryLabelValue\":\"Collabera\"}},{\"attributeHeader\":{\"labelValue\":\"CollaborateMD\",\"primaryLabelValue\":\"CollaborateMD\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ColorInc\",\"primaryLabelValue\":\"ColorInc\"}},{\"attributeHeader\":{\"labelValue\":\"Combined Public Communications\",\"primaryLabelValue\":\"Combined Public Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Command Decisions Systems & Solutions\",\"primaryLabelValue\":\"Command Decisions Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Commcare Pharmacy\",\"primaryLabelValue\":\"Commcare Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Common Sense Office Furniture\",\"primaryLabelValue\":\"Common Sense Office Furniture\"}},{\"attributeHeader\":{\"labelValue\":\"Commonground\",\"primaryLabelValue\":\"Commonground\"}},{\"attributeHeader\":{\"labelValue\":\"Communique Conferencing\",\"primaryLabelValue\":\"Communique Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"Community Care College\",\"primaryLabelValue\":\"Community Care College\"}},{\"attributeHeader\":{\"labelValue\":\"Company 20\",\"primaryLabelValue\":\"Company 20\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Nutrition\",\"primaryLabelValue\":\"Complete Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Care\",\"primaryLabelValue\":\"Complete Pharmacy Care\"}},{\"attributeHeader\":{\"labelValue\":\"CompleteRx\",\"primaryLabelValue\":\"CompleteRx\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Computer System Designers\",\"primaryLabelValue\":\"Computer System Designers\"}},{\"attributeHeader\":{\"labelValue\":\"ComRent International\",\"primaryLabelValue\":\"ComRent International\"}},{\"attributeHeader\":{\"labelValue\":\"Concerro\",\"primaryLabelValue\":\"Concerro\"}},{\"attributeHeader\":{\"labelValue\":\"ConEst Software Systems\",\"primaryLabelValue\":\"ConEst Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Connectria\",\"primaryLabelValue\":\"Connectria\"}},{\"attributeHeader\":{\"labelValue\":\"Control Cable\",\"primaryLabelValue\":\"Control Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Technology Consulting\",\"primaryLabelValue\":\"Convergence Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cooking Enthusiast\",\"primaryLabelValue\":\"Cooking Enthusiast\"}},{\"attributeHeader\":{\"labelValue\":\"Copier Fax Business Technologies\",\"primaryLabelValue\":\"Copier Fax Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CorePartners\",\"primaryLabelValue\":\"CorePartners\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Research Group\",\"primaryLabelValue\":\"Cornerstone Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Telephone\",\"primaryLabelValue\":\"CornerStone Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"CorpComm\",\"primaryLabelValue\":\"CorpComm\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Family Network\",\"primaryLabelValue\":\"Corporate Family Network\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Floors\",\"primaryLabelValue\":\"Corporate Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Office Centers\",\"primaryLabelValue\":\"Corporate Office Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Research International\",\"primaryLabelValue\":\"Corporate Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Cortech Solutions\",\"primaryLabelValue\":\"Cortech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Costume Craze\",\"primaryLabelValue\":\"Costume Craze\"}},{\"attributeHeader\":{\"labelValue\":\"Coverall Mountain & Pacific\",\"primaryLabelValue\":\"Coverall Mountain & Pacific\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CraigMichaels\",\"primaryLabelValue\":\"CraigMichaels\"}},{\"attributeHeader\":{\"labelValue\":\"Cravath, Swaine & Moore\",\"primaryLabelValue\":\"Cravath, Swaine & Moore\"}},{\"attributeHeader\":{\"labelValue\":\"Credico\",\"primaryLabelValue\":\"Credico\"}},{\"attributeHeader\":{\"labelValue\":\"Crimson Consulting Group\",\"primaryLabelValue\":\"Crimson Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"CriticalTool\",\"primaryLabelValue\":\"CriticalTool\"}},{\"attributeHeader\":{\"labelValue\":\"Crown Partners\",\"primaryLabelValue\":\"Crown Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"CTL Engineering\",\"primaryLabelValue\":\"CTL Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cue Data Services\",\"primaryLabelValue\":\"Cue Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cumberland Consulting Group\",\"primaryLabelValue\":\"Cumberland Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"CurrentMarketing\",\"primaryLabelValue\":\"CurrentMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Curry's Auto Service\",\"primaryLabelValue\":\"Curry's Auto Service\"}},{\"attributeHeader\":{\"labelValue\":\"CustomInk\",\"primaryLabelValue\":\"CustomInk\"}},{\"attributeHeader\":{\"labelValue\":\"Cybera\",\"primaryLabelValue\":\"Cybera\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"CyraCom International\",\"primaryLabelValue\":\"CyraCom International\"}},{\"attributeHeader\":{\"labelValue\":\"Daddies Board Shop\",\"primaryLabelValue\":\"Daddies Board Shop\"}},{\"attributeHeader\":{\"labelValue\":\"Data Systems Analysts\",\"primaryLabelValue\":\"Data Systems Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Dataprise\",\"primaryLabelValue\":\"Dataprise\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"DCO Distribution\",\"primaryLabelValue\":\"DCO Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"DDS Companies\",\"primaryLabelValue\":\"DDS Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debevoise & Plimpton\",\"primaryLabelValue\":\"Debevoise & Plimpton\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Solutions & Strategies\",\"primaryLabelValue\":\"Delta Solutions & Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denihan Hospitality Group\",\"primaryLabelValue\":\"Denihan Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denim Group\",\"primaryLabelValue\":\"Denim Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Derstine's Foodservice Distributor\",\"primaryLabelValue\":\"Derstine's Foodservice Distributor\"}},{\"attributeHeader\":{\"labelValue\":\"Diaspark\",\"primaryLabelValue\":\"Diaspark\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Financial Group\",\"primaryLabelValue\":\"Digital Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Gateway\",\"primaryLabelValue\":\"Digital Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Insurance\",\"primaryLabelValue\":\"Digital Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"Discovery Outsourcing\",\"primaryLabelValue\":\"Discovery Outsourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Dish One Satellite\",\"primaryLabelValue\":\"Dish One Satellite\"}},{\"attributeHeader\":{\"labelValue\":\"Diversant\",\"primaryLabelValue\":\"Diversant\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Computer Supplies\",\"primaryLabelValue\":\"Diversified Computer Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"DNT Environmental Services\",\"primaryLabelValue\":\"DNT Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"Document Technologies\",\"primaryLabelValue\":\"Document Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Docusource Print Management\",\"primaryLabelValue\":\"Docusource Print Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dogtopia\",\"primaryLabelValue\":\"Dogtopia\"}},{\"attributeHeader\":{\"labelValue\":\"Doig Corporation\",\"primaryLabelValue\":\"Doig Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dorsey & Whitney\",\"primaryLabelValue\":\"Dorsey & Whitney\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Dynamics\",\"primaryLabelValue\":\"Douglas Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Dr. Fresh\",\"primaryLabelValue\":\"Dr. Fresh\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"DSP Clinical Research\",\"primaryLabelValue\":\"DSP Clinical Research\"}},{\"attributeHeader\":{\"labelValue\":\"DSR Management\",\"primaryLabelValue\":\"DSR Management\"}},{\"attributeHeader\":{\"labelValue\":\"Duane Morris\",\"primaryLabelValue\":\"Duane Morris\"}},{\"attributeHeader\":{\"labelValue\":\"Ductz\",\"primaryLabelValue\":\"Ductz\"}},{\"attributeHeader\":{\"labelValue\":\"Duffey Petrosky\",\"primaryLabelValue\":\"Duffey Petrosky\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"Dykema Gossett\",\"primaryLabelValue\":\"Dykema Gossett\"}},{\"attributeHeader\":{\"labelValue\":\"Dymax\",\"primaryLabelValue\":\"Dymax\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Systems\",\"primaryLabelValue\":\"Dynamic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Exhibits\",\"primaryLabelValue\":\"E&E Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"EAC Product Development Solutions\",\"primaryLabelValue\":\"EAC Product Development Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Productivity Solutions\",\"primaryLabelValue\":\"Eagle Productivity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Promotions\",\"primaryLabelValue\":\"Eagle Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Earl & Brown\",\"primaryLabelValue\":\"Earl & Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Earth Supplied Products\",\"primaryLabelValue\":\"Earth Supplied Products\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Land Management\",\"primaryLabelValue\":\"Eastern Land Management\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"e-brilliance\",\"primaryLabelValue\":\"e-brilliance\"}},{\"attributeHeader\":{\"labelValue\":\"ECI\",\"primaryLabelValue\":\"ECI\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eclaro International\",\"primaryLabelValue\":\"Eclaro International\"}},{\"attributeHeader\":{\"labelValue\":\"ECSI\",\"primaryLabelValue\":\"ECSI\"}},{\"attributeHeader\":{\"labelValue\":\"EDI\",\"primaryLabelValue\":\"EDI\"}},{\"attributeHeader\":{\"labelValue\":\"Edible Arrangements International\",\"primaryLabelValue\":\"Edible Arrangements International\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Options\",\"primaryLabelValue\":\"Educational Options\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Tools\",\"primaryLabelValue\":\"Educational Tools\"}},{\"attributeHeader\":{\"labelValue\":\"EFI Polymers\",\"primaryLabelValue\":\"EFI Polymers\"}},{\"attributeHeader\":{\"labelValue\":\"Eliassen Group\",\"primaryLabelValue\":\"Eliassen Group\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Food Company\",\"primaryLabelValue\":\"Elite Food Company\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"EM-Assist\",\"primaryLabelValue\":\"EM-Assist\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Embrace Home Loans\",\"primaryLabelValue\":\"Embrace Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empirix\",\"primaryLabelValue\":\"Empirix\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Curtailment Specialists\",\"primaryLabelValue\":\"Energy Curtailment Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Enginuity\",\"primaryLabelValue\":\"Enginuity\"}},{\"attributeHeader\":{\"labelValue\":\"English + Associates Architects\",\"primaryLabelValue\":\"English + Associates Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy the City\",\"primaryLabelValue\":\"Enjoy the City\"}},{\"attributeHeader\":{\"labelValue\":\"Enlighten\",\"primaryLabelValue\":\"Enlighten\"}},{\"attributeHeader\":{\"labelValue\":\"Enrich IT\",\"primaryLabelValue\":\"Enrich IT\"}},{\"attributeHeader\":{\"labelValue\":\"Enseo\",\"primaryLabelValue\":\"Enseo\"}},{\"attributeHeader\":{\"labelValue\":\"Entaire\",\"primaryLabelValue\":\"Entaire\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Entertainment Earth\",\"primaryLabelValue\":\"Entertainment Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Entisys Solutions\",\"primaryLabelValue\":\"Entisys Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EnTitle Insurance\",\"primaryLabelValue\":\"EnTitle Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Envirocon Technologies\",\"primaryLabelValue\":\"Envirocon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"EPE\",\"primaryLabelValue\":\"EPE\"}},{\"attributeHeader\":{\"labelValue\":\"EPIC Insurance Brokers\",\"primaryLabelValue\":\"EPIC Insurance Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"Epocrates\",\"primaryLabelValue\":\"Epocrates\"}},{\"attributeHeader\":{\"labelValue\":\"ePrize\",\"primaryLabelValue\":\"ePrize\"}},{\"attributeHeader\":{\"labelValue\":\"Equator Estate Coffees & Teas\",\"primaryLabelValue\":\"Equator Estate Coffees & Teas\"}},{\"attributeHeader\":{\"labelValue\":\"ERC\",\"primaryLabelValue\":\"ERC\"}},{\"attributeHeader\":{\"labelValue\":\"e-Rewards Market Research\",\"primaryLabelValue\":\"e-Rewards Market Research\"}},{\"attributeHeader\":{\"labelValue\":\"Ergotron\",\"primaryLabelValue\":\"Ergotron\"}},{\"attributeHeader\":{\"labelValue\":\"Eriksen Translations\",\"primaryLabelValue\":\"Eriksen Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Errand Solutions\",\"primaryLabelValue\":\"Errand Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Escalate Media\",\"primaryLabelValue\":\"Escalate Media\"}},{\"attributeHeader\":{\"labelValue\":\"ESi Acquisition\",\"primaryLabelValue\":\"ESi Acquisition\"}},{\"attributeHeader\":{\"labelValue\":\"ESN\",\"primaryLabelValue\":\"ESN\"}},{\"attributeHeader\":{\"labelValue\":\"Essai\",\"primaryLabelValue\":\"Essai\"}},{\"attributeHeader\":{\"labelValue\":\"e-Storm International\",\"primaryLabelValue\":\"e-Storm International\"}},{\"attributeHeader\":{\"labelValue\":\"ESW Partners\",\"primaryLabelValue\":\"ESW Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ETC Institute\",\"primaryLabelValue\":\"ETC Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Europa Sports Products\",\"primaryLabelValue\":\"Europa Sports Products\"}},{\"attributeHeader\":{\"labelValue\":\"EventPro Strategies\",\"primaryLabelValue\":\"EventPro Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Eview 360\",\"primaryLabelValue\":\"Eview 360\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve Media\",\"primaryLabelValue\":\"Evolve Media\"}},{\"attributeHeader\":{\"labelValue\":\"ExactTarget\",\"primaryLabelValue\":\"ExactTarget\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Integrated Systems\",\"primaryLabelValue\":\"Excalibur Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Excella Consulting\",\"primaryLabelValue\":\"Excella Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Exhibit Edge\",\"primaryLabelValue\":\"Exhibit Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Expedited Logistics and Freight Services\",\"primaryLabelValue\":\"Expedited Logistics and Freight Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Expesite\",\"primaryLabelValue\":\"Expesite\"}},{\"attributeHeader\":{\"labelValue\":\"Explore Consulting\",\"primaryLabelValue\":\"Explore Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"ExtensionEngine\",\"primaryLabelValue\":\"ExtensionEngine\"}},{\"attributeHeader\":{\"labelValue\":\"eZanga.com\",\"primaryLabelValue\":\"eZanga.com\"}},{\"attributeHeader\":{\"labelValue\":\"F1 Computer Solutions\",\"primaryLabelValue\":\"F1 Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Facility Wizard Software\",\"primaryLabelValue\":\"Facility Wizard Software\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon International Bank\",\"primaryLabelValue\":\"Falcon International Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Farylrobin\",\"primaryLabelValue\":\"Farylrobin\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Switch\",\"primaryLabelValue\":\"Fast Switch\"}},{\"attributeHeader\":{\"labelValue\":\"Fast-Fix Jewelry\",\"primaryLabelValue\":\"Fast-Fix Jewelry\"}},{\"attributeHeader\":{\"labelValue\":\"FasTracKids International\",\"primaryLabelValue\":\"FasTracKids International\"}},{\"attributeHeader\":{\"labelValue\":\"FeatureTel\",\"primaryLabelValue\":\"FeatureTel\"}},{\"attributeHeader\":{\"labelValue\":\"FedConcepts\",\"primaryLabelValue\":\"FedConcepts\"}},{\"attributeHeader\":{\"labelValue\":\"Fetch Technologies\",\"primaryLabelValue\":\"Fetch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiberall\",\"primaryLabelValue\":\"Fiberall\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertech Networks\",\"primaryLabelValue\":\"Fibertech Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fieldtex Products\",\"primaryLabelValue\":\"Fieldtex Products\"}},{\"attributeHeader\":{\"labelValue\":\"Filmtools\",\"primaryLabelValue\":\"Filmtools\"}},{\"attributeHeader\":{\"labelValue\":\"Finale Desserterie & Bakery\",\"primaryLabelValue\":\"Finale Desserterie & Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Engines\",\"primaryLabelValue\":\"Financial Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fire-Dex\",\"primaryLabelValue\":\"Fire-Dex\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"First American Equipment Finance\",\"primaryLabelValue\":\"First American Equipment Finance\"}},{\"attributeHeader\":{\"labelValue\":\"FirsTrust Mortgage\",\"primaryLabelValue\":\"FirsTrust Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Fish Window Cleaning Services\",\"primaryLabelValue\":\"Fish Window Cleaning Services\"}},{\"attributeHeader\":{\"labelValue\":\"FishNet Security\",\"primaryLabelValue\":\"FishNet Security\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzgerald Analytics\",\"primaryLabelValue\":\"Fitzgerald Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzpatrick, Cella, Harper & Scinto\",\"primaryLabelValue\":\"Fitzpatrick, Cella, Harper & Scinto\"}},{\"attributeHeader\":{\"labelValue\":\"Five9\",\"primaryLabelValue\":\"Five9\"}},{\"attributeHeader\":{\"labelValue\":\"Flatirons Solutions\",\"primaryLabelValue\":\"Flatirons Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Pie Pizzaria\",\"primaryLabelValue\":\"Flying Pie Pizzaria\"}},{\"attributeHeader\":{\"labelValue\":\"Foley Hoag\",\"primaryLabelValue\":\"Foley Hoag\"}},{\"attributeHeader\":{\"labelValue\":\"FONA International\",\"primaryLabelValue\":\"FONA International\"}},{\"attributeHeader\":{\"labelValue\":\"Foot Petals\",\"primaryLabelValue\":\"Foot Petals\"}},{\"attributeHeader\":{\"labelValue\":\"Force Marketing\",\"primaryLabelValue\":\"Force Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forman Motorsport\",\"primaryLabelValue\":\"Forman Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Construction\",\"primaryLabelValue\":\"Fortis Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Fortune-Johnson\",\"primaryLabelValue\":\"Fortune-Johnson\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Fuel Belt\",\"primaryLabelValue\":\"Fuel Belt\"}},{\"attributeHeader\":{\"labelValue\":\"Fulbright & Jaworski\",\"primaryLabelValue\":\"Fulbright & Jaworski\"}},{\"attributeHeader\":{\"labelValue\":\"Fuse\",\"primaryLabelValue\":\"Fuse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Solutions\",\"primaryLabelValue\":\"Fusion Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Systems\",\"primaryLabelValue\":\"Fusion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"FusionStorm\",\"primaryLabelValue\":\"FusionStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Builders Group\",\"primaryLabelValue\":\"Futura Builders Group\"}},{\"attributeHeader\":{\"labelValue\":\"Future Force Personnel\",\"primaryLabelValue\":\"Future Force Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Future Research\",\"primaryLabelValue\":\"Future Research\"}},{\"attributeHeader\":{\"labelValue\":\"FXCM\",\"primaryLabelValue\":\"FXCM\"}},{\"attributeHeader\":{\"labelValue\":\"GaN Corporation\",\"primaryLabelValue\":\"GaN Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Gateway Ticketing Systems\",\"primaryLabelValue\":\"Gateway Ticketing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gateworks\",\"primaryLabelValue\":\"Gateworks\"}},{\"attributeHeader\":{\"labelValue\":\"GB Collects\",\"primaryLabelValue\":\"GB Collects\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"generationE Technologies\",\"primaryLabelValue\":\"generationE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Geocent\",\"primaryLabelValue\":\"Geocent\"}},{\"attributeHeader\":{\"labelValue\":\"geographIT\",\"primaryLabelValue\":\"geographIT\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Logical\",\"primaryLabelValue\":\"Geo-Logical\"}},{\"attributeHeader\":{\"labelValue\":\"GeoStructures\",\"primaryLabelValue\":\"GeoStructures\"}},{\"attributeHeader\":{\"labelValue\":\"Gila\",\"primaryLabelValue\":\"Gila\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Giovanni Food\",\"primaryLabelValue\":\"Giovanni Food\"}},{\"attributeHeader\":{\"labelValue\":\"Giroux Glass\",\"primaryLabelValue\":\"Giroux Glass\"}},{\"attributeHeader\":{\"labelValue\":\"GIS Planning\",\"primaryLabelValue\":\"GIS Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Technology Resources\",\"primaryLabelValue\":\"Global Technology Resources\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalLogic\",\"primaryLabelValue\":\"GlobalLogic\"}},{\"attributeHeader\":{\"labelValue\":\"GNS\",\"primaryLabelValue\":\"GNS\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Goble & Associates\",\"primaryLabelValue\":\"Goble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Star Mortgage Financial Group\",\"primaryLabelValue\":\"Gold Star Mortgage Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Golfballs.com\",\"primaryLabelValue\":\"Golfballs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwives Hors d'oeuvres\",\"primaryLabelValue\":\"Goodwives Hors d'oeuvres\"}},{\"attributeHeader\":{\"labelValue\":\"Gordmans Stores\",\"primaryLabelValue\":\"Gordmans Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GRA\",\"primaryLabelValue\":\"GRA\"}},{\"attributeHeader\":{\"labelValue\":\"Grandstream Networks\",\"primaryLabelValue\":\"Grandstream Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Granicus\",\"primaryLabelValue\":\"Granicus\"}},{\"attributeHeader\":{\"labelValue\":\"Granite Telecommunications\",\"primaryLabelValue\":\"Granite Telecommunications\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GreenSoft Solutions\",\"primaryLabelValue\":\"GreenSoft Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Greentarget Global Group\",\"primaryLabelValue\":\"Greentarget Global Group\"}},{\"attributeHeader\":{\"labelValue\":\"Griswold International\",\"primaryLabelValue\":\"Griswold International\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"Group O\",\"primaryLabelValue\":\"Group O\"}},{\"attributeHeader\":{\"labelValue\":\"Groupware Technology\",\"primaryLabelValue\":\"Groupware Technology\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Payroll Services\",\"primaryLabelValue\":\"GTM Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guardian Power Protection Services\",\"primaryLabelValue\":\"Guardian Power Protection Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guident Technologies\",\"primaryLabelValue\":\"Guident Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HaloSource\",\"primaryLabelValue\":\"HaloSource\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Communications\",\"primaryLabelValue\":\"Hanson Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Harbinger Partners\",\"primaryLabelValue\":\"Harbinger Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Harbor Financial Services\",\"primaryLabelValue\":\"Harbor Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hardy Diagnostics\",\"primaryLabelValue\":\"Hardy Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"Harmonia\",\"primaryLabelValue\":\"Harmonia\"}},{\"attributeHeader\":{\"labelValue\":\"Haynes and Boone\",\"primaryLabelValue\":\"Haynes and Boone\"}},{\"attributeHeader\":{\"labelValue\":\"HDR\",\"primaryLabelValue\":\"HDR\"}},{\"attributeHeader\":{\"labelValue\":\"Health Designs\",\"primaryLabelValue\":\"Health Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Communications Group\",\"primaryLabelValue\":\"Healthcare Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthHelp\",\"primaryLabelValue\":\"HealthHelp\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Healthx\",\"primaryLabelValue\":\"Healthx\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"High Performance Technologies\",\"primaryLabelValue\":\"High Performance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"High Tech Innovations\",\"primaryLabelValue\":\"High Tech Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"Hired Hands\",\"primaryLabelValue\":\"Hired Hands\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"Hissho Sushi\",\"primaryLabelValue\":\"Hissho Sushi\"}},{\"attributeHeader\":{\"labelValue\":\"HMC Architects\",\"primaryLabelValue\":\"HMC Architects\"}},{\"attributeHeader\":{\"labelValue\":\"HMT Associates\",\"primaryLabelValue\":\"HMT Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (TX)\",\"primaryLabelValue\":\"Home Instead Senior Care (TX)\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Consulting\",\"primaryLabelValue\":\"Horizon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Hot Studio\",\"primaryLabelValue\":\"Hot Studio\"}},{\"attributeHeader\":{\"labelValue\":\"Howrey\",\"primaryLabelValue\":\"Howrey\"}},{\"attributeHeader\":{\"labelValue\":\"HSA Engineers & Scientists\",\"primaryLabelValue\":\"HSA Engineers & Scientists\"}},{\"attributeHeader\":{\"labelValue\":\"HTC Global Services\",\"primaryLabelValue\":\"HTC Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Hunter Technical Resources\",\"primaryLabelValue\":\"Hunter Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Hybrid Transit Systems\",\"primaryLabelValue\":\"Hybrid Transit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"I Play\",\"primaryLabelValue\":\"I Play\"}},{\"attributeHeader\":{\"labelValue\":\"i9 Sports\",\"primaryLabelValue\":\"i9 Sports\"}},{\"attributeHeader\":{\"labelValue\":\"IASIS Healthcare\",\"primaryLabelValue\":\"IASIS Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ice Miller\",\"primaryLabelValue\":\"Ice Miller\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"iFAX Solutions\",\"primaryLabelValue\":\"iFAX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iFixit\",\"primaryLabelValue\":\"iFixit\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Image Locations\",\"primaryLabelValue\":\"Image Locations\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging Alliance Group\",\"primaryLabelValue\":\"Imaging Alliance Group\"}},{\"attributeHeader\":{\"labelValue\":\"iMarc\",\"primaryLabelValue\":\"iMarc\"}},{\"attributeHeader\":{\"labelValue\":\"Impex Group\",\"primaryLabelValue\":\"Impex Group\"}},{\"attributeHeader\":{\"labelValue\":\"Incisive Surgical\",\"primaryLabelValue\":\"Incisive Surgical\"}},{\"attributeHeader\":{\"labelValue\":\"Independent Financial Group\",\"primaryLabelValue\":\"Independent Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Industrial Solutions\",\"primaryLabelValue\":\"Industrial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iNET Interactive\",\"primaryLabelValue\":\"iNET Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Infinit Technology Solutions\",\"primaryLabelValue\":\"Infinit Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Consulting Solutions\",\"primaryLabelValue\":\"Infinity Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Systems Engineering\",\"primaryLabelValue\":\"Infinity Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Info Retail\",\"primaryLabelValue\":\"Info Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Information Innovators\",\"primaryLabelValue\":\"Information Innovators\"}},{\"attributeHeader\":{\"labelValue\":\"Information Systems Solutions\",\"primaryLabelValue\":\"Information Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Infoyogi\",\"primaryLabelValue\":\"Infoyogi\"}},{\"attributeHeader\":{\"labelValue\":\"Inkgrabber.com\",\"primaryLabelValue\":\"Inkgrabber.com\"}},{\"attributeHeader\":{\"labelValue\":\"Inland Pipe Rehabilitation\",\"primaryLabelValue\":\"Inland Pipe Rehabilitation\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Computing Systems\",\"primaryLabelValue\":\"Innovative Computing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Office Solutions\",\"primaryLabelValue\":\"Innovative Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Staffing\",\"primaryLabelValue\":\"Innovative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Global\",\"primaryLabelValue\":\"Insight Global\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Sourcing Group\",\"primaryLabelValue\":\"Insight Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Biotechnical\",\"primaryLabelValue\":\"Integra Biotechnical\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Realty Resources\",\"primaryLabelValue\":\"Integra Realty Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integral Senior Living\",\"primaryLabelValue\":\"Integral Senior Living\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Control\",\"primaryLabelValue\":\"Integrated Control\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design\",\"primaryLabelValue\":\"Integrated Design\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design Group\",\"primaryLabelValue\":\"Integrated Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Resources\",\"primaryLabelValue\":\"Integrated Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Partners\",\"primaryLabelValue\":\"Integration Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Applications\",\"primaryLabelValue\":\"Integrity Applications\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"Intelius\",\"primaryLabelValue\":\"Intelius\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Software Solutions\",\"primaryLabelValue\":\"Intelligent Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (TN)\",\"primaryLabelValue\":\"Interactive Solutions (TN)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Foods\",\"primaryLabelValue\":\"Intermark Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Intermarkets\",\"primaryLabelValue\":\"Intermarkets\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"International Software Systems\",\"primaryLabelValue\":\"International Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate International\",\"primaryLabelValue\":\"Interstate International\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate Transport\",\"primaryLabelValue\":\"Interstate Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Intetics\",\"primaryLabelValue\":\"Intetics\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"Irell & Manella\",\"primaryLabelValue\":\"Irell & Manella\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Isis Parenting\",\"primaryLabelValue\":\"Isis Parenting\"}},{\"attributeHeader\":{\"labelValue\":\"Island\",\"primaryLabelValue\":\"Island\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Laboratories\",\"primaryLabelValue\":\"Isotech Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"Issue Media Group\",\"primaryLabelValue\":\"Issue Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"IST Management Services\",\"primaryLabelValue\":\"IST Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"iStrategy Solutions\",\"primaryLabelValue\":\"iStrategy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ISYS Technologies\",\"primaryLabelValue\":\"ISYS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IT First Source\",\"primaryLabelValue\":\"IT First Source\"}},{\"attributeHeader\":{\"labelValue\":\"IT Solutions Consulting\",\"primaryLabelValue\":\"IT Solutions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iTech US\",\"primaryLabelValue\":\"iTech US\"}},{\"attributeHeader\":{\"labelValue\":\"IT-Lifeline\",\"primaryLabelValue\":\"IT-Lifeline\"}},{\"attributeHeader\":{\"labelValue\":\"iVenture Solutions\",\"primaryLabelValue\":\"iVenture Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Clancy\",\"primaryLabelValue\":\"J.R. Clancy\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jackson Walker\",\"primaryLabelValue\":\"Jackson Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Jenner & Block\",\"primaryLabelValue\":\"Jenner & Block\"}},{\"attributeHeader\":{\"labelValue\":\"JG Black Book of Travel\",\"primaryLabelValue\":\"JG Black Book of Travel\"}},{\"attributeHeader\":{\"labelValue\":\"JGear\",\"primaryLabelValue\":\"JGear\"}},{\"attributeHeader\":{\"labelValue\":\"JHE Production Group\",\"primaryLabelValue\":\"JHE Production Group\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"JMC Holdings\",\"primaryLabelValue\":\"JMC Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Johnny Cupcakes\",\"primaryLabelValue\":\"Johnny Cupcakes\"}},{\"attributeHeader\":{\"labelValue\":\"Jo-Kell\",\"primaryLabelValue\":\"Jo-Kell\"}},{\"attributeHeader\":{\"labelValue\":\"JSMN International\",\"primaryLabelValue\":\"JSMN International\"}},{\"attributeHeader\":{\"labelValue\":\"Junk my Car\",\"primaryLabelValue\":\"Junk my Car\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Kahler Automation\",\"primaryLabelValue\":\"Kahler Automation\"}},{\"attributeHeader\":{\"labelValue\":\"Kaizen Technologies\",\"primaryLabelValue\":\"Kaizen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kaye Scholer\",\"primaryLabelValue\":\"Kaye Scholer\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Healthcare\",\"primaryLabelValue\":\"Keen Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Kelly's Industrial Services\",\"primaryLabelValue\":\"Kelly's Industrial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Kelton Research\",\"primaryLabelValue\":\"Kelton Research\"}},{\"attributeHeader\":{\"labelValue\":\"KeyLogic Systems\",\"primaryLabelValue\":\"KeyLogic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kickball.com\",\"primaryLabelValue\":\"Kickball.com\"}},{\"attributeHeader\":{\"labelValue\":\"Kids II\",\"primaryLabelValue\":\"Kids II\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Kinetek Consulting\",\"primaryLabelValue\":\"Kinetek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"King Enterprise Group\",\"primaryLabelValue\":\"King Enterprise Group\"}},{\"attributeHeader\":{\"labelValue\":\"Kingfisher Systems\",\"primaryLabelValue\":\"Kingfisher Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kingston Technology\",\"primaryLabelValue\":\"Kingston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"KIRA\",\"primaryLabelValue\":\"KIRA\"}},{\"attributeHeader\":{\"labelValue\":\"Kirkland & Ellis\",\"primaryLabelValue\":\"Kirkland & Ellis\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"KJ Technology Consulting\",\"primaryLabelValue\":\"KJ Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Klein Buendel\",\"primaryLabelValue\":\"Klein Buendel\"}},{\"attributeHeader\":{\"labelValue\":\"KMRD Partners\",\"primaryLabelValue\":\"KMRD Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Knichel Logistics\",\"primaryLabelValue\":\"Knichel Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Marketing\",\"primaryLabelValue\":\"Knowledge Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Mosaic\",\"primaryLabelValue\":\"Knowledge Mosaic\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeCentrix\",\"primaryLabelValue\":\"KnowledgeCentrix\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Krupp Kommunications\",\"primaryLabelValue\":\"Krupp Kommunications\"}},{\"attributeHeader\":{\"labelValue\":\"KTI\",\"primaryLabelValue\":\"KTI\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"Labor Law Center\",\"primaryLabelValue\":\"Labor Law Center\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Technologies\",\"primaryLabelValue\":\"Laser Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lastar\",\"primaryLabelValue\":\"Lastar\"}},{\"attributeHeader\":{\"labelValue\":\"Lathrop & Gage\",\"primaryLabelValue\":\"Lathrop & Gage\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Launch\",\"primaryLabelValue\":\"Launch\"}},{\"attributeHeader\":{\"labelValue\":\"Laurus Technologies\",\"primaryLabelValue\":\"Laurus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lazorpoint\",\"primaryLabelValue\":\"Lazorpoint\"}},{\"attributeHeader\":{\"labelValue\":\"LeadCreations.com\",\"primaryLabelValue\":\"LeadCreations.com\"}},{\"attributeHeader\":{\"labelValue\":\"LeadPile\",\"primaryLabelValue\":\"LeadPile\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lease A Sales Rep\",\"primaryLabelValue\":\"Lease A Sales Rep\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Financial Advisors\",\"primaryLabelValue\":\"Legend Financial Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Healthcare\",\"primaryLabelValue\":\"Legend Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Levick Strategic Communications\",\"primaryLabelValue\":\"Levick Strategic Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Brisbois Bisgaard & Smith\",\"primaryLabelValue\":\"Lewis Brisbois Bisgaard & Smith\"}},{\"attributeHeader\":{\"labelValue\":\"LFA Group\",\"primaryLabelValue\":\"LFA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lifematters\",\"primaryLabelValue\":\"Lifematters\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Lighthouse Placement Services\",\"primaryLabelValue\":\"Lighthouse Placement Services\"}},{\"attributeHeader\":{\"labelValue\":\"LightWorks Optics\",\"primaryLabelValue\":\"LightWorks Optics\"}},{\"attributeHeader\":{\"labelValue\":\"Lime Brokerage\",\"primaryLabelValue\":\"Lime Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Lindy Paving\",\"primaryLabelValue\":\"Lindy Paving\"}},{\"attributeHeader\":{\"labelValue\":\"Line 6\",\"primaryLabelValue\":\"Line 6\"}},{\"attributeHeader\":{\"labelValue\":\"LiqueColor InkJet Group\",\"primaryLabelValue\":\"LiqueColor InkJet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Litle & Co.\",\"primaryLabelValue\":\"Litle & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Living Direct\",\"primaryLabelValue\":\"Living Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location3 Media\",\"primaryLabelValue\":\"Location3 Media\"}},{\"attributeHeader\":{\"labelValue\":\"Loffler Companies\",\"primaryLabelValue\":\"Loffler Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Planet\",\"primaryLabelValue\":\"Logic Planet\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Supply\",\"primaryLabelValue\":\"Logic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Trends\",\"primaryLabelValue\":\"Logic Trends\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Choice Technologies\",\"primaryLabelValue\":\"Logical Choice Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Management Solutions\",\"primaryLabelValue\":\"Logistics Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LogoSportswear.com\",\"primaryLabelValue\":\"LogoSportswear.com\"}},{\"attributeHeader\":{\"labelValue\":\"Long Term Solutions\",\"primaryLabelValue\":\"Long Term Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lopez Negrete Communications\",\"primaryLabelValue\":\"Lopez Negrete Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Lowenstein Sandler\",\"primaryLabelValue\":\"Lowenstein Sandler\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"Lynx Network Group\",\"primaryLabelValue\":\"Lynx Network Group\"}},{\"attributeHeader\":{\"labelValue\":\"Lyons Consulting Group\",\"primaryLabelValue\":\"Lyons Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"M/E Engineering\",\"primaryLabelValue\":\"M/E Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mabbett & Associates\",\"primaryLabelValue\":\"Mabbett & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MacFarlane Pheasants\",\"primaryLabelValue\":\"MacFarlane Pheasants\"}},{\"attributeHeader\":{\"labelValue\":\"Magnani Caruso Dutton\",\"primaryLabelValue\":\"Magnani Caruso Dutton\"}},{\"attributeHeader\":{\"labelValue\":\"Magnetic\",\"primaryLabelValue\":\"Magnetic\"}},{\"attributeHeader\":{\"labelValue\":\"Malcap Mortgage\",\"primaryLabelValue\":\"Malcap Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Maldonado Nursery & Landscaping\",\"primaryLabelValue\":\"Maldonado Nursery & Landscaping\"}},{\"attributeHeader\":{\"labelValue\":\"Malone AirCharter\",\"primaryLabelValue\":\"Malone AirCharter\"}},{\"attributeHeader\":{\"labelValue\":\"Managed Business Solutions\",\"primaryLabelValue\":\"Managed Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mansell Group\",\"primaryLabelValue\":\"Mansell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield Oil\",\"primaryLabelValue\":\"Mansfield Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Mantz Automation\",\"primaryLabelValue\":\"Mantz Automation\"}},{\"attributeHeader\":{\"labelValue\":\"MAQ Software\",\"primaryLabelValue\":\"MAQ Software\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Direct\",\"primaryLabelValue\":\"Marketing Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"MarketResearch.com\",\"primaryLabelValue\":\"MarketResearch.com\"}},{\"attributeHeader\":{\"labelValue\":\"MarkMaster\",\"primaryLabelValue\":\"MarkMaster\"}},{\"attributeHeader\":{\"labelValue\":\"Marlabs\",\"primaryLabelValue\":\"Marlabs\"}},{\"attributeHeader\":{\"labelValue\":\"Mathnasium Learning Centers\",\"primaryLabelValue\":\"Mathnasium Learning Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Networks\",\"primaryLabelValue\":\"Maverick Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Max Borges Agency\",\"primaryLabelValue\":\"Max Borges Agency\"}},{\"attributeHeader\":{\"labelValue\":\"MBS Dev\",\"primaryLabelValue\":\"MBS Dev\"}},{\"attributeHeader\":{\"labelValue\":\"McCarter & English\",\"primaryLabelValue\":\"McCarter & English\"}},{\"attributeHeader\":{\"labelValue\":\"McGrath Systems\",\"primaryLabelValue\":\"McGrath Systems\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Communications\",\"primaryLabelValue\":\"McGraw Communications\"}},{\"attributeHeader\":{\"labelValue\":\"McKenna Long & Aldridge\",\"primaryLabelValue\":\"McKenna Long & Aldridge\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Meadows Urquhart Acree & Cook\",\"primaryLabelValue\":\"Meadows Urquhart Acree & Cook\"}},{\"attributeHeader\":{\"labelValue\":\"Mechanical Reps\",\"primaryLabelValue\":\"Mechanical Reps\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MEDEX Global Solutions\",\"primaryLabelValue\":\"MEDEX Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"Medica HealthCare Plans\",\"primaryLabelValue\":\"Medica HealthCare Plans\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Emergency Professionals\",\"primaryLabelValue\":\"Medical Emergency Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Management Options\",\"primaryLabelValue\":\"Medical Management Options\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Solutions\",\"primaryLabelValue\":\"Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Transaction Billing\",\"primaryLabelValue\":\"Medical Transaction Billing\"}},{\"attributeHeader\":{\"labelValue\":\"MedSource\",\"primaryLabelValue\":\"MedSource\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"MEI Technologies\",\"primaryLabelValue\":\"MEI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Melink\",\"primaryLabelValue\":\"Melink\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Mentoring Minds\",\"primaryLabelValue\":\"Mentoring Minds\"}},{\"attributeHeader\":{\"labelValue\":\"Meras Engineering\",\"primaryLabelValue\":\"Meras Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Merced Systems\",\"primaryLabelValue\":\"Merced Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Services\",\"primaryLabelValue\":\"Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Home Mortgage\",\"primaryLabelValue\":\"Meridian Home Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Technologies\",\"primaryLabelValue\":\"Meridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Merrick Systems\",\"primaryLabelValue\":\"Merrick Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merrimak Capital\",\"primaryLabelValue\":\"Merrimak Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Merritt Group\",\"primaryLabelValue\":\"Merritt Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meta Pharmaceutical Services\",\"primaryLabelValue\":\"Meta Pharmaceutical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Metrokane\",\"primaryLabelValue\":\"Metrokane\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Microwize Technology\",\"primaryLabelValue\":\"Microwize Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Industrial Supply\",\"primaryLabelValue\":\"Midwest Industrial Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Milbank, Tweed, Hadley & McCloy\",\"primaryLabelValue\":\"Milbank, Tweed, Hadley & McCloy\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Communications Group\",\"primaryLabelValue\":\"Millennium Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Miller & Associates\",\"primaryLabelValue\":\"Miller & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Million Dollar Baby\",\"primaryLabelValue\":\"Million Dollar Baby\"}},{\"attributeHeader\":{\"labelValue\":\"Mimeo.com\",\"primaryLabelValue\":\"Mimeo.com\"}},{\"attributeHeader\":{\"labelValue\":\"MindLance\",\"primaryLabelValue\":\"MindLance\"}},{\"attributeHeader\":{\"labelValue\":\"Mindshare Technologies\",\"primaryLabelValue\":\"Mindshare Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"Mitratech\",\"primaryLabelValue\":\"Mitratech\"}},{\"attributeHeader\":{\"labelValue\":\"MNJ Technologies Direct\",\"primaryLabelValue\":\"MNJ Technologies Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Mobile One Courier & Logistics\",\"primaryLabelValue\":\"Mobile One Courier & Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MobilityWorks\",\"primaryLabelValue\":\"MobilityWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Molly Maid of Greater Austin Texas\",\"primaryLabelValue\":\"Molly Maid of Greater Austin Texas\"}},{\"attributeHeader\":{\"labelValue\":\"Momentum\",\"primaryLabelValue\":\"Momentum\"}},{\"attributeHeader\":{\"labelValue\":\"Mone't\",\"primaryLabelValue\":\"Mone't\"}},{\"attributeHeader\":{\"labelValue\":\"Money Clip Magazine\",\"primaryLabelValue\":\"Money Clip Magazine\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Montbleau & Associates\",\"primaryLabelValue\":\"Montbleau & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Moore Freight Service\",\"primaryLabelValue\":\"Moore Freight Service\"}},{\"attributeHeader\":{\"labelValue\":\"Morrison & Foerster\",\"primaryLabelValue\":\"Morrison & Foerster\"}},{\"attributeHeader\":{\"labelValue\":\"MotherNature.com\",\"primaryLabelValue\":\"MotherNature.com\"}},{\"attributeHeader\":{\"labelValue\":\"M-Pak\",\"primaryLabelValue\":\"M-Pak\"}},{\"attributeHeader\":{\"labelValue\":\"MRE Consulting\",\"primaryLabelValue\":\"MRE Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Multivision\",\"primaryLabelValue\":\"Multivision\"}},{\"attributeHeader\":{\"labelValue\":\"Murthy Law Firm\",\"primaryLabelValue\":\"Murthy Law Firm\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"MxSecure\",\"primaryLabelValue\":\"MxSecure\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Namifiers\",\"primaryLabelValue\":\"Namifiers\"}},{\"attributeHeader\":{\"labelValue\":\"Namtra Business Solutions\",\"primaryLabelValue\":\"Namtra Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"National Bankers Trust\",\"primaryLabelValue\":\"National Bankers Trust\"}},{\"attributeHeader\":{\"labelValue\":\"National Collegiate Scouting Association\",\"primaryLabelValue\":\"National Collegiate Scouting Association\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Ultrasound\",\"primaryLabelValue\":\"National Ultrasound\"}},{\"attributeHeader\":{\"labelValue\":\"NationLink Wireless\",\"primaryLabelValue\":\"NationLink Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Native Land Design\",\"primaryLabelValue\":\"Native Land Design\"}},{\"attributeHeader\":{\"labelValue\":\"NaturaLawn of America\",\"primaryLabelValue\":\"NaturaLawn of America\"}},{\"attributeHeader\":{\"labelValue\":\"Nautilus Environmental\",\"primaryLabelValue\":\"Nautilus Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Neace Lukens\",\"primaryLabelValue\":\"Neace Lukens\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Gamble & Associates\",\"primaryLabelValue\":\"Nelson Gamble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"NeoPhotonics\",\"primaryLabelValue\":\"NeoPhotonics\"}},{\"attributeHeader\":{\"labelValue\":\"Netchex\",\"primaryLabelValue\":\"Netchex\"}},{\"attributeHeader\":{\"labelValue\":\"NetConn Solutions\",\"primaryLabelValue\":\"NetConn Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"Network Hardware Resale\",\"primaryLabelValue\":\"Network Hardware Resale\"}},{\"attributeHeader\":{\"labelValue\":\"Network Outsource\",\"primaryLabelValue\":\"Network Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"NetworkIP\",\"primaryLabelValue\":\"NetworkIP\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"New Creature\",\"primaryLabelValue\":\"New Creature\"}},{\"attributeHeader\":{\"labelValue\":\"New Editions Consulting\",\"primaryLabelValue\":\"New Editions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"New Glarus Brewing\",\"primaryLabelValue\":\"New Glarus Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"NewBath\",\"primaryLabelValue\":\"NewBath\"}},{\"attributeHeader\":{\"labelValue\":\"Newmans Valves\",\"primaryLabelValue\":\"Newmans Valves\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexLevel Information Technology\",\"primaryLabelValue\":\"NexLevel Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Next Generation Wireless\",\"primaryLabelValue\":\"Next Generation Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Next Marketing\",\"primaryLabelValue\":\"Next Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Next Step Learning\",\"primaryLabelValue\":\"Next Step Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Nexum\",\"primaryLabelValue\":\"Nexum\"}},{\"attributeHeader\":{\"labelValue\":\"Nexus IS\",\"primaryLabelValue\":\"Nexus IS\"}},{\"attributeHeader\":{\"labelValue\":\"NGP Software\",\"primaryLabelValue\":\"NGP Software\"}},{\"attributeHeader\":{\"labelValue\":\"Nielsen-Kellerman\",\"primaryLabelValue\":\"Nielsen-Kellerman\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nixon Peabody\",\"primaryLabelValue\":\"Nixon Peabody\"}},{\"attributeHeader\":{\"labelValue\":\"n-Link\",\"primaryLabelValue\":\"n-Link\"}},{\"attributeHeader\":{\"labelValue\":\"NogginLabs\",\"primaryLabelValue\":\"NogginLabs\"}},{\"attributeHeader\":{\"labelValue\":\"Noodles & Company\",\"primaryLabelValue\":\"Noodles & Company\"}},{\"attributeHeader\":{\"labelValue\":\"North Shore Pediatric Therapy\",\"primaryLabelValue\":\"North Shore Pediatric Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"Northridge Systems\",\"primaryLabelValue\":\"Northridge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Crane Service\",\"primaryLabelValue\":\"Northwest Crane Service\"}},{\"attributeHeader\":{\"labelValue\":\"Nova Datacom\",\"primaryLabelValue\":\"Nova Datacom\"}},{\"attributeHeader\":{\"labelValue\":\"Novae\",\"primaryLabelValue\":\"Novae\"}},{\"attributeHeader\":{\"labelValue\":\"NovaVision\",\"primaryLabelValue\":\"NovaVision\"}},{\"attributeHeader\":{\"labelValue\":\"Novus Biologicals\",\"primaryLabelValue\":\"Novus Biologicals\"}},{\"attributeHeader\":{\"labelValue\":\"NRS\",\"primaryLabelValue\":\"NRS\"}},{\"attributeHeader\":{\"labelValue\":\"NT Concepts\",\"primaryLabelValue\":\"NT Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Nutrition S'Mart\",\"primaryLabelValue\":\"Nutrition S'Mart\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Nyhus Communications\",\"primaryLabelValue\":\"Nyhus Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OakTree Solutions\",\"primaryLabelValue\":\"OakTree Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Object CTalk\",\"primaryLabelValue\":\"Object CTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Observant\",\"primaryLabelValue\":\"Observant\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Oddcast\",\"primaryLabelValue\":\"Oddcast\"}},{\"attributeHeader\":{\"labelValue\":\"OfficePro\",\"primaryLabelValue\":\"OfficePro\"}},{\"attributeHeader\":{\"labelValue\":\"OfficeSource\",\"primaryLabelValue\":\"OfficeSource\"}},{\"attributeHeader\":{\"labelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\",\"primaryLabelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Ohio Power Tool\",\"primaryLabelValue\":\"Ohio Power Tool\"}},{\"attributeHeader\":{\"labelValue\":\"OmegaBlue\",\"primaryLabelValue\":\"OmegaBlue\"}},{\"attributeHeader\":{\"labelValue\":\"Omni Systems\",\"primaryLabelValue\":\"Omni Systems\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Systems\",\"primaryLabelValue\":\"One Stop Systems\"}},{\"attributeHeader\":{\"labelValue\":\"One to One Interactive\",\"primaryLabelValue\":\"One to One Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"OneCommand\",\"primaryLabelValue\":\"OneCommand\"}},{\"attributeHeader\":{\"labelValue\":\"OneNeck IT Services\",\"primaryLabelValue\":\"OneNeck IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Online Stores\",\"primaryLabelValue\":\"Online Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems International\",\"primaryLabelValue\":\"Open Systems International\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Systems\",\"primaryLabelValue\":\"Orbit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Organic Laboratories\",\"primaryLabelValue\":\"Organic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"OrthoBanc\",\"primaryLabelValue\":\"OrthoBanc\"}},{\"attributeHeader\":{\"labelValue\":\"Oscor\",\"primaryLabelValue\":\"Oscor\"}},{\"attributeHeader\":{\"labelValue\":\"OSi\",\"primaryLabelValue\":\"OSi\"}},{\"attributeHeader\":{\"labelValue\":\"OstermanCron\",\"primaryLabelValue\":\"OstermanCron\"}},{\"attributeHeader\":{\"labelValue\":\"Other World Computing\",\"primaryLabelValue\":\"Other World Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Travel Group\",\"primaryLabelValue\":\"Ovation Travel Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Dental Services\",\"primaryLabelValue\":\"Pacific Dental Services\"}},{\"attributeHeader\":{\"labelValue\":\"Page Southerland Page\",\"primaryLabelValue\":\"Page Southerland Page\"}},{\"attributeHeader\":{\"labelValue\":\"PainReliever.com\",\"primaryLabelValue\":\"PainReliever.com\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Papa Murphy's International\",\"primaryLabelValue\":\"Papa Murphy's International\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Paramore-Redd Online Marketing\",\"primaryLabelValue\":\"Paramore-Redd Online Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Parature\",\"primaryLabelValue\":\"Parature\"}},{\"attributeHeader\":{\"labelValue\":\"Parrish Services\",\"primaryLabelValue\":\"Parrish Services\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Consulting Services\",\"primaryLabelValue\":\"Partners Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Patton Boggs\",\"primaryLabelValue\":\"Patton Boggs\"}},{\"attributeHeader\":{\"labelValue\":\"PayChoice\",\"primaryLabelValue\":\"PayChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Alliance International\",\"primaryLabelValue\":\"Payment Alliance International\"}},{\"attributeHeader\":{\"labelValue\":\"PayReel\",\"primaryLabelValue\":\"PayReel\"}},{\"attributeHeader\":{\"labelValue\":\"Peaksware\",\"primaryLabelValue\":\"Peaksware\"}},{\"attributeHeader\":{\"labelValue\":\"Peek Packaging\",\"primaryLabelValue\":\"Peek Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Alliance\",\"primaryLabelValue\":\"Pegasus Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Pentadyne Power\",\"primaryLabelValue\":\"Pentadyne Power\"}},{\"attributeHeader\":{\"labelValue\":\"Perceptis\",\"primaryLabelValue\":\"Perceptis\"}},{\"attributeHeader\":{\"labelValue\":\"PercipEnz Technologies\",\"primaryLabelValue\":\"PercipEnz Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Media Group\",\"primaryLabelValue\":\"Performance Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins Coie\",\"primaryLabelValue\":\"Perkins Coie\"}},{\"attributeHeader\":{\"labelValue\":\"Personal Computer Systems\",\"primaryLabelValue\":\"Personal Computer Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Law\",\"primaryLabelValue\":\"Phoenix Law\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Manufacturing\",\"primaryLabelValue\":\"Phoenix Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Marketing International\",\"primaryLabelValue\":\"Phoenix Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Pilgrim Software\",\"primaryLabelValue\":\"Pilgrim Software\"}},{\"attributeHeader\":{\"labelValue\":\"Pinckney Hugo Group\",\"primaryLabelValue\":\"Pinckney Hugo Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Services\",\"primaryLabelValue\":\"Pinnacle Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Shoes\",\"primaryLabelValue\":\"Planet Shoes\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pleasant Hill Grain\",\"primaryLabelValue\":\"Pleasant Hill Grain\"}},{\"attributeHeader\":{\"labelValue\":\"PNT Marketing Services\",\"primaryLabelValue\":\"PNT Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Point Lighting\",\"primaryLabelValue\":\"Point Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Laboratories\",\"primaryLabelValue\":\"Polaris Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Popcorn Palace\",\"primaryLabelValue\":\"Popcorn Palace\"}},{\"attributeHeader\":{\"labelValue\":\"Portfolio Creative Staffing\",\"primaryLabelValue\":\"Portfolio Creative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Posh Boutique\",\"primaryLabelValue\":\"Posh Boutique\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Distribution\",\"primaryLabelValue\":\"Power Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Power Group\",\"primaryLabelValue\":\"Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Powertek\",\"primaryLabelValue\":\"Powertek\"}},{\"attributeHeader\":{\"labelValue\":\"Praetorian Group\",\"primaryLabelValue\":\"Praetorian Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie Quest Consulting\",\"primaryLabelValue\":\"Prairie Quest Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Development Services\",\"primaryLabelValue\":\"Precision Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Pipeline Solutions\",\"primaryLabelValue\":\"Precision Pipeline Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Care Partners\",\"primaryLabelValue\":\"Preferred Care Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Freezer Services\",\"primaryLabelValue\":\"Preferred Freezer Services\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Systems Solutions\",\"primaryLabelValue\":\"Preferred Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Healthcare Exchange\",\"primaryLabelValue\":\"Premier Healthcare Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Placement Media\",\"primaryLabelValue\":\"Premier Placement Media\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Presort Solutions\",\"primaryLabelValue\":\"Presort Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Primatics Financial\",\"primaryLabelValue\":\"Primatics Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Graphics\",\"primaryLabelValue\":\"Prime Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintGlobe\",\"primaryLabelValue\":\"PrintGlobe\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"PriveCo\",\"primaryLabelValue\":\"PriveCo\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Food Systems\",\"primaryLabelValue\":\"Pro Food Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ProCPR\",\"primaryLabelValue\":\"ProCPR\"}},{\"attributeHeader\":{\"labelValue\":\"Product Partners\",\"primaryLabelValue\":\"Product Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Production Robotics\",\"primaryLabelValue\":\"Production Robotics\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitFuel\",\"primaryLabelValue\":\"ProfitFuel\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Brand Proformance\",\"primaryLabelValue\":\"Proforma Brand Proformance\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma InPrint\",\"primaryLabelValue\":\"Proforma InPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Printed Images\",\"primaryLabelValue\":\"Proforma Printed Images\"}},{\"attributeHeader\":{\"labelValue\":\"Program Productions\",\"primaryLabelValue\":\"Program Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"ProKarma\",\"primaryLabelValue\":\"ProKarma\"}},{\"attributeHeader\":{\"labelValue\":\"ProMed Molded Products\",\"primaryLabelValue\":\"ProMed Molded Products\"}},{\"attributeHeader\":{\"labelValue\":\"ProPay\",\"primaryLabelValue\":\"ProPay\"}},{\"attributeHeader\":{\"labelValue\":\"Proskauer Rose\",\"primaryLabelValue\":\"Proskauer Rose\"}},{\"attributeHeader\":{\"labelValue\":\"ProSync\",\"primaryLabelValue\":\"ProSync\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ProTranslating\",\"primaryLabelValue\":\"ProTranslating\"}},{\"attributeHeader\":{\"labelValue\":\"PsiNapse Staffing\",\"primaryLabelValue\":\"PsiNapse Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Psyop\",\"primaryLabelValue\":\"Psyop\"}},{\"attributeHeader\":{\"labelValue\":\"Purple Wave Auction\",\"primaryLabelValue\":\"Purple Wave Auction\"}},{\"attributeHeader\":{\"labelValue\":\"PWR\",\"primaryLabelValue\":\"PWR\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSR Steel\",\"primaryLabelValue\":\"QSR Steel\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Health\",\"primaryLabelValue\":\"Quantum Health\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"QuinStreet\",\"primaryLabelValue\":\"QuinStreet\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rackmount Solutions\",\"primaryLabelValue\":\"Rackmount Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RagingWire Enterprise Solutions\",\"primaryLabelValue\":\"RagingWire Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Rainbow Station\",\"primaryLabelValue\":\"Rainbow Station\"}},{\"attributeHeader\":{\"labelValue\":\"Raining Rose\",\"primaryLabelValue\":\"Raining Rose\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Refill\",\"primaryLabelValue\":\"Rapid Refill\"}},{\"attributeHeader\":{\"labelValue\":\"Rauxa Direct\",\"primaryLabelValue\":\"Rauxa Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ravi's Import Warehouse\",\"primaryLabelValue\":\"Ravi's Import Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Razorleaf\",\"primaryLabelValue\":\"Razorleaf\"}},{\"attributeHeader\":{\"labelValue\":\"rbb Public Relations\",\"primaryLabelValue\":\"rbb Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Reaction Audio Visual\",\"primaryLabelValue\":\"Reaction Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Realty ONE Group\",\"primaryLabelValue\":\"Realty ONE Group\"}},{\"attributeHeader\":{\"labelValue\":\"Red F Marketing\",\"primaryLabelValue\":\"Red F Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Reed Smith\",\"primaryLabelValue\":\"Reed Smith\"}},{\"attributeHeader\":{\"labelValue\":\"Regent Bank\",\"primaryLabelValue\":\"Regent Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Regional Contracting Services\",\"primaryLabelValue\":\"Regional Contracting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Relay Express\",\"primaryLabelValue\":\"Relay Express\"}},{\"attributeHeader\":{\"labelValue\":\"Relectric\",\"primaryLabelValue\":\"Relectric\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Jet Maintenance\",\"primaryLabelValue\":\"Reliable Jet Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Respiratory\",\"primaryLabelValue\":\"Reliable Respiratory\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Software Resources\",\"primaryLabelValue\":\"Reliable Software Resources\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Rensselaer Honda\",\"primaryLabelValue\":\"Rensselaer Honda\"}},{\"attributeHeader\":{\"labelValue\":\"Rent a Coder\",\"primaryLabelValue\":\"Rent a Coder\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reply!\",\"primaryLabelValue\":\"Reply!\"}},{\"attributeHeader\":{\"labelValue\":\"Residential Finance\",\"primaryLabelValue\":\"Residential Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Re-Source Partners Asset Management\",\"primaryLabelValue\":\"Re-Source Partners Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Resourcesoft\",\"primaryLabelValue\":\"Resourcesoft\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"ReStockIt.com\",\"primaryLabelValue\":\"ReStockIt.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Media\",\"primaryLabelValue\":\"Restoration Media\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"rEvolution\",\"primaryLabelValue\":\"rEvolution\"}},{\"attributeHeader\":{\"labelValue\":\"Rey's Cleaners\",\"primaryLabelValue\":\"Rey's Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RideSafely.com\",\"primaryLabelValue\":\"RideSafely.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Medical Solutions\",\"primaryLabelValue\":\"Rising Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"River Road Asset Management\",\"primaryLabelValue\":\"River Road Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Riverside Manufacturing\",\"primaryLabelValue\":\"Riverside Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"RKA Petroleum Companies\",\"primaryLabelValue\":\"RKA Petroleum Companies\"}},{\"attributeHeader\":{\"labelValue\":\"RMCN Credit Services\",\"primaryLabelValue\":\"RMCN Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"RNB Technologies\",\"primaryLabelValue\":\"RNB Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Roamware\",\"primaryLabelValue\":\"Roamware\"}},{\"attributeHeader\":{\"labelValue\":\"RockBottomGolf.com\",\"primaryLabelValue\":\"RockBottomGolf.com\"}},{\"attributeHeader\":{\"labelValue\":\"Roman Fountains\",\"primaryLabelValue\":\"Roman Fountains\"}},{\"attributeHeader\":{\"labelValue\":\"Root Design\",\"primaryLabelValue\":\"Root Design\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Rosetta\",\"primaryLabelValue\":\"Rosetta\"}},{\"attributeHeader\":{\"labelValue\":\"Roxbury Technology\",\"primaryLabelValue\":\"Roxbury Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Document Destruction\",\"primaryLabelValue\":\"Royal Document Destruction\"}},{\"attributeHeader\":{\"labelValue\":\"RuffaloCODY\",\"primaryLabelValue\":\"RuffaloCODY\"}},{\"attributeHeader\":{\"labelValue\":\"Ryonet\",\"primaryLabelValue\":\"Ryonet\"}},{\"attributeHeader\":{\"labelValue\":\"Sabot Technologies\",\"primaryLabelValue\":\"Sabot Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sabre Industries\",\"primaryLabelValue\":\"Sabre Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Sacred Power\",\"primaryLabelValue\":\"Sacred Power\"}},{\"attributeHeader\":{\"labelValue\":\"SADA Systems\",\"primaryLabelValue\":\"SADA Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SafeMart\",\"primaryLabelValue\":\"SafeMart\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sagient Research Systems\",\"primaryLabelValue\":\"Sagient Research Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Salem Printing\",\"primaryLabelValue\":\"Salem Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Salesify\",\"primaryLabelValue\":\"Salesify\"}},{\"attributeHeader\":{\"labelValue\":\"SAM Medical Products\",\"primaryLabelValue\":\"SAM Medical Products\"}},{\"attributeHeader\":{\"labelValue\":\"SamsonBrands\",\"primaryLabelValue\":\"SamsonBrands\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Satcom Resources\",\"primaryLabelValue\":\"Satcom Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Satuit Technologies\",\"primaryLabelValue\":\"Satuit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saveology.com\",\"primaryLabelValue\":\"Saveology.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savi Technologies\",\"primaryLabelValue\":\"Savi Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Sawgrass Asset Management\",\"primaryLabelValue\":\"Sawgrass Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Schaeffer Manufacturing\",\"primaryLabelValue\":\"Schaeffer Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Schneider Associates\",\"primaryLabelValue\":\"Schneider Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Schwartz Benefit Services\",\"primaryLabelValue\":\"Schwartz Benefit Services\"}},{\"attributeHeader\":{\"labelValue\":\"SciQuest\",\"primaryLabelValue\":\"SciQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Scivantage\",\"primaryLabelValue\":\"Scivantage\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Metal Services\",\"primaryLabelValue\":\"Scrap Metal Services\"}},{\"attributeHeader\":{\"labelValue\":\"ScriptSave\",\"primaryLabelValue\":\"ScriptSave\"}},{\"attributeHeader\":{\"labelValue\":\"SEA Corp\",\"primaryLabelValue\":\"SEA Corp\"}},{\"attributeHeader\":{\"labelValue\":\"SeatAdvisor\",\"primaryLabelValue\":\"SeatAdvisor\"}},{\"attributeHeader\":{\"labelValue\":\"See Jane Run\",\"primaryLabelValue\":\"See Jane Run\"}},{\"attributeHeader\":{\"labelValue\":\"See Kai Run\",\"primaryLabelValue\":\"See Kai Run\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sena Cases\",\"primaryLabelValue\":\"Sena Cases\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Sensatronics\",\"primaryLabelValue\":\"Sensatronics\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sentinel Fence\",\"primaryLabelValue\":\"Sentinel Fence\"}},{\"attributeHeader\":{\"labelValue\":\"SentriLock\",\"primaryLabelValue\":\"SentriLock\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"Sew What?\",\"primaryLabelValue\":\"Sew What?\"}},{\"attributeHeader\":{\"labelValue\":\"Shearer & Associates\",\"primaryLabelValue\":\"Shearer & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Sherri May & Company\",\"primaryLabelValue\":\"Sherri May & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Shift Global\",\"primaryLabelValue\":\"Shift Global\"}},{\"attributeHeader\":{\"labelValue\":\"ShoppersChoice.com\",\"primaryLabelValue\":\"ShoppersChoice.com\"}},{\"attributeHeader\":{\"labelValue\":\"SHW Group\",\"primaryLabelValue\":\"SHW Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Sign-A-Rama Greensboro\",\"primaryLabelValue\":\"Sign-A-Rama Greensboro\"}},{\"attributeHeader\":{\"labelValue\":\"Signature HealthCARE\",\"primaryLabelValue\":\"Signature HealthCARE\"}},{\"attributeHeader\":{\"labelValue\":\"Silverado\",\"primaryLabelValue\":\"Silverado\"}},{\"attributeHeader\":{\"labelValue\":\"Simplion Technologies\",\"primaryLabelValue\":\"Simplion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Thacher & Bartlett\",\"primaryLabelValue\":\"Simpson Thacher & Bartlett\"}},{\"attributeHeader\":{\"labelValue\":\"Siteworx\",\"primaryLabelValue\":\"Siteworx\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skyline DFW Exhibits & Graphics\",\"primaryLabelValue\":\"Skyline DFW Exhibits & Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"SLR Contracting & Service\",\"primaryLabelValue\":\"SLR Contracting & Service\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Lines\",\"primaryLabelValue\":\"Smart Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SMSi\",\"primaryLabelValue\":\"SMSi\"}},{\"attributeHeader\":{\"labelValue\":\"Smuka Trading\",\"primaryLabelValue\":\"Smuka Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Snell & Wilmer\",\"primaryLabelValue\":\"Snell & Wilmer\"}},{\"attributeHeader\":{\"labelValue\":\"SNtial Technologies\",\"primaryLabelValue\":\"SNtial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SOAProjects\",\"primaryLabelValue\":\"SOAProjects\"}},{\"attributeHeader\":{\"labelValue\":\"SofTec Solutions\",\"primaryLabelValue\":\"SofTec Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SolidSignal.com\",\"primaryLabelValue\":\"SolidSignal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonnenschein Nath & Rosenthal\",\"primaryLabelValue\":\"Sonnenschein Nath & Rosenthal\"}},{\"attributeHeader\":{\"labelValue\":\"Souplantation / Sweet Tomatoes\",\"primaryLabelValue\":\"Souplantation / Sweet Tomatoes\"}},{\"attributeHeader\":{\"labelValue\":\"South Miami Pharmacy\",\"primaryLabelValue\":\"South Miami Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"SouthData\",\"primaryLabelValue\":\"SouthData\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Light\",\"primaryLabelValue\":\"Southern Light\"}},{\"attributeHeader\":{\"labelValue\":\"Southland Technology\",\"primaryLabelValue\":\"Southland Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Special T's\",\"primaryLabelValue\":\"Special T's\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Direct\",\"primaryLabelValue\":\"Spectrum Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spiech Farms\",\"primaryLabelValue\":\"Spiech Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Spohn Ranch\",\"primaryLabelValue\":\"Spohn Ranch\"}},{\"attributeHeader\":{\"labelValue\":\"SQA Services\",\"primaryLabelValue\":\"SQA Services\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Squeaky Wheel Media\",\"primaryLabelValue\":\"Squeaky Wheel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stafford Associates Computer Specialists\",\"primaryLabelValue\":\"Stafford Associates Computer Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"StarchTech\",\"primaryLabelValue\":\"StarchTech\"}},{\"attributeHeader\":{\"labelValue\":\"Stark Excavating\",\"primaryLabelValue\":\"Stark Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Starlite Productions\",\"primaryLabelValue\":\"Starlite Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Starmount Life Insurance\",\"primaryLabelValue\":\"Starmount Life Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StemCyte\",\"primaryLabelValue\":\"StemCyte\"}},{\"attributeHeader\":{\"labelValue\":\"STEMTech International\",\"primaryLabelValue\":\"STEMTech International\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Commerce Group\",\"primaryLabelValue\":\"Sterling Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Communications\",\"primaryLabelValue\":\"Sterling Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Stinger Ghaffarian Technologies\",\"primaryLabelValue\":\"Stinger Ghaffarian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Stop Aging Now\",\"primaryLabelValue\":\"Stop Aging Now\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stream\",\"primaryLabelValue\":\"Stream\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"StudyPoint\",\"primaryLabelValue\":\"StudyPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan & Cromwell\",\"primaryLabelValue\":\"Sullivan & Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SVTronics\",\"primaryLabelValue\":\"SVTronics\"}},{\"attributeHeader\":{\"labelValue\":\"SweeDee\",\"primaryLabelValue\":\"SweeDee\"}},{\"attributeHeader\":{\"labelValue\":\"SwipeClock\",\"primaryLabelValue\":\"SwipeClock\"}},{\"attributeHeader\":{\"labelValue\":\"Sword & Shield Enterprise Security\",\"primaryLabelValue\":\"Sword & Shield Enterprise Security\"}},{\"attributeHeader\":{\"labelValue\":\"Sydor Instruments\",\"primaryLabelValue\":\"Sydor Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Synergistix\",\"primaryLabelValue\":\"Synergistix\"}},{\"attributeHeader\":{\"labelValue\":\"Synoptek\",\"primaryLabelValue\":\"Synoptek\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Integration & Development\",\"primaryLabelValue\":\"Systems Integration & Development\"}},{\"attributeHeader\":{\"labelValue\":\"T2 International\",\"primaryLabelValue\":\"T2 International\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Taradel\",\"primaryLabelValue\":\"Taradel\"}},{\"attributeHeader\":{\"labelValue\":\"Tarte\",\"primaryLabelValue\":\"Tarte\"}},{\"attributeHeader\":{\"labelValue\":\"TBJ\",\"primaryLabelValue\":\"TBJ\"}},{\"attributeHeader\":{\"labelValue\":\"Team Clean\",\"primaryLabelValue\":\"Team Clean\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Resouces\",\"primaryLabelValue\":\"Tech Resouces\"}},{\"attributeHeader\":{\"labelValue\":\"TechFlow\",\"primaryLabelValue\":\"TechFlow\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Communities\",\"primaryLabelValue\":\"Technical Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Resource Center of America\",\"primaryLabelValue\":\"Technology Resource Center of America\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Support\",\"primaryLabelValue\":\"Technology Support\"}},{\"attributeHeader\":{\"labelValue\":\"Techno-Sciences\",\"primaryLabelValue\":\"Techno-Sciences\"}},{\"attributeHeader\":{\"labelValue\":\"Teddy's Transportation System\",\"primaryLabelValue\":\"Teddy's Transportation System\"}},{\"attributeHeader\":{\"labelValue\":\"TeleContact Resource Services\",\"primaryLabelValue\":\"TeleContact Resource Services\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"TelePacific Communications\",\"primaryLabelValue\":\"TelePacific Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Telescope\",\"primaryLabelValue\":\"Telescope\"}},{\"attributeHeader\":{\"labelValue\":\"TeleTracking Technologies\",\"primaryLabelValue\":\"TeleTracking Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tenacity Solutions\",\"primaryLabelValue\":\"Tenacity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TengoInternet\",\"primaryLabelValue\":\"TengoInternet\"}},{\"attributeHeader\":{\"labelValue\":\"Tenmast Software\",\"primaryLabelValue\":\"Tenmast Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tenrox\",\"primaryLabelValue\":\"Tenrox\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Terralever\",\"primaryLabelValue\":\"Terralever\"}},{\"attributeHeader\":{\"labelValue\":\"The Analysis Group\",\"primaryLabelValue\":\"The Analysis Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Beryl Companies\",\"primaryLabelValue\":\"The Beryl Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Booksource\",\"primaryLabelValue\":\"The Booksource\"}},{\"attributeHeader\":{\"labelValue\":\"The Brookeside Group\",\"primaryLabelValue\":\"The Brookeside Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Buckner Company\",\"primaryLabelValue\":\"The Buckner Company\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Cellular Connection\",\"primaryLabelValue\":\"The Cellular Connection\"}},{\"attributeHeader\":{\"labelValue\":\"The Computer Company\",\"primaryLabelValue\":\"The Computer Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Dentist's Choice\",\"primaryLabelValue\":\"The Dentist's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"The Ellison Nursing Group\",\"primaryLabelValue\":\"The Ellison Nursing Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Express Design Group\",\"primaryLabelValue\":\"The Express Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Hub Meeting and Event Centers\",\"primaryLabelValue\":\"The Hub Meeting and Event Centers\"}},{\"attributeHeader\":{\"labelValue\":\"The Human Resource Consulting Group\",\"primaryLabelValue\":\"The Human Resource Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"The I.T. Pros\",\"primaryLabelValue\":\"The I.T. Pros\"}},{\"attributeHeader\":{\"labelValue\":\"The Judge Group\",\"primaryLabelValue\":\"The Judge Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Launch Pad\",\"primaryLabelValue\":\"The Launch Pad\"}},{\"attributeHeader\":{\"labelValue\":\"The Learning House\",\"primaryLabelValue\":\"The Learning House\"}},{\"attributeHeader\":{\"labelValue\":\"The LiRo Group\",\"primaryLabelValue\":\"The LiRo Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Macaluso Group\",\"primaryLabelValue\":\"The Macaluso Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mortgage Group\",\"primaryLabelValue\":\"The Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mosaic Company\",\"primaryLabelValue\":\"The Mosaic Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Mutual Fund Store\",\"primaryLabelValue\":\"The Mutual Fund Store\"}},{\"attributeHeader\":{\"labelValue\":\"The Plaza Group\",\"primaryLabelValue\":\"The Plaza Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pond Guy\",\"primaryLabelValue\":\"The Pond Guy\"}},{\"attributeHeader\":{\"labelValue\":\"The Queensboro Shirt Company\",\"primaryLabelValue\":\"The Queensboro Shirt Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Refuge-A Healing Place\",\"primaryLabelValue\":\"The Refuge-A Healing Place\"}},{\"attributeHeader\":{\"labelValue\":\"The Squires Group\",\"primaryLabelValue\":\"The Squires Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Truland Group\",\"primaryLabelValue\":\"The Truland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Twister Group\",\"primaryLabelValue\":\"The Twister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Watchery\",\"primaryLabelValue\":\"The Watchery\"}},{\"attributeHeader\":{\"labelValue\":\"Think Finance\",\"primaryLabelValue\":\"Think Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Thomas G. Gallagher\",\"primaryLabelValue\":\"Thomas G. Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Coburn\",\"primaryLabelValue\":\"Thompson Coburn\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Hine\",\"primaryLabelValue\":\"Thompson Hine\"}},{\"attributeHeader\":{\"labelValue\":\"Thoroughbred Research Group\",\"primaryLabelValue\":\"Thoroughbred Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TMC Orthopedic\",\"primaryLabelValue\":\"TMC Orthopedic\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"Toolmex\",\"primaryLabelValue\":\"Toolmex\"}},{\"attributeHeader\":{\"labelValue\":\"TOPCON\",\"primaryLabelValue\":\"TOPCON\"}},{\"attributeHeader\":{\"labelValue\":\"Topline Products\",\"primaryLabelValue\":\"Topline Products\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tortuga Rum Cake\",\"primaryLabelValue\":\"Tortuga Rum Cake\"}},{\"attributeHeader\":{\"labelValue\":\"Total Mortgage Services\",\"primaryLabelValue\":\"Total Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Touchstone Wireless\",\"primaryLabelValue\":\"Touchstone Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"ToysR\",\"primaryLabelValue\":\"ToysR\"}},{\"attributeHeader\":{\"labelValue\":\"Traction\",\"primaryLabelValue\":\"Traction\"}},{\"attributeHeader\":{\"labelValue\":\"Traffic and Parking Control\",\"primaryLabelValue\":\"Traffic and Parking Control\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Transnational Foods\",\"primaryLabelValue\":\"Transnational Foods\"}},{\"attributeHeader\":{\"labelValue\":\"TravelClick\",\"primaryLabelValue\":\"TravelClick\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"TreadmillDoctor.com\",\"primaryLabelValue\":\"TreadmillDoctor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Trend Personnel Services\",\"primaryLabelValue\":\"Trend Personnel Services\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Marketing\",\"primaryLabelValue\":\"Trident Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Trims Unlimited\",\"primaryLabelValue\":\"Trims Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Sterile\",\"primaryLabelValue\":\"Trinity Sterile\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TriTech Software Systems\",\"primaryLabelValue\":\"TriTech Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Triton Pacific Capital Partners\",\"primaryLabelValue\":\"Triton Pacific Capital Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Troutman Sanders\",\"primaryLabelValue\":\"Troutman Sanders\"}},{\"attributeHeader\":{\"labelValue\":\"Truck Lease Services\",\"primaryLabelValue\":\"Truck Lease Services\"}},{\"attributeHeader\":{\"labelValue\":\"True Fabrications\",\"primaryLabelValue\":\"True Fabrications\"}},{\"attributeHeader\":{\"labelValue\":\"Truevance Management\",\"primaryLabelValue\":\"Truevance Management\"}},{\"attributeHeader\":{\"labelValue\":\"TRUSTe\",\"primaryLabelValue\":\"TRUSTe\"}},{\"attributeHeader\":{\"labelValue\":\"TSL Staff Leasing\",\"primaryLabelValue\":\"TSL Staff Leasing\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"TWR Lighting\",\"primaryLabelValue\":\"TWR Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"TyrrellTech\",\"primaryLabelValue\":\"TyrrellTech\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Energy Services\",\"primaryLabelValue\":\"U.S. Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"UberPrints.com\",\"primaryLabelValue\":\"UberPrints.com\"}},{\"attributeHeader\":{\"labelValue\":\"Uckele Health & Nutrition\",\"primaryLabelValue\":\"Uckele Health & Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underground Printing\",\"primaryLabelValue\":\"Underground Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Understand.com\",\"primaryLabelValue\":\"Understand.com\"}},{\"attributeHeader\":{\"labelValue\":\"Unicon International\",\"primaryLabelValue\":\"Unicon International\"}},{\"attributeHeader\":{\"labelValue\":\"Uniflex Church Furnishings\",\"primaryLabelValue\":\"Uniflex Church Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United National Consumer Suppliers\",\"primaryLabelValue\":\"United National Consumer Suppliers\"}},{\"attributeHeader\":{\"labelValue\":\"United States Homeland Investigations\",\"primaryLabelValue\":\"United States Homeland Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"United Technology Group\",\"primaryLabelValue\":\"United Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Environmental Consulting\",\"primaryLabelValue\":\"Universal Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Wiring\",\"primaryLabelValue\":\"Universal Wiring\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"Unlimited Furniture Group\",\"primaryLabelValue\":\"Unlimited Furniture Group\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Shredding\",\"primaryLabelValue\":\"Upstate Shredding\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Science\",\"primaryLabelValue\":\"Urban Science\"}},{\"attributeHeader\":{\"labelValue\":\"UrsaNav\",\"primaryLabelValue\":\"UrsaNav\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"User Centric\",\"primaryLabelValue\":\"User Centric\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"V.L.S Systems\",\"primaryLabelValue\":\"V.L.S Systems\"}},{\"attributeHeader\":{\"labelValue\":\"V2 Systems\",\"primaryLabelValue\":\"V2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaco\",\"primaryLabelValue\":\"Vaco\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ValueCentric Marketing Group\",\"primaryLabelValue\":\"ValueCentric Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vantage Hospitality Group\",\"primaryLabelValue\":\"Vantage Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Vedder, Price, Kaufman & Kammholz\",\"primaryLabelValue\":\"Vedder, Price, Kaufman & Kammholz\"}},{\"attributeHeader\":{\"labelValue\":\"Venator Holdings\",\"primaryLabelValue\":\"Venator Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Venn Strategies\",\"primaryLabelValue\":\"Venn Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Versacom\",\"primaryLabelValue\":\"Versacom\"}},{\"attributeHeader\":{\"labelValue\":\"Verteks Consulting\",\"primaryLabelValue\":\"Verteks Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"VideoLink\",\"primaryLabelValue\":\"VideoLink\"}},{\"attributeHeader\":{\"labelValue\":\"VIPdesk\",\"primaryLabelValue\":\"VIPdesk\"}},{\"attributeHeader\":{\"labelValue\":\"Virtue Group\",\"primaryLabelValue\":\"Virtue Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vision Technologies\",\"primaryLabelValue\":\"Vision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Painting Services\",\"primaryLabelValue\":\"Visionary Painting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visiting Angels\",\"primaryLabelValue\":\"Visiting Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Visix\",\"primaryLabelValue\":\"Visix\"}},{\"attributeHeader\":{\"labelValue\":\"VitalSmarts\",\"primaryLabelValue\":\"VitalSmarts\"}},{\"attributeHeader\":{\"labelValue\":\"VLS Recovery Services\",\"primaryLabelValue\":\"VLS Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"Voce Communications\",\"primaryLabelValue\":\"Voce Communications\"}},{\"attributeHeader\":{\"labelValue\":\"VoIP Logic\",\"primaryLabelValue\":\"VoIP Logic\"}},{\"attributeHeader\":{\"labelValue\":\"W.L. French Excavating\",\"primaryLabelValue\":\"W.L. French Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Wachtell, Lipton, Rosen & Katz\",\"primaryLabelValue\":\"Wachtell, Lipton, Rosen & Katz\"}},{\"attributeHeader\":{\"labelValue\":\"WageWorks\",\"primaryLabelValue\":\"WageWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Warren & Baerg Manufacturing\",\"primaryLabelValue\":\"Warren & Baerg Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"We R Memory Keepers\",\"primaryLabelValue\":\"We R Memory Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"WebCollage\",\"primaryLabelValue\":\"WebCollage\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"Wellington Technologies\",\"primaryLabelValue\":\"Wellington Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Wellpartner\",\"primaryLabelValue\":\"Wellpartner\"}},{\"attributeHeader\":{\"labelValue\":\"Wendoh Media\",\"primaryLabelValue\":\"Wendoh Media\"}},{\"attributeHeader\":{\"labelValue\":\"Western Wats\",\"primaryLabelValue\":\"Western Wats\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Security\",\"primaryLabelValue\":\"Whelan Security\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wholesale Food Equipment\",\"primaryLabelValue\":\"Wholesale Food Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Williams Mullen\",\"primaryLabelValue\":\"Williams Mullen\"}},{\"attributeHeader\":{\"labelValue\":\"Willkie Farr Gallagher\",\"primaryLabelValue\":\"Willkie Farr Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Wilmer Cutler Pickering Hale and Dorr\",\"primaryLabelValue\":\"Wilmer Cutler Pickering Hale and Dorr\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Associates\",\"primaryLabelValue\":\"Wilson Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Winco\",\"primaryLabelValue\":\"Winco\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Wire\",\"primaryLabelValue\":\"Windy City Wire\"}},{\"attributeHeader\":{\"labelValue\":\"Winning Strategies ITS\",\"primaryLabelValue\":\"Winning Strategies ITS\"}},{\"attributeHeader\":{\"labelValue\":\"Winston & Strawn\",\"primaryLabelValue\":\"Winston & Strawn\"}},{\"attributeHeader\":{\"labelValue\":\"Wongdoody\",\"primaryLabelValue\":\"Wongdoody\"}},{\"attributeHeader\":{\"labelValue\":\"WorkForce Software\",\"primaryLabelValue\":\"WorkForce Software\"}},{\"attributeHeader\":{\"labelValue\":\"World Pac Paper\",\"primaryLabelValue\":\"World Pac Paper\"}},{\"attributeHeader\":{\"labelValue\":\"WorldVentures\",\"primaryLabelValue\":\"WorldVentures\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Xcentric\",\"primaryLabelValue\":\"Xcentric\"}},{\"attributeHeader\":{\"labelValue\":\"Xelleration\",\"primaryLabelValue\":\"Xelleration\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"XT Global\",\"primaryLabelValue\":\"XT Global\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YOR Health\",\"primaryLabelValue\":\"YOR Health\"}},{\"attributeHeader\":{\"labelValue\":\"York Telecom\",\"primaryLabelValue\":\"York Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Youngsoft\",\"primaryLabelValue\":\"Youngsoft\"}},{\"attributeHeader\":{\"labelValue\":\"YU & Associates\",\"primaryLabelValue\":\"YU & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Zahava Group\",\"primaryLabelValue\":\"Zahava Group\"}},{\"attributeHeader\":{\"labelValue\":\"ZapTel\",\"primaryLabelValue\":\"ZapTel\"}},{\"attributeHeader\":{\"labelValue\":\"ZeroChaos\",\"primaryLabelValue\":\"ZeroChaos\"}},{\"attributeHeader\":{\"labelValue\":\"Zia Engineering & Environmental Consultants\",\"primaryLabelValue\":\"Zia Engineering & Environmental Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Zipcar\",\"primaryLabelValue\":\"Zipcar\"}},{\"attributeHeader\":{\"labelValue\":\"Zther Interactive\",\"primaryLabelValue\":\"Zther Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"614 Media Group\",\"primaryLabelValue\":\"614 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Planning\",\"primaryLabelValue\":\"Adaptive Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"AIT Laboratories\",\"primaryLabelValue\":\"AIT Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"AK Environmental\",\"primaryLabelValue\":\"AK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambit Energy\",\"primaryLabelValue\":\"Ambit Energy\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"Ampcus\",\"primaryLabelValue\":\"Ampcus\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Animax Entertainment\",\"primaryLabelValue\":\"Animax Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"Anulex Technologies\",\"primaryLabelValue\":\"Anulex Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"APEXteriors\",\"primaryLabelValue\":\"APEXteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Array Information Technology\",\"primaryLabelValue\":\"Array Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"AutoRevo\",\"primaryLabelValue\":\"AutoRevo\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalara\",\"primaryLabelValue\":\"Avalara\"}},{\"attributeHeader\":{\"labelValue\":\"AvantLink.com\",\"primaryLabelValue\":\"AvantLink.com\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Avian Engineering\",\"primaryLabelValue\":\"Avian Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Axom Technologies\",\"primaryLabelValue\":\"Axom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bill Bartmann Enterprises\",\"primaryLabelValue\":\"Bill Bartmann Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birds Barbershop\",\"primaryLabelValue\":\"Birds Barbershop\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Crest Communities\",\"primaryLabelValue\":\"Campus Crest Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Canon Recruiting Group\",\"primaryLabelValue\":\"Canon Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carbonite\",\"primaryLabelValue\":\"Carbonite\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CareNet\",\"primaryLabelValue\":\"CareNet\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Consultants\",\"primaryLabelValue\":\"Catapult Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy\",\"primaryLabelValue\":\"Cenergy\"}},{\"attributeHeader\":{\"labelValue\":\"CFN Services\",\"primaryLabelValue\":\"CFN Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Progress\",\"primaryLabelValue\":\"Children's Progress\"}},{\"attributeHeader\":{\"labelValue\":\"ChiroNET\",\"primaryLabelValue\":\"ChiroNET\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ciplex\",\"primaryLabelValue\":\"Ciplex\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"CleanScapes\",\"primaryLabelValue\":\"CleanScapes\"}},{\"attributeHeader\":{\"labelValue\":\"clearAvenue\",\"primaryLabelValue\":\"clearAvenue\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Construction and Service Solutions\",\"primaryLabelValue\":\"Construction and Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour\",\"primaryLabelValue\":\"Contour\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis Services\",\"primaryLabelValue\":\"Crowe Paradis Services\"}},{\"attributeHeader\":{\"labelValue\":\"CSS Distribution Group\",\"primaryLabelValue\":\"CSS Distribution Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cube 3 Studio\",\"primaryLabelValue\":\"Cube 3 Studio\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debt Free Associates\",\"primaryLabelValue\":\"Debt Free Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Deep Water Point\",\"primaryLabelValue\":\"Deep Water Point\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Disaster Services\",\"primaryLabelValue\":\"Delta Disaster Services\"}},{\"attributeHeader\":{\"labelValue\":\"Deluxe Marketing\",\"primaryLabelValue\":\"Deluxe Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Demandforce\",\"primaryLabelValue\":\"Demandforce\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dialogue Marketing\",\"primaryLabelValue\":\"Dialogue Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Mind\",\"primaryLabelValue\":\"Diamond Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Digispace Solutions\",\"primaryLabelValue\":\"Digispace Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Advertising\",\"primaryLabelValue\":\"Digital Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Communications\",\"primaryLabelValue\":\"Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Exteriors\",\"primaryLabelValue\":\"Direct Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DrillSpot.com\",\"primaryLabelValue\":\"DrillSpot.com\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"EasySeat\",\"primaryLabelValue\":\"EasySeat\"}},{\"attributeHeader\":{\"labelValue\":\"EDC Consulting\",\"primaryLabelValue\":\"EDC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"EffectiveUI\",\"primaryLabelValue\":\"EffectiveUI\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EmoryDay\",\"primaryLabelValue\":\"EmoryDay\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empyrean Services\",\"primaryLabelValue\":\"Empyrean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Ensurity Group\",\"primaryLabelValue\":\"Ensurity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Software Deployment\",\"primaryLabelValue\":\"Enterprise Software Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSolution Architects\",\"primaryLabelValue\":\"eSolution Architects\"}},{\"attributeHeader\":{\"labelValue\":\"eVisibility\",\"primaryLabelValue\":\"eVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"EVO2\",\"primaryLabelValue\":\"EVO2\"}},{\"attributeHeader\":{\"labelValue\":\"Exceptional Risk Advisors\",\"primaryLabelValue\":\"Exceptional Risk Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"FitnessRepairParts.com\",\"primaryLabelValue\":\"FitnessRepairParts.com\"}},{\"attributeHeader\":{\"labelValue\":\"FlexPrint\",\"primaryLabelValue\":\"FlexPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"FM Facility Maintenance\",\"primaryLabelValue\":\"FM Facility Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"FortuneBuilders\",\"primaryLabelValue\":\"FortuneBuilders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"FriendFinder Networks\",\"primaryLabelValue\":\"FriendFinder Networks\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"FundingUniverse\",\"primaryLabelValue\":\"FundingUniverse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Future Ads\",\"primaryLabelValue\":\"Future Ads\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"GlowTouch Technologies\",\"primaryLabelValue\":\"GlowTouch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harkcon\",\"primaryLabelValue\":\"Harkcon\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Resource Network\",\"primaryLabelValue\":\"Healthcare Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"HealthE Goods\",\"primaryLabelValue\":\"HealthE Goods\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS\",\"primaryLabelValue\":\"HMS\"}},{\"attributeHeader\":{\"labelValue\":\"Homeland HealthCare\",\"primaryLabelValue\":\"Homeland HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"IndiSoft\",\"primaryLabelValue\":\"IndiSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"InGenesis Diversified Healthcare Solutions\",\"primaryLabelValue\":\"InGenesis Diversified Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"InMage Systems\",\"primaryLabelValue\":\"InMage Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"InsuranceAgents.com\",\"primaryLabelValue\":\"InsuranceAgents.com\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Medical Solutions\",\"primaryLabelValue\":\"Integrated Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Secure\",\"primaryLabelValue\":\"Integrated Secure\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"InterGroup International\",\"primaryLabelValue\":\"InterGroup International\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"Involta\",\"primaryLabelValue\":\"Involta\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"ISR Group\",\"primaryLabelValue\":\"ISR Group\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"Jacob Tyler Creative Group\",\"primaryLabelValue\":\"Jacob Tyler Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JLab Audio\",\"primaryLabelValue\":\"JLab Audio\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"JVista\",\"primaryLabelValue\":\"JVista\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"Kinnser Software\",\"primaryLabelValue\":\"Kinnser Software\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Point Systems\",\"primaryLabelValue\":\"Knight Point Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"LeadQual\",\"primaryLabelValue\":\"LeadQual\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeStreet Media\",\"primaryLabelValue\":\"LifeStreet Media\"}},{\"attributeHeader\":{\"labelValue\":\"Listen Up Espanol\",\"primaryLabelValue\":\"Listen Up Espanol\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location Labs\",\"primaryLabelValue\":\"Location Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LoyaltyExpress\",\"primaryLabelValue\":\"LoyaltyExpress\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Magic Logix\",\"primaryLabelValue\":\"Magic Logix\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Marathon Consulting\",\"primaryLabelValue\":\"Marathon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaxLinear\",\"primaryLabelValue\":\"MaxLinear\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCG\",\"primaryLabelValue\":\"MCG\"}},{\"attributeHeader\":{\"labelValue\":\"McKean Defense Group\",\"primaryLabelValue\":\"McKean Defense Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"ModCloth\",\"primaryLabelValue\":\"ModCloth\"}},{\"attributeHeader\":{\"labelValue\":\"MonoPrice.com\",\"primaryLabelValue\":\"MonoPrice.com\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Morton Consulting\",\"primaryLabelValue\":\"Morton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mpire\",\"primaryLabelValue\":\"Mpire\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NetSteps\",\"primaryLabelValue\":\"NetSteps\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexAge Technologies USA\",\"primaryLabelValue\":\"NexAge Technologies USA\"}},{\"attributeHeader\":{\"labelValue\":\"NextDocs\",\"primaryLabelValue\":\"NextDocs\"}},{\"attributeHeader\":{\"labelValue\":\"NIKA Technologies\",\"primaryLabelValue\":\"NIKA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NorAm International Partners\",\"primaryLabelValue\":\"NorAm International Partners\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Business and Property Brokers\",\"primaryLabelValue\":\"NorthStar Business and Property Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"NPE\",\"primaryLabelValue\":\"NPE\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Supply & Trade\",\"primaryLabelValue\":\"Oasis Supply & Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Octo Consulting Group\",\"primaryLabelValue\":\"Octo Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Strategix\",\"primaryLabelValue\":\"Optimal Strategix\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OtterBox\",\"primaryLabelValue\":\"OtterBox\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partnership Capital Growth Advisors\",\"primaryLabelValue\":\"Partnership Capital Growth Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"People To My Site\",\"primaryLabelValue\":\"People To My Site\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"PetPlace.com\",\"primaryLabelValue\":\"PetPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Phase One Consulting Group\",\"primaryLabelValue\":\"Phase One Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Physique 57\",\"primaryLabelValue\":\"Physique 57\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"PlumChoice\",\"primaryLabelValue\":\"PlumChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintPlace.com\",\"primaryLabelValue\":\"PrintPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"ProDPI\",\"primaryLabelValue\":\"ProDPI\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Roofing and Exteriors\",\"primaryLabelValue\":\"Professional Roofing and Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"Provideo Management\",\"primaryLabelValue\":\"Provideo Management\"}},{\"attributeHeader\":{\"labelValue\":\"Pukoa Scientific\",\"primaryLabelValue\":\"Pukoa Scientific\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSS International\",\"primaryLabelValue\":\"QSS International\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Electrodynamics\",\"primaryLabelValue\":\"Quality Electrodynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quidsi\",\"primaryLabelValue\":\"Quidsi\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"Reach Sports Marketing Group\",\"primaryLabelValue\":\"Reach Sports Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReachLocal\",\"primaryLabelValue\":\"ReachLocal\"}},{\"attributeHeader\":{\"labelValue\":\"Real Property Management\",\"primaryLabelValue\":\"Real Property Management\"}},{\"attributeHeader\":{\"labelValue\":\"Recurve\",\"primaryLabelValue\":\"Recurve\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Solutions\",\"primaryLabelValue\":\"Retail Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RFIP\",\"primaryLabelValue\":\"RFIP\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"RTL Networks\",\"primaryLabelValue\":\"RTL Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security Credit Services\",\"primaryLabelValue\":\"Security Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Service Foods\",\"primaryLabelValue\":\"Service Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Service-now.com\",\"primaryLabelValue\":\"Service-now.com\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"ShelfGenie\",\"primaryLabelValue\":\"ShelfGenie\"}},{\"attributeHeader\":{\"labelValue\":\"ShopForBags.com\",\"primaryLabelValue\":\"ShopForBags.com\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Show Media\",\"primaryLabelValue\":\"Show Media\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simplex Healthcare\",\"primaryLabelValue\":\"Simplex Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"Smarsh\",\"primaryLabelValue\":\"Smarsh\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPrice Sales & Marketing\",\"primaryLabelValue\":\"SmartPrice Sales & Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Smiley Media\",\"primaryLabelValue\":\"Smiley Media\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Spellbinders Paper Arts\",\"primaryLabelValue\":\"Spellbinders Paper Arts\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SproutLoud Media Networks\",\"primaryLabelValue\":\"SproutLoud Media Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StealthCom Solutions\",\"primaryLabelValue\":\"StealthCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stella & Dot\",\"primaryLabelValue\":\"Stella & Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Sundia\",\"primaryLabelValue\":\"Sundia\"}},{\"attributeHeader\":{\"labelValue\":\"Suntiva Executive Consulting\",\"primaryLabelValue\":\"Suntiva Executive Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Syscom Technologies\",\"primaryLabelValue\":\"Syscom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tableau Software\",\"primaryLabelValue\":\"Tableau Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tagged\",\"primaryLabelValue\":\"Tagged\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"TechRadium\",\"primaryLabelValue\":\"TechRadium\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Telogis\",\"primaryLabelValue\":\"Telogis\"}},{\"attributeHeader\":{\"labelValue\":\"Telx Group\",\"primaryLabelValue\":\"Telx Group\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Diet\",\"primaryLabelValue\":\"The Fresh Diet\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pursuant Group\",\"primaryLabelValue\":\"The Pursuant Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Three Dog Logistics\",\"primaryLabelValue\":\"Three Dog Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Tris3ct\",\"primaryLabelValue\":\"Tris3ct\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Gas & Electric\",\"primaryLabelValue\":\"U.S. Gas & Electric\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Business Solutions\",\"primaryLabelValue\":\"Universal Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Lending Solutions\",\"primaryLabelValue\":\"Urban Lending Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US Media Consulting\",\"primaryLabelValue\":\"US Media Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"vAuto\",\"primaryLabelValue\":\"vAuto\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilant\",\"primaryLabelValue\":\"Vigilant\"}},{\"attributeHeader\":{\"labelValue\":\"Virtualosity Solutions\",\"primaryLabelValue\":\"Virtualosity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Vital Networks\",\"primaryLabelValue\":\"Vital Networks\"}},{\"attributeHeader\":{\"labelValue\":\"VitalWear\",\"primaryLabelValue\":\"VitalWear\"}},{\"attributeHeader\":{\"labelValue\":\"Vivax Pro Painting\",\"primaryLabelValue\":\"Vivax Pro Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Walz Group\",\"primaryLabelValue\":\"Walz Group\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"WDFA Marketing\",\"primaryLabelValue\":\"WDFA Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Wellfount Pharmacy\",\"primaryLabelValue\":\"Wellfount Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WTech\",\"primaryLabelValue\":\"WTech\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YouSendIt\",\"primaryLabelValue\":\"YouSendIt\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"1Source International\",\"primaryLabelValue\":\"1Source International\"}},{\"attributeHeader\":{\"labelValue\":\"1st Choice Staffing & Consulting\",\"primaryLabelValue\":\"1st Choice Staffing & Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Clinical Solutions\",\"primaryLabelValue\":\"A10 Clinical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Networks\",\"primaryLabelValue\":\"A10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aasent Mortgage Corporation\",\"primaryLabelValue\":\"Aasent Mortgage Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"Accuvant\",\"primaryLabelValue\":\"Accuvant\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ageatia Technology Consultancy Services\",\"primaryLabelValue\":\"Ageatia Technology Consultancy Services\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"Alatec\",\"primaryLabelValue\":\"Alatec\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant National Title Insurance\",\"primaryLabelValue\":\"Alliant National Title Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"An Amazing Organization\",\"primaryLabelValue\":\"An Amazing Organization\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Technology Partners\",\"primaryLabelValue\":\"Archway Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Glass & Mirror\",\"primaryLabelValue\":\"Arrow Glass & Mirror\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"AutoAccessoriesGarage.com\",\"primaryLabelValue\":\"AutoAccessoriesGarage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Avtec Homes\",\"primaryLabelValue\":\"Avtec Homes\"}},{\"attributeHeader\":{\"labelValue\":\"AXIA Consulting\",\"primaryLabelValue\":\"AXIA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ayuda Management\",\"primaryLabelValue\":\"Ayuda Management\"}},{\"attributeHeader\":{\"labelValue\":\"BackJoy Orthotics\",\"primaryLabelValue\":\"BackJoy Orthotics\"}},{\"attributeHeader\":{\"labelValue\":\"Balance Staffing\",\"primaryLabelValue\":\"Balance Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"BancVue\",\"primaryLabelValue\":\"BancVue\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beceem Communications\",\"primaryLabelValue\":\"Beceem Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"BidSync\",\"primaryLabelValue\":\"BidSync\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"BlackLine Systems\",\"primaryLabelValue\":\"BlackLine Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"BuildASign.com\",\"primaryLabelValue\":\"BuildASign.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cantaloupe Systems\",\"primaryLabelValue\":\"Cantaloupe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"CareerLink\",\"primaryLabelValue\":\"CareerLink\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Cellit\",\"primaryLabelValue\":\"Cellit\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"CenTauri Solutions\",\"primaryLabelValue\":\"CenTauri Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Central Desktop\",\"primaryLabelValue\":\"Central Desktop\"}},{\"attributeHeader\":{\"labelValue\":\"Central Payment\",\"primaryLabelValue\":\"Central Payment\"}},{\"attributeHeader\":{\"labelValue\":\"Centuria\",\"primaryLabelValue\":\"Centuria\"}},{\"attributeHeader\":{\"labelValue\":\"Century Payments\",\"primaryLabelValue\":\"Century Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CheckOutStore\",\"primaryLabelValue\":\"CheckOutStore\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Ci2i Services\",\"primaryLabelValue\":\"Ci2i Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ciphent\",\"primaryLabelValue\":\"Ciphent\"}},{\"attributeHeader\":{\"labelValue\":\"Clarisonic\",\"primaryLabelValue\":\"Clarisonic\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Align\",\"primaryLabelValue\":\"Clear Align\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"ClearAccess\",\"primaryLabelValue\":\"ClearAccess\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpath Solutions Group\",\"primaryLabelValue\":\"Clearpath Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resources\",\"primaryLabelValue\":\"Clinical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Clinipace Worldwide\",\"primaryLabelValue\":\"Clinipace Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"Collective Intellect\",\"primaryLabelValue\":\"Collective Intellect\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Landscaping Systems\",\"primaryLabelValue\":\"Complete Landscaping Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Confirmation.com\",\"primaryLabelValue\":\"Confirmation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covario\",\"primaryLabelValue\":\"Covario\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coyote Logistics\",\"primaryLabelValue\":\"Coyote Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"cPrime\",\"primaryLabelValue\":\"cPrime\"}},{\"attributeHeader\":{\"labelValue\":\"Crosslake Sales\",\"primaryLabelValue\":\"Crosslake Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Crumbs\",\"primaryLabelValue\":\"Crumbs\"}},{\"attributeHeader\":{\"labelValue\":\"CSI\",\"primaryLabelValue\":\"CSI\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Distribution\",\"primaryLabelValue\":\"Decision Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"DoMyOwnPestControl.com\",\"primaryLabelValue\":\"DoMyOwnPestControl.com\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drakontas\",\"primaryLabelValue\":\"Drakontas\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge (KY)\",\"primaryLabelValue\":\"eBridge (KY)\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Payments\",\"primaryLabelValue\":\"Electronic Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Employer Flexible\",\"primaryLabelValue\":\"Employer Flexible\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Ace\",\"primaryLabelValue\":\"Energy Ace\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions Realized\",\"primaryLabelValue\":\"Enterprise Solutions Realized\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Everything2go.com\",\"primaryLabelValue\":\"Everything2go.com\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Exacq Technologies\",\"primaryLabelValue\":\"Exacq Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Faast Pharmacy\",\"primaryLabelValue\":\"Faast Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Fashionphile\",\"primaryLabelValue\":\"Fashionphile\"}},{\"attributeHeader\":{\"labelValue\":\"FastSpring\",\"primaryLabelValue\":\"FastSpring\"}},{\"attributeHeader\":{\"labelValue\":\"FedStore\",\"primaryLabelValue\":\"FedStore\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiesta Insurance Franchise\",\"primaryLabelValue\":\"Fiesta Insurance Franchise\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Food Should Taste Good\",\"primaryLabelValue\":\"Food Should Taste Good\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forex Club Financial\",\"primaryLabelValue\":\"Forex Club Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTEN\",\"primaryLabelValue\":\"FTEN\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"Geckotech\",\"primaryLabelValue\":\"Geckotech\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genius.com\",\"primaryLabelValue\":\"Genius.com\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Global Wedge\",\"primaryLabelValue\":\"Global Wedge\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Golden Key Group\",\"primaryLabelValue\":\"Golden Key Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"GourmetGiftBaskets.com\",\"primaryLabelValue\":\"GourmetGiftBaskets.com\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Group Z\",\"primaryLabelValue\":\"Group Z\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GSG\",\"primaryLabelValue\":\"GSG\"}},{\"attributeHeader\":{\"labelValue\":\"GyanSys\",\"primaryLabelValue\":\"GyanSys\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"HPC Development\",\"primaryLabelValue\":\"HPC Development\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"iBuyOfficeSupply.com\",\"primaryLabelValue\":\"iBuyOfficeSupply.com\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"iClick\",\"primaryLabelValue\":\"iClick\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"IData\",\"primaryLabelValue\":\"IData\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"Improving Enterprises\",\"primaryLabelValue\":\"Improving Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"InfoSync Services\",\"primaryLabelValue\":\"InfoSync Services\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Resource Group\",\"primaryLabelValue\":\"Insight Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"IntegriChain\",\"primaryLabelValue\":\"IntegriChain\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Management Consulting\",\"primaryLabelValue\":\"Integrity Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Solutions for Government\",\"primaryLabelValue\":\"Interim Solutions for Government\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Invertix\",\"primaryLabelValue\":\"Invertix\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kore Federal\",\"primaryLabelValue\":\"Kore Federal\"}},{\"attributeHeader\":{\"labelValue\":\"KPaul\",\"primaryLabelValue\":\"KPaul\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lattice Engines\",\"primaryLabelValue\":\"Lattice Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lexicon Consulting\",\"primaryLabelValue\":\"Lexicon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"LifeLock\",\"primaryLabelValue\":\"LifeLock\"}},{\"attributeHeader\":{\"labelValue\":\"LimitLess International\",\"primaryLabelValue\":\"LimitLess International\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Livin' Lite Recreational Vehicles\",\"primaryLabelValue\":\"Livin' Lite Recreational Vehicles\"}},{\"attributeHeader\":{\"labelValue\":\"Local Splash\",\"primaryLabelValue\":\"Local Splash\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Luke & Associates\",\"primaryLabelValue\":\"Luke & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lusive Decor\",\"primaryLabelValue\":\"Lusive Decor\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M33 Integrated Solutions\",\"primaryLabelValue\":\"M33 Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mainstreet Property Group\",\"primaryLabelValue\":\"Mainstreet Property Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MD Orthopaedics\",\"primaryLabelValue\":\"MD Orthopaedics\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"MediaTrust\",\"primaryLabelValue\":\"MediaTrust\"}},{\"attributeHeader\":{\"labelValue\":\"merchant one\",\"primaryLabelValue\":\"merchant one\"}},{\"attributeHeader\":{\"labelValue\":\"Mercury Solar Systems\",\"primaryLabelValue\":\"Mercury Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Essential Personnel\",\"primaryLabelValue\":\"Mission Essential Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Modea\",\"primaryLabelValue\":\"Modea\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Most Brand Development + Advertising\",\"primaryLabelValue\":\"Most Brand Development + Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetWitness\",\"primaryLabelValue\":\"NetWitness\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nityo Infotech\",\"primaryLabelValue\":\"Nityo Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Nutricap Labs\",\"primaryLabelValue\":\"Nutricap Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"PaymentMax\",\"primaryLabelValue\":\"PaymentMax\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"PetRays\",\"primaryLabelValue\":\"PetRays\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Realty\",\"primaryLabelValue\":\"Platinum Realty\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PropelMG\",\"primaryLabelValue\":\"PropelMG\"}},{\"attributeHeader\":{\"labelValue\":\"Property Solutions\",\"primaryLabelValue\":\"Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramed Health Services\",\"primaryLabelValue\":\"Pyramed Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Q2ebanking\",\"primaryLabelValue\":\"Q2ebanking\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"RedVision Systems\",\"primaryLabelValue\":\"RedVision Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rennen International\",\"primaryLabelValue\":\"Rennen International\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"ReSource Pro\",\"primaryLabelValue\":\"ReSource Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun\",\"primaryLabelValue\":\"Rising Sun\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"SaveOnResorts.com\",\"primaryLabelValue\":\"SaveOnResorts.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Scentsy\",\"primaryLabelValue\":\"Scentsy\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Secure-24\",\"primaryLabelValue\":\"Secure-24\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security by Design\",\"primaryLabelValue\":\"Security by Design\"}},{\"attributeHeader\":{\"labelValue\":\"SeekingSitters\",\"primaryLabelValue\":\"SeekingSitters\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"SEOmoz\",\"primaryLabelValue\":\"SEOmoz\"}},{\"attributeHeader\":{\"labelValue\":\"ShareFile\",\"primaryLabelValue\":\"ShareFile\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"SightLine Health\",\"primaryLabelValue\":\"SightLine Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Silex Interiors\",\"primaryLabelValue\":\"Silex Interiors\"}},{\"attributeHeader\":{\"labelValue\":\"Single Digits\",\"primaryLabelValue\":\"Single Digits\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skullcandy\",\"primaryLabelValue\":\"Skullcandy\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SmartIT Staffing\",\"primaryLabelValue\":\"SmartIT Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"SnapAV\",\"primaryLabelValue\":\"SnapAV\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"SNS Logistics\",\"primaryLabelValue\":\"SNS Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorrento Capital\",\"primaryLabelValue\":\"Sorrento Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Squarespace\",\"primaryLabelValue\":\"Squarespace\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Made Simple\",\"primaryLabelValue\":\"Systems Made Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Talented IT\",\"primaryLabelValue\":\"Talented IT\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Sales International\",\"primaryLabelValue\":\"Technical Sales International\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"Telovations\",\"primaryLabelValue\":\"Telovations\"}},{\"attributeHeader\":{\"labelValue\":\"Terra Infotech\",\"primaryLabelValue\":\"Terra Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Energy Holdings\",\"primaryLabelValue\":\"Texas Energy Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Intersect Group\",\"primaryLabelValue\":\"The Intersect Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Media Crew\",\"primaryLabelValue\":\"The Media Crew\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Trademark Company\",\"primaryLabelValue\":\"The Trademark Company\"}},{\"attributeHeader\":{\"labelValue\":\"TheFind\",\"primaryLabelValue\":\"TheFind\"}},{\"attributeHeader\":{\"labelValue\":\"Thrillist.com\",\"primaryLabelValue\":\"Thrillist.com\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TicketZoom\",\"primaryLabelValue\":\"TicketZoom\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TowerCo\",\"primaryLabelValue\":\"TowerCo\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Traffiq\",\"primaryLabelValue\":\"Traffiq\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"TrueCar\",\"primaryLabelValue\":\"TrueCar\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Translation\",\"primaryLabelValue\":\"U.S. Translation\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"US Lighting Tech\",\"primaryLabelValue\":\"US Lighting Tech\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"uShip\",\"primaryLabelValue\":\"uShip\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"Varrow\",\"primaryLabelValue\":\"Varrow\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"VinSolutions\",\"primaryLabelValue\":\"VinSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Viverae\",\"primaryLabelValue\":\"Viverae\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vycon\",\"primaryLabelValue\":\"Vycon\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"WebSafe Shield\",\"primaryLabelValue\":\"WebSafe Shield\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Wyngate International\",\"primaryLabelValue\":\"Wyngate International\"}},{\"attributeHeader\":{\"labelValue\":\"Xirrus\",\"primaryLabelValue\":\"Xirrus\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Yodle\",\"primaryLabelValue\":\"Yodle\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zenoss\",\"primaryLabelValue\":\"Zenoss\"}},{\"attributeHeader\":{\"labelValue\":\"Zeon Solutions\",\"primaryLabelValue\":\"Zeon Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"2 Wheel Bikes\",\"primaryLabelValue\":\"2 Wheel Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"A.R.M. Solutions\",\"primaryLabelValue\":\"A.R.M. Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AAC Enterprises\",\"primaryLabelValue\":\"AAC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Addison Search\",\"primaryLabelValue\":\"Addison Search\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advantedge Healthcare Solutions\",\"primaryLabelValue\":\"Advantedge Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Alteris Renewables\",\"primaryLabelValue\":\"Alteris Renewables\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Anakam\",\"primaryLabelValue\":\"Anakam\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Apparatus\",\"primaryLabelValue\":\"Apparatus\"}},{\"attributeHeader\":{\"labelValue\":\"Appliance Zone\",\"primaryLabelValue\":\"Appliance Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"Archimedes Global\",\"primaryLabelValue\":\"Archimedes Global\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Associates\",\"primaryLabelValue\":\"Argent Associates\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aromatic Fusion\",\"primaryLabelValue\":\"Aromatic Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT HOME PERSONAL CARE\",\"primaryLabelValue\":\"AT HOME PERSONAL CARE\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Metro Communications\",\"primaryLabelValue\":\"Atlantic Metro Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"AtTask\",\"primaryLabelValue\":\"AtTask\"}},{\"attributeHeader\":{\"labelValue\":\"Aurora Networks\",\"primaryLabelValue\":\"Aurora Networks\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AvePoint\",\"primaryLabelValue\":\"AvePoint\"}},{\"attributeHeader\":{\"labelValue\":\"BabyEarth\",\"primaryLabelValue\":\"BabyEarth\"}},{\"attributeHeader\":{\"labelValue\":\"Balihoo\",\"primaryLabelValue\":\"Balihoo\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Beal\",\"primaryLabelValue\":\"Beal\"}},{\"attributeHeader\":{\"labelValue\":\"Behavioral Health Group\",\"primaryLabelValue\":\"Behavioral Health Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Links Consulting\",\"primaryLabelValue\":\"Cable Links Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Call-Em-All\",\"primaryLabelValue\":\"Call-Em-All\"}},{\"attributeHeader\":{\"labelValue\":\"CallFire\",\"primaryLabelValue\":\"CallFire\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Partners\",\"primaryLabelValue\":\"CCG Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Charity Dynamics\",\"primaryLabelValue\":\"Charity Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chasing Fireflies\",\"primaryLabelValue\":\"Chasing Fireflies\"}},{\"attributeHeader\":{\"labelValue\":\"Clarabridge\",\"primaryLabelValue\":\"Clarabridge\"}},{\"attributeHeader\":{\"labelValue\":\"CLEAResult Consulting\",\"primaryLabelValue\":\"CLEAResult Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud 9 Living\",\"primaryLabelValue\":\"Cloud 9 Living\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"Codexis\",\"primaryLabelValue\":\"Codexis\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Fibre\",\"primaryLabelValue\":\"Cogent Fibre\"}},{\"attributeHeader\":{\"labelValue\":\"Coleman Research Group\",\"primaryLabelValue\":\"Coleman Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Medical Supply\",\"primaryLabelValue\":\"Comfort Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Commdex Consulting\",\"primaryLabelValue\":\"Commdex Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Conductor\",\"primaryLabelValue\":\"Conductor\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consero\",\"primaryLabelValue\":\"Consero\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"Davinci Virtual Office Solutions\",\"primaryLabelValue\":\"Davinci Virtual Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Media Group\",\"primaryLabelValue\":\"Dean Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Debtmerica\",\"primaryLabelValue\":\"Debtmerica\"}},{\"attributeHeader\":{\"labelValue\":\"Delan Associates\",\"primaryLabelValue\":\"Delan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dexter Field Services\",\"primaryLabelValue\":\"Dexter Field Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dialect Technologies\",\"primaryLabelValue\":\"Dialect Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dice Electronics\",\"primaryLabelValue\":\"Dice Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DMC Construction\",\"primaryLabelValue\":\"DMC Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eCardio Diagnostics\",\"primaryLabelValue\":\"eCardio Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"EcomNets\",\"primaryLabelValue\":\"EcomNets\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Products\",\"primaryLabelValue\":\"Eco-Products\"}},{\"attributeHeader\":{\"labelValue\":\"EcoTech Marine\",\"primaryLabelValue\":\"EcoTech Marine\"}},{\"attributeHeader\":{\"labelValue\":\"ELC Technologies\",\"primaryLabelValue\":\"ELC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"ElJet Aviation Services\",\"primaryLabelValue\":\"ElJet Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"eMason\",\"primaryLabelValue\":\"eMason\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Epicenter Network\",\"primaryLabelValue\":\"Epicenter Network\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ERT\",\"primaryLabelValue\":\"ERT\"}},{\"attributeHeader\":{\"labelValue\":\"eTERA Consulting\",\"primaryLabelValue\":\"eTERA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"Extend Health\",\"primaryLabelValue\":\"Extend Health\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"Fab Fours\",\"primaryLabelValue\":\"Fab Fours\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Findaway World\",\"primaryLabelValue\":\"Findaway World\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Anywhere\",\"primaryLabelValue\":\"Fitness Anywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Foreground Security\",\"primaryLabelValue\":\"Foreground Security\"}},{\"attributeHeader\":{\"labelValue\":\"Forensic Fluids Laboratories\",\"primaryLabelValue\":\"Forensic Fluids Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"FranNet\",\"primaryLabelValue\":\"FranNet\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Group\",\"primaryLabelValue\":\"Freedom Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Health\",\"primaryLabelValue\":\"Freedom Health\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"G5 Search Marketing\",\"primaryLabelValue\":\"G5 Search Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Galen Healthcare Solutions\",\"primaryLabelValue\":\"Galen Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Gazelle\",\"primaryLabelValue\":\"Gazelle\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Glacier Bay\",\"primaryLabelValue\":\"Glacier Bay\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GPS Insight\",\"primaryLabelValue\":\"GPS Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"GreenLogic\",\"primaryLabelValue\":\"GreenLogic\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"GrubHub.com\",\"primaryLabelValue\":\"GrubHub.com\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GSS Gear\",\"primaryLabelValue\":\"GSS Gear\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"H2 Performance Consulting\",\"primaryLabelValue\":\"H2 Performance Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"HoldCube\",\"primaryLabelValue\":\"HoldCube\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Oxygen\",\"primaryLabelValue\":\"Hometown Oxygen\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Telecom\",\"primaryLabelValue\":\"Hometown Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"I.T. Source\",\"primaryLabelValue\":\"I.T. Source\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"iContact\",\"primaryLabelValue\":\"iContact\"}},{\"attributeHeader\":{\"labelValue\":\"Ignify\",\"primaryLabelValue\":\"Ignify\"}},{\"attributeHeader\":{\"labelValue\":\"IguanaMed\",\"primaryLabelValue\":\"IguanaMed\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMVU\",\"primaryLabelValue\":\"IMVU\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Infovision Technologies\",\"primaryLabelValue\":\"Infovision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infoway Software\",\"primaryLabelValue\":\"Infoway Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Insignia Technology Services\",\"primaryLabelValue\":\"Insignia Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Interfacial Solutions\",\"primaryLabelValue\":\"Interfacial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"International Inspirations\",\"primaryLabelValue\":\"International Inspirations\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"ion interactive\",\"primaryLabelValue\":\"ion interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"IP5280 Communications\",\"primaryLabelValue\":\"IP5280 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"IPKeys Technologies\",\"primaryLabelValue\":\"IPKeys Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITG Solutions\",\"primaryLabelValue\":\"ITG Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ItsHot.com\",\"primaryLabelValue\":\"ItsHot.com\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"JeffreyM Consulting\",\"primaryLabelValue\":\"JeffreyM Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Jobs2Web\",\"primaryLabelValue\":\"Jobs2Web\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Infotek\",\"primaryLabelValue\":\"Keen Infotek\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Tracking Solutions\",\"primaryLabelValue\":\"Lead Tracking Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Link America\",\"primaryLabelValue\":\"Link America\"}},{\"attributeHeader\":{\"labelValue\":\"Link Solutions\",\"primaryLabelValue\":\"Link Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Motors\",\"primaryLabelValue\":\"Liquid Motors\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"LPS Integration\",\"primaryLabelValue\":\"LPS Integration\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"MacUpdate\",\"primaryLabelValue\":\"MacUpdate\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"McDonald Hearing Aid Center\",\"primaryLabelValue\":\"McDonald Hearing Aid Center\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meru Networks\",\"primaryLabelValue\":\"Meru Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Micah Group Environmental Contractors\",\"primaryLabelValue\":\"Micah Group Environmental Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTech\",\"primaryLabelValue\":\"MicroTech\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium\",\"primaryLabelValue\":\"Millennium\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Medical\",\"primaryLabelValue\":\"Millennium Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MindSmack.com\",\"primaryLabelValue\":\"MindSmack.com\"}},{\"attributeHeader\":{\"labelValue\":\"MMC Systems\",\"primaryLabelValue\":\"MMC Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Molding Box\",\"primaryLabelValue\":\"Molding Box\"}},{\"attributeHeader\":{\"labelValue\":\"Monster Scooter Parts\",\"primaryLabelValue\":\"Monster Scooter Parts\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Mu Sigma\",\"primaryLabelValue\":\"Mu Sigma\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Positions\",\"primaryLabelValue\":\"National Positions\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nerdery Interactive Labs\",\"primaryLabelValue\":\"Nerdery Interactive Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Neutron Interactive\",\"primaryLabelValue\":\"Neutron Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New West Technologies\",\"primaryLabelValue\":\"New West Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NII Brokerage\",\"primaryLabelValue\":\"NII Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"N-Tech Solutions\",\"primaryLabelValue\":\"N-Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Ocenture\",\"primaryLabelValue\":\"Ocenture\"}},{\"attributeHeader\":{\"labelValue\":\"oDesk\",\"primaryLabelValue\":\"oDesk\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Online Rewards\",\"primaryLabelValue\":\"Online Rewards\"}},{\"attributeHeader\":{\"labelValue\":\"Ookla\",\"primaryLabelValue\":\"Ookla\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"P3S\",\"primaryLabelValue\":\"P3S\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pandora\",\"primaryLabelValue\":\"Pandora\"}},{\"attributeHeader\":{\"labelValue\":\"PanTerra Networks\",\"primaryLabelValue\":\"PanTerra Networks\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"PayLease\",\"primaryLabelValue\":\"PayLease\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Physicians' Pharmaceutical\",\"primaryLabelValue\":\"Physicians' Pharmaceutical\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"Point One Technologies\",\"primaryLabelValue\":\"Point One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pontiflex\",\"primaryLabelValue\":\"Pontiflex\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Principle Solutions Group\",\"primaryLabelValue\":\"Principle Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Prudent Technologies\",\"primaryLabelValue\":\"Prudent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Psychological Software Solutions\",\"primaryLabelValue\":\"Psychological Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pursuit of Excellence\",\"primaryLabelValue\":\"Pursuit of Excellence\"}},{\"attributeHeader\":{\"labelValue\":\"QuoteWizard\",\"primaryLabelValue\":\"QuoteWizard\"}},{\"attributeHeader\":{\"labelValue\":\"Randa Solutions\",\"primaryLabelValue\":\"Randa Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RBA Consulting\",\"primaryLabelValue\":\"RBA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"RealD\",\"primaryLabelValue\":\"RealD\"}},{\"attributeHeader\":{\"labelValue\":\"Reliance\",\"primaryLabelValue\":\"Reliance\"}},{\"attributeHeader\":{\"labelValue\":\"Remedy Roofing\",\"primaryLabelValue\":\"Remedy Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Remote Medical International\",\"primaryLabelValue\":\"Remote Medical International\"}},{\"attributeHeader\":{\"labelValue\":\"rentbits.com\",\"primaryLabelValue\":\"rentbits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"Reveal Imaging Technologies\",\"primaryLabelValue\":\"Reveal Imaging Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"Rise Interactive\",\"primaryLabelValue\":\"Rise Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Rockfish Interactive\",\"primaryLabelValue\":\"Rockfish Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ryla\",\"primaryLabelValue\":\"Ryla\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"SBG Technology Solutions\",\"primaryLabelValue\":\"SBG Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sensys Networks\",\"primaryLabelValue\":\"Sensys Networks\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Foods\",\"primaryLabelValue\":\"Signature Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SingleHop\",\"primaryLabelValue\":\"SingleHop\"}},{\"attributeHeader\":{\"labelValue\":\"SoftLayer Technologies\",\"primaryLabelValue\":\"SoftLayer Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sound Physicians\",\"primaryLabelValue\":\"Sound Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Spine & Sport\",\"primaryLabelValue\":\"Spine & Sport\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Standard Solar\",\"primaryLabelValue\":\"Standard Solar\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"StumbleUpon\",\"primaryLabelValue\":\"StumbleUpon\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SwarmBuilder\",\"primaryLabelValue\":\"SwarmBuilder\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Synteractive\",\"primaryLabelValue\":\"Synteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TAG Employer Services\",\"primaryLabelValue\":\"TAG Employer Services\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Technical and Project Engineering\",\"primaryLabelValue\":\"Technical and Project Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technovant\",\"primaryLabelValue\":\"Technovant\"}},{\"attributeHeader\":{\"labelValue\":\"Tenable Network Security\",\"primaryLabelValue\":\"Tenable Network Security\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Elf on the Shelf\",\"primaryLabelValue\":\"The Elf on the Shelf\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Knowland Group\",\"primaryLabelValue\":\"The Knowland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Penna Group\",\"primaryLabelValue\":\"The Penna Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Retail Outsource\",\"primaryLabelValue\":\"The Retail Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"The Select Group\",\"primaryLabelValue\":\"The Select Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Visionaire Group\",\"primaryLabelValue\":\"The Visionaire Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"The1stMovement\",\"primaryLabelValue\":\"The1stMovement\"}},{\"attributeHeader\":{\"labelValue\":\"Three Pillar Global\",\"primaryLabelValue\":\"Three Pillar Global\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"Travelers Haven\",\"primaryLabelValue\":\"Travelers Haven\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Web Design\",\"primaryLabelValue\":\"Triad Web Design\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Triplefin\",\"primaryLabelValue\":\"Triplefin\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"Uppercase Living\",\"primaryLabelValue\":\"Uppercase Living\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Veloxion\",\"primaryLabelValue\":\"Veloxion\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vendormate\",\"primaryLabelValue\":\"Vendormate\"}},{\"attributeHeader\":{\"labelValue\":\"Ventureforth\",\"primaryLabelValue\":\"Ventureforth\"}},{\"attributeHeader\":{\"labelValue\":\"Veteran Corps of America\",\"primaryLabelValue\":\"Veteran Corps of America\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Enterprise Technology Solutions\",\"primaryLabelValue\":\"Veterans Enterprise Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"Vinitech\",\"primaryLabelValue\":\"Vinitech\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visible Technologies\",\"primaryLabelValue\":\"Visible Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Vivo\",\"primaryLabelValue\":\"Vivo\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Ward Williston Oil\",\"primaryLabelValue\":\"Ward Williston Oil\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"WnR\",\"primaryLabelValue\":\"WnR\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Information Network Systems\",\"primaryLabelValue\":\"Worldwide Information Network Systems\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"Yeti Coolers\",\"primaryLabelValue\":\"Yeti Coolers\"}},{\"attributeHeader\":{\"labelValue\":\"Zempleo\",\"primaryLabelValue\":\"Zempleo\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"1st in Video - Music World\",\"primaryLabelValue\":\"1st in Video - Music World\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"Bonterra Consulting\",\"primaryLabelValue\":\"Bonterra Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's\",\"primaryLabelValue\":\"Aaron's\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus 24-7\",\"primaryLabelValue\":\"Abacus 24-7\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Broadway Electric Service\",\"primaryLabelValue\":\"Broadway Electric Service\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Bross Group\",\"primaryLabelValue\":\"Bross Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Brothers Air & Heat\",\"primaryLabelValue\":\"Brothers Air & Heat\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"BRS Media\",\"primaryLabelValue\":\"BRS Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bryan Cave\",\"primaryLabelValue\":\"Bryan Cave\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Accusoft Pegasus\",\"primaryLabelValue\":\"Accusoft Pegasus\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ace Underwriting Group\",\"primaryLabelValue\":\"Ace Underwriting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bulldog Solutions\",\"primaryLabelValue\":\"Bulldog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,5992],\"offset\":[0,0],\"total\":[1,5992]}}", + "body": "{\"data\":[[1421087,1341064,1079646,639461,639971,639691,721627,720589,1082419,642235,649957,720325,649521,1203573,640155,1306030,641281,644970,726382,726788,643520,1212221,644996,643330,642831,1291440,645475,725507,1452143,727142,647245,643153,642552,2457448,1287073,649081,644842,3478896,1211652,646552,644695,643265,2517665,645211,643953,646556,646823,644071,644736,2380614,645979,650598,643439,645723,724273,726854,645093,1245939,1290496,644093,645082,647007,727134,643984,1167560,645418,725080,728184,1248532,647506,1300714,1085904,646014,724266,644733,644617,724741,648058,647771,645807,647365,1331188,645785,648756,644561,645757,644534,648289,725744,1208634,1087431,647527,645781,1290073,730345,644694,1291352,1290959,1294649,647661,644880,1372637,727854,646907,645648,1307349,1087953,645011,644012,725030,644521,1288879,1208382,1459513,1288805,647754,650119,644776,729934,1452704,644555,647495,646083,727061,725617,644687,643991,645787,727229,648585,727213,2670178,651227,646394,646253,1129320,1333167,650158,728776,651823,1249516,646087,645433,1334106,646150,731960,726581,647964,648915,729685,2421615,1250642,646824,645333,1169629,1290529,1330928,725968,645673,646522,652934,647640,1290885,645144,645722,727453,1456619,726070,1169934,645659,1467159,729033,645760,645244,648122,1211181,2423120,1371694,1250676,644984,654733,1291970,646965,1299751,2177349,1291528,725864,2419011,647821,1373481,646340,646225,1251707,1309353,647942,650118,645912,1088778,653102,1209993,647069,1291640,2420580,1089045,2609562,1335440,1453452,727640,1210080,2730581,647720,2419782,651210,1088637,1538857,646078,645801,646504,647078,1414297,647122,650337,1414827,2420301,646228,1089339,1374444,648272,1332483,1494328,2669962,1542586,645806,1089720,647852,646872,1210710,646230,1210788,647602,647145,5324979,2421042,646943,1089627,649203,646291,1210890,1533957,1494129,1536118,647785,2744137,1534009,1535439,1416843,648058,1536084,1413539,1535216,727472,1414115,1414178,1413777,2746370,2744743,1535593,645340,654004,2744733,2745298,1413528,1414035,1413853,646425,1538179,1537827,1415745,5670944,649629,1417054,1416060,647255,646001,645936,726785,727765,1535375,1535917,1414157,648019,1414190,649257,1535553,1535542,729889,1536233,1535747,1536877,1414555,1414953,1414414,648754,1414563,1535694,652140,731638,733454,1415654,649231,652536,729103,648584,1414490,733843,728919,1414628,1537814,1536262,1535956,649139,650405,1414560,1417483,1333188,1414662,647691,653578,1414805,648233,1421376,652756,1211028,1332639,647616,1418770,1538337,1539464,1540604,730940,730380,649589,1538412,1418650,1414735,1415161,647094,1536357,1212060,653115,650002,654538,653174,648581,1212246,728589,1539927,1539570,1415260,649469,729634,1534364,1456541,648870,1413853,647327,647076,1535888,1415413,646314,647251,649158,646532,1331235,1413601,1416723,1413488,650548,1211154,1535255,1534977,1414116,1417756,1534934,652530,1538050,1295411,1418009,1416851,648739,649303,1538753,1463634,1415486,1333587,1415531,1415505,652230,648980,607743,1212900,1416089,1536834,1540084,1538198,647427,647222,648178,1415668,1415806,650047,1415680,1415731,1537062,607509,647235,1417144,1415923,650793,652942,650076,1417068,728866,1416620,647678,1537623,648772,1213026,611254,649767,1418574,1418733,647568,1296208,1417710,1540203,1296466,650225,651843,732802,1416442,1418336,1537439,728639,1294958,650097,647808,1420247,653351,1538021,1537936,730440,1417115,650051,649517,1539824,1541335,1419108,1417191,1417301,1417185,649523,649984,1541846,1538848,647954,652775,649108,649758,1417557,1417395,1417395,1213917,653053,1539114,1417443,653802,1417465,648114,1539152,1539152,1419942,1541246,1541548,1542886,1541401,1335819,1417500,650452,1419295,1539173,731157,651426,2390417,651731,1539240,1418018,648389,1417902,1417955,730367,1542302,1417953,1420461,650747,1093386,1540844,1540216,1540961,1418655,1336725,649809,1540292,730905,1539646,1418095,651879,1420132,1418865,1540424,733956,1418248,1421458,1419156,1418922,1381241,1422115,1384221,1543251,1539722,1540596,1215867,649879,1540862,1419128,1543167,1419447,1420855,650221,1541861,654293,1419729,1215120,1424382,1336926,1336581,1335702,1418235,649718,729462,1541940,1540392,1419431,651452,1419246,1301240,2157554,1418393,1092387,1418401,1215171,1215129,1418656,649365,4252956,650037,649893,650459,654996,1420642,1542329,1464349,1541926,649616,1542282,733459,1302057,652065,650927,1542154,1542128,1542425,1215744,649742,1542420,1542642,1386262,1302144,2396031,1422629,1301592,1422061,1384083,734063,1261858,1216935,653383,1420895,649610,1342028,651727,1216167,1542838,731664,1421287,1541896,649728,1419440,655890,652172,651155,1420083,1419635,1419687,1421517,1421502,1301576,1385954,1542615,651263,650248,649898,1422218,650050,1221637,649926,1545099,1421930,1541430,1419838,1543805,1419933,1094799,650786,1541710,652591,1216551,1337958,1420457,1420773,1541854,1420357,654759,1420255,1420160,649424,651661,1420432,1541926,1420263,652066,1506412,1421111,1339155,1422463,1263353,654315,1421825,732281,1543404,1421117,1544213,1421280,651887,1421706,1543671,650068,1544364,651107,4255569,655228,1383944,1543271,655107,1544164,1421665,651562,1422485,1543850,2319980,1095561,652357,1544838,653745,1544455,1422109,4262217,652388,652563,734105,652235,1544549,734467,654265,1422155,1422325,1543940,1543940,733998,649290,650742,2397263,1423301,1422567,651425,1422120,1545083,1545628,652575,1544850,650970,654732,2398007,651301,1340034,1342793,1384021,1263475,650556,1423196,653406,1422938,1423088,654026,733267,1544303,655234,2080284,2398426,1423392,1422610,1223245,654665,1386397,1218741,1544644,2398405,653719,1544797,1545126,652297,1545143,1544974,727350,1423989,1422890,651692,651432,1385507,1426004,1343784,1425359,651009,1221734,1343627,1422890,650829,1423126,1423273,1423100,731969,1545590,651159,1423275,1181695,735565,1545256,652264,1303916,2158494,652155,652492,652624,734126,652152,734755,1545612,654043,1423555,1302477,1423645,1221769,652413,1383866,1423752,1424679,1546120,654567,1545840,1545840,1305364,651455,1423850,1545916,1423870,733341,735102,652566,653151,652430,1101249,652790,1225863,1219632,1097937,652271,1546636,652027,1341990,1424080,1096602,652237,657218,1424429,2361404,652493,1424465,655108,652979,2401643,1098225,1424772,1343761,1222207,650785,1223205,1342881,1101075,652647,652189,653112,652716,733847,1344636,1181706,1101483,654033,653338,652269,651974,1425060,2402481,653800,1425323,654037,735352,1222320,654127,1141684,1100784,652328,1223199,1224651,734289,733280,654873,2402900,1102347,1100310,1140551,656624,1222167,1221930,652966,652788,1101996,1102377,652825,1224927,1100775,653209,653035,1222368,653052,2080545,654105,655139,1099890,656193,1222263,1425480,1222140,653472,2077485,652000,1099866,1343409,735457,1101147,1222260,652187,655434,1343541,657198,1222410,1223805,655119,652357,734392,1100088,2078256,2080254,1101846,1100250,1222530,1222746,1221429,1222482,653473,652088,1102113,655697,1222707,1100397,2078745,2080023,655137,1100439,1222866,1100466,1100493,1100493,654019,1222860,1344279,1100439,1102068,734200,655729,1222935,656582,1100682,1101987,654842,653010,1223160,1101918,655600,653134,734869,652599,1100763,1100940,2081235,655588,1100892,1224315,1223190,1102386,1103754,1103277,1103757,654357,1102215,1224429,1225521,1225902,653560,735830,1344105,1100799,1222281,735090,1223391,1100922,1223304,1223388,1102248,1100979,1101027,1101006,1101078,654184,1101090,654005,1101657,1100505,1101486,1226319,1223520,1101168,655635,1101195,653275,1223601,652396,1101222,1101258,654522,1102314,656839,1225959,1222656,658660,656633,653649,1102248,655929,734763,735677,1227261,656426,1101408,655647,654059,656427,654953,653361,1102050,1101582,656442,1224237,1225083,654084,1224219,1224477,1101897,653061,657982,1226262,654339,654014,653755,2082858,1106091,1102932,1104072,656783,1102089,1101969,1102515,1102923,655355,1224450,1224828,735006,654037,656652,1224888,1102152,654214,1102167,1103070,1102194,1225125,653603,1102275,1104387,1102884,1102863,1103772,653558,1104231,654018,654046,654414,1102380,1102419,1104822,2083293,1102491,653589,1102545,1225587,1225350,655080,656263,654338,654998,1103025,655438,1228167,1104978,1226556,1227744,1228848,654623,1102836,1102734,1102734,654511,1225260,1226064,1225449,1102842,1347093,1225428,657282,736371,1104984,736463,1102950,655561,1104276,1103292,1225662,654668,1226361,1226172,1225812,654963,654040,1225887,1226073,1226100,656453,1103406,1103391,1103310,1104321,656375,655563,1227453,1103436,654787,1104936,2085384,1103436,1103478,656204,1227636,657191,1103490,655387,654309,1103619,1226130,1105743,1103517,655422,659792,655330,1103856,1103868,654016,1103652,1226310,655804,1103706,1103706,654989,737127,1105953,1104201,1227792,1104807,1103814,1103976,1105098,1225335,655120,1104930,655604,655110,1104300,1103868,655794,1106076,1228419,1103895,656113,654245,1104468,1226640,1225743,1103103,736493,1105488,2085747,656387,655520,1104828,655688,656689,1226850,1226973,1104315,1104318,1104201,656574,1227474,1228251,655113,1104381,1104528,656173,655686,1227852,654550,2088498,655493,1105707,1227318,1227261,1227285,655966,1105785,1227543,1105230,1228365,656393,657084,1104849,656180,655255,1105131,1105137,655965,655972,655864,655943,655972,655979,655683,656029,655935,1106529,1105614,1105218,737209,1228467,655678,1105407,1105407,655518,1228260,671659,656378,655082,1105374,1105542,1105542,1228518,1228560,655352,1105923,656154,656616,1106685,1105866,655454,656203,656355,656263,656249,656356,737602,657185,1228842,1105716,2088717,656467,656668,1228800,1228623,1105920,658072,656267,657316,656852,1105776,1106619,1105953,656791,656505,1106319,1229532,1228896,1106097,655719,1106055,656753,1229415,658313,657133,656242,655838,1106307,1106715,655789,1230543,1228416,1229472,655923,656858,1106163,656779,2089701,1106298,1107186,1229991,1106736,1230774,655867,1106535,656432,1229370,658337,656541,1229601,656939,656318,656881,1106541,1107408,1106706,1229958,1229460,1352061,1106730,1230363,1229763,656669,655968,1107048,1229820,1230117,1229850,657742,1230204,1106892,1107513,655070,2087547,1227510,656383,1227810,656487,1227855,1105686,1228245,1227750,2087226,1105551,656366,1107039,1230327,657179,656046,1107468,657639,1107135,656772,658548,1230039,1107120,1107027,1107060,651976,1107405,657137,658214,1107420,1107480,1230282,656938,656135,656754,657292,1107144,657111,1230540,657018,1230162,1107354,1230381,657001,1107249,657055,1107411,1230342,1230423,658019,657414,656801,1107546,1230897,1230843,1107903,656616,1107471,658716,1107888,1231206,657322,657429,657240,657487,658328,1230393,1107819,1231056,1230795,657300,1107501,657042,1108113,1107465,1107420,656909,1231035,658144,1107825,1230585,1230630,1107624,656775,1107855,1230981,656887,657272,1108038,2092332,641911,641244,1335215,719769,645065,645125,639648,639329,647443,1203576,643351,642810,641266,640826,1040259,1038434,642722,649675,646640,639881,642721,1164886,640486,642123,1201595,726382,1330975,726200,644728,645077,1084299,721449,644836,1123849,645157,645473,644728,1206951,725803,642361,646936,643820,642487,642607,722715,724873,645292,645177,643077,1211668,644409,642911,1334816,645613,646721,645943,644917,1084839,649760,645408,645355,726995,650726,725216,643652,2142195,644220,643274,727509,645428,1209123,647052,646822,1209795,725620,1250207,644097,644016,1086975,643698,647615,725664,647772,1330166,644794,648316,647019,644265,1209231,650392,726657,644833,1128328,645072,1251087,1415688,727928,644829,646268,1258342,650686,725042,1290371,644744,644528,646067,651489,645466,645290,645102,645198,644945,1212059,644321,650874,1207647,726023,643974,646062,1087050,647253,647853,647026,1334439,645161,646226,724345,644407,644577,653485,1252570,652346,645759,731181,1250126,725696,1088154,644607,647910,647656,650029,645943,644761,1250015,644837,645122,1249912,1290152,651786,652612,1208928,647611,646488,645299,1251238,645929,1292623,645381,652822,645596,645633,727038,648779,645752,728183,1332146,1088793,648399,1372163,731421,728378,648651,652251,1376279,1210653,645383,645836,645215,1332828,1291976,1293288,1336204,1372152,648635,1209939,1088919,646585,727532,1209915,1089168,645722,1250923,1494739,1250841,647224,646346,1373041,1533795,648857,727071,646345,646364,1250610,645502,650115,1496858,645465,646280,646612,647131,646722,646103,1210380,1417350,1210260,1089423,1089423,649203,1089438,645843,729703,1495344,647034,648140,651016,647863,645902,646012,1251209,1453599,1210590,648174,647033,1210851,727580,647648,648315,646833,646866,1412827,1533870,1534158,1534553,646334,1416170,652568,731847,646096,1540522,648531,648060,2383541,1413965,1534174,727100,645524,1534212,1535114,1413201,646230,647676,1539542,1416620,1537900,1536996,647408,646640,1416460,2391026,647377,648494,727705,1535767,1536875,649716,645995,1535356,727593,1534305,1501414,2383921,1535854,1537213,1414272,646888,732133,648313,648201,1414539,1536728,1536567,728449,1539862,651719,650898,1414933,646742,650093,649555,648465,1414770,1414560,652665,649189,652603,649474,1537519,647375,1211502,1536168,649553,1501602,647230,1415230,4239567,648463,648132,1420045,648249,1414749,1090359,730102,647373,1536226,1536264,651280,2316067,647014,649445,648860,647830,648521,1536584,1536340,1209615,729163,1538683,1212339,1378066,1415343,1537437,729940,1538730,649721,657079,649011,648849,1534516,1534752,646874,647148,646879,729424,1536848,1536718,1536819,1537695,1539227,646213,1416469,1415681,1415942,727825,646276,1536538,1539292,1534668,1535028,1414785,1413545,1414107,1536230,1536129,1536260,1332531,1418950,1413978,647032,1534896,1536160,1414737,647695,1332063,1415751,1331370,1413790,1416819,1092192,1538438,648119,4248099,1416726,648430,649282,731745,653085,650353,650244,1536844,729761,648564,1417428,1417369,1537198,1537062,652455,1538342,649579,647828,648288,649864,1537138,1538478,1417367,1213635,1537217,1416975,2391634,1415750,1415955,1415830,1538986,1538801,1463055,1540148,1417950,1416993,648712,1537310,728565,1416055,1420449,651322,1463237,1541259,648371,648599,649389,650763,648077,728416,1418454,1538685,649186,648556,1416020,1416606,649052,647377,1537699,1294930,650229,1416275,1416450,1416487,1416946,728848,1416496,1295088,1417382,1417252,650967,1542302,1420376,730206,651753,2388910,648579,1417185,1419537,1213845,1538876,649792,1417220,1417403,1538941,1417605,1418899,1417487,1418462,1093071,1540863,649834,1091385,1418012,1417484,650605,650041,648108,648775,650208,1214418,730603,729455,1539380,2390090,1418051,1418196,1336287,649253,1382491,1540162,730278,1539491,1539456,1336212,1417963,1418790,1420475,1542391,649155,1540930,1540320,1419896,648732,1419886,1419344,1336830,1418052,648436,1418117,1541347,1539884,1418865,651894,1381866,1418993,1214850,1539753,649701,1419001,651063,1418935,648957,1541310,1418970,649626,1419231,1419424,649352,1540852,1419317,1419177,1420200,1419318,1337328,649574,1541174,1384563,654286,648668,1418200,731668,648413,651030,1420676,653787,650933,1540178,1095090,650295,653656,1420320,1420405,2394220,649868,1542078,1542170,1420440,1420370,649550,650214,2395333,1420892,1420561,651102,1542420,1542577,650373,1420700,1542420,1542571,1420960,649542,649527,1338642,730860,731377,1263211,652387,650343,2395287,1420825,1421505,1423494,1542759,732008,1542686,1216692,2240424,656105,651969,1420971,1301685,1095714,1544873,1421035,1542838,1542851,1421070,1338813,4257015,2395518,1421070,1421070,650194,1541341,1419425,1541610,1541242,1541860,1419565,1419690,1419670,1216284,1541318,734433,730496,650065,1419635,651114,1422277,1421109,1421657,650781,731332,731240,650142,649989,650253,649863,1421587,1543229,1542414,1421507,1421668,649499,1422740,650209,1421070,1419833,649903,1541508,1420055,1420503,1094631,1300610,731570,1216767,654601,1420508,1541926,1542347,4261341,652812,652040,732675,651706,2395931,653619,1217601,1421420,652047,1338702,1140608,650192,1421843,651079,650727,1217577,1543646,1543807,1422393,1423464,651772,1217988,1544378,653597,1304524,1305347,2318388,650102,1383137,1543918,1422442,1544388,1543823,650171,651163,1421980,1422005,645645,652336,652679,652254,651137,1421875,1185504,1223830,651323,1422416,1423812,650735,1422260,651793,1422605,1544281,1544220,734465,1422341,1544282,1422754,651668,1422558,1544574,1544708,650533,651035,655802,652505,1422540,652086,732633,1424913,732625,652106,1304270,655812,1422785,653031,1544814,1423287,2398527,2398847,1423271,1303925,652015,651735,1265200,1423563,652453,651466,651798,651607,1423437,2399970,1422890,1422995,1423100,652443,651721,1545270,653470,651532,1302449,1545346,1545346,652402,2201171,1303360,1423771,1221287,1222068,1545498,650898,651819,651817,733607,651880,1545771,651698,1424945,652359,651666,1096995,654659,1545847,1305367,651353,4266195,1423774,1339998,1423749,733438,1545650,1096374,1545840,652101,1181638,2160470,1182615,1341480,1423921,1545916,1546131,1423870,1545916,652954,652490,652638,652672,1344564,1424010,2400717,733917,733284,1546296,654680,1546768,733021,1224438,652142,655478,1222390,1262770,1424465,655467,1098033,1546750,1546745,652427,655690,655005,651925,1424745,653711,651771,652215,652307,1547004,1304142,1424815,2401831,1424897,1425095,656452,1141167,1547166,733106,1547217,651569,1547335,1425252,1425018,1547318,1304189,1142143,2402539,654136,1141689,652258,733960,734878,1425199,654948,655906,651840,652676,655290,1262789,652263,1101561,1547474,1344145,1344078,1101567,1101687,652896,1101807,652191,652318,735794,1223475,652129,1100046,655472,1425445,654335,652084,1222821,653598,652760,2080413,2081592,1102578,652758,734670,734293,652161,2078178,1102005,1547664,1099818,1222053,1222764,656836,1099854,1100460,1222569,1222095,654945,1222374,653626,1100115,655344,1222944,1099443,1222440,1343961,1100478,1104084,1100304,1222641,1222560,1100304,734864,1223124,652189,1222740,1222848,1100532,1102083,1100727,1100448,1102725,1221219,652721,652384,1100574,1100601,653104,1100673,1100973,655226,1223199,734459,655289,1100733,2079066,1100682,1103913,1223223,654873,1100982,1224609,653835,1225506,1103886,1102689,2082927,652706,1100790,1100805,2079270,1344450,1100859,1100790,1100790,653408,733896,654557,1223280,655080,1100952,656577,1102464,1101006,1101006,1223835,1223427,1223352,1223340,653234,1101060,1101303,1101117,1223490,1101246,735815,655183,2080035,1101195,1101195,1224048,655099,735861,1223763,653930,1101222,1101249,654887,1222437,656089,655318,1101846,1101375,655383,1101414,652918,1102602,654229,653364,1223940,652978,655233,653744,1224597,1103403,1224150,1224150,1224285,653257,655324,1224387,655467,655254,1103802,1105104,654762,654131,736095,654042,654248,1104759,654314,1101795,1224951,736540,1102161,4282668,1101981,1102134,656750,1102005,1226079,655221,655161,655896,653685,653267,657003,1103328,1102152,653120,653595,1224693,653487,1102983,1102383,1224750,654711,1228941,1224861,1104114,655782,1103979,654303,654077,653816,655364,1102638,1103352,655755,655933,1103514,655726,1102605,1102572,1225335,1225563,1224333,655105,655068,1102707,1225230,1227672,655890,654793,1225617,1102740,1102761,1225290,1225638,1102827,654939,1102851,1103223,1103571,1103166,1226811,654875,1225455,655364,655168,2087370,1103580,735458,1225614,1225713,656761,1225680,1104720,1227216,1225869,736736,1103622,1103430,656042,655676,1103235,653844,1225866,1227972,656742,655861,1103319,1103316,1103328,1103550,1104843,1104798,1225479,655747,1226178,651930,654330,1103490,654747,1103907,1103517,1226130,736329,1103832,1104909,655372,654281,1225491,735851,1226310,1228776,1104429,1103964,736039,1103829,1103814,657008,1103814,1102692,1226490,1104756,1227234,656118,1226712,1226694,1103868,1226682,1226520,1226535,1103895,1348491,1104870,1226760,1104582,1104084,1104576,1104690,654919,1106127,1104339,657113,1226940,655826,1227774,1104927,1104300,1104525,1227081,1105005,1104522,1104462,1227315,1228311,654610,1106355,655955,655939,1227270,655093,1105104,1105542,1104597,655443,736715,2087889,658235,656912,1105110,655185,1105740,655523,1227900,1228119,1227990,1105137,655831,655867,656126,655776,656202,656062,655410,657575,1105422,656453,654992,655201,656050,656220,1228200,655819,2087940,1105530,1105389,1105407,1228488,655997,657951,1228482,1228350,1106862,1105650,658777,656636,1105989,656976,1106994,1106277,1105650,1105704,1105752,655820,656327,656117,656523,656468,1228596,1229739,1228584,1105704,656348,656524,1106463,1105809,656423,655826,656373,1105863,655843,656414,1228875,1105974,656383,1106232,1105974,1351179,656767,1106340,1229160,1229511,1106082,1106688,1106382,1106709,1107279,656844,1229310,657835,1106109,1229118,1229010,2089464,1106151,656838,658097,1106268,656498,658374,1229526,1106289,1106700,1106415,658055,657886,1106532,1106790,1106352,1106445,656785,1230075,1349223,1107531,656752,656810,657164,656188,1106526,655826,1106730,1106730,1230126,656744,1229763,1106796,657113,657653,1106811,1106838,1230000,1106853,1230162,1107039,1227540,737404,656042,1104813,655151,1106019,655019,1104909,656448,1227510,655440,656520,1104963,662019,657606,655116,1104975,1105365,1105860,1104333,657601,657710,1107579,1107519,657236,658055,656871,657699,2091132,1107183,656443,656134,1230237,657052,2091453,657101,1107108,656974,657089,1107153,657254,1107318,657017,656777,1107348,1230306,657184,656846,1107285,1107546,656539,1230417,1107360,1107801,1107858,657685,1230477,657011,656570,657374,657240,1107846,657191,657078,657490,657239,657165,657263,657107,657242,657014,1107423,657941,1230810,657433,1107870,657114,1230471,1230540,656833,657702,2092578,1107564,657326,1107948,1230798,1230564,1230909,1230516,1230660,656927,658364,658572,638912,639296,640804,1039357,641352,646802,640294,643782,645988,647117,638979,721356,725492,639140,641985,653147,645976,1120438,640604,643518,643022,641199,639982,642468,647076,721176,648632,643044,642017,642105,651578,642186,642791,643760,1204641,726066,724494,725153,644138,643269,1245791,1250575,642331,644639,642118,1083564,644362,645037,645748,644779,642339,642355,643474,644487,1167357,647404,724651,643631,645814,643323,646145,643439,645433,723284,723884,644636,648824,1333281,645206,723931,1205748,1287833,723995,724480,643673,643604,645655,726932,643598,647387,646080,647437,644394,643509,1332591,1335996,644418,645143,645566,645458,645385,647046,725967,1205832,1207776,724516,644284,646288,728871,728805,644307,645185,644544,645264,644303,2053389,645096,645464,647416,725819,1417737,1087014,728660,650453,644590,645073,726699,644587,647318,644901,1087749,725865,644767,651414,654046,1249818,1250398,644959,1207740,647406,647160,643994,728587,647103,2176347,1087194,646106,646124,724870,725299,646939,644197,644971,645756,647277,644639,645117,645238,651675,730918,726336,1252747,645367,646053,646281,645386,650607,646349,725634,726022,645324,648223,647717,647361,1168849,726947,1088709,645603,649532,645908,726894,649016,1458936,726318,645271,646778,647048,645084,728502,645101,646107,645680,1250675,1209555,726000,1251286,645783,645800,645523,1088790,652738,1455694,646347,727065,728618,1170663,646441,646052,645282,1453766,1414148,1412963,1088838,645955,646837,731129,1414801,647329,2387271,1089324,652013,1210149,647737,729534,1498011,1089099,1251744,647007,1089255,1210819,1210110,1210677,646149,728327,727783,1495050,1088721,1088637,726678,645730,727008,1331456,1170519,645505,1414322,1089342,729940,646776,728120,647337,1089261,650469,1332596,1330626,646263,726891,1210350,648759,1089504,1089504,731508,1089531,1534499,1089693,645781,647639,646706,646890,1414764,1412740,647632,648482,1538777,1536129,1533920,1330809,1417114,1415540,1535124,1210320,1534398,726798,1414241,1415427,1539089,1538261,647688,1417258,1535279,1535238,729369,1414161,1534098,1210488,1536231,648634,1416200,1417585,645936,1413382,646877,646037,646804,1535172,1535174,1332504,1414350,1414175,648430,1414175,1536074,729549,1538628,1333038,650633,1414490,1415867,1414565,1419460,648765,647931,1535770,648926,1536143,650678,1299176,647406,1415499,646675,1535808,1537315,730453,1536744,2384603,649003,652993,1537876,1535922,1210965,1537080,1536534,1416213,1415086,1540163,1538565,647966,1538907,647913,649257,1420056,1414900,649493,652333,1210983,1211880,1416866,650016,647963,647741,647249,651818,1415899,647131,1415558,1415435,1415435,1413830,1419118,1413544,1416703,1538456,1537531,649351,647044,648654,648198,648127,649152,1415488,1415140,1415279,646291,647420,728008,1413737,1413545,652791,647142,1415770,1210110,646271,730227,1540220,1413809,647033,647305,1210914,1210974,727771,1537430,1413923,652014,1536160,1413892,2383246,1416599,649700,648026,728568,608567,1538088,649848,1538131,728954,1416913,649100,1417400,647882,736360,647818,608761,1415912,1415505,1415505,1537093,1212864,654611,650076,1416905,1417836,1416964,1537138,647897,1538513,1296079,1417940,648549,1415853,649114,1538739,1295520,1420008,1417218,1417197,1418252,1420276,608597,1538031,729472,1294583,1537290,1539357,2386845,652299,652527,647555,1540450,608203,1539777,1540222,1539657,651829,1416765,649478,649039,1301077,648802,648545,1541603,1537328,1219080,1540998,607545,649480,1415995,647813,1416534,608030,730510,1213203,1416680,648122,1416865,1296857,1538588,648497,1383105,1295839,649790,661444,1418413,1417115,648818,648454,730817,649005,1541801,1418416,1417449,1417404,1538700,1538859,1538848,1538848,649823,651268,1417440,650845,1539056,1417635,1539114,653626,648177,1417548,648815,650574,1213254,1335804,650052,650345,649839,650523,1539208,729812,1417675,1417745,1419209,1417745,648440,1418070,1540225,1539228,1417855,1539228,1417885,652381,1214121,650351,1418459,1417920,1092741,651331,652250,1540262,1418620,652091,1541158,1420104,649626,649206,650889,651600,649652,1419051,2390604,1418916,1419596,651903,650152,1213716,734322,651517,652800,649367,1419304,1420164,1419893,1540862,732755,1419794,1419390,1422958,649892,1419395,651977,1214634,1418262,648919,648999,1418655,648425,650724,649864,648986,1418480,1540041,650039,652751,1540247,1420112,1420619,654063,1541926,649644,1144280,1420711,1421152,1420511,1421882,649929,1543814,651571,1420615,1421136,651828,1542420,1421373,1342026,1420748,1542762,1542592,650377,651553,650657,650290,649525,1420825,731464,1542686,1420930,1421007,1543150,653590,1542838,1095594,1338852,1421070,1421070,650831,1419460,733361,1541242,651126,1541798,1541526,730969,1421523,1421874,1422785,1302719,731469,650051,1422950,1544572,1422466,1543352,1542811,650533,1422050,649017,649776,1342156,649056,1421573,1421877,1544266,1342272,1544206,652068,1419880,1420233,1419927,1541508,731193,1094871,1216401,1216014,1419937,654394,1542158,1542236,732130,1544388,1420646,2394311,651821,1420549,1216428,1542928,1542914,1421478,649985,650383,1543349,1384790,650197,648607,1263232,1421420,1222537,1543252,1095675,651296,652423,654011,732597,651648,1543585,1221552,2279441,1339527,1339371,1422235,653651,1218165,651660,1544174,1304951,650599,1342486,1095543,1218105,1543999,1343787,650945,1424017,1543712,1424940,2397111,1422050,1422241,1422262,654046,1422879,1422050,654374,1217607,652784,653496,653858,650813,1422345,654396,1544054,1422545,2398163,1422421,1422351,1422330,653682,1422690,653420,1544312,1545611,654323,1306091,1544715,1545163,1423455,654193,1422365,650929,652351,652451,1544434,651219,1422540,1423928,1340133,651928,1544510,654629,1424229,1422645,1423221,2398438,652441,1544776,1545296,652946,651537,651127,1423033,653738,652658,1344050,652023,1465799,652538,1303461,1222807,652973,1096599,1096440,734604,733898,1544852,1423069,1422995,1217619,1545174,1545270,653236,654142,1423441,1423294,2399152,657846,1423240,1303639,1423793,1423395,1218387,654084,1423657,651279,733160,651548,652199,651859,652516,652281,1182877,1182406,652020,651554,2400018,2399847,1423822,651640,1217583,1545968,1218816,654868,1545764,653682,1423765,1141009,1545827,1546965,1097622,1101282,655071,654486,1545916,652295,1262628,652119,653135,652750,1546429,1546697,733110,1424010,2400655,652336,1424045,652451,652362,1546351,654909,1546372,1262933,653459,1424625,1424570,1219854,1546624,1546676,652868,1546829,1546714,1547605,655182,2402199,1340736,1262455,653617,1341183,1098123,733150,1547171,2401359,652132,653203,650773,1384377,652274,1344703,1098378,1546942,1424815,652559,1425060,1266271,1303867,1222917,1181377,656576,654750,2402558,1101915,1425239,1425006,1102020,1266142,1303228,1425053,655780,1342167,1425060,653280,654003,1263958,654079,1098540,1547702,653312,653482,1101708,652722,1100631,1466280,1344090,1100211,2081205,1181437,653993,1220919,1222629,653001,653021,653285,652788,654346,652559,657280,652192,1547664,1222296,652549,653487,653125,1100589,1100580,655833,1222248,1223049,1222080,652006,655120,1100175,1343559,1103271,735197,1100001,735796,1222320,1101684,1101174,1101522,653056,653086,1100307,1222527,654031,2078226,1100277,1100823,1222560,1222560,1100553,1222470,1222650,653288,1100811,1101813,653860,652692,652485,1222740,1100712,734637,1103181,2078709,2078709,1100493,1101912,1222851,1223133,1222893,654938,1100817,1100691,656411,734349,655622,1223061,654054,1100724,652785,1100907,1223196,1223070,1100790,1100871,1344468,653526,652368,1223070,734712,1223100,653809,1226799,653733,1102566,655785,1100790,1100790,653123,653550,653793,1102299,654752,653909,655770,736088,653281,1101033,1102767,654907,652800,1224663,1224366,652999,655685,1102323,1101195,1101597,1101195,655569,655390,1101249,1101249,1345305,1225731,655264,734874,653936,653692,653679,655752,653666,1101357,1223772,1102128,653163,655095,1100061,1103100,1101519,2080647,1101555,652983,653957,735727,1223940,1101678,1224372,1225101,653677,652901,1102293,1101720,1102188,1224006,736512,1224030,655371,1102296,1102359,2081262,1102563,654738,1101708,655414,654618,1101735,655113,653405,655327,1224573,2082132,1104813,1103604,1103568,735999,1225587,1225170,1102128,1101789,653767,736077,1224372,1102542,1101987,1102884,735496,1102782,1102086,655731,1229430,656133,654399,656514,653739,1224810,1102167,1102299,1225353,1224912,653617,1103697,1103319,653547,655137,654922,1227285,736287,654430,654207,654586,1102302,1103046,1102317,1224810,735595,1225392,1224870,1224975,1225020,1102554,654276,1225419,655065,653855,1102791,1102830,1102899,1103100,655969,655138,1104354,654736,1102707,1104543,653958,1228998,1225368,1225290,1103307,1103040,654982,1102725,655825,654867,654711,1102923,1103271,1106619,656392,1103010,655678,1225884,653786,735936,1103097,1103007,2084247,654685,654530,1103052,654128,1104696,655304,656417,1103811,655161,656435,1103430,1226025,1226352,656372,1226079,1226796,1104033,1103601,1103472,1227669,654452,737173,657777,659393,1226130,1103613,655056,1103706,655061,1226361,1224408,656754,1348374,2085621,1103673,654524,655765,656537,1226460,1103814,656393,657277,655937,656052,1105347,1104036,1104693,657007,736164,1226520,654674,1104021,1104522,655209,1226730,654787,1227162,1104132,656415,1227108,1226850,1104534,654725,654779,1104450,654545,1227288,1226880,1104381,656362,1104699,656549,1227120,1226589,656838,655104,655739,1105536,654559,1105638,1105833,655761,1104543,654796,657111,1104567,1228461,2087142,656261,656609,1104954,1227612,1227933,1104741,1227912,656098,656009,655890,655815,656217,656944,655974,656599,737693,656024,1106694,1105176,655307,1105521,1105482,656027,1228422,1105545,656715,1105794,656958,656341,1105569,1228476,1228500,655493,1106256,1106217,1107066,1106562,656155,1228650,1228722,1229037,656413,1105866,658523,656621,656522,656330,656519,1106016,655453,1106346,656624,657674,656620,657111,1105836,656548,1106289,1228998,656770,1229577,1228800,655367,1105758,1106013,1105956,1229010,1228860,1106001,2089215,655462,1106244,661000,1106082,1106082,1106766,1229136,1106109,657390,656818,1229028,1106136,656728,656589,1106298,655888,656853,1106589,1229253,1106532,656910,658246,1106994,651411,1106682,1106802,1229382,1349661,1350069,1106451,657753,656882,658113,656835,1106691,2090556,1106730,657865,657066,1230291,656921,1106901,2090997,1106955,656568,1230177,1106889,2090775,657932,1104786,1227672,1105047,657437,657096,737835,1227657,655434,655884,1104945,655231,1104981,1226358,1227600,1104882,1227861,655901,1105020,1104948,656155,1106301,655224,1227750,655997,1105002,656688,657395,1105785,659329,1229955,656009,738192,656927,656231,1107309,659031,1107114,1107141,1107258,1230264,1107288,1107102,1107153,656902,657550,1230525,657283,657040,657005,656887,1107546,657312,1107198,1107198,1107231,657029,661403,657975,656608,656975,656458,656752,1230753,656542,1107426,656622,658480,657418,657469,657230,657271,657172,657188,657373,657214,657476,1231017,1230837,657174,1107744,1230465,657570,656505,1107825,1107825,1107852,1107813,1230969,1107663,1107621,2091987,656945,1107759,656795,1107675,656406,1230804,657328,1107636,1914235,1170663,720777,641293,643877,646303,1243097,643509,644485,644057,648441,1256708,646270,644955,652254,1331990,643532,644015,724998,645220,649678,644303,647107,647013,643915,2052831,1088160,645271,645986,644607,1333505,644599,647312,645139,1087023,644468,1374808,1208547,1086429,646509,728096,726770,728755,649956,1128941,727019,726600,726890,652489,647755,1088199,1252656,726322,728424,728535,1454586,1375405,645611,647133,727733,729329,645481,647762,1292033,647405,645953,647131,1089144,2057187,726158,1372105,1415115,1209618,726221,1537299,647558,653356,646586,1413195,1331945,1251217,1413172,1412740,1412845,1413345,647055,647549,1414416,1210668,1413055,649226,1534174,646422,1416295,648606,1414296,1415870,1539575,730578,651187,648117,1414595,1332981,1414648,647253,1332036,646991,729762,1415509,733377,647165,1542689,1536806,655434,1418504,1417818,650351,1413290,647287,1534440,1331790,650110,647384,1415425,1535331,650052,646160,1536532,727841,1535170,648386,650492,1538102,1416695,1333974,1536872,1537006,1415788,1537062,607804,1538548,1537062,1416975,1417418,649627,1416721,1538851,1417369,1539109,647957,1541252,653575,728459,1539204,652108,1537758,1537796,1537964,649686,1419158,650109,1419040,1418378,2389441,648906,1420426,1539190,651950,1420407,1381605,1539380,1417885,651925,648614,2392518,1420314,1542570,1093146,1419135,1540520,1388306,655639,652254,650671,1540806,650184,649757,1419333,1539930,1418340,1418406,1341440,650200,649837,1420516,650173,1216713,1542116,651010,1421585,1542423,649493,652062,1543538,1216611,1420974,1422108,1420895,654950,1421855,649683,652160,1541394,650675,1422479,1421869,1541318,1419670,652314,1419994,1419856,653661,652054,1094811,1420128,1344469,1541812,653163,1420160,650236,1543354,651257,1464726,1543398,1339284,1339665,1421630,1421875,1543788,651162,1505828,650539,650540,1545255,1217964,652090,1422155,654114,733660,1545172,652433,1422750,1423966,1302933,734693,1303211,1221518,1343700,651787,1423100,733919,1545257,1423240,735242,1423380,1423560,646182,1423681,1545498,1466308,1423485,735503,732809,1097526,1423765,1424375,652889,1304618,651515,1545916,1546290,652524,652664,652333,1424045,1181388,1263418,1182054,1262480,653078,652320,1384750,653664,1546980,1222067,1425766,655970,652913,1547346,1425495,654381,652110,655571,1220988,653208,734248,1099845,653179,1099884,1222428,1222260,1100304,653885,1100181,1100391,652848,1222086,1224141,1222782,652402,653202,1222740,655051,653766,1222740,1100850,654965,1100829,734406,1100967,1226676,1103331,1105635,1100790,1223280,1224525,1227168,1223478,1101210,1223631,1223550,656969,1101195,1225608,2080944,1222329,1223928,653422,656088,1102479,736372,1224030,1101627,1102059,1101708,654409,653863,1226208,1226145,734886,1224210,1224390,1101993,1224678,734670,655148,1225596,2082783,1224843,1102329,1102722,1102476,1102275,1225032,1102719,736322,1103148,1102566,1102914,1225080,735048,1103838,655489,653509,1225464,654337,656543,1103658,1103139,653865,657792,1103862,1104435,653915,1226040,735848,655630,1103697,1226130,737021,1103862,1103598,1103829,654771,1103871,657210,655368,655276,1103688,1226460,1104276,1104084,1104819,736734,1104696,1105122,1104138,657100,1227087,1227024,1104246,1226850,655127,1104630,1106079,655928,736353,654909,1229868,656320,657636,1106754,1104570,1104570,1105386,656285,1228002,655956,738027,1106172,655920,656917,1105587,1228410,1105596,1228650,1228689,1228764,1229943,1106478,655675,1228800,656524,1228143,1106964,1106082,1229103,657128,657313,2089938,655960,1229568,656991,1106703,1229781,1106826,657145,659547,1107264,656701,656654,1105557,1104948,1106427,1227810,1105002,1105002,656867,657009,658104,658595,656474,656450,1107234,1107138,656755,657072,656986,658529,656910,1107411,657109,657128,1107687,1231089,651009,656999,1230588,656586,657617,1107834,657006,1108116,656980,657442,638064,720123,721234,724026,1248302,639307,642597,723625,1165310,722683,643183,645276,642533,1413569,645951,642929,1126631,1369920,1171192,644908,646724,1169776,2051361,644747,644626,644684,647575,1374933,725355,651053,1292334,644334,647733,645545,645966,652498,1334815,644148,727077,646537,644309,1087569,652423,727616,645309,644784,644823,1088241,730545,647556,645188,645132,726808,652628,646978,645351,646686,652315,646328,729147,648728,647086,645834,1371827,1210266,1416279,652884,645249,1414120,729574,649756,1209975,1494811,647497,1374579,1210197,727501,646165,645669,727638,726886,646098,1413068,651575,726870,646518,1331936,727455,728856,651925,647304,647495,647458,1089612,1412761,1454096,647459,646274,1413174,728265,648435,1534724,1535162,647062,1413135,649670,730325,1414329,1535501,1413090,1331334,1330380,1538875,1415525,1535276,1535475,1414402,648065,1414782,2384344,1414280,2386786,1538785,648676,647529,729576,647003,1415092,647119,1415092,647804,1417667,1537989,730967,648833,646757,1536489,1415051,648232,647866,2386250,647537,728844,648431,648627,1534364,646283,1539994,2386124,1415525,727852,647322,1534744,1415891,1413685,1332147,647946,1211154,1534934,647859,1334757,1416743,1416695,1538164,2387814,1539034,2386373,650361,650578,1416137,1538269,1538693,1415850,647758,729655,1539070,1335267,651217,1416135,648589,1539304,1543074,610473,1342156,1334316,1416602,1537654,652641,650186,730914,1541411,1418797,1538848,649047,653856,731290,1539610,1212339,730393,4247292,1542730,651200,1335417,1418339,1539378,1539228,653573,1214745,645659,1419533,1419722,1540312,1214766,1542778,648867,1336950,1421631,1419232,733908,1419223,1540762,1419390,1421493,730301,1419101,1418274,1541125,1542303,1421018,1336482,651876,1542040,1216440,1420791,653646,1543165,1464889,1420660,650081,1420825,1542655,1506168,1422849,1217172,1542876,1541749,732697,1420249,1419440,1419870,1541318,1542783,650711,649866,649940,1423279,1543390,1421595,1544783,1541356,1419880,1420257,1301911,1420102,1541898,1420406,1420160,1216632,730526,1543044,1542914,1466844,1423057,1543608,734380,731596,651326,1543799,1423708,1262726,1504809,651610,2397111,1262670,1544738,1218141,1422529,1343326,1422365,731740,1422724,1544681,1544586,1422921,1423979,655175,651706,733366,1424168,652354,1545195,651870,1545252,1423941,1423992,651002,1384925,650869,733186,654036,650813,1545612,1263683,1225012,652117,651835,651778,1423590,652062,1424306,2400002,1222971,1545878,652481,1546030,1424045,652334,1220340,1546714,732715,1546853,651763,653846,1226688,652808,1181899,1425035,734916,1425264,653925,654320,652414,1303287,654573,652844,1224147,1102236,1140791,653474,653277,1105227,653138,652672,652774,1101834,1224078,653271,656085,1222683,1102554,1100415,1100592,1100493,1222860,734770,2078913,1101285,1223091,1101672,653765,1223526,652438,1100907,652702,654206,653321,653934,653215,1100790,1345140,654302,1223433,1225662,1101090,1102986,1101195,1224546,1103352,655674,1101438,735829,653900,1223760,735597,656631,654678,1224861,1103043,1104621,654441,1102905,1103955,1101912,1101789,1225116,1221156,1224411,1102284,654808,1102098,655803,654644,1102887,656338,653357,1226412,1103022,1103763,1103898,654613,1224810,656531,653943,655980,655382,1225818,655911,1103472,653943,1103049,1225965,1103037,1103142,1103004,1103112,1104495,2084163,1103325,651928,1104861,653983,1103301,1226829,653991,1103661,1103970,1226838,1103478,1226130,1228320,1229199,736826,1103706,1227279,1226604,1227447,1103892,1103814,1103814,1226490,1227648,656273,655035,1104921,1104663,655009,1226520,2085390,655856,1103895,1226622,737119,1227087,1104516,1227600,1105629,656210,655557,656546,657282,655809,655859,1229217,1106598,1228170,1106871,1105584,736866,1228380,656377,1106397,656239,656903,1106802,655611,656027,656502,1105866,1228785,655878,657140,1229343,1105845,1228950,656115,1229403,1228515,1229496,1106250,1106136,1106136,1106193,1106763,1107507,1229790,1106520,1106946,659133,657666,1106613,656659,659360,655162,656871,656298,1105137,1227774,656847,1105299,1229994,651605,658378,1230000,1230234,657327,1230153,656750,1107375,1107432,2091723,657045,1107687,1230924,657217,657283,1230741,657427,1107471,1107501,1107897,657310,1231242,1231071,1107498,1107807,1107807,1230909,658455,1107582,1107582,641347,640565,1293260,646529,721141,641415,721980,643059,641291,642834,1082187,642614,1328847,722819,643648,725140,644753,649417,723508,725861,724804,723442,646699,642785,1085982,647310,1249208,646233,644860,646763,644795,728224,644676,1290098,646593,645383,653078,725515,644530,646143,651629,725819,727717,725524,2054823,1168893,725247,649347,644503,646034,645715,647408,647251,647064,644522,647927,1087323,651542,649457,646977,726341,1371409,651911,1453515,1292644,1415585,645519,645561,647395,646388,1332581,1372854,1252365,1372358,657106,1372075,1210182,646120,1412965,1089297,646894,645191,2221478,1211220,645838,727731,1210524,1089705,646858,731083,1413436,1331046,647115,727869,1533990,650080,1534467,731897,647157,646587,1540122,649612,650264,1534908,1211373,646799,645936,726787,1542669,1414462,646737,1414245,1535694,1332474,1416348,1535808,729083,1414665,1535960,650707,1538201,730005,1212183,1417814,1415276,1417582,728287,1416650,651771,1534421,727287,1331739,1416938,727048,647089,727302,652553,648990,647817,1413790,1331037,1295200,727143,1538249,649231,1295316,1543671,1538184,1539128,653050,1538202,2388746,649231,648148,648009,730912,1296035,732131,654169,1212579,1416485,1540594,649274,1416168,1419704,1416333,1416553,1416380,1416485,650656,651618,648229,650547,649152,731309,1419821,1418253,649292,650916,1417684,1538980,1418590,1420165,1539266,1417710,1417710,1417850,1335402,1417885,1417885,1540485,648726,733377,649408,1420911,652112,1418992,733369,1418468,2391892,1419428,1093551,1214850,1539684,1419116,1419847,1541660,656162,1420363,649129,648411,651921,729713,1540950,1423373,1420115,655849,1542154,1382316,651472,652887,1420895,1216143,1217058,1420895,1421035,1421635,651892,1541128,2392804,650011,1541692,2398493,1541479,649948,649836,1422566,1463434,649213,1542978,1422133,2397626,1341356,1383020,1541356,730662,1422523,651384,1094634,1420055,1420134,1421335,1421613,1542929,1421140,1095846,1094037,1421105,652821,1421554,1421482,1422454,649859,4255656,1339467,1336386,1421567,653691,650495,1543637,1544495,1543636,1424211,652457,2396865,651913,1543824,650674,1421971,1545315,654071,1422733,655077,1544408,651161,1095777,1545326,652226,651271,734050,651391,1545389,2399969,650981,652208,652221,1344763,733863,733501,1545773,654218,1423625,654988,1423835,652866,654051,653758,1341642,651848,654841,655068,654182,656659,1424533,654845,1546927,1546942,1262474,1226136,2118522,1425365,654984,654956,1425305,1101339,653752,1101342,651965,734087,1099839,1222482,734621,652701,1099782,653798,1262929,735266,733555,654201,1099926,1222500,734466,2078340,735164,735093,1343859,1100583,1100601,653089,1100598,652901,1223154,1100601,656230,655392,1101012,654373,1103595,1103202,653491,2079780,653381,1223490,655912,655276,654227,736608,653219,654837,657221,1101519,654270,1224066,1104255,654728,656152,1101726,1224954,654816,1225845,1102110,657042,1224612,656328,1102296,654585,1102500,735113,1227921,1226820,654294,655472,1102464,1102728,654950,653774,1224024,654942,2082840,736475,1225977,654643,1347210,656178,654084,655220,653940,1103247,1226943,655622,1226490,1103406,653970,655581,1226088,1103490,1103853,1226430,1226919,1227084,656226,1225485,1104300,2086479,655672,656375,2086854,656805,655471,1104435,1227459,655010,1104651,1228002,655992,656103,1106205,655855,656281,655738,1106139,656840,1228572,1105509,656579,1105596,1105617,656897,1230090,1107144,1105788,1106973,1106037,1228653,737447,655787,1228815,1229184,655392,1106073,656603,656853,2089929,656497,656483,1106136,1105707,1103787,1106313,1106298,1230546,1351080,656872,657494,2091042,1106649,657805,1106514,656903,656700,1106730,658009,657089,656629,1229820,1105971,1104966,656150,1105239,1104840,1227564,1105482,737552,1104951,1105452,1105002,1107441,1106976,657257,656767,656784,1107195,1107249,1230405,1107435,1107168,1107135,657031,1230657,656865,1230561,1107576,657343,657273,657683,1107468,657352,657317,657444,1107804,1230780,1107711,1107816,1107639,1230708,1230666,1230834,1230768,657335,1230657,656917,656875,1107936,1107831,1107954,658254,1230972,656854,1107981,657672,656677,1107912,656874,1107897,1107981,1107876,1107963,1108047,1107990,657492,1107969,1107936,657339,1231101,1107957,1106769,1231086,738705,1231200,653718,1107969,658423,1231104,656808,658244,1107999,656629,1108005,657897,656806,657582,1107927,1231293,1231137,1231062,656806,657679,657659,657901,657518,657715,657385,657882,657777,657431,657844,657532,657758,657673,657985,657850,657480,657886,657439,1108041,1108092,657539,656792,1108152,1106601,1106625,1231032,657740,1231200,1231182,658775,1231152,1107975,1108137,657080,1108098,1108173,1108128,1108263,659355,1231317,1231263,1231290,1108128,2093124,657428,1108110,656964,1108278,657280]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"168549\",\"primaryLabelValue\":\"168549\"}},{\"attributeHeader\":{\"labelValue\":\"168698\",\"primaryLabelValue\":\"168698\"}},{\"attributeHeader\":{\"labelValue\":\"168944\",\"primaryLabelValue\":\"168944\"}},{\"attributeHeader\":{\"labelValue\":\"955130\",\"primaryLabelValue\":\"955130\"}},{\"attributeHeader\":{\"labelValue\":\"955132\",\"primaryLabelValue\":\"955132\"}},{\"attributeHeader\":{\"labelValue\":\"955134\",\"primaryLabelValue\":\"955134\"}},{\"attributeHeader\":{\"labelValue\":\"955140\",\"primaryLabelValue\":\"955140\"}},{\"attributeHeader\":{\"labelValue\":\"955142\",\"primaryLabelValue\":\"955142\"}},{\"attributeHeader\":{\"labelValue\":\"955144\",\"primaryLabelValue\":\"955144\"}},{\"attributeHeader\":{\"labelValue\":\"955146\",\"primaryLabelValue\":\"955146\"}},{\"attributeHeader\":{\"labelValue\":\"955148\",\"primaryLabelValue\":\"955148\"}},{\"attributeHeader\":{\"labelValue\":\"955154\",\"primaryLabelValue\":\"955154\"}},{\"attributeHeader\":{\"labelValue\":\"955156\",\"primaryLabelValue\":\"955156\"}},{\"attributeHeader\":{\"labelValue\":\"955158\",\"primaryLabelValue\":\"955158\"}},{\"attributeHeader\":{\"labelValue\":\"955160\",\"primaryLabelValue\":\"955160\"}},{\"attributeHeader\":{\"labelValue\":\"955164\",\"primaryLabelValue\":\"955164\"}},{\"attributeHeader\":{\"labelValue\":\"955166\",\"primaryLabelValue\":\"955166\"}},{\"attributeHeader\":{\"labelValue\":\"955168\",\"primaryLabelValue\":\"955168\"}},{\"attributeHeader\":{\"labelValue\":\"955174\",\"primaryLabelValue\":\"955174\"}},{\"attributeHeader\":{\"labelValue\":\"955176\",\"primaryLabelValue\":\"955176\"}},{\"attributeHeader\":{\"labelValue\":\"955178\",\"primaryLabelValue\":\"955178\"}},{\"attributeHeader\":{\"labelValue\":\"955180\",\"primaryLabelValue\":\"955180\"}},{\"attributeHeader\":{\"labelValue\":\"955182\",\"primaryLabelValue\":\"955182\"}},{\"attributeHeader\":{\"labelValue\":\"955184\",\"primaryLabelValue\":\"955184\"}},{\"attributeHeader\":{\"labelValue\":\"955186\",\"primaryLabelValue\":\"955186\"}},{\"attributeHeader\":{\"labelValue\":\"955188\",\"primaryLabelValue\":\"955188\"}},{\"attributeHeader\":{\"labelValue\":\"955190\",\"primaryLabelValue\":\"955190\"}},{\"attributeHeader\":{\"labelValue\":\"955192\",\"primaryLabelValue\":\"955192\"}},{\"attributeHeader\":{\"labelValue\":\"955194\",\"primaryLabelValue\":\"955194\"}},{\"attributeHeader\":{\"labelValue\":\"955196\",\"primaryLabelValue\":\"955196\"}},{\"attributeHeader\":{\"labelValue\":\"955198\",\"primaryLabelValue\":\"955198\"}},{\"attributeHeader\":{\"labelValue\":\"955200\",\"primaryLabelValue\":\"955200\"}},{\"attributeHeader\":{\"labelValue\":\"955202\",\"primaryLabelValue\":\"955202\"}},{\"attributeHeader\":{\"labelValue\":\"955204\",\"primaryLabelValue\":\"955204\"}},{\"attributeHeader\":{\"labelValue\":\"955208\",\"primaryLabelValue\":\"955208\"}},{\"attributeHeader\":{\"labelValue\":\"955210\",\"primaryLabelValue\":\"955210\"}},{\"attributeHeader\":{\"labelValue\":\"955212\",\"primaryLabelValue\":\"955212\"}},{\"attributeHeader\":{\"labelValue\":\"955214\",\"primaryLabelValue\":\"955214\"}},{\"attributeHeader\":{\"labelValue\":\"955216\",\"primaryLabelValue\":\"955216\"}},{\"attributeHeader\":{\"labelValue\":\"955218\",\"primaryLabelValue\":\"955218\"}},{\"attributeHeader\":{\"labelValue\":\"955220\",\"primaryLabelValue\":\"955220\"}},{\"attributeHeader\":{\"labelValue\":\"955222\",\"primaryLabelValue\":\"955222\"}},{\"attributeHeader\":{\"labelValue\":\"955224\",\"primaryLabelValue\":\"955224\"}},{\"attributeHeader\":{\"labelValue\":\"955226\",\"primaryLabelValue\":\"955226\"}},{\"attributeHeader\":{\"labelValue\":\"955228\",\"primaryLabelValue\":\"955228\"}},{\"attributeHeader\":{\"labelValue\":\"955230\",\"primaryLabelValue\":\"955230\"}},{\"attributeHeader\":{\"labelValue\":\"955232\",\"primaryLabelValue\":\"955232\"}},{\"attributeHeader\":{\"labelValue\":\"955234\",\"primaryLabelValue\":\"955234\"}},{\"attributeHeader\":{\"labelValue\":\"955236\",\"primaryLabelValue\":\"955236\"}},{\"attributeHeader\":{\"labelValue\":\"955240\",\"primaryLabelValue\":\"955240\"}},{\"attributeHeader\":{\"labelValue\":\"955242\",\"primaryLabelValue\":\"955242\"}},{\"attributeHeader\":{\"labelValue\":\"955244\",\"primaryLabelValue\":\"955244\"}},{\"attributeHeader\":{\"labelValue\":\"955246\",\"primaryLabelValue\":\"955246\"}},{\"attributeHeader\":{\"labelValue\":\"955248\",\"primaryLabelValue\":\"955248\"}},{\"attributeHeader\":{\"labelValue\":\"955250\",\"primaryLabelValue\":\"955250\"}},{\"attributeHeader\":{\"labelValue\":\"955252\",\"primaryLabelValue\":\"955252\"}},{\"attributeHeader\":{\"labelValue\":\"955254\",\"primaryLabelValue\":\"955254\"}},{\"attributeHeader\":{\"labelValue\":\"955256\",\"primaryLabelValue\":\"955256\"}},{\"attributeHeader\":{\"labelValue\":\"955258\",\"primaryLabelValue\":\"955258\"}},{\"attributeHeader\":{\"labelValue\":\"955260\",\"primaryLabelValue\":\"955260\"}},{\"attributeHeader\":{\"labelValue\":\"955262\",\"primaryLabelValue\":\"955262\"}},{\"attributeHeader\":{\"labelValue\":\"955264\",\"primaryLabelValue\":\"955264\"}},{\"attributeHeader\":{\"labelValue\":\"955268\",\"primaryLabelValue\":\"955268\"}},{\"attributeHeader\":{\"labelValue\":\"955272\",\"primaryLabelValue\":\"955272\"}},{\"attributeHeader\":{\"labelValue\":\"955274\",\"primaryLabelValue\":\"955274\"}},{\"attributeHeader\":{\"labelValue\":\"955276\",\"primaryLabelValue\":\"955276\"}},{\"attributeHeader\":{\"labelValue\":\"955278\",\"primaryLabelValue\":\"955278\"}},{\"attributeHeader\":{\"labelValue\":\"955280\",\"primaryLabelValue\":\"955280\"}},{\"attributeHeader\":{\"labelValue\":\"955282\",\"primaryLabelValue\":\"955282\"}},{\"attributeHeader\":{\"labelValue\":\"955284\",\"primaryLabelValue\":\"955284\"}},{\"attributeHeader\":{\"labelValue\":\"955286\",\"primaryLabelValue\":\"955286\"}},{\"attributeHeader\":{\"labelValue\":\"955290\",\"primaryLabelValue\":\"955290\"}},{\"attributeHeader\":{\"labelValue\":\"955292\",\"primaryLabelValue\":\"955292\"}},{\"attributeHeader\":{\"labelValue\":\"955294\",\"primaryLabelValue\":\"955294\"}},{\"attributeHeader\":{\"labelValue\":\"955298\",\"primaryLabelValue\":\"955298\"}},{\"attributeHeader\":{\"labelValue\":\"955300\",\"primaryLabelValue\":\"955300\"}},{\"attributeHeader\":{\"labelValue\":\"955302\",\"primaryLabelValue\":\"955302\"}},{\"attributeHeader\":{\"labelValue\":\"955304\",\"primaryLabelValue\":\"955304\"}},{\"attributeHeader\":{\"labelValue\":\"955306\",\"primaryLabelValue\":\"955306\"}},{\"attributeHeader\":{\"labelValue\":\"955308\",\"primaryLabelValue\":\"955308\"}},{\"attributeHeader\":{\"labelValue\":\"955312\",\"primaryLabelValue\":\"955312\"}},{\"attributeHeader\":{\"labelValue\":\"955314\",\"primaryLabelValue\":\"955314\"}},{\"attributeHeader\":{\"labelValue\":\"955316\",\"primaryLabelValue\":\"955316\"}},{\"attributeHeader\":{\"labelValue\":\"955318\",\"primaryLabelValue\":\"955318\"}},{\"attributeHeader\":{\"labelValue\":\"955320\",\"primaryLabelValue\":\"955320\"}},{\"attributeHeader\":{\"labelValue\":\"955322\",\"primaryLabelValue\":\"955322\"}},{\"attributeHeader\":{\"labelValue\":\"955324\",\"primaryLabelValue\":\"955324\"}},{\"attributeHeader\":{\"labelValue\":\"955326\",\"primaryLabelValue\":\"955326\"}},{\"attributeHeader\":{\"labelValue\":\"955328\",\"primaryLabelValue\":\"955328\"}},{\"attributeHeader\":{\"labelValue\":\"955330\",\"primaryLabelValue\":\"955330\"}},{\"attributeHeader\":{\"labelValue\":\"955336\",\"primaryLabelValue\":\"955336\"}},{\"attributeHeader\":{\"labelValue\":\"955338\",\"primaryLabelValue\":\"955338\"}},{\"attributeHeader\":{\"labelValue\":\"955340\",\"primaryLabelValue\":\"955340\"}},{\"attributeHeader\":{\"labelValue\":\"955342\",\"primaryLabelValue\":\"955342\"}},{\"attributeHeader\":{\"labelValue\":\"955344\",\"primaryLabelValue\":\"955344\"}},{\"attributeHeader\":{\"labelValue\":\"955346\",\"primaryLabelValue\":\"955346\"}},{\"attributeHeader\":{\"labelValue\":\"955348\",\"primaryLabelValue\":\"955348\"}},{\"attributeHeader\":{\"labelValue\":\"955350\",\"primaryLabelValue\":\"955350\"}},{\"attributeHeader\":{\"labelValue\":\"955352\",\"primaryLabelValue\":\"955352\"}},{\"attributeHeader\":{\"labelValue\":\"955354\",\"primaryLabelValue\":\"955354\"}},{\"attributeHeader\":{\"labelValue\":\"955356\",\"primaryLabelValue\":\"955356\"}},{\"attributeHeader\":{\"labelValue\":\"955358\",\"primaryLabelValue\":\"955358\"}},{\"attributeHeader\":{\"labelValue\":\"955360\",\"primaryLabelValue\":\"955360\"}},{\"attributeHeader\":{\"labelValue\":\"955362\",\"primaryLabelValue\":\"955362\"}},{\"attributeHeader\":{\"labelValue\":\"955364\",\"primaryLabelValue\":\"955364\"}},{\"attributeHeader\":{\"labelValue\":\"955366\",\"primaryLabelValue\":\"955366\"}},{\"attributeHeader\":{\"labelValue\":\"955368\",\"primaryLabelValue\":\"955368\"}},{\"attributeHeader\":{\"labelValue\":\"955370\",\"primaryLabelValue\":\"955370\"}},{\"attributeHeader\":{\"labelValue\":\"955372\",\"primaryLabelValue\":\"955372\"}},{\"attributeHeader\":{\"labelValue\":\"955374\",\"primaryLabelValue\":\"955374\"}},{\"attributeHeader\":{\"labelValue\":\"955376\",\"primaryLabelValue\":\"955376\"}},{\"attributeHeader\":{\"labelValue\":\"955378\",\"primaryLabelValue\":\"955378\"}},{\"attributeHeader\":{\"labelValue\":\"955380\",\"primaryLabelValue\":\"955380\"}},{\"attributeHeader\":{\"labelValue\":\"955382\",\"primaryLabelValue\":\"955382\"}},{\"attributeHeader\":{\"labelValue\":\"955384\",\"primaryLabelValue\":\"955384\"}},{\"attributeHeader\":{\"labelValue\":\"955386\",\"primaryLabelValue\":\"955386\"}},{\"attributeHeader\":{\"labelValue\":\"955388\",\"primaryLabelValue\":\"955388\"}},{\"attributeHeader\":{\"labelValue\":\"955390\",\"primaryLabelValue\":\"955390\"}},{\"attributeHeader\":{\"labelValue\":\"955392\",\"primaryLabelValue\":\"955392\"}},{\"attributeHeader\":{\"labelValue\":\"955394\",\"primaryLabelValue\":\"955394\"}},{\"attributeHeader\":{\"labelValue\":\"955398\",\"primaryLabelValue\":\"955398\"}},{\"attributeHeader\":{\"labelValue\":\"955402\",\"primaryLabelValue\":\"955402\"}},{\"attributeHeader\":{\"labelValue\":\"955406\",\"primaryLabelValue\":\"955406\"}},{\"attributeHeader\":{\"labelValue\":\"955408\",\"primaryLabelValue\":\"955408\"}},{\"attributeHeader\":{\"labelValue\":\"955410\",\"primaryLabelValue\":\"955410\"}},{\"attributeHeader\":{\"labelValue\":\"955414\",\"primaryLabelValue\":\"955414\"}},{\"attributeHeader\":{\"labelValue\":\"955420\",\"primaryLabelValue\":\"955420\"}},{\"attributeHeader\":{\"labelValue\":\"955422\",\"primaryLabelValue\":\"955422\"}},{\"attributeHeader\":{\"labelValue\":\"955424\",\"primaryLabelValue\":\"955424\"}},{\"attributeHeader\":{\"labelValue\":\"955426\",\"primaryLabelValue\":\"955426\"}},{\"attributeHeader\":{\"labelValue\":\"955428\",\"primaryLabelValue\":\"955428\"}},{\"attributeHeader\":{\"labelValue\":\"955430\",\"primaryLabelValue\":\"955430\"}},{\"attributeHeader\":{\"labelValue\":\"955432\",\"primaryLabelValue\":\"955432\"}},{\"attributeHeader\":{\"labelValue\":\"955434\",\"primaryLabelValue\":\"955434\"}},{\"attributeHeader\":{\"labelValue\":\"955436\",\"primaryLabelValue\":\"955436\"}},{\"attributeHeader\":{\"labelValue\":\"955440\",\"primaryLabelValue\":\"955440\"}},{\"attributeHeader\":{\"labelValue\":\"955442\",\"primaryLabelValue\":\"955442\"}},{\"attributeHeader\":{\"labelValue\":\"955444\",\"primaryLabelValue\":\"955444\"}},{\"attributeHeader\":{\"labelValue\":\"955446\",\"primaryLabelValue\":\"955446\"}},{\"attributeHeader\":{\"labelValue\":\"955448\",\"primaryLabelValue\":\"955448\"}},{\"attributeHeader\":{\"labelValue\":\"955452\",\"primaryLabelValue\":\"955452\"}},{\"attributeHeader\":{\"labelValue\":\"955454\",\"primaryLabelValue\":\"955454\"}},{\"attributeHeader\":{\"labelValue\":\"955456\",\"primaryLabelValue\":\"955456\"}},{\"attributeHeader\":{\"labelValue\":\"955458\",\"primaryLabelValue\":\"955458\"}},{\"attributeHeader\":{\"labelValue\":\"955460\",\"primaryLabelValue\":\"955460\"}},{\"attributeHeader\":{\"labelValue\":\"955462\",\"primaryLabelValue\":\"955462\"}},{\"attributeHeader\":{\"labelValue\":\"955464\",\"primaryLabelValue\":\"955464\"}},{\"attributeHeader\":{\"labelValue\":\"955466\",\"primaryLabelValue\":\"955466\"}},{\"attributeHeader\":{\"labelValue\":\"955468\",\"primaryLabelValue\":\"955468\"}},{\"attributeHeader\":{\"labelValue\":\"955470\",\"primaryLabelValue\":\"955470\"}},{\"attributeHeader\":{\"labelValue\":\"955472\",\"primaryLabelValue\":\"955472\"}},{\"attributeHeader\":{\"labelValue\":\"955474\",\"primaryLabelValue\":\"955474\"}},{\"attributeHeader\":{\"labelValue\":\"955476\",\"primaryLabelValue\":\"955476\"}},{\"attributeHeader\":{\"labelValue\":\"955478\",\"primaryLabelValue\":\"955478\"}},{\"attributeHeader\":{\"labelValue\":\"955480\",\"primaryLabelValue\":\"955480\"}},{\"attributeHeader\":{\"labelValue\":\"955482\",\"primaryLabelValue\":\"955482\"}},{\"attributeHeader\":{\"labelValue\":\"955484\",\"primaryLabelValue\":\"955484\"}},{\"attributeHeader\":{\"labelValue\":\"955486\",\"primaryLabelValue\":\"955486\"}},{\"attributeHeader\":{\"labelValue\":\"955488\",\"primaryLabelValue\":\"955488\"}},{\"attributeHeader\":{\"labelValue\":\"955490\",\"primaryLabelValue\":\"955490\"}},{\"attributeHeader\":{\"labelValue\":\"955492\",\"primaryLabelValue\":\"955492\"}},{\"attributeHeader\":{\"labelValue\":\"955494\",\"primaryLabelValue\":\"955494\"}},{\"attributeHeader\":{\"labelValue\":\"955496\",\"primaryLabelValue\":\"955496\"}},{\"attributeHeader\":{\"labelValue\":\"955498\",\"primaryLabelValue\":\"955498\"}},{\"attributeHeader\":{\"labelValue\":\"955500\",\"primaryLabelValue\":\"955500\"}},{\"attributeHeader\":{\"labelValue\":\"955502\",\"primaryLabelValue\":\"955502\"}},{\"attributeHeader\":{\"labelValue\":\"955504\",\"primaryLabelValue\":\"955504\"}},{\"attributeHeader\":{\"labelValue\":\"955506\",\"primaryLabelValue\":\"955506\"}},{\"attributeHeader\":{\"labelValue\":\"955508\",\"primaryLabelValue\":\"955508\"}},{\"attributeHeader\":{\"labelValue\":\"955510\",\"primaryLabelValue\":\"955510\"}},{\"attributeHeader\":{\"labelValue\":\"955512\",\"primaryLabelValue\":\"955512\"}},{\"attributeHeader\":{\"labelValue\":\"955514\",\"primaryLabelValue\":\"955514\"}},{\"attributeHeader\":{\"labelValue\":\"955516\",\"primaryLabelValue\":\"955516\"}},{\"attributeHeader\":{\"labelValue\":\"955518\",\"primaryLabelValue\":\"955518\"}},{\"attributeHeader\":{\"labelValue\":\"955520\",\"primaryLabelValue\":\"955520\"}},{\"attributeHeader\":{\"labelValue\":\"955522\",\"primaryLabelValue\":\"955522\"}},{\"attributeHeader\":{\"labelValue\":\"955524\",\"primaryLabelValue\":\"955524\"}},{\"attributeHeader\":{\"labelValue\":\"955526\",\"primaryLabelValue\":\"955526\"}},{\"attributeHeader\":{\"labelValue\":\"955528\",\"primaryLabelValue\":\"955528\"}},{\"attributeHeader\":{\"labelValue\":\"955530\",\"primaryLabelValue\":\"955530\"}},{\"attributeHeader\":{\"labelValue\":\"955532\",\"primaryLabelValue\":\"955532\"}},{\"attributeHeader\":{\"labelValue\":\"955534\",\"primaryLabelValue\":\"955534\"}},{\"attributeHeader\":{\"labelValue\":\"955536\",\"primaryLabelValue\":\"955536\"}},{\"attributeHeader\":{\"labelValue\":\"955538\",\"primaryLabelValue\":\"955538\"}},{\"attributeHeader\":{\"labelValue\":\"955540\",\"primaryLabelValue\":\"955540\"}},{\"attributeHeader\":{\"labelValue\":\"955542\",\"primaryLabelValue\":\"955542\"}},{\"attributeHeader\":{\"labelValue\":\"955544\",\"primaryLabelValue\":\"955544\"}},{\"attributeHeader\":{\"labelValue\":\"955546\",\"primaryLabelValue\":\"955546\"}},{\"attributeHeader\":{\"labelValue\":\"955548\",\"primaryLabelValue\":\"955548\"}},{\"attributeHeader\":{\"labelValue\":\"955550\",\"primaryLabelValue\":\"955550\"}},{\"attributeHeader\":{\"labelValue\":\"955552\",\"primaryLabelValue\":\"955552\"}},{\"attributeHeader\":{\"labelValue\":\"955554\",\"primaryLabelValue\":\"955554\"}},{\"attributeHeader\":{\"labelValue\":\"955556\",\"primaryLabelValue\":\"955556\"}},{\"attributeHeader\":{\"labelValue\":\"955558\",\"primaryLabelValue\":\"955558\"}},{\"attributeHeader\":{\"labelValue\":\"955560\",\"primaryLabelValue\":\"955560\"}},{\"attributeHeader\":{\"labelValue\":\"955562\",\"primaryLabelValue\":\"955562\"}},{\"attributeHeader\":{\"labelValue\":\"955564\",\"primaryLabelValue\":\"955564\"}},{\"attributeHeader\":{\"labelValue\":\"955566\",\"primaryLabelValue\":\"955566\"}},{\"attributeHeader\":{\"labelValue\":\"955568\",\"primaryLabelValue\":\"955568\"}},{\"attributeHeader\":{\"labelValue\":\"955570\",\"primaryLabelValue\":\"955570\"}},{\"attributeHeader\":{\"labelValue\":\"955572\",\"primaryLabelValue\":\"955572\"}},{\"attributeHeader\":{\"labelValue\":\"955574\",\"primaryLabelValue\":\"955574\"}},{\"attributeHeader\":{\"labelValue\":\"955576\",\"primaryLabelValue\":\"955576\"}},{\"attributeHeader\":{\"labelValue\":\"955578\",\"primaryLabelValue\":\"955578\"}},{\"attributeHeader\":{\"labelValue\":\"955580\",\"primaryLabelValue\":\"955580\"}},{\"attributeHeader\":{\"labelValue\":\"955582\",\"primaryLabelValue\":\"955582\"}},{\"attributeHeader\":{\"labelValue\":\"955584\",\"primaryLabelValue\":\"955584\"}},{\"attributeHeader\":{\"labelValue\":\"955586\",\"primaryLabelValue\":\"955586\"}},{\"attributeHeader\":{\"labelValue\":\"955588\",\"primaryLabelValue\":\"955588\"}},{\"attributeHeader\":{\"labelValue\":\"955590\",\"primaryLabelValue\":\"955590\"}},{\"attributeHeader\":{\"labelValue\":\"955592\",\"primaryLabelValue\":\"955592\"}},{\"attributeHeader\":{\"labelValue\":\"955594\",\"primaryLabelValue\":\"955594\"}},{\"attributeHeader\":{\"labelValue\":\"955596\",\"primaryLabelValue\":\"955596\"}},{\"attributeHeader\":{\"labelValue\":\"955598\",\"primaryLabelValue\":\"955598\"}},{\"attributeHeader\":{\"labelValue\":\"955600\",\"primaryLabelValue\":\"955600\"}},{\"attributeHeader\":{\"labelValue\":\"955602\",\"primaryLabelValue\":\"955602\"}},{\"attributeHeader\":{\"labelValue\":\"955604\",\"primaryLabelValue\":\"955604\"}},{\"attributeHeader\":{\"labelValue\":\"955606\",\"primaryLabelValue\":\"955606\"}},{\"attributeHeader\":{\"labelValue\":\"955608\",\"primaryLabelValue\":\"955608\"}},{\"attributeHeader\":{\"labelValue\":\"955610\",\"primaryLabelValue\":\"955610\"}},{\"attributeHeader\":{\"labelValue\":\"955612\",\"primaryLabelValue\":\"955612\"}},{\"attributeHeader\":{\"labelValue\":\"955614\",\"primaryLabelValue\":\"955614\"}},{\"attributeHeader\":{\"labelValue\":\"955616\",\"primaryLabelValue\":\"955616\"}},{\"attributeHeader\":{\"labelValue\":\"955618\",\"primaryLabelValue\":\"955618\"}},{\"attributeHeader\":{\"labelValue\":\"955620\",\"primaryLabelValue\":\"955620\"}},{\"attributeHeader\":{\"labelValue\":\"955622\",\"primaryLabelValue\":\"955622\"}},{\"attributeHeader\":{\"labelValue\":\"955624\",\"primaryLabelValue\":\"955624\"}},{\"attributeHeader\":{\"labelValue\":\"955626\",\"primaryLabelValue\":\"955626\"}},{\"attributeHeader\":{\"labelValue\":\"955628\",\"primaryLabelValue\":\"955628\"}},{\"attributeHeader\":{\"labelValue\":\"955630\",\"primaryLabelValue\":\"955630\"}},{\"attributeHeader\":{\"labelValue\":\"955632\",\"primaryLabelValue\":\"955632\"}},{\"attributeHeader\":{\"labelValue\":\"955634\",\"primaryLabelValue\":\"955634\"}},{\"attributeHeader\":{\"labelValue\":\"955636\",\"primaryLabelValue\":\"955636\"}},{\"attributeHeader\":{\"labelValue\":\"955638\",\"primaryLabelValue\":\"955638\"}},{\"attributeHeader\":{\"labelValue\":\"955640\",\"primaryLabelValue\":\"955640\"}},{\"attributeHeader\":{\"labelValue\":\"955642\",\"primaryLabelValue\":\"955642\"}},{\"attributeHeader\":{\"labelValue\":\"955644\",\"primaryLabelValue\":\"955644\"}},{\"attributeHeader\":{\"labelValue\":\"955646\",\"primaryLabelValue\":\"955646\"}},{\"attributeHeader\":{\"labelValue\":\"955648\",\"primaryLabelValue\":\"955648\"}},{\"attributeHeader\":{\"labelValue\":\"955650\",\"primaryLabelValue\":\"955650\"}},{\"attributeHeader\":{\"labelValue\":\"955652\",\"primaryLabelValue\":\"955652\"}},{\"attributeHeader\":{\"labelValue\":\"955654\",\"primaryLabelValue\":\"955654\"}},{\"attributeHeader\":{\"labelValue\":\"955656\",\"primaryLabelValue\":\"955656\"}},{\"attributeHeader\":{\"labelValue\":\"955658\",\"primaryLabelValue\":\"955658\"}},{\"attributeHeader\":{\"labelValue\":\"955660\",\"primaryLabelValue\":\"955660\"}},{\"attributeHeader\":{\"labelValue\":\"955662\",\"primaryLabelValue\":\"955662\"}},{\"attributeHeader\":{\"labelValue\":\"955664\",\"primaryLabelValue\":\"955664\"}},{\"attributeHeader\":{\"labelValue\":\"955666\",\"primaryLabelValue\":\"955666\"}},{\"attributeHeader\":{\"labelValue\":\"955668\",\"primaryLabelValue\":\"955668\"}},{\"attributeHeader\":{\"labelValue\":\"955670\",\"primaryLabelValue\":\"955670\"}},{\"attributeHeader\":{\"labelValue\":\"955672\",\"primaryLabelValue\":\"955672\"}},{\"attributeHeader\":{\"labelValue\":\"955674\",\"primaryLabelValue\":\"955674\"}},{\"attributeHeader\":{\"labelValue\":\"955676\",\"primaryLabelValue\":\"955676\"}},{\"attributeHeader\":{\"labelValue\":\"955678\",\"primaryLabelValue\":\"955678\"}},{\"attributeHeader\":{\"labelValue\":\"955680\",\"primaryLabelValue\":\"955680\"}},{\"attributeHeader\":{\"labelValue\":\"955682\",\"primaryLabelValue\":\"955682\"}},{\"attributeHeader\":{\"labelValue\":\"955684\",\"primaryLabelValue\":\"955684\"}},{\"attributeHeader\":{\"labelValue\":\"955686\",\"primaryLabelValue\":\"955686\"}},{\"attributeHeader\":{\"labelValue\":\"955688\",\"primaryLabelValue\":\"955688\"}},{\"attributeHeader\":{\"labelValue\":\"955690\",\"primaryLabelValue\":\"955690\"}},{\"attributeHeader\":{\"labelValue\":\"955692\",\"primaryLabelValue\":\"955692\"}},{\"attributeHeader\":{\"labelValue\":\"955694\",\"primaryLabelValue\":\"955694\"}},{\"attributeHeader\":{\"labelValue\":\"955696\",\"primaryLabelValue\":\"955696\"}},{\"attributeHeader\":{\"labelValue\":\"955698\",\"primaryLabelValue\":\"955698\"}},{\"attributeHeader\":{\"labelValue\":\"955700\",\"primaryLabelValue\":\"955700\"}},{\"attributeHeader\":{\"labelValue\":\"955702\",\"primaryLabelValue\":\"955702\"}},{\"attributeHeader\":{\"labelValue\":\"955704\",\"primaryLabelValue\":\"955704\"}},{\"attributeHeader\":{\"labelValue\":\"955706\",\"primaryLabelValue\":\"955706\"}},{\"attributeHeader\":{\"labelValue\":\"955708\",\"primaryLabelValue\":\"955708\"}},{\"attributeHeader\":{\"labelValue\":\"955710\",\"primaryLabelValue\":\"955710\"}},{\"attributeHeader\":{\"labelValue\":\"955712\",\"primaryLabelValue\":\"955712\"}},{\"attributeHeader\":{\"labelValue\":\"955714\",\"primaryLabelValue\":\"955714\"}},{\"attributeHeader\":{\"labelValue\":\"955716\",\"primaryLabelValue\":\"955716\"}},{\"attributeHeader\":{\"labelValue\":\"955718\",\"primaryLabelValue\":\"955718\"}},{\"attributeHeader\":{\"labelValue\":\"955720\",\"primaryLabelValue\":\"955720\"}},{\"attributeHeader\":{\"labelValue\":\"955722\",\"primaryLabelValue\":\"955722\"}},{\"attributeHeader\":{\"labelValue\":\"955724\",\"primaryLabelValue\":\"955724\"}},{\"attributeHeader\":{\"labelValue\":\"955726\",\"primaryLabelValue\":\"955726\"}},{\"attributeHeader\":{\"labelValue\":\"955728\",\"primaryLabelValue\":\"955728\"}},{\"attributeHeader\":{\"labelValue\":\"955730\",\"primaryLabelValue\":\"955730\"}},{\"attributeHeader\":{\"labelValue\":\"955732\",\"primaryLabelValue\":\"955732\"}},{\"attributeHeader\":{\"labelValue\":\"955734\",\"primaryLabelValue\":\"955734\"}},{\"attributeHeader\":{\"labelValue\":\"955736\",\"primaryLabelValue\":\"955736\"}},{\"attributeHeader\":{\"labelValue\":\"955738\",\"primaryLabelValue\":\"955738\"}},{\"attributeHeader\":{\"labelValue\":\"955740\",\"primaryLabelValue\":\"955740\"}},{\"attributeHeader\":{\"labelValue\":\"955742\",\"primaryLabelValue\":\"955742\"}},{\"attributeHeader\":{\"labelValue\":\"955744\",\"primaryLabelValue\":\"955744\"}},{\"attributeHeader\":{\"labelValue\":\"955746\",\"primaryLabelValue\":\"955746\"}},{\"attributeHeader\":{\"labelValue\":\"955748\",\"primaryLabelValue\":\"955748\"}},{\"attributeHeader\":{\"labelValue\":\"955750\",\"primaryLabelValue\":\"955750\"}},{\"attributeHeader\":{\"labelValue\":\"955752\",\"primaryLabelValue\":\"955752\"}},{\"attributeHeader\":{\"labelValue\":\"955754\",\"primaryLabelValue\":\"955754\"}},{\"attributeHeader\":{\"labelValue\":\"955756\",\"primaryLabelValue\":\"955756\"}},{\"attributeHeader\":{\"labelValue\":\"955758\",\"primaryLabelValue\":\"955758\"}},{\"attributeHeader\":{\"labelValue\":\"955760\",\"primaryLabelValue\":\"955760\"}},{\"attributeHeader\":{\"labelValue\":\"955762\",\"primaryLabelValue\":\"955762\"}},{\"attributeHeader\":{\"labelValue\":\"955764\",\"primaryLabelValue\":\"955764\"}},{\"attributeHeader\":{\"labelValue\":\"955766\",\"primaryLabelValue\":\"955766\"}},{\"attributeHeader\":{\"labelValue\":\"955768\",\"primaryLabelValue\":\"955768\"}},{\"attributeHeader\":{\"labelValue\":\"955770\",\"primaryLabelValue\":\"955770\"}},{\"attributeHeader\":{\"labelValue\":\"955772\",\"primaryLabelValue\":\"955772\"}},{\"attributeHeader\":{\"labelValue\":\"955774\",\"primaryLabelValue\":\"955774\"}},{\"attributeHeader\":{\"labelValue\":\"955776\",\"primaryLabelValue\":\"955776\"}},{\"attributeHeader\":{\"labelValue\":\"955778\",\"primaryLabelValue\":\"955778\"}},{\"attributeHeader\":{\"labelValue\":\"955780\",\"primaryLabelValue\":\"955780\"}},{\"attributeHeader\":{\"labelValue\":\"955782\",\"primaryLabelValue\":\"955782\"}},{\"attributeHeader\":{\"labelValue\":\"955784\",\"primaryLabelValue\":\"955784\"}},{\"attributeHeader\":{\"labelValue\":\"955786\",\"primaryLabelValue\":\"955786\"}},{\"attributeHeader\":{\"labelValue\":\"955788\",\"primaryLabelValue\":\"955788\"}},{\"attributeHeader\":{\"labelValue\":\"955790\",\"primaryLabelValue\":\"955790\"}},{\"attributeHeader\":{\"labelValue\":\"955792\",\"primaryLabelValue\":\"955792\"}},{\"attributeHeader\":{\"labelValue\":\"955794\",\"primaryLabelValue\":\"955794\"}},{\"attributeHeader\":{\"labelValue\":\"955796\",\"primaryLabelValue\":\"955796\"}},{\"attributeHeader\":{\"labelValue\":\"955798\",\"primaryLabelValue\":\"955798\"}},{\"attributeHeader\":{\"labelValue\":\"955800\",\"primaryLabelValue\":\"955800\"}},{\"attributeHeader\":{\"labelValue\":\"955802\",\"primaryLabelValue\":\"955802\"}},{\"attributeHeader\":{\"labelValue\":\"955804\",\"primaryLabelValue\":\"955804\"}},{\"attributeHeader\":{\"labelValue\":\"955806\",\"primaryLabelValue\":\"955806\"}},{\"attributeHeader\":{\"labelValue\":\"955808\",\"primaryLabelValue\":\"955808\"}},{\"attributeHeader\":{\"labelValue\":\"955810\",\"primaryLabelValue\":\"955810\"}},{\"attributeHeader\":{\"labelValue\":\"955812\",\"primaryLabelValue\":\"955812\"}},{\"attributeHeader\":{\"labelValue\":\"955814\",\"primaryLabelValue\":\"955814\"}},{\"attributeHeader\":{\"labelValue\":\"955816\",\"primaryLabelValue\":\"955816\"}},{\"attributeHeader\":{\"labelValue\":\"955818\",\"primaryLabelValue\":\"955818\"}},{\"attributeHeader\":{\"labelValue\":\"955820\",\"primaryLabelValue\":\"955820\"}},{\"attributeHeader\":{\"labelValue\":\"955822\",\"primaryLabelValue\":\"955822\"}},{\"attributeHeader\":{\"labelValue\":\"955824\",\"primaryLabelValue\":\"955824\"}},{\"attributeHeader\":{\"labelValue\":\"955826\",\"primaryLabelValue\":\"955826\"}},{\"attributeHeader\":{\"labelValue\":\"955828\",\"primaryLabelValue\":\"955828\"}},{\"attributeHeader\":{\"labelValue\":\"955830\",\"primaryLabelValue\":\"955830\"}},{\"attributeHeader\":{\"labelValue\":\"955832\",\"primaryLabelValue\":\"955832\"}},{\"attributeHeader\":{\"labelValue\":\"955834\",\"primaryLabelValue\":\"955834\"}},{\"attributeHeader\":{\"labelValue\":\"955836\",\"primaryLabelValue\":\"955836\"}},{\"attributeHeader\":{\"labelValue\":\"955838\",\"primaryLabelValue\":\"955838\"}},{\"attributeHeader\":{\"labelValue\":\"955840\",\"primaryLabelValue\":\"955840\"}},{\"attributeHeader\":{\"labelValue\":\"955842\",\"primaryLabelValue\":\"955842\"}},{\"attributeHeader\":{\"labelValue\":\"955844\",\"primaryLabelValue\":\"955844\"}},{\"attributeHeader\":{\"labelValue\":\"955846\",\"primaryLabelValue\":\"955846\"}},{\"attributeHeader\":{\"labelValue\":\"955848\",\"primaryLabelValue\":\"955848\"}},{\"attributeHeader\":{\"labelValue\":\"955850\",\"primaryLabelValue\":\"955850\"}},{\"attributeHeader\":{\"labelValue\":\"955852\",\"primaryLabelValue\":\"955852\"}},{\"attributeHeader\":{\"labelValue\":\"955854\",\"primaryLabelValue\":\"955854\"}},{\"attributeHeader\":{\"labelValue\":\"955856\",\"primaryLabelValue\":\"955856\"}},{\"attributeHeader\":{\"labelValue\":\"955858\",\"primaryLabelValue\":\"955858\"}},{\"attributeHeader\":{\"labelValue\":\"955860\",\"primaryLabelValue\":\"955860\"}},{\"attributeHeader\":{\"labelValue\":\"955862\",\"primaryLabelValue\":\"955862\"}},{\"attributeHeader\":{\"labelValue\":\"955864\",\"primaryLabelValue\":\"955864\"}},{\"attributeHeader\":{\"labelValue\":\"955866\",\"primaryLabelValue\":\"955866\"}},{\"attributeHeader\":{\"labelValue\":\"955868\",\"primaryLabelValue\":\"955868\"}},{\"attributeHeader\":{\"labelValue\":\"955870\",\"primaryLabelValue\":\"955870\"}},{\"attributeHeader\":{\"labelValue\":\"955872\",\"primaryLabelValue\":\"955872\"}},{\"attributeHeader\":{\"labelValue\":\"955874\",\"primaryLabelValue\":\"955874\"}},{\"attributeHeader\":{\"labelValue\":\"955876\",\"primaryLabelValue\":\"955876\"}},{\"attributeHeader\":{\"labelValue\":\"955878\",\"primaryLabelValue\":\"955878\"}},{\"attributeHeader\":{\"labelValue\":\"955880\",\"primaryLabelValue\":\"955880\"}},{\"attributeHeader\":{\"labelValue\":\"955882\",\"primaryLabelValue\":\"955882\"}},{\"attributeHeader\":{\"labelValue\":\"955884\",\"primaryLabelValue\":\"955884\"}},{\"attributeHeader\":{\"labelValue\":\"955886\",\"primaryLabelValue\":\"955886\"}},{\"attributeHeader\":{\"labelValue\":\"955888\",\"primaryLabelValue\":\"955888\"}},{\"attributeHeader\":{\"labelValue\":\"955890\",\"primaryLabelValue\":\"955890\"}},{\"attributeHeader\":{\"labelValue\":\"955892\",\"primaryLabelValue\":\"955892\"}},{\"attributeHeader\":{\"labelValue\":\"955894\",\"primaryLabelValue\":\"955894\"}},{\"attributeHeader\":{\"labelValue\":\"955896\",\"primaryLabelValue\":\"955896\"}},{\"attributeHeader\":{\"labelValue\":\"955898\",\"primaryLabelValue\":\"955898\"}},{\"attributeHeader\":{\"labelValue\":\"955900\",\"primaryLabelValue\":\"955900\"}},{\"attributeHeader\":{\"labelValue\":\"955902\",\"primaryLabelValue\":\"955902\"}},{\"attributeHeader\":{\"labelValue\":\"955904\",\"primaryLabelValue\":\"955904\"}},{\"attributeHeader\":{\"labelValue\":\"955906\",\"primaryLabelValue\":\"955906\"}},{\"attributeHeader\":{\"labelValue\":\"955908\",\"primaryLabelValue\":\"955908\"}},{\"attributeHeader\":{\"labelValue\":\"955910\",\"primaryLabelValue\":\"955910\"}},{\"attributeHeader\":{\"labelValue\":\"955912\",\"primaryLabelValue\":\"955912\"}},{\"attributeHeader\":{\"labelValue\":\"955914\",\"primaryLabelValue\":\"955914\"}},{\"attributeHeader\":{\"labelValue\":\"955916\",\"primaryLabelValue\":\"955916\"}},{\"attributeHeader\":{\"labelValue\":\"955918\",\"primaryLabelValue\":\"955918\"}},{\"attributeHeader\":{\"labelValue\":\"955920\",\"primaryLabelValue\":\"955920\"}},{\"attributeHeader\":{\"labelValue\":\"955922\",\"primaryLabelValue\":\"955922\"}},{\"attributeHeader\":{\"labelValue\":\"955924\",\"primaryLabelValue\":\"955924\"}},{\"attributeHeader\":{\"labelValue\":\"955926\",\"primaryLabelValue\":\"955926\"}},{\"attributeHeader\":{\"labelValue\":\"955928\",\"primaryLabelValue\":\"955928\"}},{\"attributeHeader\":{\"labelValue\":\"955930\",\"primaryLabelValue\":\"955930\"}},{\"attributeHeader\":{\"labelValue\":\"955932\",\"primaryLabelValue\":\"955932\"}},{\"attributeHeader\":{\"labelValue\":\"955934\",\"primaryLabelValue\":\"955934\"}},{\"attributeHeader\":{\"labelValue\":\"955936\",\"primaryLabelValue\":\"955936\"}},{\"attributeHeader\":{\"labelValue\":\"955938\",\"primaryLabelValue\":\"955938\"}},{\"attributeHeader\":{\"labelValue\":\"955940\",\"primaryLabelValue\":\"955940\"}},{\"attributeHeader\":{\"labelValue\":\"955942\",\"primaryLabelValue\":\"955942\"}},{\"attributeHeader\":{\"labelValue\":\"955944\",\"primaryLabelValue\":\"955944\"}},{\"attributeHeader\":{\"labelValue\":\"955946\",\"primaryLabelValue\":\"955946\"}},{\"attributeHeader\":{\"labelValue\":\"955948\",\"primaryLabelValue\":\"955948\"}},{\"attributeHeader\":{\"labelValue\":\"955950\",\"primaryLabelValue\":\"955950\"}},{\"attributeHeader\":{\"labelValue\":\"955952\",\"primaryLabelValue\":\"955952\"}},{\"attributeHeader\":{\"labelValue\":\"955954\",\"primaryLabelValue\":\"955954\"}},{\"attributeHeader\":{\"labelValue\":\"955958\",\"primaryLabelValue\":\"955958\"}},{\"attributeHeader\":{\"labelValue\":\"955960\",\"primaryLabelValue\":\"955960\"}},{\"attributeHeader\":{\"labelValue\":\"955962\",\"primaryLabelValue\":\"955962\"}},{\"attributeHeader\":{\"labelValue\":\"955964\",\"primaryLabelValue\":\"955964\"}},{\"attributeHeader\":{\"labelValue\":\"955966\",\"primaryLabelValue\":\"955966\"}},{\"attributeHeader\":{\"labelValue\":\"955968\",\"primaryLabelValue\":\"955968\"}},{\"attributeHeader\":{\"labelValue\":\"955970\",\"primaryLabelValue\":\"955970\"}},{\"attributeHeader\":{\"labelValue\":\"955972\",\"primaryLabelValue\":\"955972\"}},{\"attributeHeader\":{\"labelValue\":\"955974\",\"primaryLabelValue\":\"955974\"}},{\"attributeHeader\":{\"labelValue\":\"955976\",\"primaryLabelValue\":\"955976\"}},{\"attributeHeader\":{\"labelValue\":\"955978\",\"primaryLabelValue\":\"955978\"}},{\"attributeHeader\":{\"labelValue\":\"955980\",\"primaryLabelValue\":\"955980\"}},{\"attributeHeader\":{\"labelValue\":\"955982\",\"primaryLabelValue\":\"955982\"}},{\"attributeHeader\":{\"labelValue\":\"955984\",\"primaryLabelValue\":\"955984\"}},{\"attributeHeader\":{\"labelValue\":\"955986\",\"primaryLabelValue\":\"955986\"}},{\"attributeHeader\":{\"labelValue\":\"955988\",\"primaryLabelValue\":\"955988\"}},{\"attributeHeader\":{\"labelValue\":\"955990\",\"primaryLabelValue\":\"955990\"}},{\"attributeHeader\":{\"labelValue\":\"955992\",\"primaryLabelValue\":\"955992\"}},{\"attributeHeader\":{\"labelValue\":\"955994\",\"primaryLabelValue\":\"955994\"}},{\"attributeHeader\":{\"labelValue\":\"955996\",\"primaryLabelValue\":\"955996\"}},{\"attributeHeader\":{\"labelValue\":\"955998\",\"primaryLabelValue\":\"955998\"}},{\"attributeHeader\":{\"labelValue\":\"956000\",\"primaryLabelValue\":\"956000\"}},{\"attributeHeader\":{\"labelValue\":\"956002\",\"primaryLabelValue\":\"956002\"}},{\"attributeHeader\":{\"labelValue\":\"956004\",\"primaryLabelValue\":\"956004\"}},{\"attributeHeader\":{\"labelValue\":\"956006\",\"primaryLabelValue\":\"956006\"}},{\"attributeHeader\":{\"labelValue\":\"956008\",\"primaryLabelValue\":\"956008\"}},{\"attributeHeader\":{\"labelValue\":\"956010\",\"primaryLabelValue\":\"956010\"}},{\"attributeHeader\":{\"labelValue\":\"956012\",\"primaryLabelValue\":\"956012\"}},{\"attributeHeader\":{\"labelValue\":\"956014\",\"primaryLabelValue\":\"956014\"}},{\"attributeHeader\":{\"labelValue\":\"956016\",\"primaryLabelValue\":\"956016\"}},{\"attributeHeader\":{\"labelValue\":\"956018\",\"primaryLabelValue\":\"956018\"}},{\"attributeHeader\":{\"labelValue\":\"956020\",\"primaryLabelValue\":\"956020\"}},{\"attributeHeader\":{\"labelValue\":\"956022\",\"primaryLabelValue\":\"956022\"}},{\"attributeHeader\":{\"labelValue\":\"956024\",\"primaryLabelValue\":\"956024\"}},{\"attributeHeader\":{\"labelValue\":\"956026\",\"primaryLabelValue\":\"956026\"}},{\"attributeHeader\":{\"labelValue\":\"956028\",\"primaryLabelValue\":\"956028\"}},{\"attributeHeader\":{\"labelValue\":\"956030\",\"primaryLabelValue\":\"956030\"}},{\"attributeHeader\":{\"labelValue\":\"956032\",\"primaryLabelValue\":\"956032\"}},{\"attributeHeader\":{\"labelValue\":\"956034\",\"primaryLabelValue\":\"956034\"}},{\"attributeHeader\":{\"labelValue\":\"956036\",\"primaryLabelValue\":\"956036\"}},{\"attributeHeader\":{\"labelValue\":\"956038\",\"primaryLabelValue\":\"956038\"}},{\"attributeHeader\":{\"labelValue\":\"956040\",\"primaryLabelValue\":\"956040\"}},{\"attributeHeader\":{\"labelValue\":\"956042\",\"primaryLabelValue\":\"956042\"}},{\"attributeHeader\":{\"labelValue\":\"956044\",\"primaryLabelValue\":\"956044\"}},{\"attributeHeader\":{\"labelValue\":\"956046\",\"primaryLabelValue\":\"956046\"}},{\"attributeHeader\":{\"labelValue\":\"956048\",\"primaryLabelValue\":\"956048\"}},{\"attributeHeader\":{\"labelValue\":\"956050\",\"primaryLabelValue\":\"956050\"}},{\"attributeHeader\":{\"labelValue\":\"956052\",\"primaryLabelValue\":\"956052\"}},{\"attributeHeader\":{\"labelValue\":\"956054\",\"primaryLabelValue\":\"956054\"}},{\"attributeHeader\":{\"labelValue\":\"956056\",\"primaryLabelValue\":\"956056\"}},{\"attributeHeader\":{\"labelValue\":\"956058\",\"primaryLabelValue\":\"956058\"}},{\"attributeHeader\":{\"labelValue\":\"956060\",\"primaryLabelValue\":\"956060\"}},{\"attributeHeader\":{\"labelValue\":\"956062\",\"primaryLabelValue\":\"956062\"}},{\"attributeHeader\":{\"labelValue\":\"956064\",\"primaryLabelValue\":\"956064\"}},{\"attributeHeader\":{\"labelValue\":\"956066\",\"primaryLabelValue\":\"956066\"}},{\"attributeHeader\":{\"labelValue\":\"956068\",\"primaryLabelValue\":\"956068\"}},{\"attributeHeader\":{\"labelValue\":\"956070\",\"primaryLabelValue\":\"956070\"}},{\"attributeHeader\":{\"labelValue\":\"956072\",\"primaryLabelValue\":\"956072\"}},{\"attributeHeader\":{\"labelValue\":\"956074\",\"primaryLabelValue\":\"956074\"}},{\"attributeHeader\":{\"labelValue\":\"956076\",\"primaryLabelValue\":\"956076\"}},{\"attributeHeader\":{\"labelValue\":\"956078\",\"primaryLabelValue\":\"956078\"}},{\"attributeHeader\":{\"labelValue\":\"956080\",\"primaryLabelValue\":\"956080\"}},{\"attributeHeader\":{\"labelValue\":\"956082\",\"primaryLabelValue\":\"956082\"}},{\"attributeHeader\":{\"labelValue\":\"956084\",\"primaryLabelValue\":\"956084\"}},{\"attributeHeader\":{\"labelValue\":\"956086\",\"primaryLabelValue\":\"956086\"}},{\"attributeHeader\":{\"labelValue\":\"956088\",\"primaryLabelValue\":\"956088\"}},{\"attributeHeader\":{\"labelValue\":\"956090\",\"primaryLabelValue\":\"956090\"}},{\"attributeHeader\":{\"labelValue\":\"956092\",\"primaryLabelValue\":\"956092\"}},{\"attributeHeader\":{\"labelValue\":\"956094\",\"primaryLabelValue\":\"956094\"}},{\"attributeHeader\":{\"labelValue\":\"956096\",\"primaryLabelValue\":\"956096\"}},{\"attributeHeader\":{\"labelValue\":\"956098\",\"primaryLabelValue\":\"956098\"}},{\"attributeHeader\":{\"labelValue\":\"956100\",\"primaryLabelValue\":\"956100\"}},{\"attributeHeader\":{\"labelValue\":\"956102\",\"primaryLabelValue\":\"956102\"}},{\"attributeHeader\":{\"labelValue\":\"956104\",\"primaryLabelValue\":\"956104\"}},{\"attributeHeader\":{\"labelValue\":\"956106\",\"primaryLabelValue\":\"956106\"}},{\"attributeHeader\":{\"labelValue\":\"956108\",\"primaryLabelValue\":\"956108\"}},{\"attributeHeader\":{\"labelValue\":\"956110\",\"primaryLabelValue\":\"956110\"}},{\"attributeHeader\":{\"labelValue\":\"956112\",\"primaryLabelValue\":\"956112\"}},{\"attributeHeader\":{\"labelValue\":\"956114\",\"primaryLabelValue\":\"956114\"}},{\"attributeHeader\":{\"labelValue\":\"956116\",\"primaryLabelValue\":\"956116\"}},{\"attributeHeader\":{\"labelValue\":\"956118\",\"primaryLabelValue\":\"956118\"}},{\"attributeHeader\":{\"labelValue\":\"956120\",\"primaryLabelValue\":\"956120\"}},{\"attributeHeader\":{\"labelValue\":\"956122\",\"primaryLabelValue\":\"956122\"}},{\"attributeHeader\":{\"labelValue\":\"956124\",\"primaryLabelValue\":\"956124\"}},{\"attributeHeader\":{\"labelValue\":\"956126\",\"primaryLabelValue\":\"956126\"}},{\"attributeHeader\":{\"labelValue\":\"956128\",\"primaryLabelValue\":\"956128\"}},{\"attributeHeader\":{\"labelValue\":\"956130\",\"primaryLabelValue\":\"956130\"}},{\"attributeHeader\":{\"labelValue\":\"956132\",\"primaryLabelValue\":\"956132\"}},{\"attributeHeader\":{\"labelValue\":\"956134\",\"primaryLabelValue\":\"956134\"}},{\"attributeHeader\":{\"labelValue\":\"956136\",\"primaryLabelValue\":\"956136\"}},{\"attributeHeader\":{\"labelValue\":\"956138\",\"primaryLabelValue\":\"956138\"}},{\"attributeHeader\":{\"labelValue\":\"956140\",\"primaryLabelValue\":\"956140\"}},{\"attributeHeader\":{\"labelValue\":\"956142\",\"primaryLabelValue\":\"956142\"}},{\"attributeHeader\":{\"labelValue\":\"956144\",\"primaryLabelValue\":\"956144\"}},{\"attributeHeader\":{\"labelValue\":\"956146\",\"primaryLabelValue\":\"956146\"}},{\"attributeHeader\":{\"labelValue\":\"956148\",\"primaryLabelValue\":\"956148\"}},{\"attributeHeader\":{\"labelValue\":\"956150\",\"primaryLabelValue\":\"956150\"}},{\"attributeHeader\":{\"labelValue\":\"956152\",\"primaryLabelValue\":\"956152\"}},{\"attributeHeader\":{\"labelValue\":\"956154\",\"primaryLabelValue\":\"956154\"}},{\"attributeHeader\":{\"labelValue\":\"956156\",\"primaryLabelValue\":\"956156\"}},{\"attributeHeader\":{\"labelValue\":\"956158\",\"primaryLabelValue\":\"956158\"}},{\"attributeHeader\":{\"labelValue\":\"956160\",\"primaryLabelValue\":\"956160\"}},{\"attributeHeader\":{\"labelValue\":\"956162\",\"primaryLabelValue\":\"956162\"}},{\"attributeHeader\":{\"labelValue\":\"956164\",\"primaryLabelValue\":\"956164\"}},{\"attributeHeader\":{\"labelValue\":\"956166\",\"primaryLabelValue\":\"956166\"}},{\"attributeHeader\":{\"labelValue\":\"956168\",\"primaryLabelValue\":\"956168\"}},{\"attributeHeader\":{\"labelValue\":\"956170\",\"primaryLabelValue\":\"956170\"}},{\"attributeHeader\":{\"labelValue\":\"956172\",\"primaryLabelValue\":\"956172\"}},{\"attributeHeader\":{\"labelValue\":\"956174\",\"primaryLabelValue\":\"956174\"}},{\"attributeHeader\":{\"labelValue\":\"956176\",\"primaryLabelValue\":\"956176\"}},{\"attributeHeader\":{\"labelValue\":\"956178\",\"primaryLabelValue\":\"956178\"}},{\"attributeHeader\":{\"labelValue\":\"956180\",\"primaryLabelValue\":\"956180\"}},{\"attributeHeader\":{\"labelValue\":\"956182\",\"primaryLabelValue\":\"956182\"}},{\"attributeHeader\":{\"labelValue\":\"956184\",\"primaryLabelValue\":\"956184\"}},{\"attributeHeader\":{\"labelValue\":\"956186\",\"primaryLabelValue\":\"956186\"}},{\"attributeHeader\":{\"labelValue\":\"956188\",\"primaryLabelValue\":\"956188\"}},{\"attributeHeader\":{\"labelValue\":\"956190\",\"primaryLabelValue\":\"956190\"}},{\"attributeHeader\":{\"labelValue\":\"956192\",\"primaryLabelValue\":\"956192\"}},{\"attributeHeader\":{\"labelValue\":\"956194\",\"primaryLabelValue\":\"956194\"}},{\"attributeHeader\":{\"labelValue\":\"956196\",\"primaryLabelValue\":\"956196\"}},{\"attributeHeader\":{\"labelValue\":\"956198\",\"primaryLabelValue\":\"956198\"}},{\"attributeHeader\":{\"labelValue\":\"956200\",\"primaryLabelValue\":\"956200\"}},{\"attributeHeader\":{\"labelValue\":\"956202\",\"primaryLabelValue\":\"956202\"}},{\"attributeHeader\":{\"labelValue\":\"956204\",\"primaryLabelValue\":\"956204\"}},{\"attributeHeader\":{\"labelValue\":\"956206\",\"primaryLabelValue\":\"956206\"}},{\"attributeHeader\":{\"labelValue\":\"956208\",\"primaryLabelValue\":\"956208\"}},{\"attributeHeader\":{\"labelValue\":\"956210\",\"primaryLabelValue\":\"956210\"}},{\"attributeHeader\":{\"labelValue\":\"956212\",\"primaryLabelValue\":\"956212\"}},{\"attributeHeader\":{\"labelValue\":\"956216\",\"primaryLabelValue\":\"956216\"}},{\"attributeHeader\":{\"labelValue\":\"956218\",\"primaryLabelValue\":\"956218\"}},{\"attributeHeader\":{\"labelValue\":\"956220\",\"primaryLabelValue\":\"956220\"}},{\"attributeHeader\":{\"labelValue\":\"956222\",\"primaryLabelValue\":\"956222\"}},{\"attributeHeader\":{\"labelValue\":\"956224\",\"primaryLabelValue\":\"956224\"}},{\"attributeHeader\":{\"labelValue\":\"956226\",\"primaryLabelValue\":\"956226\"}},{\"attributeHeader\":{\"labelValue\":\"956228\",\"primaryLabelValue\":\"956228\"}},{\"attributeHeader\":{\"labelValue\":\"956230\",\"primaryLabelValue\":\"956230\"}},{\"attributeHeader\":{\"labelValue\":\"956232\",\"primaryLabelValue\":\"956232\"}},{\"attributeHeader\":{\"labelValue\":\"956234\",\"primaryLabelValue\":\"956234\"}},{\"attributeHeader\":{\"labelValue\":\"956236\",\"primaryLabelValue\":\"956236\"}},{\"attributeHeader\":{\"labelValue\":\"956238\",\"primaryLabelValue\":\"956238\"}},{\"attributeHeader\":{\"labelValue\":\"956240\",\"primaryLabelValue\":\"956240\"}},{\"attributeHeader\":{\"labelValue\":\"956242\",\"primaryLabelValue\":\"956242\"}},{\"attributeHeader\":{\"labelValue\":\"956244\",\"primaryLabelValue\":\"956244\"}},{\"attributeHeader\":{\"labelValue\":\"956246\",\"primaryLabelValue\":\"956246\"}},{\"attributeHeader\":{\"labelValue\":\"956248\",\"primaryLabelValue\":\"956248\"}},{\"attributeHeader\":{\"labelValue\":\"956250\",\"primaryLabelValue\":\"956250\"}},{\"attributeHeader\":{\"labelValue\":\"956252\",\"primaryLabelValue\":\"956252\"}},{\"attributeHeader\":{\"labelValue\":\"956254\",\"primaryLabelValue\":\"956254\"}},{\"attributeHeader\":{\"labelValue\":\"956256\",\"primaryLabelValue\":\"956256\"}},{\"attributeHeader\":{\"labelValue\":\"956258\",\"primaryLabelValue\":\"956258\"}},{\"attributeHeader\":{\"labelValue\":\"956260\",\"primaryLabelValue\":\"956260\"}},{\"attributeHeader\":{\"labelValue\":\"956262\",\"primaryLabelValue\":\"956262\"}},{\"attributeHeader\":{\"labelValue\":\"956264\",\"primaryLabelValue\":\"956264\"}},{\"attributeHeader\":{\"labelValue\":\"956266\",\"primaryLabelValue\":\"956266\"}},{\"attributeHeader\":{\"labelValue\":\"956268\",\"primaryLabelValue\":\"956268\"}},{\"attributeHeader\":{\"labelValue\":\"956270\",\"primaryLabelValue\":\"956270\"}},{\"attributeHeader\":{\"labelValue\":\"956272\",\"primaryLabelValue\":\"956272\"}},{\"attributeHeader\":{\"labelValue\":\"956274\",\"primaryLabelValue\":\"956274\"}},{\"attributeHeader\":{\"labelValue\":\"956276\",\"primaryLabelValue\":\"956276\"}},{\"attributeHeader\":{\"labelValue\":\"956278\",\"primaryLabelValue\":\"956278\"}},{\"attributeHeader\":{\"labelValue\":\"956280\",\"primaryLabelValue\":\"956280\"}},{\"attributeHeader\":{\"labelValue\":\"956282\",\"primaryLabelValue\":\"956282\"}},{\"attributeHeader\":{\"labelValue\":\"956284\",\"primaryLabelValue\":\"956284\"}},{\"attributeHeader\":{\"labelValue\":\"956286\",\"primaryLabelValue\":\"956286\"}},{\"attributeHeader\":{\"labelValue\":\"956288\",\"primaryLabelValue\":\"956288\"}},{\"attributeHeader\":{\"labelValue\":\"956292\",\"primaryLabelValue\":\"956292\"}},{\"attributeHeader\":{\"labelValue\":\"956294\",\"primaryLabelValue\":\"956294\"}},{\"attributeHeader\":{\"labelValue\":\"956296\",\"primaryLabelValue\":\"956296\"}},{\"attributeHeader\":{\"labelValue\":\"956298\",\"primaryLabelValue\":\"956298\"}},{\"attributeHeader\":{\"labelValue\":\"956300\",\"primaryLabelValue\":\"956300\"}},{\"attributeHeader\":{\"labelValue\":\"956302\",\"primaryLabelValue\":\"956302\"}},{\"attributeHeader\":{\"labelValue\":\"956304\",\"primaryLabelValue\":\"956304\"}},{\"attributeHeader\":{\"labelValue\":\"956306\",\"primaryLabelValue\":\"956306\"}},{\"attributeHeader\":{\"labelValue\":\"956308\",\"primaryLabelValue\":\"956308\"}},{\"attributeHeader\":{\"labelValue\":\"956310\",\"primaryLabelValue\":\"956310\"}},{\"attributeHeader\":{\"labelValue\":\"956312\",\"primaryLabelValue\":\"956312\"}},{\"attributeHeader\":{\"labelValue\":\"956314\",\"primaryLabelValue\":\"956314\"}},{\"attributeHeader\":{\"labelValue\":\"956316\",\"primaryLabelValue\":\"956316\"}},{\"attributeHeader\":{\"labelValue\":\"956318\",\"primaryLabelValue\":\"956318\"}},{\"attributeHeader\":{\"labelValue\":\"956320\",\"primaryLabelValue\":\"956320\"}},{\"attributeHeader\":{\"labelValue\":\"956322\",\"primaryLabelValue\":\"956322\"}},{\"attributeHeader\":{\"labelValue\":\"956324\",\"primaryLabelValue\":\"956324\"}},{\"attributeHeader\":{\"labelValue\":\"956326\",\"primaryLabelValue\":\"956326\"}},{\"attributeHeader\":{\"labelValue\":\"956328\",\"primaryLabelValue\":\"956328\"}},{\"attributeHeader\":{\"labelValue\":\"956330\",\"primaryLabelValue\":\"956330\"}},{\"attributeHeader\":{\"labelValue\":\"956332\",\"primaryLabelValue\":\"956332\"}},{\"attributeHeader\":{\"labelValue\":\"956334\",\"primaryLabelValue\":\"956334\"}},{\"attributeHeader\":{\"labelValue\":\"956336\",\"primaryLabelValue\":\"956336\"}},{\"attributeHeader\":{\"labelValue\":\"956338\",\"primaryLabelValue\":\"956338\"}},{\"attributeHeader\":{\"labelValue\":\"956340\",\"primaryLabelValue\":\"956340\"}},{\"attributeHeader\":{\"labelValue\":\"956342\",\"primaryLabelValue\":\"956342\"}},{\"attributeHeader\":{\"labelValue\":\"956344\",\"primaryLabelValue\":\"956344\"}},{\"attributeHeader\":{\"labelValue\":\"956346\",\"primaryLabelValue\":\"956346\"}},{\"attributeHeader\":{\"labelValue\":\"956348\",\"primaryLabelValue\":\"956348\"}},{\"attributeHeader\":{\"labelValue\":\"956350\",\"primaryLabelValue\":\"956350\"}},{\"attributeHeader\":{\"labelValue\":\"956352\",\"primaryLabelValue\":\"956352\"}},{\"attributeHeader\":{\"labelValue\":\"956354\",\"primaryLabelValue\":\"956354\"}},{\"attributeHeader\":{\"labelValue\":\"956356\",\"primaryLabelValue\":\"956356\"}},{\"attributeHeader\":{\"labelValue\":\"956358\",\"primaryLabelValue\":\"956358\"}},{\"attributeHeader\":{\"labelValue\":\"956360\",\"primaryLabelValue\":\"956360\"}},{\"attributeHeader\":{\"labelValue\":\"956362\",\"primaryLabelValue\":\"956362\"}},{\"attributeHeader\":{\"labelValue\":\"956364\",\"primaryLabelValue\":\"956364\"}},{\"attributeHeader\":{\"labelValue\":\"956366\",\"primaryLabelValue\":\"956366\"}},{\"attributeHeader\":{\"labelValue\":\"956368\",\"primaryLabelValue\":\"956368\"}},{\"attributeHeader\":{\"labelValue\":\"956370\",\"primaryLabelValue\":\"956370\"}},{\"attributeHeader\":{\"labelValue\":\"956372\",\"primaryLabelValue\":\"956372\"}},{\"attributeHeader\":{\"labelValue\":\"956374\",\"primaryLabelValue\":\"956374\"}},{\"attributeHeader\":{\"labelValue\":\"956376\",\"primaryLabelValue\":\"956376\"}},{\"attributeHeader\":{\"labelValue\":\"956378\",\"primaryLabelValue\":\"956378\"}},{\"attributeHeader\":{\"labelValue\":\"956380\",\"primaryLabelValue\":\"956380\"}},{\"attributeHeader\":{\"labelValue\":\"956382\",\"primaryLabelValue\":\"956382\"}},{\"attributeHeader\":{\"labelValue\":\"956384\",\"primaryLabelValue\":\"956384\"}},{\"attributeHeader\":{\"labelValue\":\"956386\",\"primaryLabelValue\":\"956386\"}},{\"attributeHeader\":{\"labelValue\":\"956388\",\"primaryLabelValue\":\"956388\"}},{\"attributeHeader\":{\"labelValue\":\"956390\",\"primaryLabelValue\":\"956390\"}},{\"attributeHeader\":{\"labelValue\":\"956392\",\"primaryLabelValue\":\"956392\"}},{\"attributeHeader\":{\"labelValue\":\"956394\",\"primaryLabelValue\":\"956394\"}},{\"attributeHeader\":{\"labelValue\":\"956396\",\"primaryLabelValue\":\"956396\"}},{\"attributeHeader\":{\"labelValue\":\"956398\",\"primaryLabelValue\":\"956398\"}},{\"attributeHeader\":{\"labelValue\":\"956400\",\"primaryLabelValue\":\"956400\"}},{\"attributeHeader\":{\"labelValue\":\"956402\",\"primaryLabelValue\":\"956402\"}},{\"attributeHeader\":{\"labelValue\":\"956404\",\"primaryLabelValue\":\"956404\"}},{\"attributeHeader\":{\"labelValue\":\"956406\",\"primaryLabelValue\":\"956406\"}},{\"attributeHeader\":{\"labelValue\":\"956408\",\"primaryLabelValue\":\"956408\"}},{\"attributeHeader\":{\"labelValue\":\"956410\",\"primaryLabelValue\":\"956410\"}},{\"attributeHeader\":{\"labelValue\":\"956412\",\"primaryLabelValue\":\"956412\"}},{\"attributeHeader\":{\"labelValue\":\"956414\",\"primaryLabelValue\":\"956414\"}},{\"attributeHeader\":{\"labelValue\":\"956416\",\"primaryLabelValue\":\"956416\"}},{\"attributeHeader\":{\"labelValue\":\"956418\",\"primaryLabelValue\":\"956418\"}},{\"attributeHeader\":{\"labelValue\":\"956420\",\"primaryLabelValue\":\"956420\"}},{\"attributeHeader\":{\"labelValue\":\"956422\",\"primaryLabelValue\":\"956422\"}},{\"attributeHeader\":{\"labelValue\":\"956424\",\"primaryLabelValue\":\"956424\"}},{\"attributeHeader\":{\"labelValue\":\"956426\",\"primaryLabelValue\":\"956426\"}},{\"attributeHeader\":{\"labelValue\":\"956428\",\"primaryLabelValue\":\"956428\"}},{\"attributeHeader\":{\"labelValue\":\"956430\",\"primaryLabelValue\":\"956430\"}},{\"attributeHeader\":{\"labelValue\":\"956432\",\"primaryLabelValue\":\"956432\"}},{\"attributeHeader\":{\"labelValue\":\"956434\",\"primaryLabelValue\":\"956434\"}},{\"attributeHeader\":{\"labelValue\":\"956436\",\"primaryLabelValue\":\"956436\"}},{\"attributeHeader\":{\"labelValue\":\"956438\",\"primaryLabelValue\":\"956438\"}},{\"attributeHeader\":{\"labelValue\":\"956440\",\"primaryLabelValue\":\"956440\"}},{\"attributeHeader\":{\"labelValue\":\"956442\",\"primaryLabelValue\":\"956442\"}},{\"attributeHeader\":{\"labelValue\":\"956444\",\"primaryLabelValue\":\"956444\"}},{\"attributeHeader\":{\"labelValue\":\"956446\",\"primaryLabelValue\":\"956446\"}},{\"attributeHeader\":{\"labelValue\":\"956448\",\"primaryLabelValue\":\"956448\"}},{\"attributeHeader\":{\"labelValue\":\"956450\",\"primaryLabelValue\":\"956450\"}},{\"attributeHeader\":{\"labelValue\":\"956452\",\"primaryLabelValue\":\"956452\"}},{\"attributeHeader\":{\"labelValue\":\"956454\",\"primaryLabelValue\":\"956454\"}},{\"attributeHeader\":{\"labelValue\":\"956456\",\"primaryLabelValue\":\"956456\"}},{\"attributeHeader\":{\"labelValue\":\"956458\",\"primaryLabelValue\":\"956458\"}},{\"attributeHeader\":{\"labelValue\":\"956460\",\"primaryLabelValue\":\"956460\"}},{\"attributeHeader\":{\"labelValue\":\"956462\",\"primaryLabelValue\":\"956462\"}},{\"attributeHeader\":{\"labelValue\":\"956464\",\"primaryLabelValue\":\"956464\"}},{\"attributeHeader\":{\"labelValue\":\"956466\",\"primaryLabelValue\":\"956466\"}},{\"attributeHeader\":{\"labelValue\":\"956468\",\"primaryLabelValue\":\"956468\"}},{\"attributeHeader\":{\"labelValue\":\"956470\",\"primaryLabelValue\":\"956470\"}},{\"attributeHeader\":{\"labelValue\":\"956472\",\"primaryLabelValue\":\"956472\"}},{\"attributeHeader\":{\"labelValue\":\"956474\",\"primaryLabelValue\":\"956474\"}},{\"attributeHeader\":{\"labelValue\":\"956476\",\"primaryLabelValue\":\"956476\"}},{\"attributeHeader\":{\"labelValue\":\"956478\",\"primaryLabelValue\":\"956478\"}},{\"attributeHeader\":{\"labelValue\":\"956480\",\"primaryLabelValue\":\"956480\"}},{\"attributeHeader\":{\"labelValue\":\"956482\",\"primaryLabelValue\":\"956482\"}},{\"attributeHeader\":{\"labelValue\":\"956484\",\"primaryLabelValue\":\"956484\"}},{\"attributeHeader\":{\"labelValue\":\"956486\",\"primaryLabelValue\":\"956486\"}},{\"attributeHeader\":{\"labelValue\":\"956488\",\"primaryLabelValue\":\"956488\"}},{\"attributeHeader\":{\"labelValue\":\"956490\",\"primaryLabelValue\":\"956490\"}},{\"attributeHeader\":{\"labelValue\":\"956492\",\"primaryLabelValue\":\"956492\"}},{\"attributeHeader\":{\"labelValue\":\"956494\",\"primaryLabelValue\":\"956494\"}},{\"attributeHeader\":{\"labelValue\":\"956496\",\"primaryLabelValue\":\"956496\"}},{\"attributeHeader\":{\"labelValue\":\"956498\",\"primaryLabelValue\":\"956498\"}},{\"attributeHeader\":{\"labelValue\":\"956500\",\"primaryLabelValue\":\"956500\"}},{\"attributeHeader\":{\"labelValue\":\"956502\",\"primaryLabelValue\":\"956502\"}},{\"attributeHeader\":{\"labelValue\":\"956504\",\"primaryLabelValue\":\"956504\"}},{\"attributeHeader\":{\"labelValue\":\"956506\",\"primaryLabelValue\":\"956506\"}},{\"attributeHeader\":{\"labelValue\":\"956508\",\"primaryLabelValue\":\"956508\"}},{\"attributeHeader\":{\"labelValue\":\"956510\",\"primaryLabelValue\":\"956510\"}},{\"attributeHeader\":{\"labelValue\":\"956512\",\"primaryLabelValue\":\"956512\"}},{\"attributeHeader\":{\"labelValue\":\"956514\",\"primaryLabelValue\":\"956514\"}},{\"attributeHeader\":{\"labelValue\":\"956516\",\"primaryLabelValue\":\"956516\"}},{\"attributeHeader\":{\"labelValue\":\"956518\",\"primaryLabelValue\":\"956518\"}},{\"attributeHeader\":{\"labelValue\":\"956520\",\"primaryLabelValue\":\"956520\"}},{\"attributeHeader\":{\"labelValue\":\"956522\",\"primaryLabelValue\":\"956522\"}},{\"attributeHeader\":{\"labelValue\":\"956524\",\"primaryLabelValue\":\"956524\"}},{\"attributeHeader\":{\"labelValue\":\"956526\",\"primaryLabelValue\":\"956526\"}},{\"attributeHeader\":{\"labelValue\":\"956528\",\"primaryLabelValue\":\"956528\"}},{\"attributeHeader\":{\"labelValue\":\"956530\",\"primaryLabelValue\":\"956530\"}},{\"attributeHeader\":{\"labelValue\":\"956532\",\"primaryLabelValue\":\"956532\"}},{\"attributeHeader\":{\"labelValue\":\"956534\",\"primaryLabelValue\":\"956534\"}},{\"attributeHeader\":{\"labelValue\":\"956536\",\"primaryLabelValue\":\"956536\"}},{\"attributeHeader\":{\"labelValue\":\"956538\",\"primaryLabelValue\":\"956538\"}},{\"attributeHeader\":{\"labelValue\":\"956540\",\"primaryLabelValue\":\"956540\"}},{\"attributeHeader\":{\"labelValue\":\"956542\",\"primaryLabelValue\":\"956542\"}},{\"attributeHeader\":{\"labelValue\":\"956544\",\"primaryLabelValue\":\"956544\"}},{\"attributeHeader\":{\"labelValue\":\"956546\",\"primaryLabelValue\":\"956546\"}},{\"attributeHeader\":{\"labelValue\":\"956548\",\"primaryLabelValue\":\"956548\"}},{\"attributeHeader\":{\"labelValue\":\"956550\",\"primaryLabelValue\":\"956550\"}},{\"attributeHeader\":{\"labelValue\":\"956552\",\"primaryLabelValue\":\"956552\"}},{\"attributeHeader\":{\"labelValue\":\"956554\",\"primaryLabelValue\":\"956554\"}},{\"attributeHeader\":{\"labelValue\":\"956556\",\"primaryLabelValue\":\"956556\"}},{\"attributeHeader\":{\"labelValue\":\"956558\",\"primaryLabelValue\":\"956558\"}},{\"attributeHeader\":{\"labelValue\":\"956560\",\"primaryLabelValue\":\"956560\"}},{\"attributeHeader\":{\"labelValue\":\"956562\",\"primaryLabelValue\":\"956562\"}},{\"attributeHeader\":{\"labelValue\":\"956564\",\"primaryLabelValue\":\"956564\"}},{\"attributeHeader\":{\"labelValue\":\"956566\",\"primaryLabelValue\":\"956566\"}},{\"attributeHeader\":{\"labelValue\":\"956568\",\"primaryLabelValue\":\"956568\"}},{\"attributeHeader\":{\"labelValue\":\"956570\",\"primaryLabelValue\":\"956570\"}},{\"attributeHeader\":{\"labelValue\":\"956572\",\"primaryLabelValue\":\"956572\"}},{\"attributeHeader\":{\"labelValue\":\"956574\",\"primaryLabelValue\":\"956574\"}},{\"attributeHeader\":{\"labelValue\":\"956576\",\"primaryLabelValue\":\"956576\"}},{\"attributeHeader\":{\"labelValue\":\"956578\",\"primaryLabelValue\":\"956578\"}},{\"attributeHeader\":{\"labelValue\":\"956580\",\"primaryLabelValue\":\"956580\"}},{\"attributeHeader\":{\"labelValue\":\"956582\",\"primaryLabelValue\":\"956582\"}},{\"attributeHeader\":{\"labelValue\":\"956584\",\"primaryLabelValue\":\"956584\"}},{\"attributeHeader\":{\"labelValue\":\"956586\",\"primaryLabelValue\":\"956586\"}},{\"attributeHeader\":{\"labelValue\":\"956588\",\"primaryLabelValue\":\"956588\"}},{\"attributeHeader\":{\"labelValue\":\"956590\",\"primaryLabelValue\":\"956590\"}},{\"attributeHeader\":{\"labelValue\":\"956592\",\"primaryLabelValue\":\"956592\"}},{\"attributeHeader\":{\"labelValue\":\"956594\",\"primaryLabelValue\":\"956594\"}},{\"attributeHeader\":{\"labelValue\":\"956596\",\"primaryLabelValue\":\"956596\"}},{\"attributeHeader\":{\"labelValue\":\"956598\",\"primaryLabelValue\":\"956598\"}},{\"attributeHeader\":{\"labelValue\":\"956600\",\"primaryLabelValue\":\"956600\"}},{\"attributeHeader\":{\"labelValue\":\"956602\",\"primaryLabelValue\":\"956602\"}},{\"attributeHeader\":{\"labelValue\":\"956604\",\"primaryLabelValue\":\"956604\"}},{\"attributeHeader\":{\"labelValue\":\"956606\",\"primaryLabelValue\":\"956606\"}},{\"attributeHeader\":{\"labelValue\":\"956608\",\"primaryLabelValue\":\"956608\"}},{\"attributeHeader\":{\"labelValue\":\"956610\",\"primaryLabelValue\":\"956610\"}},{\"attributeHeader\":{\"labelValue\":\"956612\",\"primaryLabelValue\":\"956612\"}},{\"attributeHeader\":{\"labelValue\":\"956614\",\"primaryLabelValue\":\"956614\"}},{\"attributeHeader\":{\"labelValue\":\"956616\",\"primaryLabelValue\":\"956616\"}},{\"attributeHeader\":{\"labelValue\":\"956618\",\"primaryLabelValue\":\"956618\"}},{\"attributeHeader\":{\"labelValue\":\"956620\",\"primaryLabelValue\":\"956620\"}},{\"attributeHeader\":{\"labelValue\":\"956622\",\"primaryLabelValue\":\"956622\"}},{\"attributeHeader\":{\"labelValue\":\"956624\",\"primaryLabelValue\":\"956624\"}},{\"attributeHeader\":{\"labelValue\":\"956626\",\"primaryLabelValue\":\"956626\"}},{\"attributeHeader\":{\"labelValue\":\"956628\",\"primaryLabelValue\":\"956628\"}},{\"attributeHeader\":{\"labelValue\":\"956630\",\"primaryLabelValue\":\"956630\"}},{\"attributeHeader\":{\"labelValue\":\"956632\",\"primaryLabelValue\":\"956632\"}},{\"attributeHeader\":{\"labelValue\":\"956634\",\"primaryLabelValue\":\"956634\"}},{\"attributeHeader\":{\"labelValue\":\"956636\",\"primaryLabelValue\":\"956636\"}},{\"attributeHeader\":{\"labelValue\":\"956638\",\"primaryLabelValue\":\"956638\"}},{\"attributeHeader\":{\"labelValue\":\"956640\",\"primaryLabelValue\":\"956640\"}},{\"attributeHeader\":{\"labelValue\":\"956642\",\"primaryLabelValue\":\"956642\"}},{\"attributeHeader\":{\"labelValue\":\"956644\",\"primaryLabelValue\":\"956644\"}},{\"attributeHeader\":{\"labelValue\":\"956646\",\"primaryLabelValue\":\"956646\"}},{\"attributeHeader\":{\"labelValue\":\"956648\",\"primaryLabelValue\":\"956648\"}},{\"attributeHeader\":{\"labelValue\":\"956650\",\"primaryLabelValue\":\"956650\"}},{\"attributeHeader\":{\"labelValue\":\"956652\",\"primaryLabelValue\":\"956652\"}},{\"attributeHeader\":{\"labelValue\":\"956654\",\"primaryLabelValue\":\"956654\"}},{\"attributeHeader\":{\"labelValue\":\"956656\",\"primaryLabelValue\":\"956656\"}},{\"attributeHeader\":{\"labelValue\":\"956658\",\"primaryLabelValue\":\"956658\"}},{\"attributeHeader\":{\"labelValue\":\"956660\",\"primaryLabelValue\":\"956660\"}},{\"attributeHeader\":{\"labelValue\":\"956662\",\"primaryLabelValue\":\"956662\"}},{\"attributeHeader\":{\"labelValue\":\"956664\",\"primaryLabelValue\":\"956664\"}},{\"attributeHeader\":{\"labelValue\":\"956666\",\"primaryLabelValue\":\"956666\"}},{\"attributeHeader\":{\"labelValue\":\"956668\",\"primaryLabelValue\":\"956668\"}},{\"attributeHeader\":{\"labelValue\":\"956670\",\"primaryLabelValue\":\"956670\"}},{\"attributeHeader\":{\"labelValue\":\"956672\",\"primaryLabelValue\":\"956672\"}},{\"attributeHeader\":{\"labelValue\":\"956674\",\"primaryLabelValue\":\"956674\"}},{\"attributeHeader\":{\"labelValue\":\"956676\",\"primaryLabelValue\":\"956676\"}},{\"attributeHeader\":{\"labelValue\":\"956678\",\"primaryLabelValue\":\"956678\"}},{\"attributeHeader\":{\"labelValue\":\"956680\",\"primaryLabelValue\":\"956680\"}},{\"attributeHeader\":{\"labelValue\":\"956684\",\"primaryLabelValue\":\"956684\"}},{\"attributeHeader\":{\"labelValue\":\"956686\",\"primaryLabelValue\":\"956686\"}},{\"attributeHeader\":{\"labelValue\":\"956688\",\"primaryLabelValue\":\"956688\"}},{\"attributeHeader\":{\"labelValue\":\"956690\",\"primaryLabelValue\":\"956690\"}},{\"attributeHeader\":{\"labelValue\":\"956692\",\"primaryLabelValue\":\"956692\"}},{\"attributeHeader\":{\"labelValue\":\"956694\",\"primaryLabelValue\":\"956694\"}},{\"attributeHeader\":{\"labelValue\":\"956696\",\"primaryLabelValue\":\"956696\"}},{\"attributeHeader\":{\"labelValue\":\"956698\",\"primaryLabelValue\":\"956698\"}},{\"attributeHeader\":{\"labelValue\":\"956700\",\"primaryLabelValue\":\"956700\"}},{\"attributeHeader\":{\"labelValue\":\"956702\",\"primaryLabelValue\":\"956702\"}},{\"attributeHeader\":{\"labelValue\":\"956704\",\"primaryLabelValue\":\"956704\"}},{\"attributeHeader\":{\"labelValue\":\"956706\",\"primaryLabelValue\":\"956706\"}},{\"attributeHeader\":{\"labelValue\":\"956708\",\"primaryLabelValue\":\"956708\"}},{\"attributeHeader\":{\"labelValue\":\"956710\",\"primaryLabelValue\":\"956710\"}},{\"attributeHeader\":{\"labelValue\":\"956712\",\"primaryLabelValue\":\"956712\"}},{\"attributeHeader\":{\"labelValue\":\"956714\",\"primaryLabelValue\":\"956714\"}},{\"attributeHeader\":{\"labelValue\":\"956716\",\"primaryLabelValue\":\"956716\"}},{\"attributeHeader\":{\"labelValue\":\"956718\",\"primaryLabelValue\":\"956718\"}},{\"attributeHeader\":{\"labelValue\":\"956720\",\"primaryLabelValue\":\"956720\"}},{\"attributeHeader\":{\"labelValue\":\"956722\",\"primaryLabelValue\":\"956722\"}},{\"attributeHeader\":{\"labelValue\":\"956724\",\"primaryLabelValue\":\"956724\"}},{\"attributeHeader\":{\"labelValue\":\"956726\",\"primaryLabelValue\":\"956726\"}},{\"attributeHeader\":{\"labelValue\":\"956728\",\"primaryLabelValue\":\"956728\"}},{\"attributeHeader\":{\"labelValue\":\"956730\",\"primaryLabelValue\":\"956730\"}},{\"attributeHeader\":{\"labelValue\":\"956732\",\"primaryLabelValue\":\"956732\"}},{\"attributeHeader\":{\"labelValue\":\"956734\",\"primaryLabelValue\":\"956734\"}},{\"attributeHeader\":{\"labelValue\":\"956736\",\"primaryLabelValue\":\"956736\"}},{\"attributeHeader\":{\"labelValue\":\"956738\",\"primaryLabelValue\":\"956738\"}},{\"attributeHeader\":{\"labelValue\":\"956740\",\"primaryLabelValue\":\"956740\"}},{\"attributeHeader\":{\"labelValue\":\"956742\",\"primaryLabelValue\":\"956742\"}},{\"attributeHeader\":{\"labelValue\":\"956744\",\"primaryLabelValue\":\"956744\"}},{\"attributeHeader\":{\"labelValue\":\"956746\",\"primaryLabelValue\":\"956746\"}},{\"attributeHeader\":{\"labelValue\":\"956748\",\"primaryLabelValue\":\"956748\"}},{\"attributeHeader\":{\"labelValue\":\"956750\",\"primaryLabelValue\":\"956750\"}},{\"attributeHeader\":{\"labelValue\":\"956752\",\"primaryLabelValue\":\"956752\"}},{\"attributeHeader\":{\"labelValue\":\"956754\",\"primaryLabelValue\":\"956754\"}},{\"attributeHeader\":{\"labelValue\":\"956756\",\"primaryLabelValue\":\"956756\"}},{\"attributeHeader\":{\"labelValue\":\"956758\",\"primaryLabelValue\":\"956758\"}},{\"attributeHeader\":{\"labelValue\":\"956760\",\"primaryLabelValue\":\"956760\"}},{\"attributeHeader\":{\"labelValue\":\"956762\",\"primaryLabelValue\":\"956762\"}},{\"attributeHeader\":{\"labelValue\":\"956766\",\"primaryLabelValue\":\"956766\"}},{\"attributeHeader\":{\"labelValue\":\"956768\",\"primaryLabelValue\":\"956768\"}},{\"attributeHeader\":{\"labelValue\":\"956770\",\"primaryLabelValue\":\"956770\"}},{\"attributeHeader\":{\"labelValue\":\"956772\",\"primaryLabelValue\":\"956772\"}},{\"attributeHeader\":{\"labelValue\":\"956774\",\"primaryLabelValue\":\"956774\"}},{\"attributeHeader\":{\"labelValue\":\"956776\",\"primaryLabelValue\":\"956776\"}},{\"attributeHeader\":{\"labelValue\":\"956778\",\"primaryLabelValue\":\"956778\"}},{\"attributeHeader\":{\"labelValue\":\"956780\",\"primaryLabelValue\":\"956780\"}},{\"attributeHeader\":{\"labelValue\":\"956782\",\"primaryLabelValue\":\"956782\"}},{\"attributeHeader\":{\"labelValue\":\"956784\",\"primaryLabelValue\":\"956784\"}},{\"attributeHeader\":{\"labelValue\":\"956786\",\"primaryLabelValue\":\"956786\"}},{\"attributeHeader\":{\"labelValue\":\"956788\",\"primaryLabelValue\":\"956788\"}},{\"attributeHeader\":{\"labelValue\":\"956790\",\"primaryLabelValue\":\"956790\"}},{\"attributeHeader\":{\"labelValue\":\"956792\",\"primaryLabelValue\":\"956792\"}},{\"attributeHeader\":{\"labelValue\":\"956794\",\"primaryLabelValue\":\"956794\"}},{\"attributeHeader\":{\"labelValue\":\"956796\",\"primaryLabelValue\":\"956796\"}},{\"attributeHeader\":{\"labelValue\":\"956798\",\"primaryLabelValue\":\"956798\"}},{\"attributeHeader\":{\"labelValue\":\"956800\",\"primaryLabelValue\":\"956800\"}},{\"attributeHeader\":{\"labelValue\":\"956802\",\"primaryLabelValue\":\"956802\"}},{\"attributeHeader\":{\"labelValue\":\"956804\",\"primaryLabelValue\":\"956804\"}},{\"attributeHeader\":{\"labelValue\":\"956806\",\"primaryLabelValue\":\"956806\"}},{\"attributeHeader\":{\"labelValue\":\"956808\",\"primaryLabelValue\":\"956808\"}},{\"attributeHeader\":{\"labelValue\":\"956810\",\"primaryLabelValue\":\"956810\"}},{\"attributeHeader\":{\"labelValue\":\"956812\",\"primaryLabelValue\":\"956812\"}},{\"attributeHeader\":{\"labelValue\":\"956814\",\"primaryLabelValue\":\"956814\"}},{\"attributeHeader\":{\"labelValue\":\"956816\",\"primaryLabelValue\":\"956816\"}},{\"attributeHeader\":{\"labelValue\":\"956818\",\"primaryLabelValue\":\"956818\"}},{\"attributeHeader\":{\"labelValue\":\"956820\",\"primaryLabelValue\":\"956820\"}},{\"attributeHeader\":{\"labelValue\":\"956822\",\"primaryLabelValue\":\"956822\"}},{\"attributeHeader\":{\"labelValue\":\"956826\",\"primaryLabelValue\":\"956826\"}},{\"attributeHeader\":{\"labelValue\":\"956828\",\"primaryLabelValue\":\"956828\"}},{\"attributeHeader\":{\"labelValue\":\"956830\",\"primaryLabelValue\":\"956830\"}},{\"attributeHeader\":{\"labelValue\":\"956832\",\"primaryLabelValue\":\"956832\"}},{\"attributeHeader\":{\"labelValue\":\"956834\",\"primaryLabelValue\":\"956834\"}},{\"attributeHeader\":{\"labelValue\":\"956838\",\"primaryLabelValue\":\"956838\"}},{\"attributeHeader\":{\"labelValue\":\"956840\",\"primaryLabelValue\":\"956840\"}},{\"attributeHeader\":{\"labelValue\":\"956842\",\"primaryLabelValue\":\"956842\"}},{\"attributeHeader\":{\"labelValue\":\"956844\",\"primaryLabelValue\":\"956844\"}},{\"attributeHeader\":{\"labelValue\":\"956846\",\"primaryLabelValue\":\"956846\"}},{\"attributeHeader\":{\"labelValue\":\"956848\",\"primaryLabelValue\":\"956848\"}},{\"attributeHeader\":{\"labelValue\":\"956852\",\"primaryLabelValue\":\"956852\"}},{\"attributeHeader\":{\"labelValue\":\"956854\",\"primaryLabelValue\":\"956854\"}},{\"attributeHeader\":{\"labelValue\":\"956856\",\"primaryLabelValue\":\"956856\"}},{\"attributeHeader\":{\"labelValue\":\"956858\",\"primaryLabelValue\":\"956858\"}},{\"attributeHeader\":{\"labelValue\":\"956860\",\"primaryLabelValue\":\"956860\"}},{\"attributeHeader\":{\"labelValue\":\"956862\",\"primaryLabelValue\":\"956862\"}},{\"attributeHeader\":{\"labelValue\":\"956864\",\"primaryLabelValue\":\"956864\"}},{\"attributeHeader\":{\"labelValue\":\"956866\",\"primaryLabelValue\":\"956866\"}},{\"attributeHeader\":{\"labelValue\":\"956868\",\"primaryLabelValue\":\"956868\"}},{\"attributeHeader\":{\"labelValue\":\"956870\",\"primaryLabelValue\":\"956870\"}},{\"attributeHeader\":{\"labelValue\":\"956872\",\"primaryLabelValue\":\"956872\"}},{\"attributeHeader\":{\"labelValue\":\"956874\",\"primaryLabelValue\":\"956874\"}},{\"attributeHeader\":{\"labelValue\":\"956876\",\"primaryLabelValue\":\"956876\"}},{\"attributeHeader\":{\"labelValue\":\"956878\",\"primaryLabelValue\":\"956878\"}},{\"attributeHeader\":{\"labelValue\":\"956880\",\"primaryLabelValue\":\"956880\"}},{\"attributeHeader\":{\"labelValue\":\"956882\",\"primaryLabelValue\":\"956882\"}},{\"attributeHeader\":{\"labelValue\":\"956884\",\"primaryLabelValue\":\"956884\"}},{\"attributeHeader\":{\"labelValue\":\"956886\",\"primaryLabelValue\":\"956886\"}},{\"attributeHeader\":{\"labelValue\":\"956888\",\"primaryLabelValue\":\"956888\"}},{\"attributeHeader\":{\"labelValue\":\"956890\",\"primaryLabelValue\":\"956890\"}},{\"attributeHeader\":{\"labelValue\":\"956892\",\"primaryLabelValue\":\"956892\"}},{\"attributeHeader\":{\"labelValue\":\"956894\",\"primaryLabelValue\":\"956894\"}},{\"attributeHeader\":{\"labelValue\":\"956896\",\"primaryLabelValue\":\"956896\"}},{\"attributeHeader\":{\"labelValue\":\"956898\",\"primaryLabelValue\":\"956898\"}},{\"attributeHeader\":{\"labelValue\":\"956900\",\"primaryLabelValue\":\"956900\"}},{\"attributeHeader\":{\"labelValue\":\"956902\",\"primaryLabelValue\":\"956902\"}},{\"attributeHeader\":{\"labelValue\":\"956904\",\"primaryLabelValue\":\"956904\"}},{\"attributeHeader\":{\"labelValue\":\"956906\",\"primaryLabelValue\":\"956906\"}},{\"attributeHeader\":{\"labelValue\":\"956908\",\"primaryLabelValue\":\"956908\"}},{\"attributeHeader\":{\"labelValue\":\"956910\",\"primaryLabelValue\":\"956910\"}},{\"attributeHeader\":{\"labelValue\":\"956912\",\"primaryLabelValue\":\"956912\"}},{\"attributeHeader\":{\"labelValue\":\"956914\",\"primaryLabelValue\":\"956914\"}},{\"attributeHeader\":{\"labelValue\":\"956916\",\"primaryLabelValue\":\"956916\"}},{\"attributeHeader\":{\"labelValue\":\"956918\",\"primaryLabelValue\":\"956918\"}},{\"attributeHeader\":{\"labelValue\":\"956920\",\"primaryLabelValue\":\"956920\"}},{\"attributeHeader\":{\"labelValue\":\"956922\",\"primaryLabelValue\":\"956922\"}},{\"attributeHeader\":{\"labelValue\":\"956924\",\"primaryLabelValue\":\"956924\"}},{\"attributeHeader\":{\"labelValue\":\"956926\",\"primaryLabelValue\":\"956926\"}},{\"attributeHeader\":{\"labelValue\":\"956928\",\"primaryLabelValue\":\"956928\"}},{\"attributeHeader\":{\"labelValue\":\"956930\",\"primaryLabelValue\":\"956930\"}},{\"attributeHeader\":{\"labelValue\":\"956932\",\"primaryLabelValue\":\"956932\"}},{\"attributeHeader\":{\"labelValue\":\"956934\",\"primaryLabelValue\":\"956934\"}},{\"attributeHeader\":{\"labelValue\":\"956936\",\"primaryLabelValue\":\"956936\"}},{\"attributeHeader\":{\"labelValue\":\"956938\",\"primaryLabelValue\":\"956938\"}},{\"attributeHeader\":{\"labelValue\":\"956940\",\"primaryLabelValue\":\"956940\"}},{\"attributeHeader\":{\"labelValue\":\"956942\",\"primaryLabelValue\":\"956942\"}},{\"attributeHeader\":{\"labelValue\":\"956944\",\"primaryLabelValue\":\"956944\"}},{\"attributeHeader\":{\"labelValue\":\"956946\",\"primaryLabelValue\":\"956946\"}},{\"attributeHeader\":{\"labelValue\":\"956948\",\"primaryLabelValue\":\"956948\"}},{\"attributeHeader\":{\"labelValue\":\"956950\",\"primaryLabelValue\":\"956950\"}},{\"attributeHeader\":{\"labelValue\":\"956952\",\"primaryLabelValue\":\"956952\"}},{\"attributeHeader\":{\"labelValue\":\"956954\",\"primaryLabelValue\":\"956954\"}},{\"attributeHeader\":{\"labelValue\":\"956956\",\"primaryLabelValue\":\"956956\"}},{\"attributeHeader\":{\"labelValue\":\"956958\",\"primaryLabelValue\":\"956958\"}},{\"attributeHeader\":{\"labelValue\":\"956960\",\"primaryLabelValue\":\"956960\"}},{\"attributeHeader\":{\"labelValue\":\"956962\",\"primaryLabelValue\":\"956962\"}},{\"attributeHeader\":{\"labelValue\":\"956964\",\"primaryLabelValue\":\"956964\"}},{\"attributeHeader\":{\"labelValue\":\"956966\",\"primaryLabelValue\":\"956966\"}},{\"attributeHeader\":{\"labelValue\":\"956968\",\"primaryLabelValue\":\"956968\"}},{\"attributeHeader\":{\"labelValue\":\"956970\",\"primaryLabelValue\":\"956970\"}},{\"attributeHeader\":{\"labelValue\":\"956972\",\"primaryLabelValue\":\"956972\"}},{\"attributeHeader\":{\"labelValue\":\"956974\",\"primaryLabelValue\":\"956974\"}},{\"attributeHeader\":{\"labelValue\":\"956976\",\"primaryLabelValue\":\"956976\"}},{\"attributeHeader\":{\"labelValue\":\"956978\",\"primaryLabelValue\":\"956978\"}},{\"attributeHeader\":{\"labelValue\":\"956980\",\"primaryLabelValue\":\"956980\"}},{\"attributeHeader\":{\"labelValue\":\"956982\",\"primaryLabelValue\":\"956982\"}},{\"attributeHeader\":{\"labelValue\":\"956984\",\"primaryLabelValue\":\"956984\"}},{\"attributeHeader\":{\"labelValue\":\"956986\",\"primaryLabelValue\":\"956986\"}},{\"attributeHeader\":{\"labelValue\":\"956988\",\"primaryLabelValue\":\"956988\"}},{\"attributeHeader\":{\"labelValue\":\"956990\",\"primaryLabelValue\":\"956990\"}},{\"attributeHeader\":{\"labelValue\":\"956992\",\"primaryLabelValue\":\"956992\"}},{\"attributeHeader\":{\"labelValue\":\"956994\",\"primaryLabelValue\":\"956994\"}},{\"attributeHeader\":{\"labelValue\":\"956996\",\"primaryLabelValue\":\"956996\"}},{\"attributeHeader\":{\"labelValue\":\"956998\",\"primaryLabelValue\":\"956998\"}},{\"attributeHeader\":{\"labelValue\":\"957000\",\"primaryLabelValue\":\"957000\"}},{\"attributeHeader\":{\"labelValue\":\"957002\",\"primaryLabelValue\":\"957002\"}},{\"attributeHeader\":{\"labelValue\":\"957004\",\"primaryLabelValue\":\"957004\"}},{\"attributeHeader\":{\"labelValue\":\"957006\",\"primaryLabelValue\":\"957006\"}},{\"attributeHeader\":{\"labelValue\":\"957008\",\"primaryLabelValue\":\"957008\"}},{\"attributeHeader\":{\"labelValue\":\"957010\",\"primaryLabelValue\":\"957010\"}},{\"attributeHeader\":{\"labelValue\":\"957012\",\"primaryLabelValue\":\"957012\"}},{\"attributeHeader\":{\"labelValue\":\"957014\",\"primaryLabelValue\":\"957014\"}},{\"attributeHeader\":{\"labelValue\":\"957016\",\"primaryLabelValue\":\"957016\"}},{\"attributeHeader\":{\"labelValue\":\"957018\",\"primaryLabelValue\":\"957018\"}},{\"attributeHeader\":{\"labelValue\":\"957020\",\"primaryLabelValue\":\"957020\"}},{\"attributeHeader\":{\"labelValue\":\"957022\",\"primaryLabelValue\":\"957022\"}},{\"attributeHeader\":{\"labelValue\":\"957024\",\"primaryLabelValue\":\"957024\"}},{\"attributeHeader\":{\"labelValue\":\"957026\",\"primaryLabelValue\":\"957026\"}},{\"attributeHeader\":{\"labelValue\":\"957028\",\"primaryLabelValue\":\"957028\"}},{\"attributeHeader\":{\"labelValue\":\"957030\",\"primaryLabelValue\":\"957030\"}},{\"attributeHeader\":{\"labelValue\":\"957032\",\"primaryLabelValue\":\"957032\"}},{\"attributeHeader\":{\"labelValue\":\"957034\",\"primaryLabelValue\":\"957034\"}},{\"attributeHeader\":{\"labelValue\":\"957036\",\"primaryLabelValue\":\"957036\"}},{\"attributeHeader\":{\"labelValue\":\"957038\",\"primaryLabelValue\":\"957038\"}},{\"attributeHeader\":{\"labelValue\":\"957040\",\"primaryLabelValue\":\"957040\"}},{\"attributeHeader\":{\"labelValue\":\"957042\",\"primaryLabelValue\":\"957042\"}},{\"attributeHeader\":{\"labelValue\":\"957044\",\"primaryLabelValue\":\"957044\"}},{\"attributeHeader\":{\"labelValue\":\"957046\",\"primaryLabelValue\":\"957046\"}},{\"attributeHeader\":{\"labelValue\":\"957048\",\"primaryLabelValue\":\"957048\"}},{\"attributeHeader\":{\"labelValue\":\"957050\",\"primaryLabelValue\":\"957050\"}},{\"attributeHeader\":{\"labelValue\":\"957052\",\"primaryLabelValue\":\"957052\"}},{\"attributeHeader\":{\"labelValue\":\"957054\",\"primaryLabelValue\":\"957054\"}},{\"attributeHeader\":{\"labelValue\":\"957056\",\"primaryLabelValue\":\"957056\"}},{\"attributeHeader\":{\"labelValue\":\"957058\",\"primaryLabelValue\":\"957058\"}},{\"attributeHeader\":{\"labelValue\":\"957060\",\"primaryLabelValue\":\"957060\"}},{\"attributeHeader\":{\"labelValue\":\"957062\",\"primaryLabelValue\":\"957062\"}},{\"attributeHeader\":{\"labelValue\":\"957064\",\"primaryLabelValue\":\"957064\"}},{\"attributeHeader\":{\"labelValue\":\"957066\",\"primaryLabelValue\":\"957066\"}},{\"attributeHeader\":{\"labelValue\":\"957068\",\"primaryLabelValue\":\"957068\"}},{\"attributeHeader\":{\"labelValue\":\"957070\",\"primaryLabelValue\":\"957070\"}},{\"attributeHeader\":{\"labelValue\":\"957072\",\"primaryLabelValue\":\"957072\"}},{\"attributeHeader\":{\"labelValue\":\"957074\",\"primaryLabelValue\":\"957074\"}},{\"attributeHeader\":{\"labelValue\":\"957076\",\"primaryLabelValue\":\"957076\"}},{\"attributeHeader\":{\"labelValue\":\"957078\",\"primaryLabelValue\":\"957078\"}},{\"attributeHeader\":{\"labelValue\":\"957080\",\"primaryLabelValue\":\"957080\"}},{\"attributeHeader\":{\"labelValue\":\"957082\",\"primaryLabelValue\":\"957082\"}},{\"attributeHeader\":{\"labelValue\":\"957084\",\"primaryLabelValue\":\"957084\"}},{\"attributeHeader\":{\"labelValue\":\"957086\",\"primaryLabelValue\":\"957086\"}},{\"attributeHeader\":{\"labelValue\":\"957088\",\"primaryLabelValue\":\"957088\"}},{\"attributeHeader\":{\"labelValue\":\"957090\",\"primaryLabelValue\":\"957090\"}},{\"attributeHeader\":{\"labelValue\":\"957092\",\"primaryLabelValue\":\"957092\"}},{\"attributeHeader\":{\"labelValue\":\"957094\",\"primaryLabelValue\":\"957094\"}},{\"attributeHeader\":{\"labelValue\":\"957098\",\"primaryLabelValue\":\"957098\"}},{\"attributeHeader\":{\"labelValue\":\"957100\",\"primaryLabelValue\":\"957100\"}},{\"attributeHeader\":{\"labelValue\":\"957102\",\"primaryLabelValue\":\"957102\"}},{\"attributeHeader\":{\"labelValue\":\"957104\",\"primaryLabelValue\":\"957104\"}},{\"attributeHeader\":{\"labelValue\":\"957106\",\"primaryLabelValue\":\"957106\"}},{\"attributeHeader\":{\"labelValue\":\"957108\",\"primaryLabelValue\":\"957108\"}},{\"attributeHeader\":{\"labelValue\":\"957110\",\"primaryLabelValue\":\"957110\"}},{\"attributeHeader\":{\"labelValue\":\"957112\",\"primaryLabelValue\":\"957112\"}},{\"attributeHeader\":{\"labelValue\":\"957114\",\"primaryLabelValue\":\"957114\"}},{\"attributeHeader\":{\"labelValue\":\"957116\",\"primaryLabelValue\":\"957116\"}},{\"attributeHeader\":{\"labelValue\":\"957118\",\"primaryLabelValue\":\"957118\"}},{\"attributeHeader\":{\"labelValue\":\"957120\",\"primaryLabelValue\":\"957120\"}},{\"attributeHeader\":{\"labelValue\":\"957122\",\"primaryLabelValue\":\"957122\"}},{\"attributeHeader\":{\"labelValue\":\"957124\",\"primaryLabelValue\":\"957124\"}},{\"attributeHeader\":{\"labelValue\":\"957128\",\"primaryLabelValue\":\"957128\"}},{\"attributeHeader\":{\"labelValue\":\"957130\",\"primaryLabelValue\":\"957130\"}},{\"attributeHeader\":{\"labelValue\":\"957132\",\"primaryLabelValue\":\"957132\"}},{\"attributeHeader\":{\"labelValue\":\"957134\",\"primaryLabelValue\":\"957134\"}},{\"attributeHeader\":{\"labelValue\":\"957136\",\"primaryLabelValue\":\"957136\"}},{\"attributeHeader\":{\"labelValue\":\"957138\",\"primaryLabelValue\":\"957138\"}},{\"attributeHeader\":{\"labelValue\":\"957140\",\"primaryLabelValue\":\"957140\"}},{\"attributeHeader\":{\"labelValue\":\"957142\",\"primaryLabelValue\":\"957142\"}},{\"attributeHeader\":{\"labelValue\":\"957144\",\"primaryLabelValue\":\"957144\"}},{\"attributeHeader\":{\"labelValue\":\"957146\",\"primaryLabelValue\":\"957146\"}},{\"attributeHeader\":{\"labelValue\":\"957148\",\"primaryLabelValue\":\"957148\"}},{\"attributeHeader\":{\"labelValue\":\"957150\",\"primaryLabelValue\":\"957150\"}},{\"attributeHeader\":{\"labelValue\":\"957152\",\"primaryLabelValue\":\"957152\"}},{\"attributeHeader\":{\"labelValue\":\"957154\",\"primaryLabelValue\":\"957154\"}},{\"attributeHeader\":{\"labelValue\":\"957156\",\"primaryLabelValue\":\"957156\"}},{\"attributeHeader\":{\"labelValue\":\"957158\",\"primaryLabelValue\":\"957158\"}},{\"attributeHeader\":{\"labelValue\":\"957160\",\"primaryLabelValue\":\"957160\"}},{\"attributeHeader\":{\"labelValue\":\"957162\",\"primaryLabelValue\":\"957162\"}},{\"attributeHeader\":{\"labelValue\":\"957164\",\"primaryLabelValue\":\"957164\"}},{\"attributeHeader\":{\"labelValue\":\"957166\",\"primaryLabelValue\":\"957166\"}},{\"attributeHeader\":{\"labelValue\":\"957168\",\"primaryLabelValue\":\"957168\"}},{\"attributeHeader\":{\"labelValue\":\"957170\",\"primaryLabelValue\":\"957170\"}},{\"attributeHeader\":{\"labelValue\":\"957172\",\"primaryLabelValue\":\"957172\"}},{\"attributeHeader\":{\"labelValue\":\"957174\",\"primaryLabelValue\":\"957174\"}},{\"attributeHeader\":{\"labelValue\":\"957176\",\"primaryLabelValue\":\"957176\"}},{\"attributeHeader\":{\"labelValue\":\"957178\",\"primaryLabelValue\":\"957178\"}},{\"attributeHeader\":{\"labelValue\":\"957180\",\"primaryLabelValue\":\"957180\"}},{\"attributeHeader\":{\"labelValue\":\"957182\",\"primaryLabelValue\":\"957182\"}},{\"attributeHeader\":{\"labelValue\":\"957184\",\"primaryLabelValue\":\"957184\"}},{\"attributeHeader\":{\"labelValue\":\"957186\",\"primaryLabelValue\":\"957186\"}},{\"attributeHeader\":{\"labelValue\":\"957188\",\"primaryLabelValue\":\"957188\"}},{\"attributeHeader\":{\"labelValue\":\"957190\",\"primaryLabelValue\":\"957190\"}},{\"attributeHeader\":{\"labelValue\":\"957192\",\"primaryLabelValue\":\"957192\"}},{\"attributeHeader\":{\"labelValue\":\"957194\",\"primaryLabelValue\":\"957194\"}},{\"attributeHeader\":{\"labelValue\":\"957196\",\"primaryLabelValue\":\"957196\"}},{\"attributeHeader\":{\"labelValue\":\"957198\",\"primaryLabelValue\":\"957198\"}},{\"attributeHeader\":{\"labelValue\":\"957200\",\"primaryLabelValue\":\"957200\"}},{\"attributeHeader\":{\"labelValue\":\"957202\",\"primaryLabelValue\":\"957202\"}},{\"attributeHeader\":{\"labelValue\":\"957204\",\"primaryLabelValue\":\"957204\"}},{\"attributeHeader\":{\"labelValue\":\"957206\",\"primaryLabelValue\":\"957206\"}},{\"attributeHeader\":{\"labelValue\":\"957208\",\"primaryLabelValue\":\"957208\"}},{\"attributeHeader\":{\"labelValue\":\"957210\",\"primaryLabelValue\":\"957210\"}},{\"attributeHeader\":{\"labelValue\":\"957212\",\"primaryLabelValue\":\"957212\"}},{\"attributeHeader\":{\"labelValue\":\"957214\",\"primaryLabelValue\":\"957214\"}},{\"attributeHeader\":{\"labelValue\":\"957216\",\"primaryLabelValue\":\"957216\"}},{\"attributeHeader\":{\"labelValue\":\"957218\",\"primaryLabelValue\":\"957218\"}},{\"attributeHeader\":{\"labelValue\":\"957222\",\"primaryLabelValue\":\"957222\"}},{\"attributeHeader\":{\"labelValue\":\"957224\",\"primaryLabelValue\":\"957224\"}},{\"attributeHeader\":{\"labelValue\":\"957226\",\"primaryLabelValue\":\"957226\"}},{\"attributeHeader\":{\"labelValue\":\"957228\",\"primaryLabelValue\":\"957228\"}},{\"attributeHeader\":{\"labelValue\":\"957230\",\"primaryLabelValue\":\"957230\"}},{\"attributeHeader\":{\"labelValue\":\"957232\",\"primaryLabelValue\":\"957232\"}},{\"attributeHeader\":{\"labelValue\":\"957234\",\"primaryLabelValue\":\"957234\"}},{\"attributeHeader\":{\"labelValue\":\"957236\",\"primaryLabelValue\":\"957236\"}},{\"attributeHeader\":{\"labelValue\":\"957238\",\"primaryLabelValue\":\"957238\"}},{\"attributeHeader\":{\"labelValue\":\"957240\",\"primaryLabelValue\":\"957240\"}},{\"attributeHeader\":{\"labelValue\":\"957242\",\"primaryLabelValue\":\"957242\"}},{\"attributeHeader\":{\"labelValue\":\"957244\",\"primaryLabelValue\":\"957244\"}},{\"attributeHeader\":{\"labelValue\":\"957246\",\"primaryLabelValue\":\"957246\"}},{\"attributeHeader\":{\"labelValue\":\"957248\",\"primaryLabelValue\":\"957248\"}},{\"attributeHeader\":{\"labelValue\":\"957250\",\"primaryLabelValue\":\"957250\"}},{\"attributeHeader\":{\"labelValue\":\"957252\",\"primaryLabelValue\":\"957252\"}},{\"attributeHeader\":{\"labelValue\":\"957254\",\"primaryLabelValue\":\"957254\"}},{\"attributeHeader\":{\"labelValue\":\"957256\",\"primaryLabelValue\":\"957256\"}},{\"attributeHeader\":{\"labelValue\":\"957258\",\"primaryLabelValue\":\"957258\"}},{\"attributeHeader\":{\"labelValue\":\"957260\",\"primaryLabelValue\":\"957260\"}},{\"attributeHeader\":{\"labelValue\":\"957262\",\"primaryLabelValue\":\"957262\"}},{\"attributeHeader\":{\"labelValue\":\"957264\",\"primaryLabelValue\":\"957264\"}},{\"attributeHeader\":{\"labelValue\":\"957266\",\"primaryLabelValue\":\"957266\"}},{\"attributeHeader\":{\"labelValue\":\"957268\",\"primaryLabelValue\":\"957268\"}},{\"attributeHeader\":{\"labelValue\":\"957270\",\"primaryLabelValue\":\"957270\"}},{\"attributeHeader\":{\"labelValue\":\"957272\",\"primaryLabelValue\":\"957272\"}},{\"attributeHeader\":{\"labelValue\":\"957274\",\"primaryLabelValue\":\"957274\"}},{\"attributeHeader\":{\"labelValue\":\"957276\",\"primaryLabelValue\":\"957276\"}},{\"attributeHeader\":{\"labelValue\":\"957278\",\"primaryLabelValue\":\"957278\"}},{\"attributeHeader\":{\"labelValue\":\"957280\",\"primaryLabelValue\":\"957280\"}},{\"attributeHeader\":{\"labelValue\":\"957282\",\"primaryLabelValue\":\"957282\"}},{\"attributeHeader\":{\"labelValue\":\"957284\",\"primaryLabelValue\":\"957284\"}},{\"attributeHeader\":{\"labelValue\":\"957286\",\"primaryLabelValue\":\"957286\"}},{\"attributeHeader\":{\"labelValue\":\"957288\",\"primaryLabelValue\":\"957288\"}},{\"attributeHeader\":{\"labelValue\":\"957290\",\"primaryLabelValue\":\"957290\"}},{\"attributeHeader\":{\"labelValue\":\"957292\",\"primaryLabelValue\":\"957292\"}},{\"attributeHeader\":{\"labelValue\":\"957294\",\"primaryLabelValue\":\"957294\"}},{\"attributeHeader\":{\"labelValue\":\"957296\",\"primaryLabelValue\":\"957296\"}},{\"attributeHeader\":{\"labelValue\":\"957298\",\"primaryLabelValue\":\"957298\"}},{\"attributeHeader\":{\"labelValue\":\"957300\",\"primaryLabelValue\":\"957300\"}},{\"attributeHeader\":{\"labelValue\":\"957302\",\"primaryLabelValue\":\"957302\"}},{\"attributeHeader\":{\"labelValue\":\"957304\",\"primaryLabelValue\":\"957304\"}},{\"attributeHeader\":{\"labelValue\":\"957306\",\"primaryLabelValue\":\"957306\"}},{\"attributeHeader\":{\"labelValue\":\"957308\",\"primaryLabelValue\":\"957308\"}},{\"attributeHeader\":{\"labelValue\":\"957310\",\"primaryLabelValue\":\"957310\"}},{\"attributeHeader\":{\"labelValue\":\"957312\",\"primaryLabelValue\":\"957312\"}},{\"attributeHeader\":{\"labelValue\":\"957314\",\"primaryLabelValue\":\"957314\"}},{\"attributeHeader\":{\"labelValue\":\"957316\",\"primaryLabelValue\":\"957316\"}},{\"attributeHeader\":{\"labelValue\":\"957318\",\"primaryLabelValue\":\"957318\"}},{\"attributeHeader\":{\"labelValue\":\"957320\",\"primaryLabelValue\":\"957320\"}},{\"attributeHeader\":{\"labelValue\":\"957322\",\"primaryLabelValue\":\"957322\"}},{\"attributeHeader\":{\"labelValue\":\"957324\",\"primaryLabelValue\":\"957324\"}},{\"attributeHeader\":{\"labelValue\":\"957326\",\"primaryLabelValue\":\"957326\"}},{\"attributeHeader\":{\"labelValue\":\"957328\",\"primaryLabelValue\":\"957328\"}},{\"attributeHeader\":{\"labelValue\":\"957330\",\"primaryLabelValue\":\"957330\"}},{\"attributeHeader\":{\"labelValue\":\"957332\",\"primaryLabelValue\":\"957332\"}},{\"attributeHeader\":{\"labelValue\":\"957334\",\"primaryLabelValue\":\"957334\"}},{\"attributeHeader\":{\"labelValue\":\"957336\",\"primaryLabelValue\":\"957336\"}},{\"attributeHeader\":{\"labelValue\":\"957338\",\"primaryLabelValue\":\"957338\"}},{\"attributeHeader\":{\"labelValue\":\"957340\",\"primaryLabelValue\":\"957340\"}},{\"attributeHeader\":{\"labelValue\":\"957342\",\"primaryLabelValue\":\"957342\"}},{\"attributeHeader\":{\"labelValue\":\"957344\",\"primaryLabelValue\":\"957344\"}},{\"attributeHeader\":{\"labelValue\":\"957346\",\"primaryLabelValue\":\"957346\"}},{\"attributeHeader\":{\"labelValue\":\"957348\",\"primaryLabelValue\":\"957348\"}},{\"attributeHeader\":{\"labelValue\":\"957350\",\"primaryLabelValue\":\"957350\"}},{\"attributeHeader\":{\"labelValue\":\"957352\",\"primaryLabelValue\":\"957352\"}},{\"attributeHeader\":{\"labelValue\":\"957354\",\"primaryLabelValue\":\"957354\"}},{\"attributeHeader\":{\"labelValue\":\"957356\",\"primaryLabelValue\":\"957356\"}},{\"attributeHeader\":{\"labelValue\":\"957358\",\"primaryLabelValue\":\"957358\"}},{\"attributeHeader\":{\"labelValue\":\"957360\",\"primaryLabelValue\":\"957360\"}},{\"attributeHeader\":{\"labelValue\":\"957364\",\"primaryLabelValue\":\"957364\"}},{\"attributeHeader\":{\"labelValue\":\"957366\",\"primaryLabelValue\":\"957366\"}},{\"attributeHeader\":{\"labelValue\":\"957368\",\"primaryLabelValue\":\"957368\"}},{\"attributeHeader\":{\"labelValue\":\"957370\",\"primaryLabelValue\":\"957370\"}},{\"attributeHeader\":{\"labelValue\":\"957372\",\"primaryLabelValue\":\"957372\"}},{\"attributeHeader\":{\"labelValue\":\"957374\",\"primaryLabelValue\":\"957374\"}},{\"attributeHeader\":{\"labelValue\":\"957378\",\"primaryLabelValue\":\"957378\"}},{\"attributeHeader\":{\"labelValue\":\"957380\",\"primaryLabelValue\":\"957380\"}},{\"attributeHeader\":{\"labelValue\":\"957382\",\"primaryLabelValue\":\"957382\"}},{\"attributeHeader\":{\"labelValue\":\"957384\",\"primaryLabelValue\":\"957384\"}},{\"attributeHeader\":{\"labelValue\":\"957386\",\"primaryLabelValue\":\"957386\"}},{\"attributeHeader\":{\"labelValue\":\"957388\",\"primaryLabelValue\":\"957388\"}},{\"attributeHeader\":{\"labelValue\":\"957390\",\"primaryLabelValue\":\"957390\"}},{\"attributeHeader\":{\"labelValue\":\"957392\",\"primaryLabelValue\":\"957392\"}},{\"attributeHeader\":{\"labelValue\":\"957394\",\"primaryLabelValue\":\"957394\"}},{\"attributeHeader\":{\"labelValue\":\"957396\",\"primaryLabelValue\":\"957396\"}},{\"attributeHeader\":{\"labelValue\":\"957398\",\"primaryLabelValue\":\"957398\"}},{\"attributeHeader\":{\"labelValue\":\"957400\",\"primaryLabelValue\":\"957400\"}},{\"attributeHeader\":{\"labelValue\":\"957402\",\"primaryLabelValue\":\"957402\"}},{\"attributeHeader\":{\"labelValue\":\"957404\",\"primaryLabelValue\":\"957404\"}},{\"attributeHeader\":{\"labelValue\":\"957406\",\"primaryLabelValue\":\"957406\"}},{\"attributeHeader\":{\"labelValue\":\"957408\",\"primaryLabelValue\":\"957408\"}},{\"attributeHeader\":{\"labelValue\":\"957410\",\"primaryLabelValue\":\"957410\"}},{\"attributeHeader\":{\"labelValue\":\"957412\",\"primaryLabelValue\":\"957412\"}},{\"attributeHeader\":{\"labelValue\":\"957414\",\"primaryLabelValue\":\"957414\"}},{\"attributeHeader\":{\"labelValue\":\"957416\",\"primaryLabelValue\":\"957416\"}},{\"attributeHeader\":{\"labelValue\":\"957418\",\"primaryLabelValue\":\"957418\"}},{\"attributeHeader\":{\"labelValue\":\"957420\",\"primaryLabelValue\":\"957420\"}},{\"attributeHeader\":{\"labelValue\":\"957422\",\"primaryLabelValue\":\"957422\"}},{\"attributeHeader\":{\"labelValue\":\"957424\",\"primaryLabelValue\":\"957424\"}},{\"attributeHeader\":{\"labelValue\":\"957426\",\"primaryLabelValue\":\"957426\"}},{\"attributeHeader\":{\"labelValue\":\"957428\",\"primaryLabelValue\":\"957428\"}},{\"attributeHeader\":{\"labelValue\":\"957430\",\"primaryLabelValue\":\"957430\"}},{\"attributeHeader\":{\"labelValue\":\"957432\",\"primaryLabelValue\":\"957432\"}},{\"attributeHeader\":{\"labelValue\":\"957434\",\"primaryLabelValue\":\"957434\"}},{\"attributeHeader\":{\"labelValue\":\"957436\",\"primaryLabelValue\":\"957436\"}},{\"attributeHeader\":{\"labelValue\":\"957438\",\"primaryLabelValue\":\"957438\"}},{\"attributeHeader\":{\"labelValue\":\"957440\",\"primaryLabelValue\":\"957440\"}},{\"attributeHeader\":{\"labelValue\":\"957442\",\"primaryLabelValue\":\"957442\"}},{\"attributeHeader\":{\"labelValue\":\"957446\",\"primaryLabelValue\":\"957446\"}},{\"attributeHeader\":{\"labelValue\":\"957448\",\"primaryLabelValue\":\"957448\"}},{\"attributeHeader\":{\"labelValue\":\"957450\",\"primaryLabelValue\":\"957450\"}},{\"attributeHeader\":{\"labelValue\":\"957452\",\"primaryLabelValue\":\"957452\"}},{\"attributeHeader\":{\"labelValue\":\"957454\",\"primaryLabelValue\":\"957454\"}},{\"attributeHeader\":{\"labelValue\":\"957456\",\"primaryLabelValue\":\"957456\"}},{\"attributeHeader\":{\"labelValue\":\"957458\",\"primaryLabelValue\":\"957458\"}},{\"attributeHeader\":{\"labelValue\":\"957460\",\"primaryLabelValue\":\"957460\"}},{\"attributeHeader\":{\"labelValue\":\"957462\",\"primaryLabelValue\":\"957462\"}},{\"attributeHeader\":{\"labelValue\":\"957464\",\"primaryLabelValue\":\"957464\"}},{\"attributeHeader\":{\"labelValue\":\"957466\",\"primaryLabelValue\":\"957466\"}},{\"attributeHeader\":{\"labelValue\":\"957468\",\"primaryLabelValue\":\"957468\"}},{\"attributeHeader\":{\"labelValue\":\"957470\",\"primaryLabelValue\":\"957470\"}},{\"attributeHeader\":{\"labelValue\":\"957472\",\"primaryLabelValue\":\"957472\"}},{\"attributeHeader\":{\"labelValue\":\"957474\",\"primaryLabelValue\":\"957474\"}},{\"attributeHeader\":{\"labelValue\":\"957476\",\"primaryLabelValue\":\"957476\"}},{\"attributeHeader\":{\"labelValue\":\"957478\",\"primaryLabelValue\":\"957478\"}},{\"attributeHeader\":{\"labelValue\":\"957480\",\"primaryLabelValue\":\"957480\"}},{\"attributeHeader\":{\"labelValue\":\"957482\",\"primaryLabelValue\":\"957482\"}},{\"attributeHeader\":{\"labelValue\":\"957484\",\"primaryLabelValue\":\"957484\"}},{\"attributeHeader\":{\"labelValue\":\"957486\",\"primaryLabelValue\":\"957486\"}},{\"attributeHeader\":{\"labelValue\":\"957488\",\"primaryLabelValue\":\"957488\"}},{\"attributeHeader\":{\"labelValue\":\"957490\",\"primaryLabelValue\":\"957490\"}},{\"attributeHeader\":{\"labelValue\":\"957492\",\"primaryLabelValue\":\"957492\"}},{\"attributeHeader\":{\"labelValue\":\"957494\",\"primaryLabelValue\":\"957494\"}},{\"attributeHeader\":{\"labelValue\":\"957496\",\"primaryLabelValue\":\"957496\"}},{\"attributeHeader\":{\"labelValue\":\"957498\",\"primaryLabelValue\":\"957498\"}},{\"attributeHeader\":{\"labelValue\":\"957500\",\"primaryLabelValue\":\"957500\"}},{\"attributeHeader\":{\"labelValue\":\"957502\",\"primaryLabelValue\":\"957502\"}},{\"attributeHeader\":{\"labelValue\":\"957504\",\"primaryLabelValue\":\"957504\"}},{\"attributeHeader\":{\"labelValue\":\"957506\",\"primaryLabelValue\":\"957506\"}},{\"attributeHeader\":{\"labelValue\":\"957508\",\"primaryLabelValue\":\"957508\"}},{\"attributeHeader\":{\"labelValue\":\"957510\",\"primaryLabelValue\":\"957510\"}},{\"attributeHeader\":{\"labelValue\":\"957512\",\"primaryLabelValue\":\"957512\"}},{\"attributeHeader\":{\"labelValue\":\"957514\",\"primaryLabelValue\":\"957514\"}},{\"attributeHeader\":{\"labelValue\":\"957516\",\"primaryLabelValue\":\"957516\"}},{\"attributeHeader\":{\"labelValue\":\"957518\",\"primaryLabelValue\":\"957518\"}},{\"attributeHeader\":{\"labelValue\":\"957520\",\"primaryLabelValue\":\"957520\"}},{\"attributeHeader\":{\"labelValue\":\"957522\",\"primaryLabelValue\":\"957522\"}},{\"attributeHeader\":{\"labelValue\":\"957524\",\"primaryLabelValue\":\"957524\"}},{\"attributeHeader\":{\"labelValue\":\"957526\",\"primaryLabelValue\":\"957526\"}},{\"attributeHeader\":{\"labelValue\":\"957528\",\"primaryLabelValue\":\"957528\"}},{\"attributeHeader\":{\"labelValue\":\"957530\",\"primaryLabelValue\":\"957530\"}},{\"attributeHeader\":{\"labelValue\":\"957532\",\"primaryLabelValue\":\"957532\"}},{\"attributeHeader\":{\"labelValue\":\"957534\",\"primaryLabelValue\":\"957534\"}},{\"attributeHeader\":{\"labelValue\":\"957536\",\"primaryLabelValue\":\"957536\"}},{\"attributeHeader\":{\"labelValue\":\"957538\",\"primaryLabelValue\":\"957538\"}},{\"attributeHeader\":{\"labelValue\":\"957540\",\"primaryLabelValue\":\"957540\"}},{\"attributeHeader\":{\"labelValue\":\"957542\",\"primaryLabelValue\":\"957542\"}},{\"attributeHeader\":{\"labelValue\":\"957544\",\"primaryLabelValue\":\"957544\"}},{\"attributeHeader\":{\"labelValue\":\"957546\",\"primaryLabelValue\":\"957546\"}},{\"attributeHeader\":{\"labelValue\":\"957548\",\"primaryLabelValue\":\"957548\"}},{\"attributeHeader\":{\"labelValue\":\"957550\",\"primaryLabelValue\":\"957550\"}},{\"attributeHeader\":{\"labelValue\":\"957552\",\"primaryLabelValue\":\"957552\"}},{\"attributeHeader\":{\"labelValue\":\"957554\",\"primaryLabelValue\":\"957554\"}},{\"attributeHeader\":{\"labelValue\":\"957556\",\"primaryLabelValue\":\"957556\"}},{\"attributeHeader\":{\"labelValue\":\"957558\",\"primaryLabelValue\":\"957558\"}},{\"attributeHeader\":{\"labelValue\":\"957560\",\"primaryLabelValue\":\"957560\"}},{\"attributeHeader\":{\"labelValue\":\"957562\",\"primaryLabelValue\":\"957562\"}},{\"attributeHeader\":{\"labelValue\":\"957564\",\"primaryLabelValue\":\"957564\"}},{\"attributeHeader\":{\"labelValue\":\"957566\",\"primaryLabelValue\":\"957566\"}},{\"attributeHeader\":{\"labelValue\":\"957568\",\"primaryLabelValue\":\"957568\"}},{\"attributeHeader\":{\"labelValue\":\"957570\",\"primaryLabelValue\":\"957570\"}},{\"attributeHeader\":{\"labelValue\":\"957572\",\"primaryLabelValue\":\"957572\"}},{\"attributeHeader\":{\"labelValue\":\"957574\",\"primaryLabelValue\":\"957574\"}},{\"attributeHeader\":{\"labelValue\":\"957576\",\"primaryLabelValue\":\"957576\"}},{\"attributeHeader\":{\"labelValue\":\"957578\",\"primaryLabelValue\":\"957578\"}},{\"attributeHeader\":{\"labelValue\":\"957580\",\"primaryLabelValue\":\"957580\"}},{\"attributeHeader\":{\"labelValue\":\"957582\",\"primaryLabelValue\":\"957582\"}},{\"attributeHeader\":{\"labelValue\":\"957584\",\"primaryLabelValue\":\"957584\"}},{\"attributeHeader\":{\"labelValue\":\"957586\",\"primaryLabelValue\":\"957586\"}},{\"attributeHeader\":{\"labelValue\":\"957588\",\"primaryLabelValue\":\"957588\"}},{\"attributeHeader\":{\"labelValue\":\"957590\",\"primaryLabelValue\":\"957590\"}},{\"attributeHeader\":{\"labelValue\":\"957592\",\"primaryLabelValue\":\"957592\"}},{\"attributeHeader\":{\"labelValue\":\"957594\",\"primaryLabelValue\":\"957594\"}},{\"attributeHeader\":{\"labelValue\":\"957596\",\"primaryLabelValue\":\"957596\"}},{\"attributeHeader\":{\"labelValue\":\"957598\",\"primaryLabelValue\":\"957598\"}},{\"attributeHeader\":{\"labelValue\":\"957600\",\"primaryLabelValue\":\"957600\"}},{\"attributeHeader\":{\"labelValue\":\"957602\",\"primaryLabelValue\":\"957602\"}},{\"attributeHeader\":{\"labelValue\":\"957604\",\"primaryLabelValue\":\"957604\"}},{\"attributeHeader\":{\"labelValue\":\"957606\",\"primaryLabelValue\":\"957606\"}},{\"attributeHeader\":{\"labelValue\":\"957608\",\"primaryLabelValue\":\"957608\"}},{\"attributeHeader\":{\"labelValue\":\"957610\",\"primaryLabelValue\":\"957610\"}},{\"attributeHeader\":{\"labelValue\":\"957612\",\"primaryLabelValue\":\"957612\"}},{\"attributeHeader\":{\"labelValue\":\"957614\",\"primaryLabelValue\":\"957614\"}},{\"attributeHeader\":{\"labelValue\":\"957616\",\"primaryLabelValue\":\"957616\"}},{\"attributeHeader\":{\"labelValue\":\"957618\",\"primaryLabelValue\":\"957618\"}},{\"attributeHeader\":{\"labelValue\":\"957620\",\"primaryLabelValue\":\"957620\"}},{\"attributeHeader\":{\"labelValue\":\"957622\",\"primaryLabelValue\":\"957622\"}},{\"attributeHeader\":{\"labelValue\":\"957624\",\"primaryLabelValue\":\"957624\"}},{\"attributeHeader\":{\"labelValue\":\"957626\",\"primaryLabelValue\":\"957626\"}},{\"attributeHeader\":{\"labelValue\":\"957632\",\"primaryLabelValue\":\"957632\"}},{\"attributeHeader\":{\"labelValue\":\"957634\",\"primaryLabelValue\":\"957634\"}},{\"attributeHeader\":{\"labelValue\":\"957636\",\"primaryLabelValue\":\"957636\"}},{\"attributeHeader\":{\"labelValue\":\"957638\",\"primaryLabelValue\":\"957638\"}},{\"attributeHeader\":{\"labelValue\":\"957640\",\"primaryLabelValue\":\"957640\"}},{\"attributeHeader\":{\"labelValue\":\"957642\",\"primaryLabelValue\":\"957642\"}},{\"attributeHeader\":{\"labelValue\":\"957644\",\"primaryLabelValue\":\"957644\"}},{\"attributeHeader\":{\"labelValue\":\"957646\",\"primaryLabelValue\":\"957646\"}},{\"attributeHeader\":{\"labelValue\":\"957648\",\"primaryLabelValue\":\"957648\"}},{\"attributeHeader\":{\"labelValue\":\"957650\",\"primaryLabelValue\":\"957650\"}},{\"attributeHeader\":{\"labelValue\":\"957652\",\"primaryLabelValue\":\"957652\"}},{\"attributeHeader\":{\"labelValue\":\"957654\",\"primaryLabelValue\":\"957654\"}},{\"attributeHeader\":{\"labelValue\":\"957656\",\"primaryLabelValue\":\"957656\"}},{\"attributeHeader\":{\"labelValue\":\"957658\",\"primaryLabelValue\":\"957658\"}},{\"attributeHeader\":{\"labelValue\":\"957660\",\"primaryLabelValue\":\"957660\"}},{\"attributeHeader\":{\"labelValue\":\"957664\",\"primaryLabelValue\":\"957664\"}},{\"attributeHeader\":{\"labelValue\":\"957666\",\"primaryLabelValue\":\"957666\"}},{\"attributeHeader\":{\"labelValue\":\"957668\",\"primaryLabelValue\":\"957668\"}},{\"attributeHeader\":{\"labelValue\":\"957674\",\"primaryLabelValue\":\"957674\"}},{\"attributeHeader\":{\"labelValue\":\"957676\",\"primaryLabelValue\":\"957676\"}},{\"attributeHeader\":{\"labelValue\":\"957678\",\"primaryLabelValue\":\"957678\"}},{\"attributeHeader\":{\"labelValue\":\"957680\",\"primaryLabelValue\":\"957680\"}},{\"attributeHeader\":{\"labelValue\":\"957682\",\"primaryLabelValue\":\"957682\"}},{\"attributeHeader\":{\"labelValue\":\"957684\",\"primaryLabelValue\":\"957684\"}},{\"attributeHeader\":{\"labelValue\":\"957688\",\"primaryLabelValue\":\"957688\"}},{\"attributeHeader\":{\"labelValue\":\"957690\",\"primaryLabelValue\":\"957690\"}},{\"attributeHeader\":{\"labelValue\":\"957692\",\"primaryLabelValue\":\"957692\"}},{\"attributeHeader\":{\"labelValue\":\"957694\",\"primaryLabelValue\":\"957694\"}},{\"attributeHeader\":{\"labelValue\":\"957696\",\"primaryLabelValue\":\"957696\"}},{\"attributeHeader\":{\"labelValue\":\"957698\",\"primaryLabelValue\":\"957698\"}},{\"attributeHeader\":{\"labelValue\":\"957702\",\"primaryLabelValue\":\"957702\"}},{\"attributeHeader\":{\"labelValue\":\"957704\",\"primaryLabelValue\":\"957704\"}},{\"attributeHeader\":{\"labelValue\":\"957708\",\"primaryLabelValue\":\"957708\"}},{\"attributeHeader\":{\"labelValue\":\"957710\",\"primaryLabelValue\":\"957710\"}},{\"attributeHeader\":{\"labelValue\":\"957712\",\"primaryLabelValue\":\"957712\"}},{\"attributeHeader\":{\"labelValue\":\"957714\",\"primaryLabelValue\":\"957714\"}},{\"attributeHeader\":{\"labelValue\":\"957716\",\"primaryLabelValue\":\"957716\"}},{\"attributeHeader\":{\"labelValue\":\"957718\",\"primaryLabelValue\":\"957718\"}},{\"attributeHeader\":{\"labelValue\":\"957720\",\"primaryLabelValue\":\"957720\"}},{\"attributeHeader\":{\"labelValue\":\"957722\",\"primaryLabelValue\":\"957722\"}},{\"attributeHeader\":{\"labelValue\":\"957724\",\"primaryLabelValue\":\"957724\"}},{\"attributeHeader\":{\"labelValue\":\"957726\",\"primaryLabelValue\":\"957726\"}},{\"attributeHeader\":{\"labelValue\":\"957728\",\"primaryLabelValue\":\"957728\"}},{\"attributeHeader\":{\"labelValue\":\"957730\",\"primaryLabelValue\":\"957730\"}},{\"attributeHeader\":{\"labelValue\":\"957732\",\"primaryLabelValue\":\"957732\"}},{\"attributeHeader\":{\"labelValue\":\"957734\",\"primaryLabelValue\":\"957734\"}},{\"attributeHeader\":{\"labelValue\":\"957736\",\"primaryLabelValue\":\"957736\"}},{\"attributeHeader\":{\"labelValue\":\"957738\",\"primaryLabelValue\":\"957738\"}},{\"attributeHeader\":{\"labelValue\":\"957740\",\"primaryLabelValue\":\"957740\"}},{\"attributeHeader\":{\"labelValue\":\"957742\",\"primaryLabelValue\":\"957742\"}},{\"attributeHeader\":{\"labelValue\":\"957744\",\"primaryLabelValue\":\"957744\"}},{\"attributeHeader\":{\"labelValue\":\"957746\",\"primaryLabelValue\":\"957746\"}},{\"attributeHeader\":{\"labelValue\":\"957748\",\"primaryLabelValue\":\"957748\"}},{\"attributeHeader\":{\"labelValue\":\"957750\",\"primaryLabelValue\":\"957750\"}},{\"attributeHeader\":{\"labelValue\":\"957752\",\"primaryLabelValue\":\"957752\"}},{\"attributeHeader\":{\"labelValue\":\"957754\",\"primaryLabelValue\":\"957754\"}},{\"attributeHeader\":{\"labelValue\":\"957756\",\"primaryLabelValue\":\"957756\"}},{\"attributeHeader\":{\"labelValue\":\"957758\",\"primaryLabelValue\":\"957758\"}},{\"attributeHeader\":{\"labelValue\":\"957760\",\"primaryLabelValue\":\"957760\"}},{\"attributeHeader\":{\"labelValue\":\"957762\",\"primaryLabelValue\":\"957762\"}},{\"attributeHeader\":{\"labelValue\":\"957764\",\"primaryLabelValue\":\"957764\"}},{\"attributeHeader\":{\"labelValue\":\"957766\",\"primaryLabelValue\":\"957766\"}},{\"attributeHeader\":{\"labelValue\":\"957772\",\"primaryLabelValue\":\"957772\"}},{\"attributeHeader\":{\"labelValue\":\"957774\",\"primaryLabelValue\":\"957774\"}},{\"attributeHeader\":{\"labelValue\":\"957776\",\"primaryLabelValue\":\"957776\"}},{\"attributeHeader\":{\"labelValue\":\"957778\",\"primaryLabelValue\":\"957778\"}},{\"attributeHeader\":{\"labelValue\":\"957780\",\"primaryLabelValue\":\"957780\"}},{\"attributeHeader\":{\"labelValue\":\"957782\",\"primaryLabelValue\":\"957782\"}},{\"attributeHeader\":{\"labelValue\":\"957784\",\"primaryLabelValue\":\"957784\"}},{\"attributeHeader\":{\"labelValue\":\"957788\",\"primaryLabelValue\":\"957788\"}},{\"attributeHeader\":{\"labelValue\":\"957790\",\"primaryLabelValue\":\"957790\"}},{\"attributeHeader\":{\"labelValue\":\"957792\",\"primaryLabelValue\":\"957792\"}},{\"attributeHeader\":{\"labelValue\":\"957794\",\"primaryLabelValue\":\"957794\"}},{\"attributeHeader\":{\"labelValue\":\"957796\",\"primaryLabelValue\":\"957796\"}},{\"attributeHeader\":{\"labelValue\":\"957798\",\"primaryLabelValue\":\"957798\"}},{\"attributeHeader\":{\"labelValue\":\"957800\",\"primaryLabelValue\":\"957800\"}},{\"attributeHeader\":{\"labelValue\":\"957802\",\"primaryLabelValue\":\"957802\"}},{\"attributeHeader\":{\"labelValue\":\"957804\",\"primaryLabelValue\":\"957804\"}},{\"attributeHeader\":{\"labelValue\":\"957806\",\"primaryLabelValue\":\"957806\"}},{\"attributeHeader\":{\"labelValue\":\"957808\",\"primaryLabelValue\":\"957808\"}},{\"attributeHeader\":{\"labelValue\":\"957812\",\"primaryLabelValue\":\"957812\"}},{\"attributeHeader\":{\"labelValue\":\"957814\",\"primaryLabelValue\":\"957814\"}},{\"attributeHeader\":{\"labelValue\":\"957816\",\"primaryLabelValue\":\"957816\"}},{\"attributeHeader\":{\"labelValue\":\"957818\",\"primaryLabelValue\":\"957818\"}},{\"attributeHeader\":{\"labelValue\":\"957820\",\"primaryLabelValue\":\"957820\"}},{\"attributeHeader\":{\"labelValue\":\"957822\",\"primaryLabelValue\":\"957822\"}},{\"attributeHeader\":{\"labelValue\":\"957824\",\"primaryLabelValue\":\"957824\"}},{\"attributeHeader\":{\"labelValue\":\"957826\",\"primaryLabelValue\":\"957826\"}},{\"attributeHeader\":{\"labelValue\":\"957828\",\"primaryLabelValue\":\"957828\"}},{\"attributeHeader\":{\"labelValue\":\"957830\",\"primaryLabelValue\":\"957830\"}},{\"attributeHeader\":{\"labelValue\":\"957832\",\"primaryLabelValue\":\"957832\"}},{\"attributeHeader\":{\"labelValue\":\"957834\",\"primaryLabelValue\":\"957834\"}},{\"attributeHeader\":{\"labelValue\":\"957836\",\"primaryLabelValue\":\"957836\"}},{\"attributeHeader\":{\"labelValue\":\"957838\",\"primaryLabelValue\":\"957838\"}},{\"attributeHeader\":{\"labelValue\":\"957842\",\"primaryLabelValue\":\"957842\"}},{\"attributeHeader\":{\"labelValue\":\"957844\",\"primaryLabelValue\":\"957844\"}},{\"attributeHeader\":{\"labelValue\":\"957846\",\"primaryLabelValue\":\"957846\"}},{\"attributeHeader\":{\"labelValue\":\"957848\",\"primaryLabelValue\":\"957848\"}},{\"attributeHeader\":{\"labelValue\":\"957850\",\"primaryLabelValue\":\"957850\"}},{\"attributeHeader\":{\"labelValue\":\"957852\",\"primaryLabelValue\":\"957852\"}},{\"attributeHeader\":{\"labelValue\":\"957854\",\"primaryLabelValue\":\"957854\"}},{\"attributeHeader\":{\"labelValue\":\"957856\",\"primaryLabelValue\":\"957856\"}},{\"attributeHeader\":{\"labelValue\":\"957858\",\"primaryLabelValue\":\"957858\"}},{\"attributeHeader\":{\"labelValue\":\"957860\",\"primaryLabelValue\":\"957860\"}},{\"attributeHeader\":{\"labelValue\":\"957862\",\"primaryLabelValue\":\"957862\"}},{\"attributeHeader\":{\"labelValue\":\"957864\",\"primaryLabelValue\":\"957864\"}},{\"attributeHeader\":{\"labelValue\":\"957866\",\"primaryLabelValue\":\"957866\"}},{\"attributeHeader\":{\"labelValue\":\"957870\",\"primaryLabelValue\":\"957870\"}},{\"attributeHeader\":{\"labelValue\":\"957874\",\"primaryLabelValue\":\"957874\"}},{\"attributeHeader\":{\"labelValue\":\"957876\",\"primaryLabelValue\":\"957876\"}},{\"attributeHeader\":{\"labelValue\":\"957878\",\"primaryLabelValue\":\"957878\"}},{\"attributeHeader\":{\"labelValue\":\"957880\",\"primaryLabelValue\":\"957880\"}},{\"attributeHeader\":{\"labelValue\":\"957882\",\"primaryLabelValue\":\"957882\"}},{\"attributeHeader\":{\"labelValue\":\"957884\",\"primaryLabelValue\":\"957884\"}},{\"attributeHeader\":{\"labelValue\":\"957886\",\"primaryLabelValue\":\"957886\"}},{\"attributeHeader\":{\"labelValue\":\"957888\",\"primaryLabelValue\":\"957888\"}},{\"attributeHeader\":{\"labelValue\":\"957890\",\"primaryLabelValue\":\"957890\"}},{\"attributeHeader\":{\"labelValue\":\"957892\",\"primaryLabelValue\":\"957892\"}},{\"attributeHeader\":{\"labelValue\":\"957894\",\"primaryLabelValue\":\"957894\"}},{\"attributeHeader\":{\"labelValue\":\"957896\",\"primaryLabelValue\":\"957896\"}},{\"attributeHeader\":{\"labelValue\":\"957898\",\"primaryLabelValue\":\"957898\"}},{\"attributeHeader\":{\"labelValue\":\"957900\",\"primaryLabelValue\":\"957900\"}},{\"attributeHeader\":{\"labelValue\":\"957904\",\"primaryLabelValue\":\"957904\"}},{\"attributeHeader\":{\"labelValue\":\"957906\",\"primaryLabelValue\":\"957906\"}},{\"attributeHeader\":{\"labelValue\":\"957908\",\"primaryLabelValue\":\"957908\"}},{\"attributeHeader\":{\"labelValue\":\"957910\",\"primaryLabelValue\":\"957910\"}},{\"attributeHeader\":{\"labelValue\":\"957912\",\"primaryLabelValue\":\"957912\"}},{\"attributeHeader\":{\"labelValue\":\"957914\",\"primaryLabelValue\":\"957914\"}},{\"attributeHeader\":{\"labelValue\":\"957916\",\"primaryLabelValue\":\"957916\"}},{\"attributeHeader\":{\"labelValue\":\"957918\",\"primaryLabelValue\":\"957918\"}},{\"attributeHeader\":{\"labelValue\":\"957920\",\"primaryLabelValue\":\"957920\"}},{\"attributeHeader\":{\"labelValue\":\"957922\",\"primaryLabelValue\":\"957922\"}},{\"attributeHeader\":{\"labelValue\":\"957924\",\"primaryLabelValue\":\"957924\"}},{\"attributeHeader\":{\"labelValue\":\"957926\",\"primaryLabelValue\":\"957926\"}},{\"attributeHeader\":{\"labelValue\":\"957928\",\"primaryLabelValue\":\"957928\"}},{\"attributeHeader\":{\"labelValue\":\"957930\",\"primaryLabelValue\":\"957930\"}},{\"attributeHeader\":{\"labelValue\":\"957934\",\"primaryLabelValue\":\"957934\"}},{\"attributeHeader\":{\"labelValue\":\"957936\",\"primaryLabelValue\":\"957936\"}},{\"attributeHeader\":{\"labelValue\":\"957938\",\"primaryLabelValue\":\"957938\"}},{\"attributeHeader\":{\"labelValue\":\"957940\",\"primaryLabelValue\":\"957940\"}},{\"attributeHeader\":{\"labelValue\":\"957942\",\"primaryLabelValue\":\"957942\"}},{\"attributeHeader\":{\"labelValue\":\"957944\",\"primaryLabelValue\":\"957944\"}},{\"attributeHeader\":{\"labelValue\":\"957946\",\"primaryLabelValue\":\"957946\"}},{\"attributeHeader\":{\"labelValue\":\"957948\",\"primaryLabelValue\":\"957948\"}},{\"attributeHeader\":{\"labelValue\":\"957950\",\"primaryLabelValue\":\"957950\"}},{\"attributeHeader\":{\"labelValue\":\"957952\",\"primaryLabelValue\":\"957952\"}},{\"attributeHeader\":{\"labelValue\":\"957954\",\"primaryLabelValue\":\"957954\"}},{\"attributeHeader\":{\"labelValue\":\"957958\",\"primaryLabelValue\":\"957958\"}},{\"attributeHeader\":{\"labelValue\":\"957960\",\"primaryLabelValue\":\"957960\"}},{\"attributeHeader\":{\"labelValue\":\"957962\",\"primaryLabelValue\":\"957962\"}},{\"attributeHeader\":{\"labelValue\":\"957964\",\"primaryLabelValue\":\"957964\"}},{\"attributeHeader\":{\"labelValue\":\"957966\",\"primaryLabelValue\":\"957966\"}},{\"attributeHeader\":{\"labelValue\":\"957970\",\"primaryLabelValue\":\"957970\"}},{\"attributeHeader\":{\"labelValue\":\"957972\",\"primaryLabelValue\":\"957972\"}},{\"attributeHeader\":{\"labelValue\":\"957974\",\"primaryLabelValue\":\"957974\"}},{\"attributeHeader\":{\"labelValue\":\"957978\",\"primaryLabelValue\":\"957978\"}},{\"attributeHeader\":{\"labelValue\":\"957980\",\"primaryLabelValue\":\"957980\"}},{\"attributeHeader\":{\"labelValue\":\"957982\",\"primaryLabelValue\":\"957982\"}},{\"attributeHeader\":{\"labelValue\":\"957984\",\"primaryLabelValue\":\"957984\"}},{\"attributeHeader\":{\"labelValue\":\"957986\",\"primaryLabelValue\":\"957986\"}},{\"attributeHeader\":{\"labelValue\":\"957988\",\"primaryLabelValue\":\"957988\"}},{\"attributeHeader\":{\"labelValue\":\"957992\",\"primaryLabelValue\":\"957992\"}},{\"attributeHeader\":{\"labelValue\":\"957996\",\"primaryLabelValue\":\"957996\"}},{\"attributeHeader\":{\"labelValue\":\"957998\",\"primaryLabelValue\":\"957998\"}},{\"attributeHeader\":{\"labelValue\":\"958000\",\"primaryLabelValue\":\"958000\"}},{\"attributeHeader\":{\"labelValue\":\"958002\",\"primaryLabelValue\":\"958002\"}},{\"attributeHeader\":{\"labelValue\":\"958004\",\"primaryLabelValue\":\"958004\"}},{\"attributeHeader\":{\"labelValue\":\"958006\",\"primaryLabelValue\":\"958006\"}},{\"attributeHeader\":{\"labelValue\":\"958008\",\"primaryLabelValue\":\"958008\"}},{\"attributeHeader\":{\"labelValue\":\"958010\",\"primaryLabelValue\":\"958010\"}},{\"attributeHeader\":{\"labelValue\":\"958012\",\"primaryLabelValue\":\"958012\"}},{\"attributeHeader\":{\"labelValue\":\"958014\",\"primaryLabelValue\":\"958014\"}},{\"attributeHeader\":{\"labelValue\":\"958016\",\"primaryLabelValue\":\"958016\"}},{\"attributeHeader\":{\"labelValue\":\"958018\",\"primaryLabelValue\":\"958018\"}},{\"attributeHeader\":{\"labelValue\":\"958022\",\"primaryLabelValue\":\"958022\"}},{\"attributeHeader\":{\"labelValue\":\"958024\",\"primaryLabelValue\":\"958024\"}},{\"attributeHeader\":{\"labelValue\":\"958026\",\"primaryLabelValue\":\"958026\"}},{\"attributeHeader\":{\"labelValue\":\"958028\",\"primaryLabelValue\":\"958028\"}},{\"attributeHeader\":{\"labelValue\":\"958030\",\"primaryLabelValue\":\"958030\"}},{\"attributeHeader\":{\"labelValue\":\"958032\",\"primaryLabelValue\":\"958032\"}},{\"attributeHeader\":{\"labelValue\":\"958034\",\"primaryLabelValue\":\"958034\"}},{\"attributeHeader\":{\"labelValue\":\"958036\",\"primaryLabelValue\":\"958036\"}},{\"attributeHeader\":{\"labelValue\":\"958038\",\"primaryLabelValue\":\"958038\"}},{\"attributeHeader\":{\"labelValue\":\"958042\",\"primaryLabelValue\":\"958042\"}},{\"attributeHeader\":{\"labelValue\":\"958044\",\"primaryLabelValue\":\"958044\"}},{\"attributeHeader\":{\"labelValue\":\"958046\",\"primaryLabelValue\":\"958046\"}},{\"attributeHeader\":{\"labelValue\":\"958048\",\"primaryLabelValue\":\"958048\"}},{\"attributeHeader\":{\"labelValue\":\"958050\",\"primaryLabelValue\":\"958050\"}},{\"attributeHeader\":{\"labelValue\":\"958052\",\"primaryLabelValue\":\"958052\"}},{\"attributeHeader\":{\"labelValue\":\"958054\",\"primaryLabelValue\":\"958054\"}},{\"attributeHeader\":{\"labelValue\":\"958056\",\"primaryLabelValue\":\"958056\"}},{\"attributeHeader\":{\"labelValue\":\"958058\",\"primaryLabelValue\":\"958058\"}},{\"attributeHeader\":{\"labelValue\":\"958060\",\"primaryLabelValue\":\"958060\"}},{\"attributeHeader\":{\"labelValue\":\"958062\",\"primaryLabelValue\":\"958062\"}},{\"attributeHeader\":{\"labelValue\":\"958064\",\"primaryLabelValue\":\"958064\"}},{\"attributeHeader\":{\"labelValue\":\"958066\",\"primaryLabelValue\":\"958066\"}},{\"attributeHeader\":{\"labelValue\":\"958070\",\"primaryLabelValue\":\"958070\"}},{\"attributeHeader\":{\"labelValue\":\"958072\",\"primaryLabelValue\":\"958072\"}},{\"attributeHeader\":{\"labelValue\":\"958074\",\"primaryLabelValue\":\"958074\"}},{\"attributeHeader\":{\"labelValue\":\"958076\",\"primaryLabelValue\":\"958076\"}},{\"attributeHeader\":{\"labelValue\":\"958078\",\"primaryLabelValue\":\"958078\"}},{\"attributeHeader\":{\"labelValue\":\"958080\",\"primaryLabelValue\":\"958080\"}},{\"attributeHeader\":{\"labelValue\":\"958088\",\"primaryLabelValue\":\"958088\"}},{\"attributeHeader\":{\"labelValue\":\"958090\",\"primaryLabelValue\":\"958090\"}},{\"attributeHeader\":{\"labelValue\":\"958094\",\"primaryLabelValue\":\"958094\"}},{\"attributeHeader\":{\"labelValue\":\"958096\",\"primaryLabelValue\":\"958096\"}},{\"attributeHeader\":{\"labelValue\":\"958098\",\"primaryLabelValue\":\"958098\"}},{\"attributeHeader\":{\"labelValue\":\"958100\",\"primaryLabelValue\":\"958100\"}},{\"attributeHeader\":{\"labelValue\":\"958104\",\"primaryLabelValue\":\"958104\"}},{\"attributeHeader\":{\"labelValue\":\"958106\",\"primaryLabelValue\":\"958106\"}},{\"attributeHeader\":{\"labelValue\":\"958108\",\"primaryLabelValue\":\"958108\"}},{\"attributeHeader\":{\"labelValue\":\"958110\",\"primaryLabelValue\":\"958110\"}},{\"attributeHeader\":{\"labelValue\":\"958112\",\"primaryLabelValue\":\"958112\"}},{\"attributeHeader\":{\"labelValue\":\"958114\",\"primaryLabelValue\":\"958114\"}},{\"attributeHeader\":{\"labelValue\":\"958116\",\"primaryLabelValue\":\"958116\"}},{\"attributeHeader\":{\"labelValue\":\"958118\",\"primaryLabelValue\":\"958118\"}},{\"attributeHeader\":{\"labelValue\":\"958120\",\"primaryLabelValue\":\"958120\"}},{\"attributeHeader\":{\"labelValue\":\"958124\",\"primaryLabelValue\":\"958124\"}},{\"attributeHeader\":{\"labelValue\":\"958126\",\"primaryLabelValue\":\"958126\"}},{\"attributeHeader\":{\"labelValue\":\"958128\",\"primaryLabelValue\":\"958128\"}},{\"attributeHeader\":{\"labelValue\":\"958130\",\"primaryLabelValue\":\"958130\"}},{\"attributeHeader\":{\"labelValue\":\"958132\",\"primaryLabelValue\":\"958132\"}},{\"attributeHeader\":{\"labelValue\":\"958134\",\"primaryLabelValue\":\"958134\"}},{\"attributeHeader\":{\"labelValue\":\"958136\",\"primaryLabelValue\":\"958136\"}},{\"attributeHeader\":{\"labelValue\":\"958138\",\"primaryLabelValue\":\"958138\"}},{\"attributeHeader\":{\"labelValue\":\"958140\",\"primaryLabelValue\":\"958140\"}},{\"attributeHeader\":{\"labelValue\":\"958150\",\"primaryLabelValue\":\"958150\"}},{\"attributeHeader\":{\"labelValue\":\"958152\",\"primaryLabelValue\":\"958152\"}},{\"attributeHeader\":{\"labelValue\":\"958156\",\"primaryLabelValue\":\"958156\"}},{\"attributeHeader\":{\"labelValue\":\"958158\",\"primaryLabelValue\":\"958158\"}},{\"attributeHeader\":{\"labelValue\":\"958162\",\"primaryLabelValue\":\"958162\"}},{\"attributeHeader\":{\"labelValue\":\"958166\",\"primaryLabelValue\":\"958166\"}},{\"attributeHeader\":{\"labelValue\":\"958168\",\"primaryLabelValue\":\"958168\"}},{\"attributeHeader\":{\"labelValue\":\"958172\",\"primaryLabelValue\":\"958172\"}},{\"attributeHeader\":{\"labelValue\":\"958174\",\"primaryLabelValue\":\"958174\"}},{\"attributeHeader\":{\"labelValue\":\"958176\",\"primaryLabelValue\":\"958176\"}},{\"attributeHeader\":{\"labelValue\":\"958180\",\"primaryLabelValue\":\"958180\"}},{\"attributeHeader\":{\"labelValue\":\"958184\",\"primaryLabelValue\":\"958184\"}},{\"attributeHeader\":{\"labelValue\":\"958186\",\"primaryLabelValue\":\"958186\"}},{\"attributeHeader\":{\"labelValue\":\"958188\",\"primaryLabelValue\":\"958188\"}},{\"attributeHeader\":{\"labelValue\":\"958190\",\"primaryLabelValue\":\"958190\"}},{\"attributeHeader\":{\"labelValue\":\"958192\",\"primaryLabelValue\":\"958192\"}},{\"attributeHeader\":{\"labelValue\":\"958194\",\"primaryLabelValue\":\"958194\"}},{\"attributeHeader\":{\"labelValue\":\"958196\",\"primaryLabelValue\":\"958196\"}},{\"attributeHeader\":{\"labelValue\":\"958198\",\"primaryLabelValue\":\"958198\"}},{\"attributeHeader\":{\"labelValue\":\"958200\",\"primaryLabelValue\":\"958200\"}},{\"attributeHeader\":{\"labelValue\":\"958202\",\"primaryLabelValue\":\"958202\"}},{\"attributeHeader\":{\"labelValue\":\"958204\",\"primaryLabelValue\":\"958204\"}},{\"attributeHeader\":{\"labelValue\":\"958206\",\"primaryLabelValue\":\"958206\"}},{\"attributeHeader\":{\"labelValue\":\"958208\",\"primaryLabelValue\":\"958208\"}},{\"attributeHeader\":{\"labelValue\":\"958210\",\"primaryLabelValue\":\"958210\"}},{\"attributeHeader\":{\"labelValue\":\"958212\",\"primaryLabelValue\":\"958212\"}},{\"attributeHeader\":{\"labelValue\":\"958214\",\"primaryLabelValue\":\"958214\"}},{\"attributeHeader\":{\"labelValue\":\"958216\",\"primaryLabelValue\":\"958216\"}},{\"attributeHeader\":{\"labelValue\":\"958218\",\"primaryLabelValue\":\"958218\"}},{\"attributeHeader\":{\"labelValue\":\"958220\",\"primaryLabelValue\":\"958220\"}},{\"attributeHeader\":{\"labelValue\":\"958222\",\"primaryLabelValue\":\"958222\"}},{\"attributeHeader\":{\"labelValue\":\"958224\",\"primaryLabelValue\":\"958224\"}},{\"attributeHeader\":{\"labelValue\":\"958226\",\"primaryLabelValue\":\"958226\"}},{\"attributeHeader\":{\"labelValue\":\"958228\",\"primaryLabelValue\":\"958228\"}},{\"attributeHeader\":{\"labelValue\":\"958230\",\"primaryLabelValue\":\"958230\"}},{\"attributeHeader\":{\"labelValue\":\"958232\",\"primaryLabelValue\":\"958232\"}},{\"attributeHeader\":{\"labelValue\":\"958234\",\"primaryLabelValue\":\"958234\"}},{\"attributeHeader\":{\"labelValue\":\"958236\",\"primaryLabelValue\":\"958236\"}},{\"attributeHeader\":{\"labelValue\":\"958238\",\"primaryLabelValue\":\"958238\"}},{\"attributeHeader\":{\"labelValue\":\"958240\",\"primaryLabelValue\":\"958240\"}},{\"attributeHeader\":{\"labelValue\":\"958242\",\"primaryLabelValue\":\"958242\"}},{\"attributeHeader\":{\"labelValue\":\"958244\",\"primaryLabelValue\":\"958244\"}},{\"attributeHeader\":{\"labelValue\":\"958246\",\"primaryLabelValue\":\"958246\"}},{\"attributeHeader\":{\"labelValue\":\"958248\",\"primaryLabelValue\":\"958248\"}},{\"attributeHeader\":{\"labelValue\":\"958250\",\"primaryLabelValue\":\"958250\"}},{\"attributeHeader\":{\"labelValue\":\"958252\",\"primaryLabelValue\":\"958252\"}},{\"attributeHeader\":{\"labelValue\":\"958254\",\"primaryLabelValue\":\"958254\"}},{\"attributeHeader\":{\"labelValue\":\"958256\",\"primaryLabelValue\":\"958256\"}},{\"attributeHeader\":{\"labelValue\":\"958258\",\"primaryLabelValue\":\"958258\"}},{\"attributeHeader\":{\"labelValue\":\"958260\",\"primaryLabelValue\":\"958260\"}},{\"attributeHeader\":{\"labelValue\":\"958262\",\"primaryLabelValue\":\"958262\"}},{\"attributeHeader\":{\"labelValue\":\"958266\",\"primaryLabelValue\":\"958266\"}},{\"attributeHeader\":{\"labelValue\":\"958268\",\"primaryLabelValue\":\"958268\"}},{\"attributeHeader\":{\"labelValue\":\"958270\",\"primaryLabelValue\":\"958270\"}},{\"attributeHeader\":{\"labelValue\":\"958272\",\"primaryLabelValue\":\"958272\"}},{\"attributeHeader\":{\"labelValue\":\"958274\",\"primaryLabelValue\":\"958274\"}},{\"attributeHeader\":{\"labelValue\":\"958276\",\"primaryLabelValue\":\"958276\"}},{\"attributeHeader\":{\"labelValue\":\"958278\",\"primaryLabelValue\":\"958278\"}},{\"attributeHeader\":{\"labelValue\":\"958280\",\"primaryLabelValue\":\"958280\"}},{\"attributeHeader\":{\"labelValue\":\"958282\",\"primaryLabelValue\":\"958282\"}},{\"attributeHeader\":{\"labelValue\":\"958284\",\"primaryLabelValue\":\"958284\"}},{\"attributeHeader\":{\"labelValue\":\"958286\",\"primaryLabelValue\":\"958286\"}},{\"attributeHeader\":{\"labelValue\":\"958288\",\"primaryLabelValue\":\"958288\"}},{\"attributeHeader\":{\"labelValue\":\"958290\",\"primaryLabelValue\":\"958290\"}},{\"attributeHeader\":{\"labelValue\":\"958292\",\"primaryLabelValue\":\"958292\"}},{\"attributeHeader\":{\"labelValue\":\"958296\",\"primaryLabelValue\":\"958296\"}},{\"attributeHeader\":{\"labelValue\":\"958298\",\"primaryLabelValue\":\"958298\"}},{\"attributeHeader\":{\"labelValue\":\"958300\",\"primaryLabelValue\":\"958300\"}},{\"attributeHeader\":{\"labelValue\":\"958302\",\"primaryLabelValue\":\"958302\"}},{\"attributeHeader\":{\"labelValue\":\"958304\",\"primaryLabelValue\":\"958304\"}},{\"attributeHeader\":{\"labelValue\":\"958306\",\"primaryLabelValue\":\"958306\"}},{\"attributeHeader\":{\"labelValue\":\"958308\",\"primaryLabelValue\":\"958308\"}},{\"attributeHeader\":{\"labelValue\":\"958310\",\"primaryLabelValue\":\"958310\"}},{\"attributeHeader\":{\"labelValue\":\"958312\",\"primaryLabelValue\":\"958312\"}},{\"attributeHeader\":{\"labelValue\":\"958314\",\"primaryLabelValue\":\"958314\"}},{\"attributeHeader\":{\"labelValue\":\"958316\",\"primaryLabelValue\":\"958316\"}},{\"attributeHeader\":{\"labelValue\":\"958318\",\"primaryLabelValue\":\"958318\"}},{\"attributeHeader\":{\"labelValue\":\"958322\",\"primaryLabelValue\":\"958322\"}},{\"attributeHeader\":{\"labelValue\":\"958324\",\"primaryLabelValue\":\"958324\"}},{\"attributeHeader\":{\"labelValue\":\"958326\",\"primaryLabelValue\":\"958326\"}},{\"attributeHeader\":{\"labelValue\":\"958328\",\"primaryLabelValue\":\"958328\"}},{\"attributeHeader\":{\"labelValue\":\"958330\",\"primaryLabelValue\":\"958330\"}},{\"attributeHeader\":{\"labelValue\":\"958332\",\"primaryLabelValue\":\"958332\"}},{\"attributeHeader\":{\"labelValue\":\"958334\",\"primaryLabelValue\":\"958334\"}},{\"attributeHeader\":{\"labelValue\":\"958336\",\"primaryLabelValue\":\"958336\"}},{\"attributeHeader\":{\"labelValue\":\"958338\",\"primaryLabelValue\":\"958338\"}},{\"attributeHeader\":{\"labelValue\":\"958340\",\"primaryLabelValue\":\"958340\"}},{\"attributeHeader\":{\"labelValue\":\"958342\",\"primaryLabelValue\":\"958342\"}},{\"attributeHeader\":{\"labelValue\":\"958344\",\"primaryLabelValue\":\"958344\"}},{\"attributeHeader\":{\"labelValue\":\"958346\",\"primaryLabelValue\":\"958346\"}},{\"attributeHeader\":{\"labelValue\":\"958348\",\"primaryLabelValue\":\"958348\"}},{\"attributeHeader\":{\"labelValue\":\"958350\",\"primaryLabelValue\":\"958350\"}},{\"attributeHeader\":{\"labelValue\":\"958354\",\"primaryLabelValue\":\"958354\"}},{\"attributeHeader\":{\"labelValue\":\"958356\",\"primaryLabelValue\":\"958356\"}},{\"attributeHeader\":{\"labelValue\":\"958360\",\"primaryLabelValue\":\"958360\"}},{\"attributeHeader\":{\"labelValue\":\"958364\",\"primaryLabelValue\":\"958364\"}},{\"attributeHeader\":{\"labelValue\":\"958366\",\"primaryLabelValue\":\"958366\"}},{\"attributeHeader\":{\"labelValue\":\"958368\",\"primaryLabelValue\":\"958368\"}},{\"attributeHeader\":{\"labelValue\":\"958370\",\"primaryLabelValue\":\"958370\"}},{\"attributeHeader\":{\"labelValue\":\"958372\",\"primaryLabelValue\":\"958372\"}},{\"attributeHeader\":{\"labelValue\":\"958374\",\"primaryLabelValue\":\"958374\"}},{\"attributeHeader\":{\"labelValue\":\"958376\",\"primaryLabelValue\":\"958376\"}},{\"attributeHeader\":{\"labelValue\":\"958378\",\"primaryLabelValue\":\"958378\"}},{\"attributeHeader\":{\"labelValue\":\"958380\",\"primaryLabelValue\":\"958380\"}},{\"attributeHeader\":{\"labelValue\":\"958382\",\"primaryLabelValue\":\"958382\"}},{\"attributeHeader\":{\"labelValue\":\"958384\",\"primaryLabelValue\":\"958384\"}},{\"attributeHeader\":{\"labelValue\":\"958386\",\"primaryLabelValue\":\"958386\"}},{\"attributeHeader\":{\"labelValue\":\"958388\",\"primaryLabelValue\":\"958388\"}},{\"attributeHeader\":{\"labelValue\":\"958390\",\"primaryLabelValue\":\"958390\"}},{\"attributeHeader\":{\"labelValue\":\"958392\",\"primaryLabelValue\":\"958392\"}},{\"attributeHeader\":{\"labelValue\":\"958396\",\"primaryLabelValue\":\"958396\"}},{\"attributeHeader\":{\"labelValue\":\"958398\",\"primaryLabelValue\":\"958398\"}},{\"attributeHeader\":{\"labelValue\":\"958400\",\"primaryLabelValue\":\"958400\"}},{\"attributeHeader\":{\"labelValue\":\"958402\",\"primaryLabelValue\":\"958402\"}},{\"attributeHeader\":{\"labelValue\":\"958404\",\"primaryLabelValue\":\"958404\"}},{\"attributeHeader\":{\"labelValue\":\"958406\",\"primaryLabelValue\":\"958406\"}},{\"attributeHeader\":{\"labelValue\":\"958408\",\"primaryLabelValue\":\"958408\"}},{\"attributeHeader\":{\"labelValue\":\"958410\",\"primaryLabelValue\":\"958410\"}},{\"attributeHeader\":{\"labelValue\":\"958412\",\"primaryLabelValue\":\"958412\"}},{\"attributeHeader\":{\"labelValue\":\"958414\",\"primaryLabelValue\":\"958414\"}},{\"attributeHeader\":{\"labelValue\":\"958416\",\"primaryLabelValue\":\"958416\"}},{\"attributeHeader\":{\"labelValue\":\"958418\",\"primaryLabelValue\":\"958418\"}},{\"attributeHeader\":{\"labelValue\":\"958420\",\"primaryLabelValue\":\"958420\"}},{\"attributeHeader\":{\"labelValue\":\"958424\",\"primaryLabelValue\":\"958424\"}},{\"attributeHeader\":{\"labelValue\":\"958426\",\"primaryLabelValue\":\"958426\"}},{\"attributeHeader\":{\"labelValue\":\"958428\",\"primaryLabelValue\":\"958428\"}},{\"attributeHeader\":{\"labelValue\":\"958430\",\"primaryLabelValue\":\"958430\"}},{\"attributeHeader\":{\"labelValue\":\"958432\",\"primaryLabelValue\":\"958432\"}},{\"attributeHeader\":{\"labelValue\":\"958434\",\"primaryLabelValue\":\"958434\"}},{\"attributeHeader\":{\"labelValue\":\"958436\",\"primaryLabelValue\":\"958436\"}},{\"attributeHeader\":{\"labelValue\":\"958438\",\"primaryLabelValue\":\"958438\"}},{\"attributeHeader\":{\"labelValue\":\"958440\",\"primaryLabelValue\":\"958440\"}},{\"attributeHeader\":{\"labelValue\":\"958442\",\"primaryLabelValue\":\"958442\"}},{\"attributeHeader\":{\"labelValue\":\"958444\",\"primaryLabelValue\":\"958444\"}},{\"attributeHeader\":{\"labelValue\":\"958446\",\"primaryLabelValue\":\"958446\"}},{\"attributeHeader\":{\"labelValue\":\"958448\",\"primaryLabelValue\":\"958448\"}},{\"attributeHeader\":{\"labelValue\":\"958450\",\"primaryLabelValue\":\"958450\"}},{\"attributeHeader\":{\"labelValue\":\"958452\",\"primaryLabelValue\":\"958452\"}},{\"attributeHeader\":{\"labelValue\":\"958454\",\"primaryLabelValue\":\"958454\"}},{\"attributeHeader\":{\"labelValue\":\"958456\",\"primaryLabelValue\":\"958456\"}},{\"attributeHeader\":{\"labelValue\":\"958458\",\"primaryLabelValue\":\"958458\"}},{\"attributeHeader\":{\"labelValue\":\"958460\",\"primaryLabelValue\":\"958460\"}},{\"attributeHeader\":{\"labelValue\":\"958462\",\"primaryLabelValue\":\"958462\"}},{\"attributeHeader\":{\"labelValue\":\"958464\",\"primaryLabelValue\":\"958464\"}},{\"attributeHeader\":{\"labelValue\":\"958466\",\"primaryLabelValue\":\"958466\"}},{\"attributeHeader\":{\"labelValue\":\"958468\",\"primaryLabelValue\":\"958468\"}},{\"attributeHeader\":{\"labelValue\":\"958472\",\"primaryLabelValue\":\"958472\"}},{\"attributeHeader\":{\"labelValue\":\"958474\",\"primaryLabelValue\":\"958474\"}},{\"attributeHeader\":{\"labelValue\":\"958476\",\"primaryLabelValue\":\"958476\"}},{\"attributeHeader\":{\"labelValue\":\"958478\",\"primaryLabelValue\":\"958478\"}},{\"attributeHeader\":{\"labelValue\":\"958480\",\"primaryLabelValue\":\"958480\"}},{\"attributeHeader\":{\"labelValue\":\"958482\",\"primaryLabelValue\":\"958482\"}},{\"attributeHeader\":{\"labelValue\":\"958484\",\"primaryLabelValue\":\"958484\"}},{\"attributeHeader\":{\"labelValue\":\"958486\",\"primaryLabelValue\":\"958486\"}},{\"attributeHeader\":{\"labelValue\":\"958488\",\"primaryLabelValue\":\"958488\"}},{\"attributeHeader\":{\"labelValue\":\"958490\",\"primaryLabelValue\":\"958490\"}},{\"attributeHeader\":{\"labelValue\":\"958492\",\"primaryLabelValue\":\"958492\"}},{\"attributeHeader\":{\"labelValue\":\"958494\",\"primaryLabelValue\":\"958494\"}},{\"attributeHeader\":{\"labelValue\":\"958496\",\"primaryLabelValue\":\"958496\"}},{\"attributeHeader\":{\"labelValue\":\"958498\",\"primaryLabelValue\":\"958498\"}},{\"attributeHeader\":{\"labelValue\":\"958504\",\"primaryLabelValue\":\"958504\"}},{\"attributeHeader\":{\"labelValue\":\"958506\",\"primaryLabelValue\":\"958506\"}},{\"attributeHeader\":{\"labelValue\":\"958510\",\"primaryLabelValue\":\"958510\"}},{\"attributeHeader\":{\"labelValue\":\"958512\",\"primaryLabelValue\":\"958512\"}},{\"attributeHeader\":{\"labelValue\":\"958514\",\"primaryLabelValue\":\"958514\"}},{\"attributeHeader\":{\"labelValue\":\"958516\",\"primaryLabelValue\":\"958516\"}},{\"attributeHeader\":{\"labelValue\":\"958518\",\"primaryLabelValue\":\"958518\"}},{\"attributeHeader\":{\"labelValue\":\"958520\",\"primaryLabelValue\":\"958520\"}},{\"attributeHeader\":{\"labelValue\":\"958522\",\"primaryLabelValue\":\"958522\"}},{\"attributeHeader\":{\"labelValue\":\"958524\",\"primaryLabelValue\":\"958524\"}},{\"attributeHeader\":{\"labelValue\":\"958526\",\"primaryLabelValue\":\"958526\"}},{\"attributeHeader\":{\"labelValue\":\"958528\",\"primaryLabelValue\":\"958528\"}},{\"attributeHeader\":{\"labelValue\":\"958530\",\"primaryLabelValue\":\"958530\"}},{\"attributeHeader\":{\"labelValue\":\"958532\",\"primaryLabelValue\":\"958532\"}},{\"attributeHeader\":{\"labelValue\":\"958534\",\"primaryLabelValue\":\"958534\"}},{\"attributeHeader\":{\"labelValue\":\"958536\",\"primaryLabelValue\":\"958536\"}},{\"attributeHeader\":{\"labelValue\":\"958538\",\"primaryLabelValue\":\"958538\"}},{\"attributeHeader\":{\"labelValue\":\"958540\",\"primaryLabelValue\":\"958540\"}},{\"attributeHeader\":{\"labelValue\":\"958542\",\"primaryLabelValue\":\"958542\"}},{\"attributeHeader\":{\"labelValue\":\"958544\",\"primaryLabelValue\":\"958544\"}},{\"attributeHeader\":{\"labelValue\":\"958546\",\"primaryLabelValue\":\"958546\"}},{\"attributeHeader\":{\"labelValue\":\"958548\",\"primaryLabelValue\":\"958548\"}},{\"attributeHeader\":{\"labelValue\":\"958550\",\"primaryLabelValue\":\"958550\"}},{\"attributeHeader\":{\"labelValue\":\"958552\",\"primaryLabelValue\":\"958552\"}},{\"attributeHeader\":{\"labelValue\":\"958554\",\"primaryLabelValue\":\"958554\"}},{\"attributeHeader\":{\"labelValue\":\"958556\",\"primaryLabelValue\":\"958556\"}},{\"attributeHeader\":{\"labelValue\":\"958558\",\"primaryLabelValue\":\"958558\"}},{\"attributeHeader\":{\"labelValue\":\"958560\",\"primaryLabelValue\":\"958560\"}},{\"attributeHeader\":{\"labelValue\":\"958564\",\"primaryLabelValue\":\"958564\"}},{\"attributeHeader\":{\"labelValue\":\"958566\",\"primaryLabelValue\":\"958566\"}},{\"attributeHeader\":{\"labelValue\":\"958568\",\"primaryLabelValue\":\"958568\"}},{\"attributeHeader\":{\"labelValue\":\"958570\",\"primaryLabelValue\":\"958570\"}},{\"attributeHeader\":{\"labelValue\":\"958572\",\"primaryLabelValue\":\"958572\"}},{\"attributeHeader\":{\"labelValue\":\"958574\",\"primaryLabelValue\":\"958574\"}},{\"attributeHeader\":{\"labelValue\":\"958576\",\"primaryLabelValue\":\"958576\"}},{\"attributeHeader\":{\"labelValue\":\"958578\",\"primaryLabelValue\":\"958578\"}},{\"attributeHeader\":{\"labelValue\":\"958580\",\"primaryLabelValue\":\"958580\"}},{\"attributeHeader\":{\"labelValue\":\"958582\",\"primaryLabelValue\":\"958582\"}},{\"attributeHeader\":{\"labelValue\":\"958584\",\"primaryLabelValue\":\"958584\"}},{\"attributeHeader\":{\"labelValue\":\"958586\",\"primaryLabelValue\":\"958586\"}},{\"attributeHeader\":{\"labelValue\":\"958588\",\"primaryLabelValue\":\"958588\"}},{\"attributeHeader\":{\"labelValue\":\"958590\",\"primaryLabelValue\":\"958590\"}},{\"attributeHeader\":{\"labelValue\":\"958592\",\"primaryLabelValue\":\"958592\"}},{\"attributeHeader\":{\"labelValue\":\"958594\",\"primaryLabelValue\":\"958594\"}},{\"attributeHeader\":{\"labelValue\":\"958596\",\"primaryLabelValue\":\"958596\"}},{\"attributeHeader\":{\"labelValue\":\"958598\",\"primaryLabelValue\":\"958598\"}},{\"attributeHeader\":{\"labelValue\":\"958600\",\"primaryLabelValue\":\"958600\"}},{\"attributeHeader\":{\"labelValue\":\"958602\",\"primaryLabelValue\":\"958602\"}},{\"attributeHeader\":{\"labelValue\":\"958604\",\"primaryLabelValue\":\"958604\"}},{\"attributeHeader\":{\"labelValue\":\"958606\",\"primaryLabelValue\":\"958606\"}},{\"attributeHeader\":{\"labelValue\":\"958608\",\"primaryLabelValue\":\"958608\"}},{\"attributeHeader\":{\"labelValue\":\"958610\",\"primaryLabelValue\":\"958610\"}},{\"attributeHeader\":{\"labelValue\":\"958612\",\"primaryLabelValue\":\"958612\"}},{\"attributeHeader\":{\"labelValue\":\"958614\",\"primaryLabelValue\":\"958614\"}},{\"attributeHeader\":{\"labelValue\":\"958616\",\"primaryLabelValue\":\"958616\"}},{\"attributeHeader\":{\"labelValue\":\"958618\",\"primaryLabelValue\":\"958618\"}},{\"attributeHeader\":{\"labelValue\":\"958620\",\"primaryLabelValue\":\"958620\"}},{\"attributeHeader\":{\"labelValue\":\"958622\",\"primaryLabelValue\":\"958622\"}},{\"attributeHeader\":{\"labelValue\":\"958624\",\"primaryLabelValue\":\"958624\"}},{\"attributeHeader\":{\"labelValue\":\"958626\",\"primaryLabelValue\":\"958626\"}},{\"attributeHeader\":{\"labelValue\":\"958628\",\"primaryLabelValue\":\"958628\"}},{\"attributeHeader\":{\"labelValue\":\"958630\",\"primaryLabelValue\":\"958630\"}},{\"attributeHeader\":{\"labelValue\":\"958632\",\"primaryLabelValue\":\"958632\"}},{\"attributeHeader\":{\"labelValue\":\"958634\",\"primaryLabelValue\":\"958634\"}},{\"attributeHeader\":{\"labelValue\":\"958636\",\"primaryLabelValue\":\"958636\"}},{\"attributeHeader\":{\"labelValue\":\"958638\",\"primaryLabelValue\":\"958638\"}},{\"attributeHeader\":{\"labelValue\":\"958640\",\"primaryLabelValue\":\"958640\"}},{\"attributeHeader\":{\"labelValue\":\"958642\",\"primaryLabelValue\":\"958642\"}},{\"attributeHeader\":{\"labelValue\":\"958644\",\"primaryLabelValue\":\"958644\"}},{\"attributeHeader\":{\"labelValue\":\"958646\",\"primaryLabelValue\":\"958646\"}},{\"attributeHeader\":{\"labelValue\":\"958648\",\"primaryLabelValue\":\"958648\"}},{\"attributeHeader\":{\"labelValue\":\"958650\",\"primaryLabelValue\":\"958650\"}},{\"attributeHeader\":{\"labelValue\":\"958652\",\"primaryLabelValue\":\"958652\"}},{\"attributeHeader\":{\"labelValue\":\"958654\",\"primaryLabelValue\":\"958654\"}},{\"attributeHeader\":{\"labelValue\":\"958656\",\"primaryLabelValue\":\"958656\"}},{\"attributeHeader\":{\"labelValue\":\"958658\",\"primaryLabelValue\":\"958658\"}},{\"attributeHeader\":{\"labelValue\":\"958660\",\"primaryLabelValue\":\"958660\"}},{\"attributeHeader\":{\"labelValue\":\"958662\",\"primaryLabelValue\":\"958662\"}},{\"attributeHeader\":{\"labelValue\":\"958664\",\"primaryLabelValue\":\"958664\"}},{\"attributeHeader\":{\"labelValue\":\"958666\",\"primaryLabelValue\":\"958666\"}},{\"attributeHeader\":{\"labelValue\":\"958668\",\"primaryLabelValue\":\"958668\"}},{\"attributeHeader\":{\"labelValue\":\"958670\",\"primaryLabelValue\":\"958670\"}},{\"attributeHeader\":{\"labelValue\":\"958672\",\"primaryLabelValue\":\"958672\"}},{\"attributeHeader\":{\"labelValue\":\"958674\",\"primaryLabelValue\":\"958674\"}},{\"attributeHeader\":{\"labelValue\":\"958676\",\"primaryLabelValue\":\"958676\"}},{\"attributeHeader\":{\"labelValue\":\"958678\",\"primaryLabelValue\":\"958678\"}},{\"attributeHeader\":{\"labelValue\":\"958680\",\"primaryLabelValue\":\"958680\"}},{\"attributeHeader\":{\"labelValue\":\"958682\",\"primaryLabelValue\":\"958682\"}},{\"attributeHeader\":{\"labelValue\":\"958684\",\"primaryLabelValue\":\"958684\"}},{\"attributeHeader\":{\"labelValue\":\"958686\",\"primaryLabelValue\":\"958686\"}},{\"attributeHeader\":{\"labelValue\":\"958688\",\"primaryLabelValue\":\"958688\"}},{\"attributeHeader\":{\"labelValue\":\"958690\",\"primaryLabelValue\":\"958690\"}},{\"attributeHeader\":{\"labelValue\":\"958692\",\"primaryLabelValue\":\"958692\"}},{\"attributeHeader\":{\"labelValue\":\"958694\",\"primaryLabelValue\":\"958694\"}},{\"attributeHeader\":{\"labelValue\":\"958696\",\"primaryLabelValue\":\"958696\"}},{\"attributeHeader\":{\"labelValue\":\"958698\",\"primaryLabelValue\":\"958698\"}},{\"attributeHeader\":{\"labelValue\":\"958700\",\"primaryLabelValue\":\"958700\"}},{\"attributeHeader\":{\"labelValue\":\"958702\",\"primaryLabelValue\":\"958702\"}},{\"attributeHeader\":{\"labelValue\":\"958704\",\"primaryLabelValue\":\"958704\"}},{\"attributeHeader\":{\"labelValue\":\"958706\",\"primaryLabelValue\":\"958706\"}},{\"attributeHeader\":{\"labelValue\":\"958708\",\"primaryLabelValue\":\"958708\"}},{\"attributeHeader\":{\"labelValue\":\"958710\",\"primaryLabelValue\":\"958710\"}},{\"attributeHeader\":{\"labelValue\":\"958712\",\"primaryLabelValue\":\"958712\"}},{\"attributeHeader\":{\"labelValue\":\"958714\",\"primaryLabelValue\":\"958714\"}},{\"attributeHeader\":{\"labelValue\":\"958716\",\"primaryLabelValue\":\"958716\"}},{\"attributeHeader\":{\"labelValue\":\"958718\",\"primaryLabelValue\":\"958718\"}},{\"attributeHeader\":{\"labelValue\":\"958720\",\"primaryLabelValue\":\"958720\"}},{\"attributeHeader\":{\"labelValue\":\"958722\",\"primaryLabelValue\":\"958722\"}},{\"attributeHeader\":{\"labelValue\":\"958724\",\"primaryLabelValue\":\"958724\"}},{\"attributeHeader\":{\"labelValue\":\"958726\",\"primaryLabelValue\":\"958726\"}},{\"attributeHeader\":{\"labelValue\":\"958728\",\"primaryLabelValue\":\"958728\"}},{\"attributeHeader\":{\"labelValue\":\"958730\",\"primaryLabelValue\":\"958730\"}},{\"attributeHeader\":{\"labelValue\":\"958732\",\"primaryLabelValue\":\"958732\"}},{\"attributeHeader\":{\"labelValue\":\"958734\",\"primaryLabelValue\":\"958734\"}},{\"attributeHeader\":{\"labelValue\":\"958736\",\"primaryLabelValue\":\"958736\"}},{\"attributeHeader\":{\"labelValue\":\"958738\",\"primaryLabelValue\":\"958738\"}},{\"attributeHeader\":{\"labelValue\":\"958740\",\"primaryLabelValue\":\"958740\"}},{\"attributeHeader\":{\"labelValue\":\"958742\",\"primaryLabelValue\":\"958742\"}},{\"attributeHeader\":{\"labelValue\":\"958744\",\"primaryLabelValue\":\"958744\"}},{\"attributeHeader\":{\"labelValue\":\"958746\",\"primaryLabelValue\":\"958746\"}},{\"attributeHeader\":{\"labelValue\":\"958748\",\"primaryLabelValue\":\"958748\"}},{\"attributeHeader\":{\"labelValue\":\"958750\",\"primaryLabelValue\":\"958750\"}},{\"attributeHeader\":{\"labelValue\":\"958752\",\"primaryLabelValue\":\"958752\"}},{\"attributeHeader\":{\"labelValue\":\"958754\",\"primaryLabelValue\":\"958754\"}},{\"attributeHeader\":{\"labelValue\":\"958756\",\"primaryLabelValue\":\"958756\"}},{\"attributeHeader\":{\"labelValue\":\"958758\",\"primaryLabelValue\":\"958758\"}},{\"attributeHeader\":{\"labelValue\":\"958760\",\"primaryLabelValue\":\"958760\"}},{\"attributeHeader\":{\"labelValue\":\"958762\",\"primaryLabelValue\":\"958762\"}},{\"attributeHeader\":{\"labelValue\":\"958764\",\"primaryLabelValue\":\"958764\"}},{\"attributeHeader\":{\"labelValue\":\"958766\",\"primaryLabelValue\":\"958766\"}},{\"attributeHeader\":{\"labelValue\":\"958768\",\"primaryLabelValue\":\"958768\"}},{\"attributeHeader\":{\"labelValue\":\"958770\",\"primaryLabelValue\":\"958770\"}},{\"attributeHeader\":{\"labelValue\":\"958772\",\"primaryLabelValue\":\"958772\"}},{\"attributeHeader\":{\"labelValue\":\"958774\",\"primaryLabelValue\":\"958774\"}},{\"attributeHeader\":{\"labelValue\":\"958776\",\"primaryLabelValue\":\"958776\"}},{\"attributeHeader\":{\"labelValue\":\"958778\",\"primaryLabelValue\":\"958778\"}},{\"attributeHeader\":{\"labelValue\":\"958780\",\"primaryLabelValue\":\"958780\"}},{\"attributeHeader\":{\"labelValue\":\"958782\",\"primaryLabelValue\":\"958782\"}},{\"attributeHeader\":{\"labelValue\":\"958784\",\"primaryLabelValue\":\"958784\"}},{\"attributeHeader\":{\"labelValue\":\"958786\",\"primaryLabelValue\":\"958786\"}},{\"attributeHeader\":{\"labelValue\":\"958788\",\"primaryLabelValue\":\"958788\"}},{\"attributeHeader\":{\"labelValue\":\"958790\",\"primaryLabelValue\":\"958790\"}},{\"attributeHeader\":{\"labelValue\":\"958792\",\"primaryLabelValue\":\"958792\"}},{\"attributeHeader\":{\"labelValue\":\"958794\",\"primaryLabelValue\":\"958794\"}},{\"attributeHeader\":{\"labelValue\":\"958796\",\"primaryLabelValue\":\"958796\"}},{\"attributeHeader\":{\"labelValue\":\"958798\",\"primaryLabelValue\":\"958798\"}},{\"attributeHeader\":{\"labelValue\":\"958800\",\"primaryLabelValue\":\"958800\"}},{\"attributeHeader\":{\"labelValue\":\"958802\",\"primaryLabelValue\":\"958802\"}},{\"attributeHeader\":{\"labelValue\":\"958804\",\"primaryLabelValue\":\"958804\"}},{\"attributeHeader\":{\"labelValue\":\"958806\",\"primaryLabelValue\":\"958806\"}},{\"attributeHeader\":{\"labelValue\":\"958808\",\"primaryLabelValue\":\"958808\"}},{\"attributeHeader\":{\"labelValue\":\"958810\",\"primaryLabelValue\":\"958810\"}},{\"attributeHeader\":{\"labelValue\":\"958812\",\"primaryLabelValue\":\"958812\"}},{\"attributeHeader\":{\"labelValue\":\"958814\",\"primaryLabelValue\":\"958814\"}},{\"attributeHeader\":{\"labelValue\":\"958816\",\"primaryLabelValue\":\"958816\"}},{\"attributeHeader\":{\"labelValue\":\"958818\",\"primaryLabelValue\":\"958818\"}},{\"attributeHeader\":{\"labelValue\":\"958820\",\"primaryLabelValue\":\"958820\"}},{\"attributeHeader\":{\"labelValue\":\"958822\",\"primaryLabelValue\":\"958822\"}},{\"attributeHeader\":{\"labelValue\":\"958824\",\"primaryLabelValue\":\"958824\"}},{\"attributeHeader\":{\"labelValue\":\"958826\",\"primaryLabelValue\":\"958826\"}},{\"attributeHeader\":{\"labelValue\":\"958828\",\"primaryLabelValue\":\"958828\"}},{\"attributeHeader\":{\"labelValue\":\"958830\",\"primaryLabelValue\":\"958830\"}},{\"attributeHeader\":{\"labelValue\":\"958834\",\"primaryLabelValue\":\"958834\"}},{\"attributeHeader\":{\"labelValue\":\"958836\",\"primaryLabelValue\":\"958836\"}},{\"attributeHeader\":{\"labelValue\":\"958838\",\"primaryLabelValue\":\"958838\"}},{\"attributeHeader\":{\"labelValue\":\"958840\",\"primaryLabelValue\":\"958840\"}},{\"attributeHeader\":{\"labelValue\":\"958842\",\"primaryLabelValue\":\"958842\"}},{\"attributeHeader\":{\"labelValue\":\"958844\",\"primaryLabelValue\":\"958844\"}},{\"attributeHeader\":{\"labelValue\":\"958846\",\"primaryLabelValue\":\"958846\"}},{\"attributeHeader\":{\"labelValue\":\"958848\",\"primaryLabelValue\":\"958848\"}},{\"attributeHeader\":{\"labelValue\":\"958850\",\"primaryLabelValue\":\"958850\"}},{\"attributeHeader\":{\"labelValue\":\"958852\",\"primaryLabelValue\":\"958852\"}},{\"attributeHeader\":{\"labelValue\":\"958854\",\"primaryLabelValue\":\"958854\"}},{\"attributeHeader\":{\"labelValue\":\"958856\",\"primaryLabelValue\":\"958856\"}},{\"attributeHeader\":{\"labelValue\":\"958858\",\"primaryLabelValue\":\"958858\"}},{\"attributeHeader\":{\"labelValue\":\"958860\",\"primaryLabelValue\":\"958860\"}},{\"attributeHeader\":{\"labelValue\":\"958862\",\"primaryLabelValue\":\"958862\"}},{\"attributeHeader\":{\"labelValue\":\"958864\",\"primaryLabelValue\":\"958864\"}},{\"attributeHeader\":{\"labelValue\":\"958866\",\"primaryLabelValue\":\"958866\"}},{\"attributeHeader\":{\"labelValue\":\"958868\",\"primaryLabelValue\":\"958868\"}},{\"attributeHeader\":{\"labelValue\":\"958870\",\"primaryLabelValue\":\"958870\"}},{\"attributeHeader\":{\"labelValue\":\"958872\",\"primaryLabelValue\":\"958872\"}},{\"attributeHeader\":{\"labelValue\":\"958874\",\"primaryLabelValue\":\"958874\"}},{\"attributeHeader\":{\"labelValue\":\"958876\",\"primaryLabelValue\":\"958876\"}},{\"attributeHeader\":{\"labelValue\":\"958878\",\"primaryLabelValue\":\"958878\"}},{\"attributeHeader\":{\"labelValue\":\"958880\",\"primaryLabelValue\":\"958880\"}},{\"attributeHeader\":{\"labelValue\":\"958882\",\"primaryLabelValue\":\"958882\"}},{\"attributeHeader\":{\"labelValue\":\"958884\",\"primaryLabelValue\":\"958884\"}},{\"attributeHeader\":{\"labelValue\":\"958886\",\"primaryLabelValue\":\"958886\"}},{\"attributeHeader\":{\"labelValue\":\"958888\",\"primaryLabelValue\":\"958888\"}},{\"attributeHeader\":{\"labelValue\":\"958890\",\"primaryLabelValue\":\"958890\"}},{\"attributeHeader\":{\"labelValue\":\"958892\",\"primaryLabelValue\":\"958892\"}},{\"attributeHeader\":{\"labelValue\":\"958894\",\"primaryLabelValue\":\"958894\"}},{\"attributeHeader\":{\"labelValue\":\"958896\",\"primaryLabelValue\":\"958896\"}},{\"attributeHeader\":{\"labelValue\":\"958898\",\"primaryLabelValue\":\"958898\"}},{\"attributeHeader\":{\"labelValue\":\"958900\",\"primaryLabelValue\":\"958900\"}},{\"attributeHeader\":{\"labelValue\":\"958902\",\"primaryLabelValue\":\"958902\"}},{\"attributeHeader\":{\"labelValue\":\"958904\",\"primaryLabelValue\":\"958904\"}},{\"attributeHeader\":{\"labelValue\":\"958906\",\"primaryLabelValue\":\"958906\"}},{\"attributeHeader\":{\"labelValue\":\"958908\",\"primaryLabelValue\":\"958908\"}},{\"attributeHeader\":{\"labelValue\":\"958910\",\"primaryLabelValue\":\"958910\"}},{\"attributeHeader\":{\"labelValue\":\"958912\",\"primaryLabelValue\":\"958912\"}},{\"attributeHeader\":{\"labelValue\":\"958914\",\"primaryLabelValue\":\"958914\"}},{\"attributeHeader\":{\"labelValue\":\"958916\",\"primaryLabelValue\":\"958916\"}},{\"attributeHeader\":{\"labelValue\":\"958918\",\"primaryLabelValue\":\"958918\"}},{\"attributeHeader\":{\"labelValue\":\"958920\",\"primaryLabelValue\":\"958920\"}},{\"attributeHeader\":{\"labelValue\":\"958922\",\"primaryLabelValue\":\"958922\"}},{\"attributeHeader\":{\"labelValue\":\"958924\",\"primaryLabelValue\":\"958924\"}},{\"attributeHeader\":{\"labelValue\":\"958926\",\"primaryLabelValue\":\"958926\"}},{\"attributeHeader\":{\"labelValue\":\"958928\",\"primaryLabelValue\":\"958928\"}},{\"attributeHeader\":{\"labelValue\":\"958930\",\"primaryLabelValue\":\"958930\"}},{\"attributeHeader\":{\"labelValue\":\"958932\",\"primaryLabelValue\":\"958932\"}},{\"attributeHeader\":{\"labelValue\":\"958934\",\"primaryLabelValue\":\"958934\"}},{\"attributeHeader\":{\"labelValue\":\"958936\",\"primaryLabelValue\":\"958936\"}},{\"attributeHeader\":{\"labelValue\":\"958938\",\"primaryLabelValue\":\"958938\"}},{\"attributeHeader\":{\"labelValue\":\"958940\",\"primaryLabelValue\":\"958940\"}},{\"attributeHeader\":{\"labelValue\":\"958942\",\"primaryLabelValue\":\"958942\"}},{\"attributeHeader\":{\"labelValue\":\"958944\",\"primaryLabelValue\":\"958944\"}},{\"attributeHeader\":{\"labelValue\":\"958946\",\"primaryLabelValue\":\"958946\"}},{\"attributeHeader\":{\"labelValue\":\"958948\",\"primaryLabelValue\":\"958948\"}},{\"attributeHeader\":{\"labelValue\":\"958950\",\"primaryLabelValue\":\"958950\"}},{\"attributeHeader\":{\"labelValue\":\"958952\",\"primaryLabelValue\":\"958952\"}},{\"attributeHeader\":{\"labelValue\":\"958954\",\"primaryLabelValue\":\"958954\"}},{\"attributeHeader\":{\"labelValue\":\"958956\",\"primaryLabelValue\":\"958956\"}},{\"attributeHeader\":{\"labelValue\":\"958958\",\"primaryLabelValue\":\"958958\"}},{\"attributeHeader\":{\"labelValue\":\"958960\",\"primaryLabelValue\":\"958960\"}},{\"attributeHeader\":{\"labelValue\":\"958962\",\"primaryLabelValue\":\"958962\"}},{\"attributeHeader\":{\"labelValue\":\"958964\",\"primaryLabelValue\":\"958964\"}},{\"attributeHeader\":{\"labelValue\":\"958966\",\"primaryLabelValue\":\"958966\"}},{\"attributeHeader\":{\"labelValue\":\"958968\",\"primaryLabelValue\":\"958968\"}},{\"attributeHeader\":{\"labelValue\":\"958970\",\"primaryLabelValue\":\"958970\"}},{\"attributeHeader\":{\"labelValue\":\"958972\",\"primaryLabelValue\":\"958972\"}},{\"attributeHeader\":{\"labelValue\":\"958974\",\"primaryLabelValue\":\"958974\"}},{\"attributeHeader\":{\"labelValue\":\"958976\",\"primaryLabelValue\":\"958976\"}},{\"attributeHeader\":{\"labelValue\":\"958978\",\"primaryLabelValue\":\"958978\"}},{\"attributeHeader\":{\"labelValue\":\"958980\",\"primaryLabelValue\":\"958980\"}},{\"attributeHeader\":{\"labelValue\":\"958982\",\"primaryLabelValue\":\"958982\"}},{\"attributeHeader\":{\"labelValue\":\"958984\",\"primaryLabelValue\":\"958984\"}},{\"attributeHeader\":{\"labelValue\":\"958986\",\"primaryLabelValue\":\"958986\"}},{\"attributeHeader\":{\"labelValue\":\"958988\",\"primaryLabelValue\":\"958988\"}},{\"attributeHeader\":{\"labelValue\":\"958990\",\"primaryLabelValue\":\"958990\"}},{\"attributeHeader\":{\"labelValue\":\"958992\",\"primaryLabelValue\":\"958992\"}},{\"attributeHeader\":{\"labelValue\":\"958994\",\"primaryLabelValue\":\"958994\"}},{\"attributeHeader\":{\"labelValue\":\"958996\",\"primaryLabelValue\":\"958996\"}},{\"attributeHeader\":{\"labelValue\":\"958998\",\"primaryLabelValue\":\"958998\"}},{\"attributeHeader\":{\"labelValue\":\"959000\",\"primaryLabelValue\":\"959000\"}},{\"attributeHeader\":{\"labelValue\":\"959002\",\"primaryLabelValue\":\"959002\"}},{\"attributeHeader\":{\"labelValue\":\"959004\",\"primaryLabelValue\":\"959004\"}},{\"attributeHeader\":{\"labelValue\":\"959006\",\"primaryLabelValue\":\"959006\"}},{\"attributeHeader\":{\"labelValue\":\"959008\",\"primaryLabelValue\":\"959008\"}},{\"attributeHeader\":{\"labelValue\":\"959010\",\"primaryLabelValue\":\"959010\"}},{\"attributeHeader\":{\"labelValue\":\"959012\",\"primaryLabelValue\":\"959012\"}},{\"attributeHeader\":{\"labelValue\":\"959014\",\"primaryLabelValue\":\"959014\"}},{\"attributeHeader\":{\"labelValue\":\"959016\",\"primaryLabelValue\":\"959016\"}},{\"attributeHeader\":{\"labelValue\":\"959018\",\"primaryLabelValue\":\"959018\"}},{\"attributeHeader\":{\"labelValue\":\"959020\",\"primaryLabelValue\":\"959020\"}},{\"attributeHeader\":{\"labelValue\":\"959022\",\"primaryLabelValue\":\"959022\"}},{\"attributeHeader\":{\"labelValue\":\"959024\",\"primaryLabelValue\":\"959024\"}},{\"attributeHeader\":{\"labelValue\":\"959026\",\"primaryLabelValue\":\"959026\"}},{\"attributeHeader\":{\"labelValue\":\"959028\",\"primaryLabelValue\":\"959028\"}},{\"attributeHeader\":{\"labelValue\":\"959030\",\"primaryLabelValue\":\"959030\"}},{\"attributeHeader\":{\"labelValue\":\"959032\",\"primaryLabelValue\":\"959032\"}},{\"attributeHeader\":{\"labelValue\":\"959034\",\"primaryLabelValue\":\"959034\"}},{\"attributeHeader\":{\"labelValue\":\"959036\",\"primaryLabelValue\":\"959036\"}},{\"attributeHeader\":{\"labelValue\":\"959038\",\"primaryLabelValue\":\"959038\"}},{\"attributeHeader\":{\"labelValue\":\"959040\",\"primaryLabelValue\":\"959040\"}},{\"attributeHeader\":{\"labelValue\":\"959042\",\"primaryLabelValue\":\"959042\"}},{\"attributeHeader\":{\"labelValue\":\"959044\",\"primaryLabelValue\":\"959044\"}},{\"attributeHeader\":{\"labelValue\":\"959046\",\"primaryLabelValue\":\"959046\"}},{\"attributeHeader\":{\"labelValue\":\"959048\",\"primaryLabelValue\":\"959048\"}},{\"attributeHeader\":{\"labelValue\":\"959050\",\"primaryLabelValue\":\"959050\"}},{\"attributeHeader\":{\"labelValue\":\"959052\",\"primaryLabelValue\":\"959052\"}},{\"attributeHeader\":{\"labelValue\":\"959054\",\"primaryLabelValue\":\"959054\"}},{\"attributeHeader\":{\"labelValue\":\"959056\",\"primaryLabelValue\":\"959056\"}},{\"attributeHeader\":{\"labelValue\":\"959058\",\"primaryLabelValue\":\"959058\"}},{\"attributeHeader\":{\"labelValue\":\"959060\",\"primaryLabelValue\":\"959060\"}},{\"attributeHeader\":{\"labelValue\":\"959062\",\"primaryLabelValue\":\"959062\"}},{\"attributeHeader\":{\"labelValue\":\"959064\",\"primaryLabelValue\":\"959064\"}},{\"attributeHeader\":{\"labelValue\":\"959066\",\"primaryLabelValue\":\"959066\"}},{\"attributeHeader\":{\"labelValue\":\"959068\",\"primaryLabelValue\":\"959068\"}},{\"attributeHeader\":{\"labelValue\":\"959070\",\"primaryLabelValue\":\"959070\"}},{\"attributeHeader\":{\"labelValue\":\"959072\",\"primaryLabelValue\":\"959072\"}},{\"attributeHeader\":{\"labelValue\":\"959074\",\"primaryLabelValue\":\"959074\"}},{\"attributeHeader\":{\"labelValue\":\"959076\",\"primaryLabelValue\":\"959076\"}},{\"attributeHeader\":{\"labelValue\":\"959078\",\"primaryLabelValue\":\"959078\"}},{\"attributeHeader\":{\"labelValue\":\"959080\",\"primaryLabelValue\":\"959080\"}},{\"attributeHeader\":{\"labelValue\":\"959082\",\"primaryLabelValue\":\"959082\"}},{\"attributeHeader\":{\"labelValue\":\"959084\",\"primaryLabelValue\":\"959084\"}},{\"attributeHeader\":{\"labelValue\":\"959086\",\"primaryLabelValue\":\"959086\"}},{\"attributeHeader\":{\"labelValue\":\"959088\",\"primaryLabelValue\":\"959088\"}},{\"attributeHeader\":{\"labelValue\":\"959090\",\"primaryLabelValue\":\"959090\"}},{\"attributeHeader\":{\"labelValue\":\"959092\",\"primaryLabelValue\":\"959092\"}},{\"attributeHeader\":{\"labelValue\":\"959094\",\"primaryLabelValue\":\"959094\"}},{\"attributeHeader\":{\"labelValue\":\"959096\",\"primaryLabelValue\":\"959096\"}},{\"attributeHeader\":{\"labelValue\":\"959098\",\"primaryLabelValue\":\"959098\"}},{\"attributeHeader\":{\"labelValue\":\"959100\",\"primaryLabelValue\":\"959100\"}},{\"attributeHeader\":{\"labelValue\":\"959102\",\"primaryLabelValue\":\"959102\"}},{\"attributeHeader\":{\"labelValue\":\"959104\",\"primaryLabelValue\":\"959104\"}},{\"attributeHeader\":{\"labelValue\":\"959106\",\"primaryLabelValue\":\"959106\"}},{\"attributeHeader\":{\"labelValue\":\"959108\",\"primaryLabelValue\":\"959108\"}},{\"attributeHeader\":{\"labelValue\":\"959110\",\"primaryLabelValue\":\"959110\"}},{\"attributeHeader\":{\"labelValue\":\"959112\",\"primaryLabelValue\":\"959112\"}},{\"attributeHeader\":{\"labelValue\":\"959114\",\"primaryLabelValue\":\"959114\"}},{\"attributeHeader\":{\"labelValue\":\"959116\",\"primaryLabelValue\":\"959116\"}},{\"attributeHeader\":{\"labelValue\":\"959118\",\"primaryLabelValue\":\"959118\"}},{\"attributeHeader\":{\"labelValue\":\"959120\",\"primaryLabelValue\":\"959120\"}},{\"attributeHeader\":{\"labelValue\":\"959122\",\"primaryLabelValue\":\"959122\"}},{\"attributeHeader\":{\"labelValue\":\"959124\",\"primaryLabelValue\":\"959124\"}},{\"attributeHeader\":{\"labelValue\":\"959126\",\"primaryLabelValue\":\"959126\"}},{\"attributeHeader\":{\"labelValue\":\"959128\",\"primaryLabelValue\":\"959128\"}},{\"attributeHeader\":{\"labelValue\":\"959130\",\"primaryLabelValue\":\"959130\"}},{\"attributeHeader\":{\"labelValue\":\"959132\",\"primaryLabelValue\":\"959132\"}},{\"attributeHeader\":{\"labelValue\":\"959134\",\"primaryLabelValue\":\"959134\"}},{\"attributeHeader\":{\"labelValue\":\"959136\",\"primaryLabelValue\":\"959136\"}},{\"attributeHeader\":{\"labelValue\":\"959138\",\"primaryLabelValue\":\"959138\"}},{\"attributeHeader\":{\"labelValue\":\"959140\",\"primaryLabelValue\":\"959140\"}},{\"attributeHeader\":{\"labelValue\":\"959142\",\"primaryLabelValue\":\"959142\"}},{\"attributeHeader\":{\"labelValue\":\"959144\",\"primaryLabelValue\":\"959144\"}},{\"attributeHeader\":{\"labelValue\":\"959146\",\"primaryLabelValue\":\"959146\"}},{\"attributeHeader\":{\"labelValue\":\"959148\",\"primaryLabelValue\":\"959148\"}},{\"attributeHeader\":{\"labelValue\":\"959150\",\"primaryLabelValue\":\"959150\"}},{\"attributeHeader\":{\"labelValue\":\"959152\",\"primaryLabelValue\":\"959152\"}},{\"attributeHeader\":{\"labelValue\":\"959154\",\"primaryLabelValue\":\"959154\"}},{\"attributeHeader\":{\"labelValue\":\"959156\",\"primaryLabelValue\":\"959156\"}},{\"attributeHeader\":{\"labelValue\":\"959158\",\"primaryLabelValue\":\"959158\"}},{\"attributeHeader\":{\"labelValue\":\"959160\",\"primaryLabelValue\":\"959160\"}},{\"attributeHeader\":{\"labelValue\":\"959162\",\"primaryLabelValue\":\"959162\"}},{\"attributeHeader\":{\"labelValue\":\"959164\",\"primaryLabelValue\":\"959164\"}},{\"attributeHeader\":{\"labelValue\":\"959166\",\"primaryLabelValue\":\"959166\"}},{\"attributeHeader\":{\"labelValue\":\"959168\",\"primaryLabelValue\":\"959168\"}},{\"attributeHeader\":{\"labelValue\":\"959170\",\"primaryLabelValue\":\"959170\"}},{\"attributeHeader\":{\"labelValue\":\"959172\",\"primaryLabelValue\":\"959172\"}},{\"attributeHeader\":{\"labelValue\":\"959174\",\"primaryLabelValue\":\"959174\"}},{\"attributeHeader\":{\"labelValue\":\"959176\",\"primaryLabelValue\":\"959176\"}},{\"attributeHeader\":{\"labelValue\":\"959178\",\"primaryLabelValue\":\"959178\"}},{\"attributeHeader\":{\"labelValue\":\"959180\",\"primaryLabelValue\":\"959180\"}},{\"attributeHeader\":{\"labelValue\":\"959182\",\"primaryLabelValue\":\"959182\"}},{\"attributeHeader\":{\"labelValue\":\"959184\",\"primaryLabelValue\":\"959184\"}},{\"attributeHeader\":{\"labelValue\":\"959186\",\"primaryLabelValue\":\"959186\"}},{\"attributeHeader\":{\"labelValue\":\"959188\",\"primaryLabelValue\":\"959188\"}},{\"attributeHeader\":{\"labelValue\":\"959190\",\"primaryLabelValue\":\"959190\"}},{\"attributeHeader\":{\"labelValue\":\"959192\",\"primaryLabelValue\":\"959192\"}},{\"attributeHeader\":{\"labelValue\":\"959194\",\"primaryLabelValue\":\"959194\"}},{\"attributeHeader\":{\"labelValue\":\"959196\",\"primaryLabelValue\":\"959196\"}},{\"attributeHeader\":{\"labelValue\":\"959198\",\"primaryLabelValue\":\"959198\"}},{\"attributeHeader\":{\"labelValue\":\"959200\",\"primaryLabelValue\":\"959200\"}},{\"attributeHeader\":{\"labelValue\":\"959202\",\"primaryLabelValue\":\"959202\"}},{\"attributeHeader\":{\"labelValue\":\"959204\",\"primaryLabelValue\":\"959204\"}},{\"attributeHeader\":{\"labelValue\":\"959206\",\"primaryLabelValue\":\"959206\"}},{\"attributeHeader\":{\"labelValue\":\"959208\",\"primaryLabelValue\":\"959208\"}},{\"attributeHeader\":{\"labelValue\":\"959210\",\"primaryLabelValue\":\"959210\"}},{\"attributeHeader\":{\"labelValue\":\"959212\",\"primaryLabelValue\":\"959212\"}},{\"attributeHeader\":{\"labelValue\":\"959214\",\"primaryLabelValue\":\"959214\"}},{\"attributeHeader\":{\"labelValue\":\"959216\",\"primaryLabelValue\":\"959216\"}},{\"attributeHeader\":{\"labelValue\":\"959218\",\"primaryLabelValue\":\"959218\"}},{\"attributeHeader\":{\"labelValue\":\"959220\",\"primaryLabelValue\":\"959220\"}},{\"attributeHeader\":{\"labelValue\":\"959222\",\"primaryLabelValue\":\"959222\"}},{\"attributeHeader\":{\"labelValue\":\"959224\",\"primaryLabelValue\":\"959224\"}},{\"attributeHeader\":{\"labelValue\":\"959226\",\"primaryLabelValue\":\"959226\"}},{\"attributeHeader\":{\"labelValue\":\"959228\",\"primaryLabelValue\":\"959228\"}},{\"attributeHeader\":{\"labelValue\":\"959230\",\"primaryLabelValue\":\"959230\"}},{\"attributeHeader\":{\"labelValue\":\"959232\",\"primaryLabelValue\":\"959232\"}},{\"attributeHeader\":{\"labelValue\":\"959234\",\"primaryLabelValue\":\"959234\"}},{\"attributeHeader\":{\"labelValue\":\"959236\",\"primaryLabelValue\":\"959236\"}},{\"attributeHeader\":{\"labelValue\":\"959238\",\"primaryLabelValue\":\"959238\"}},{\"attributeHeader\":{\"labelValue\":\"959239\",\"primaryLabelValue\":\"959239\"}},{\"attributeHeader\":{\"labelValue\":\"959241\",\"primaryLabelValue\":\"959241\"}},{\"attributeHeader\":{\"labelValue\":\"959243\",\"primaryLabelValue\":\"959243\"}},{\"attributeHeader\":{\"labelValue\":\"959245\",\"primaryLabelValue\":\"959245\"}},{\"attributeHeader\":{\"labelValue\":\"959247\",\"primaryLabelValue\":\"959247\"}},{\"attributeHeader\":{\"labelValue\":\"959249\",\"primaryLabelValue\":\"959249\"}},{\"attributeHeader\":{\"labelValue\":\"959251\",\"primaryLabelValue\":\"959251\"}},{\"attributeHeader\":{\"labelValue\":\"959253\",\"primaryLabelValue\":\"959253\"}},{\"attributeHeader\":{\"labelValue\":\"959255\",\"primaryLabelValue\":\"959255\"}},{\"attributeHeader\":{\"labelValue\":\"959257\",\"primaryLabelValue\":\"959257\"}},{\"attributeHeader\":{\"labelValue\":\"959259\",\"primaryLabelValue\":\"959259\"}},{\"attributeHeader\":{\"labelValue\":\"959261\",\"primaryLabelValue\":\"959261\"}},{\"attributeHeader\":{\"labelValue\":\"959263\",\"primaryLabelValue\":\"959263\"}},{\"attributeHeader\":{\"labelValue\":\"959265\",\"primaryLabelValue\":\"959265\"}},{\"attributeHeader\":{\"labelValue\":\"959267\",\"primaryLabelValue\":\"959267\"}},{\"attributeHeader\":{\"labelValue\":\"959269\",\"primaryLabelValue\":\"959269\"}},{\"attributeHeader\":{\"labelValue\":\"959271\",\"primaryLabelValue\":\"959271\"}},{\"attributeHeader\":{\"labelValue\":\"959275\",\"primaryLabelValue\":\"959275\"}},{\"attributeHeader\":{\"labelValue\":\"959277\",\"primaryLabelValue\":\"959277\"}},{\"attributeHeader\":{\"labelValue\":\"959279\",\"primaryLabelValue\":\"959279\"}},{\"attributeHeader\":{\"labelValue\":\"959281\",\"primaryLabelValue\":\"959281\"}},{\"attributeHeader\":{\"labelValue\":\"959283\",\"primaryLabelValue\":\"959283\"}},{\"attributeHeader\":{\"labelValue\":\"959285\",\"primaryLabelValue\":\"959285\"}},{\"attributeHeader\":{\"labelValue\":\"959287\",\"primaryLabelValue\":\"959287\"}},{\"attributeHeader\":{\"labelValue\":\"959289\",\"primaryLabelValue\":\"959289\"}},{\"attributeHeader\":{\"labelValue\":\"959291\",\"primaryLabelValue\":\"959291\"}},{\"attributeHeader\":{\"labelValue\":\"959293\",\"primaryLabelValue\":\"959293\"}},{\"attributeHeader\":{\"labelValue\":\"959295\",\"primaryLabelValue\":\"959295\"}},{\"attributeHeader\":{\"labelValue\":\"959297\",\"primaryLabelValue\":\"959297\"}},{\"attributeHeader\":{\"labelValue\":\"959299\",\"primaryLabelValue\":\"959299\"}},{\"attributeHeader\":{\"labelValue\":\"959301\",\"primaryLabelValue\":\"959301\"}},{\"attributeHeader\":{\"labelValue\":\"959303\",\"primaryLabelValue\":\"959303\"}},{\"attributeHeader\":{\"labelValue\":\"959305\",\"primaryLabelValue\":\"959305\"}},{\"attributeHeader\":{\"labelValue\":\"959307\",\"primaryLabelValue\":\"959307\"}},{\"attributeHeader\":{\"labelValue\":\"959309\",\"primaryLabelValue\":\"959309\"}},{\"attributeHeader\":{\"labelValue\":\"959311\",\"primaryLabelValue\":\"959311\"}},{\"attributeHeader\":{\"labelValue\":\"959313\",\"primaryLabelValue\":\"959313\"}},{\"attributeHeader\":{\"labelValue\":\"959315\",\"primaryLabelValue\":\"959315\"}},{\"attributeHeader\":{\"labelValue\":\"959317\",\"primaryLabelValue\":\"959317\"}},{\"attributeHeader\":{\"labelValue\":\"959319\",\"primaryLabelValue\":\"959319\"}},{\"attributeHeader\":{\"labelValue\":\"959321\",\"primaryLabelValue\":\"959321\"}},{\"attributeHeader\":{\"labelValue\":\"959323\",\"primaryLabelValue\":\"959323\"}},{\"attributeHeader\":{\"labelValue\":\"959325\",\"primaryLabelValue\":\"959325\"}},{\"attributeHeader\":{\"labelValue\":\"959327\",\"primaryLabelValue\":\"959327\"}},{\"attributeHeader\":{\"labelValue\":\"959329\",\"primaryLabelValue\":\"959329\"}},{\"attributeHeader\":{\"labelValue\":\"959331\",\"primaryLabelValue\":\"959331\"}},{\"attributeHeader\":{\"labelValue\":\"959333\",\"primaryLabelValue\":\"959333\"}},{\"attributeHeader\":{\"labelValue\":\"959335\",\"primaryLabelValue\":\"959335\"}},{\"attributeHeader\":{\"labelValue\":\"959337\",\"primaryLabelValue\":\"959337\"}},{\"attributeHeader\":{\"labelValue\":\"959339\",\"primaryLabelValue\":\"959339\"}},{\"attributeHeader\":{\"labelValue\":\"959341\",\"primaryLabelValue\":\"959341\"}},{\"attributeHeader\":{\"labelValue\":\"959343\",\"primaryLabelValue\":\"959343\"}},{\"attributeHeader\":{\"labelValue\":\"959345\",\"primaryLabelValue\":\"959345\"}},{\"attributeHeader\":{\"labelValue\":\"959347\",\"primaryLabelValue\":\"959347\"}},{\"attributeHeader\":{\"labelValue\":\"959349\",\"primaryLabelValue\":\"959349\"}},{\"attributeHeader\":{\"labelValue\":\"959351\",\"primaryLabelValue\":\"959351\"}},{\"attributeHeader\":{\"labelValue\":\"959353\",\"primaryLabelValue\":\"959353\"}},{\"attributeHeader\":{\"labelValue\":\"959355\",\"primaryLabelValue\":\"959355\"}},{\"attributeHeader\":{\"labelValue\":\"959357\",\"primaryLabelValue\":\"959357\"}},{\"attributeHeader\":{\"labelValue\":\"959359\",\"primaryLabelValue\":\"959359\"}},{\"attributeHeader\":{\"labelValue\":\"959361\",\"primaryLabelValue\":\"959361\"}},{\"attributeHeader\":{\"labelValue\":\"959363\",\"primaryLabelValue\":\"959363\"}},{\"attributeHeader\":{\"labelValue\":\"959365\",\"primaryLabelValue\":\"959365\"}},{\"attributeHeader\":{\"labelValue\":\"959367\",\"primaryLabelValue\":\"959367\"}},{\"attributeHeader\":{\"labelValue\":\"959369\",\"primaryLabelValue\":\"959369\"}},{\"attributeHeader\":{\"labelValue\":\"959371\",\"primaryLabelValue\":\"959371\"}},{\"attributeHeader\":{\"labelValue\":\"959373\",\"primaryLabelValue\":\"959373\"}},{\"attributeHeader\":{\"labelValue\":\"959375\",\"primaryLabelValue\":\"959375\"}},{\"attributeHeader\":{\"labelValue\":\"959377\",\"primaryLabelValue\":\"959377\"}},{\"attributeHeader\":{\"labelValue\":\"959379\",\"primaryLabelValue\":\"959379\"}},{\"attributeHeader\":{\"labelValue\":\"959381\",\"primaryLabelValue\":\"959381\"}},{\"attributeHeader\":{\"labelValue\":\"959383\",\"primaryLabelValue\":\"959383\"}},{\"attributeHeader\":{\"labelValue\":\"959385\",\"primaryLabelValue\":\"959385\"}},{\"attributeHeader\":{\"labelValue\":\"959387\",\"primaryLabelValue\":\"959387\"}},{\"attributeHeader\":{\"labelValue\":\"959389\",\"primaryLabelValue\":\"959389\"}},{\"attributeHeader\":{\"labelValue\":\"959391\",\"primaryLabelValue\":\"959391\"}},{\"attributeHeader\":{\"labelValue\":\"959393\",\"primaryLabelValue\":\"959393\"}},{\"attributeHeader\":{\"labelValue\":\"959395\",\"primaryLabelValue\":\"959395\"}},{\"attributeHeader\":{\"labelValue\":\"959397\",\"primaryLabelValue\":\"959397\"}},{\"attributeHeader\":{\"labelValue\":\"959399\",\"primaryLabelValue\":\"959399\"}},{\"attributeHeader\":{\"labelValue\":\"959401\",\"primaryLabelValue\":\"959401\"}},{\"attributeHeader\":{\"labelValue\":\"959403\",\"primaryLabelValue\":\"959403\"}},{\"attributeHeader\":{\"labelValue\":\"959405\",\"primaryLabelValue\":\"959405\"}},{\"attributeHeader\":{\"labelValue\":\"959407\",\"primaryLabelValue\":\"959407\"}},{\"attributeHeader\":{\"labelValue\":\"959409\",\"primaryLabelValue\":\"959409\"}},{\"attributeHeader\":{\"labelValue\":\"959411\",\"primaryLabelValue\":\"959411\"}},{\"attributeHeader\":{\"labelValue\":\"959413\",\"primaryLabelValue\":\"959413\"}},{\"attributeHeader\":{\"labelValue\":\"959415\",\"primaryLabelValue\":\"959415\"}},{\"attributeHeader\":{\"labelValue\":\"959417\",\"primaryLabelValue\":\"959417\"}},{\"attributeHeader\":{\"labelValue\":\"959419\",\"primaryLabelValue\":\"959419\"}},{\"attributeHeader\":{\"labelValue\":\"959421\",\"primaryLabelValue\":\"959421\"}},{\"attributeHeader\":{\"labelValue\":\"959423\",\"primaryLabelValue\":\"959423\"}},{\"attributeHeader\":{\"labelValue\":\"959425\",\"primaryLabelValue\":\"959425\"}},{\"attributeHeader\":{\"labelValue\":\"959427\",\"primaryLabelValue\":\"959427\"}},{\"attributeHeader\":{\"labelValue\":\"959429\",\"primaryLabelValue\":\"959429\"}},{\"attributeHeader\":{\"labelValue\":\"959431\",\"primaryLabelValue\":\"959431\"}},{\"attributeHeader\":{\"labelValue\":\"959433\",\"primaryLabelValue\":\"959433\"}},{\"attributeHeader\":{\"labelValue\":\"959435\",\"primaryLabelValue\":\"959435\"}},{\"attributeHeader\":{\"labelValue\":\"959437\",\"primaryLabelValue\":\"959437\"}},{\"attributeHeader\":{\"labelValue\":\"959439\",\"primaryLabelValue\":\"959439\"}},{\"attributeHeader\":{\"labelValue\":\"959441\",\"primaryLabelValue\":\"959441\"}},{\"attributeHeader\":{\"labelValue\":\"959443\",\"primaryLabelValue\":\"959443\"}},{\"attributeHeader\":{\"labelValue\":\"959445\",\"primaryLabelValue\":\"959445\"}},{\"attributeHeader\":{\"labelValue\":\"959447\",\"primaryLabelValue\":\"959447\"}},{\"attributeHeader\":{\"labelValue\":\"959449\",\"primaryLabelValue\":\"959449\"}},{\"attributeHeader\":{\"labelValue\":\"959451\",\"primaryLabelValue\":\"959451\"}},{\"attributeHeader\":{\"labelValue\":\"959453\",\"primaryLabelValue\":\"959453\"}},{\"attributeHeader\":{\"labelValue\":\"959455\",\"primaryLabelValue\":\"959455\"}},{\"attributeHeader\":{\"labelValue\":\"959457\",\"primaryLabelValue\":\"959457\"}},{\"attributeHeader\":{\"labelValue\":\"959459\",\"primaryLabelValue\":\"959459\"}},{\"attributeHeader\":{\"labelValue\":\"959461\",\"primaryLabelValue\":\"959461\"}},{\"attributeHeader\":{\"labelValue\":\"959463\",\"primaryLabelValue\":\"959463\"}},{\"attributeHeader\":{\"labelValue\":\"959465\",\"primaryLabelValue\":\"959465\"}},{\"attributeHeader\":{\"labelValue\":\"959467\",\"primaryLabelValue\":\"959467\"}},{\"attributeHeader\":{\"labelValue\":\"959469\",\"primaryLabelValue\":\"959469\"}},{\"attributeHeader\":{\"labelValue\":\"959471\",\"primaryLabelValue\":\"959471\"}},{\"attributeHeader\":{\"labelValue\":\"959473\",\"primaryLabelValue\":\"959473\"}},{\"attributeHeader\":{\"labelValue\":\"959475\",\"primaryLabelValue\":\"959475\"}},{\"attributeHeader\":{\"labelValue\":\"959477\",\"primaryLabelValue\":\"959477\"}},{\"attributeHeader\":{\"labelValue\":\"959479\",\"primaryLabelValue\":\"959479\"}},{\"attributeHeader\":{\"labelValue\":\"959481\",\"primaryLabelValue\":\"959481\"}},{\"attributeHeader\":{\"labelValue\":\"959485\",\"primaryLabelValue\":\"959485\"}},{\"attributeHeader\":{\"labelValue\":\"959487\",\"primaryLabelValue\":\"959487\"}},{\"attributeHeader\":{\"labelValue\":\"959489\",\"primaryLabelValue\":\"959489\"}},{\"attributeHeader\":{\"labelValue\":\"959491\",\"primaryLabelValue\":\"959491\"}},{\"attributeHeader\":{\"labelValue\":\"959493\",\"primaryLabelValue\":\"959493\"}},{\"attributeHeader\":{\"labelValue\":\"959495\",\"primaryLabelValue\":\"959495\"}},{\"attributeHeader\":{\"labelValue\":\"959497\",\"primaryLabelValue\":\"959497\"}},{\"attributeHeader\":{\"labelValue\":\"959499\",\"primaryLabelValue\":\"959499\"}},{\"attributeHeader\":{\"labelValue\":\"959501\",\"primaryLabelValue\":\"959501\"}},{\"attributeHeader\":{\"labelValue\":\"959503\",\"primaryLabelValue\":\"959503\"}},{\"attributeHeader\":{\"labelValue\":\"959505\",\"primaryLabelValue\":\"959505\"}},{\"attributeHeader\":{\"labelValue\":\"959507\",\"primaryLabelValue\":\"959507\"}},{\"attributeHeader\":{\"labelValue\":\"959509\",\"primaryLabelValue\":\"959509\"}},{\"attributeHeader\":{\"labelValue\":\"959511\",\"primaryLabelValue\":\"959511\"}},{\"attributeHeader\":{\"labelValue\":\"959513\",\"primaryLabelValue\":\"959513\"}},{\"attributeHeader\":{\"labelValue\":\"959515\",\"primaryLabelValue\":\"959515\"}},{\"attributeHeader\":{\"labelValue\":\"959517\",\"primaryLabelValue\":\"959517\"}},{\"attributeHeader\":{\"labelValue\":\"959519\",\"primaryLabelValue\":\"959519\"}},{\"attributeHeader\":{\"labelValue\":\"959521\",\"primaryLabelValue\":\"959521\"}},{\"attributeHeader\":{\"labelValue\":\"959523\",\"primaryLabelValue\":\"959523\"}},{\"attributeHeader\":{\"labelValue\":\"959525\",\"primaryLabelValue\":\"959525\"}},{\"attributeHeader\":{\"labelValue\":\"959527\",\"primaryLabelValue\":\"959527\"}},{\"attributeHeader\":{\"labelValue\":\"959531\",\"primaryLabelValue\":\"959531\"}},{\"attributeHeader\":{\"labelValue\":\"959533\",\"primaryLabelValue\":\"959533\"}},{\"attributeHeader\":{\"labelValue\":\"959535\",\"primaryLabelValue\":\"959535\"}},{\"attributeHeader\":{\"labelValue\":\"959537\",\"primaryLabelValue\":\"959537\"}},{\"attributeHeader\":{\"labelValue\":\"959539\",\"primaryLabelValue\":\"959539\"}},{\"attributeHeader\":{\"labelValue\":\"959541\",\"primaryLabelValue\":\"959541\"}},{\"attributeHeader\":{\"labelValue\":\"959543\",\"primaryLabelValue\":\"959543\"}},{\"attributeHeader\":{\"labelValue\":\"959545\",\"primaryLabelValue\":\"959545\"}},{\"attributeHeader\":{\"labelValue\":\"959547\",\"primaryLabelValue\":\"959547\"}},{\"attributeHeader\":{\"labelValue\":\"959549\",\"primaryLabelValue\":\"959549\"}},{\"attributeHeader\":{\"labelValue\":\"959551\",\"primaryLabelValue\":\"959551\"}},{\"attributeHeader\":{\"labelValue\":\"959553\",\"primaryLabelValue\":\"959553\"}},{\"attributeHeader\":{\"labelValue\":\"959555\",\"primaryLabelValue\":\"959555\"}},{\"attributeHeader\":{\"labelValue\":\"959557\",\"primaryLabelValue\":\"959557\"}},{\"attributeHeader\":{\"labelValue\":\"959559\",\"primaryLabelValue\":\"959559\"}},{\"attributeHeader\":{\"labelValue\":\"959561\",\"primaryLabelValue\":\"959561\"}},{\"attributeHeader\":{\"labelValue\":\"959563\",\"primaryLabelValue\":\"959563\"}},{\"attributeHeader\":{\"labelValue\":\"959565\",\"primaryLabelValue\":\"959565\"}},{\"attributeHeader\":{\"labelValue\":\"959567\",\"primaryLabelValue\":\"959567\"}},{\"attributeHeader\":{\"labelValue\":\"959569\",\"primaryLabelValue\":\"959569\"}},{\"attributeHeader\":{\"labelValue\":\"959571\",\"primaryLabelValue\":\"959571\"}},{\"attributeHeader\":{\"labelValue\":\"959573\",\"primaryLabelValue\":\"959573\"}},{\"attributeHeader\":{\"labelValue\":\"959575\",\"primaryLabelValue\":\"959575\"}},{\"attributeHeader\":{\"labelValue\":\"959577\",\"primaryLabelValue\":\"959577\"}},{\"attributeHeader\":{\"labelValue\":\"959579\",\"primaryLabelValue\":\"959579\"}},{\"attributeHeader\":{\"labelValue\":\"959581\",\"primaryLabelValue\":\"959581\"}},{\"attributeHeader\":{\"labelValue\":\"959583\",\"primaryLabelValue\":\"959583\"}},{\"attributeHeader\":{\"labelValue\":\"959585\",\"primaryLabelValue\":\"959585\"}},{\"attributeHeader\":{\"labelValue\":\"959587\",\"primaryLabelValue\":\"959587\"}},{\"attributeHeader\":{\"labelValue\":\"959589\",\"primaryLabelValue\":\"959589\"}},{\"attributeHeader\":{\"labelValue\":\"959591\",\"primaryLabelValue\":\"959591\"}},{\"attributeHeader\":{\"labelValue\":\"959593\",\"primaryLabelValue\":\"959593\"}},{\"attributeHeader\":{\"labelValue\":\"959595\",\"primaryLabelValue\":\"959595\"}},{\"attributeHeader\":{\"labelValue\":\"959597\",\"primaryLabelValue\":\"959597\"}},{\"attributeHeader\":{\"labelValue\":\"959599\",\"primaryLabelValue\":\"959599\"}},{\"attributeHeader\":{\"labelValue\":\"959601\",\"primaryLabelValue\":\"959601\"}},{\"attributeHeader\":{\"labelValue\":\"959603\",\"primaryLabelValue\":\"959603\"}},{\"attributeHeader\":{\"labelValue\":\"959605\",\"primaryLabelValue\":\"959605\"}},{\"attributeHeader\":{\"labelValue\":\"959607\",\"primaryLabelValue\":\"959607\"}},{\"attributeHeader\":{\"labelValue\":\"959609\",\"primaryLabelValue\":\"959609\"}},{\"attributeHeader\":{\"labelValue\":\"959611\",\"primaryLabelValue\":\"959611\"}},{\"attributeHeader\":{\"labelValue\":\"959613\",\"primaryLabelValue\":\"959613\"}},{\"attributeHeader\":{\"labelValue\":\"959615\",\"primaryLabelValue\":\"959615\"}},{\"attributeHeader\":{\"labelValue\":\"959617\",\"primaryLabelValue\":\"959617\"}},{\"attributeHeader\":{\"labelValue\":\"959619\",\"primaryLabelValue\":\"959619\"}},{\"attributeHeader\":{\"labelValue\":\"959621\",\"primaryLabelValue\":\"959621\"}},{\"attributeHeader\":{\"labelValue\":\"959623\",\"primaryLabelValue\":\"959623\"}},{\"attributeHeader\":{\"labelValue\":\"959625\",\"primaryLabelValue\":\"959625\"}},{\"attributeHeader\":{\"labelValue\":\"959627\",\"primaryLabelValue\":\"959627\"}},{\"attributeHeader\":{\"labelValue\":\"959629\",\"primaryLabelValue\":\"959629\"}},{\"attributeHeader\":{\"labelValue\":\"959631\",\"primaryLabelValue\":\"959631\"}},{\"attributeHeader\":{\"labelValue\":\"959633\",\"primaryLabelValue\":\"959633\"}},{\"attributeHeader\":{\"labelValue\":\"959635\",\"primaryLabelValue\":\"959635\"}},{\"attributeHeader\":{\"labelValue\":\"959637\",\"primaryLabelValue\":\"959637\"}},{\"attributeHeader\":{\"labelValue\":\"959639\",\"primaryLabelValue\":\"959639\"}},{\"attributeHeader\":{\"labelValue\":\"959641\",\"primaryLabelValue\":\"959641\"}},{\"attributeHeader\":{\"labelValue\":\"959643\",\"primaryLabelValue\":\"959643\"}},{\"attributeHeader\":{\"labelValue\":\"959645\",\"primaryLabelValue\":\"959645\"}},{\"attributeHeader\":{\"labelValue\":\"959647\",\"primaryLabelValue\":\"959647\"}},{\"attributeHeader\":{\"labelValue\":\"959649\",\"primaryLabelValue\":\"959649\"}},{\"attributeHeader\":{\"labelValue\":\"959651\",\"primaryLabelValue\":\"959651\"}},{\"attributeHeader\":{\"labelValue\":\"959653\",\"primaryLabelValue\":\"959653\"}},{\"attributeHeader\":{\"labelValue\":\"959655\",\"primaryLabelValue\":\"959655\"}},{\"attributeHeader\":{\"labelValue\":\"959657\",\"primaryLabelValue\":\"959657\"}},{\"attributeHeader\":{\"labelValue\":\"959659\",\"primaryLabelValue\":\"959659\"}},{\"attributeHeader\":{\"labelValue\":\"959661\",\"primaryLabelValue\":\"959661\"}},{\"attributeHeader\":{\"labelValue\":\"959663\",\"primaryLabelValue\":\"959663\"}},{\"attributeHeader\":{\"labelValue\":\"959665\",\"primaryLabelValue\":\"959665\"}},{\"attributeHeader\":{\"labelValue\":\"959667\",\"primaryLabelValue\":\"959667\"}},{\"attributeHeader\":{\"labelValue\":\"959671\",\"primaryLabelValue\":\"959671\"}},{\"attributeHeader\":{\"labelValue\":\"959673\",\"primaryLabelValue\":\"959673\"}},{\"attributeHeader\":{\"labelValue\":\"959675\",\"primaryLabelValue\":\"959675\"}},{\"attributeHeader\":{\"labelValue\":\"959677\",\"primaryLabelValue\":\"959677\"}},{\"attributeHeader\":{\"labelValue\":\"959679\",\"primaryLabelValue\":\"959679\"}},{\"attributeHeader\":{\"labelValue\":\"959681\",\"primaryLabelValue\":\"959681\"}},{\"attributeHeader\":{\"labelValue\":\"959683\",\"primaryLabelValue\":\"959683\"}},{\"attributeHeader\":{\"labelValue\":\"959685\",\"primaryLabelValue\":\"959685\"}},{\"attributeHeader\":{\"labelValue\":\"959687\",\"primaryLabelValue\":\"959687\"}},{\"attributeHeader\":{\"labelValue\":\"959689\",\"primaryLabelValue\":\"959689\"}},{\"attributeHeader\":{\"labelValue\":\"959691\",\"primaryLabelValue\":\"959691\"}},{\"attributeHeader\":{\"labelValue\":\"959693\",\"primaryLabelValue\":\"959693\"}},{\"attributeHeader\":{\"labelValue\":\"959695\",\"primaryLabelValue\":\"959695\"}},{\"attributeHeader\":{\"labelValue\":\"959697\",\"primaryLabelValue\":\"959697\"}},{\"attributeHeader\":{\"labelValue\":\"959699\",\"primaryLabelValue\":\"959699\"}},{\"attributeHeader\":{\"labelValue\":\"959701\",\"primaryLabelValue\":\"959701\"}},{\"attributeHeader\":{\"labelValue\":\"959703\",\"primaryLabelValue\":\"959703\"}},{\"attributeHeader\":{\"labelValue\":\"959705\",\"primaryLabelValue\":\"959705\"}},{\"attributeHeader\":{\"labelValue\":\"959707\",\"primaryLabelValue\":\"959707\"}},{\"attributeHeader\":{\"labelValue\":\"959709\",\"primaryLabelValue\":\"959709\"}},{\"attributeHeader\":{\"labelValue\":\"959711\",\"primaryLabelValue\":\"959711\"}},{\"attributeHeader\":{\"labelValue\":\"959713\",\"primaryLabelValue\":\"959713\"}},{\"attributeHeader\":{\"labelValue\":\"959715\",\"primaryLabelValue\":\"959715\"}},{\"attributeHeader\":{\"labelValue\":\"959717\",\"primaryLabelValue\":\"959717\"}},{\"attributeHeader\":{\"labelValue\":\"959719\",\"primaryLabelValue\":\"959719\"}},{\"attributeHeader\":{\"labelValue\":\"959721\",\"primaryLabelValue\":\"959721\"}},{\"attributeHeader\":{\"labelValue\":\"959723\",\"primaryLabelValue\":\"959723\"}},{\"attributeHeader\":{\"labelValue\":\"959725\",\"primaryLabelValue\":\"959725\"}},{\"attributeHeader\":{\"labelValue\":\"959727\",\"primaryLabelValue\":\"959727\"}},{\"attributeHeader\":{\"labelValue\":\"959729\",\"primaryLabelValue\":\"959729\"}},{\"attributeHeader\":{\"labelValue\":\"959731\",\"primaryLabelValue\":\"959731\"}},{\"attributeHeader\":{\"labelValue\":\"959733\",\"primaryLabelValue\":\"959733\"}},{\"attributeHeader\":{\"labelValue\":\"959735\",\"primaryLabelValue\":\"959735\"}},{\"attributeHeader\":{\"labelValue\":\"959737\",\"primaryLabelValue\":\"959737\"}},{\"attributeHeader\":{\"labelValue\":\"959739\",\"primaryLabelValue\":\"959739\"}},{\"attributeHeader\":{\"labelValue\":\"959741\",\"primaryLabelValue\":\"959741\"}},{\"attributeHeader\":{\"labelValue\":\"959743\",\"primaryLabelValue\":\"959743\"}},{\"attributeHeader\":{\"labelValue\":\"959745\",\"primaryLabelValue\":\"959745\"}},{\"attributeHeader\":{\"labelValue\":\"959747\",\"primaryLabelValue\":\"959747\"}},{\"attributeHeader\":{\"labelValue\":\"959749\",\"primaryLabelValue\":\"959749\"}},{\"attributeHeader\":{\"labelValue\":\"959751\",\"primaryLabelValue\":\"959751\"}},{\"attributeHeader\":{\"labelValue\":\"959753\",\"primaryLabelValue\":\"959753\"}},{\"attributeHeader\":{\"labelValue\":\"959755\",\"primaryLabelValue\":\"959755\"}},{\"attributeHeader\":{\"labelValue\":\"959757\",\"primaryLabelValue\":\"959757\"}},{\"attributeHeader\":{\"labelValue\":\"959759\",\"primaryLabelValue\":\"959759\"}},{\"attributeHeader\":{\"labelValue\":\"959761\",\"primaryLabelValue\":\"959761\"}},{\"attributeHeader\":{\"labelValue\":\"959763\",\"primaryLabelValue\":\"959763\"}},{\"attributeHeader\":{\"labelValue\":\"959765\",\"primaryLabelValue\":\"959765\"}},{\"attributeHeader\":{\"labelValue\":\"959767\",\"primaryLabelValue\":\"959767\"}},{\"attributeHeader\":{\"labelValue\":\"959769\",\"primaryLabelValue\":\"959769\"}},{\"attributeHeader\":{\"labelValue\":\"959771\",\"primaryLabelValue\":\"959771\"}},{\"attributeHeader\":{\"labelValue\":\"959773\",\"primaryLabelValue\":\"959773\"}},{\"attributeHeader\":{\"labelValue\":\"959775\",\"primaryLabelValue\":\"959775\"}},{\"attributeHeader\":{\"labelValue\":\"959777\",\"primaryLabelValue\":\"959777\"}},{\"attributeHeader\":{\"labelValue\":\"959779\",\"primaryLabelValue\":\"959779\"}},{\"attributeHeader\":{\"labelValue\":\"959781\",\"primaryLabelValue\":\"959781\"}},{\"attributeHeader\":{\"labelValue\":\"959783\",\"primaryLabelValue\":\"959783\"}},{\"attributeHeader\":{\"labelValue\":\"959785\",\"primaryLabelValue\":\"959785\"}},{\"attributeHeader\":{\"labelValue\":\"959787\",\"primaryLabelValue\":\"959787\"}},{\"attributeHeader\":{\"labelValue\":\"959789\",\"primaryLabelValue\":\"959789\"}},{\"attributeHeader\":{\"labelValue\":\"959791\",\"primaryLabelValue\":\"959791\"}},{\"attributeHeader\":{\"labelValue\":\"959795\",\"primaryLabelValue\":\"959795\"}},{\"attributeHeader\":{\"labelValue\":\"959797\",\"primaryLabelValue\":\"959797\"}},{\"attributeHeader\":{\"labelValue\":\"959799\",\"primaryLabelValue\":\"959799\"}},{\"attributeHeader\":{\"labelValue\":\"959801\",\"primaryLabelValue\":\"959801\"}},{\"attributeHeader\":{\"labelValue\":\"959803\",\"primaryLabelValue\":\"959803\"}},{\"attributeHeader\":{\"labelValue\":\"959805\",\"primaryLabelValue\":\"959805\"}},{\"attributeHeader\":{\"labelValue\":\"959807\",\"primaryLabelValue\":\"959807\"}},{\"attributeHeader\":{\"labelValue\":\"959809\",\"primaryLabelValue\":\"959809\"}},{\"attributeHeader\":{\"labelValue\":\"959811\",\"primaryLabelValue\":\"959811\"}},{\"attributeHeader\":{\"labelValue\":\"959813\",\"primaryLabelValue\":\"959813\"}},{\"attributeHeader\":{\"labelValue\":\"959815\",\"primaryLabelValue\":\"959815\"}},{\"attributeHeader\":{\"labelValue\":\"959817\",\"primaryLabelValue\":\"959817\"}},{\"attributeHeader\":{\"labelValue\":\"959819\",\"primaryLabelValue\":\"959819\"}},{\"attributeHeader\":{\"labelValue\":\"959821\",\"primaryLabelValue\":\"959821\"}},{\"attributeHeader\":{\"labelValue\":\"959823\",\"primaryLabelValue\":\"959823\"}},{\"attributeHeader\":{\"labelValue\":\"959825\",\"primaryLabelValue\":\"959825\"}},{\"attributeHeader\":{\"labelValue\":\"959827\",\"primaryLabelValue\":\"959827\"}},{\"attributeHeader\":{\"labelValue\":\"959829\",\"primaryLabelValue\":\"959829\"}},{\"attributeHeader\":{\"labelValue\":\"959831\",\"primaryLabelValue\":\"959831\"}},{\"attributeHeader\":{\"labelValue\":\"959833\",\"primaryLabelValue\":\"959833\"}},{\"attributeHeader\":{\"labelValue\":\"959837\",\"primaryLabelValue\":\"959837\"}},{\"attributeHeader\":{\"labelValue\":\"959839\",\"primaryLabelValue\":\"959839\"}},{\"attributeHeader\":{\"labelValue\":\"959841\",\"primaryLabelValue\":\"959841\"}},{\"attributeHeader\":{\"labelValue\":\"959843\",\"primaryLabelValue\":\"959843\"}},{\"attributeHeader\":{\"labelValue\":\"959845\",\"primaryLabelValue\":\"959845\"}},{\"attributeHeader\":{\"labelValue\":\"959847\",\"primaryLabelValue\":\"959847\"}},{\"attributeHeader\":{\"labelValue\":\"959849\",\"primaryLabelValue\":\"959849\"}},{\"attributeHeader\":{\"labelValue\":\"959851\",\"primaryLabelValue\":\"959851\"}},{\"attributeHeader\":{\"labelValue\":\"959853\",\"primaryLabelValue\":\"959853\"}},{\"attributeHeader\":{\"labelValue\":\"959855\",\"primaryLabelValue\":\"959855\"}},{\"attributeHeader\":{\"labelValue\":\"959857\",\"primaryLabelValue\":\"959857\"}},{\"attributeHeader\":{\"labelValue\":\"959859\",\"primaryLabelValue\":\"959859\"}},{\"attributeHeader\":{\"labelValue\":\"959861\",\"primaryLabelValue\":\"959861\"}},{\"attributeHeader\":{\"labelValue\":\"959863\",\"primaryLabelValue\":\"959863\"}},{\"attributeHeader\":{\"labelValue\":\"959865\",\"primaryLabelValue\":\"959865\"}},{\"attributeHeader\":{\"labelValue\":\"959867\",\"primaryLabelValue\":\"959867\"}},{\"attributeHeader\":{\"labelValue\":\"959869\",\"primaryLabelValue\":\"959869\"}},{\"attributeHeader\":{\"labelValue\":\"959871\",\"primaryLabelValue\":\"959871\"}},{\"attributeHeader\":{\"labelValue\":\"959873\",\"primaryLabelValue\":\"959873\"}},{\"attributeHeader\":{\"labelValue\":\"959875\",\"primaryLabelValue\":\"959875\"}},{\"attributeHeader\":{\"labelValue\":\"959877\",\"primaryLabelValue\":\"959877\"}},{\"attributeHeader\":{\"labelValue\":\"959879\",\"primaryLabelValue\":\"959879\"}},{\"attributeHeader\":{\"labelValue\":\"959881\",\"primaryLabelValue\":\"959881\"}},{\"attributeHeader\":{\"labelValue\":\"959883\",\"primaryLabelValue\":\"959883\"}},{\"attributeHeader\":{\"labelValue\":\"959885\",\"primaryLabelValue\":\"959885\"}},{\"attributeHeader\":{\"labelValue\":\"959887\",\"primaryLabelValue\":\"959887\"}},{\"attributeHeader\":{\"labelValue\":\"959889\",\"primaryLabelValue\":\"959889\"}},{\"attributeHeader\":{\"labelValue\":\"959891\",\"primaryLabelValue\":\"959891\"}},{\"attributeHeader\":{\"labelValue\":\"959893\",\"primaryLabelValue\":\"959893\"}},{\"attributeHeader\":{\"labelValue\":\"959895\",\"primaryLabelValue\":\"959895\"}},{\"attributeHeader\":{\"labelValue\":\"959897\",\"primaryLabelValue\":\"959897\"}},{\"attributeHeader\":{\"labelValue\":\"959899\",\"primaryLabelValue\":\"959899\"}},{\"attributeHeader\":{\"labelValue\":\"959901\",\"primaryLabelValue\":\"959901\"}},{\"attributeHeader\":{\"labelValue\":\"959903\",\"primaryLabelValue\":\"959903\"}},{\"attributeHeader\":{\"labelValue\":\"959905\",\"primaryLabelValue\":\"959905\"}},{\"attributeHeader\":{\"labelValue\":\"959907\",\"primaryLabelValue\":\"959907\"}},{\"attributeHeader\":{\"labelValue\":\"959909\",\"primaryLabelValue\":\"959909\"}},{\"attributeHeader\":{\"labelValue\":\"959911\",\"primaryLabelValue\":\"959911\"}},{\"attributeHeader\":{\"labelValue\":\"959913\",\"primaryLabelValue\":\"959913\"}},{\"attributeHeader\":{\"labelValue\":\"959915\",\"primaryLabelValue\":\"959915\"}},{\"attributeHeader\":{\"labelValue\":\"959917\",\"primaryLabelValue\":\"959917\"}},{\"attributeHeader\":{\"labelValue\":\"959919\",\"primaryLabelValue\":\"959919\"}},{\"attributeHeader\":{\"labelValue\":\"959921\",\"primaryLabelValue\":\"959921\"}},{\"attributeHeader\":{\"labelValue\":\"959923\",\"primaryLabelValue\":\"959923\"}},{\"attributeHeader\":{\"labelValue\":\"959925\",\"primaryLabelValue\":\"959925\"}},{\"attributeHeader\":{\"labelValue\":\"959929\",\"primaryLabelValue\":\"959929\"}},{\"attributeHeader\":{\"labelValue\":\"959931\",\"primaryLabelValue\":\"959931\"}},{\"attributeHeader\":{\"labelValue\":\"959933\",\"primaryLabelValue\":\"959933\"}},{\"attributeHeader\":{\"labelValue\":\"959935\",\"primaryLabelValue\":\"959935\"}},{\"attributeHeader\":{\"labelValue\":\"959937\",\"primaryLabelValue\":\"959937\"}},{\"attributeHeader\":{\"labelValue\":\"959939\",\"primaryLabelValue\":\"959939\"}},{\"attributeHeader\":{\"labelValue\":\"959941\",\"primaryLabelValue\":\"959941\"}},{\"attributeHeader\":{\"labelValue\":\"959943\",\"primaryLabelValue\":\"959943\"}},{\"attributeHeader\":{\"labelValue\":\"959945\",\"primaryLabelValue\":\"959945\"}},{\"attributeHeader\":{\"labelValue\":\"959947\",\"primaryLabelValue\":\"959947\"}},{\"attributeHeader\":{\"labelValue\":\"959949\",\"primaryLabelValue\":\"959949\"}},{\"attributeHeader\":{\"labelValue\":\"959951\",\"primaryLabelValue\":\"959951\"}},{\"attributeHeader\":{\"labelValue\":\"959953\",\"primaryLabelValue\":\"959953\"}},{\"attributeHeader\":{\"labelValue\":\"959955\",\"primaryLabelValue\":\"959955\"}},{\"attributeHeader\":{\"labelValue\":\"959957\",\"primaryLabelValue\":\"959957\"}},{\"attributeHeader\":{\"labelValue\":\"959959\",\"primaryLabelValue\":\"959959\"}},{\"attributeHeader\":{\"labelValue\":\"959961\",\"primaryLabelValue\":\"959961\"}},{\"attributeHeader\":{\"labelValue\":\"959963\",\"primaryLabelValue\":\"959963\"}},{\"attributeHeader\":{\"labelValue\":\"959965\",\"primaryLabelValue\":\"959965\"}},{\"attributeHeader\":{\"labelValue\":\"959967\",\"primaryLabelValue\":\"959967\"}},{\"attributeHeader\":{\"labelValue\":\"959969\",\"primaryLabelValue\":\"959969\"}},{\"attributeHeader\":{\"labelValue\":\"959973\",\"primaryLabelValue\":\"959973\"}},{\"attributeHeader\":{\"labelValue\":\"959975\",\"primaryLabelValue\":\"959975\"}},{\"attributeHeader\":{\"labelValue\":\"959977\",\"primaryLabelValue\":\"959977\"}},{\"attributeHeader\":{\"labelValue\":\"959979\",\"primaryLabelValue\":\"959979\"}},{\"attributeHeader\":{\"labelValue\":\"959981\",\"primaryLabelValue\":\"959981\"}},{\"attributeHeader\":{\"labelValue\":\"959983\",\"primaryLabelValue\":\"959983\"}},{\"attributeHeader\":{\"labelValue\":\"959985\",\"primaryLabelValue\":\"959985\"}},{\"attributeHeader\":{\"labelValue\":\"959987\",\"primaryLabelValue\":\"959987\"}},{\"attributeHeader\":{\"labelValue\":\"959989\",\"primaryLabelValue\":\"959989\"}},{\"attributeHeader\":{\"labelValue\":\"959991\",\"primaryLabelValue\":\"959991\"}},{\"attributeHeader\":{\"labelValue\":\"959993\",\"primaryLabelValue\":\"959993\"}},{\"attributeHeader\":{\"labelValue\":\"959995\",\"primaryLabelValue\":\"959995\"}},{\"attributeHeader\":{\"labelValue\":\"959997\",\"primaryLabelValue\":\"959997\"}},{\"attributeHeader\":{\"labelValue\":\"959999\",\"primaryLabelValue\":\"959999\"}},{\"attributeHeader\":{\"labelValue\":\"960001\",\"primaryLabelValue\":\"960001\"}},{\"attributeHeader\":{\"labelValue\":\"960003\",\"primaryLabelValue\":\"960003\"}},{\"attributeHeader\":{\"labelValue\":\"960005\",\"primaryLabelValue\":\"960005\"}},{\"attributeHeader\":{\"labelValue\":\"960007\",\"primaryLabelValue\":\"960007\"}},{\"attributeHeader\":{\"labelValue\":\"960009\",\"primaryLabelValue\":\"960009\"}},{\"attributeHeader\":{\"labelValue\":\"960011\",\"primaryLabelValue\":\"960011\"}},{\"attributeHeader\":{\"labelValue\":\"960013\",\"primaryLabelValue\":\"960013\"}},{\"attributeHeader\":{\"labelValue\":\"960015\",\"primaryLabelValue\":\"960015\"}},{\"attributeHeader\":{\"labelValue\":\"960017\",\"primaryLabelValue\":\"960017\"}},{\"attributeHeader\":{\"labelValue\":\"960019\",\"primaryLabelValue\":\"960019\"}},{\"attributeHeader\":{\"labelValue\":\"960021\",\"primaryLabelValue\":\"960021\"}},{\"attributeHeader\":{\"labelValue\":\"960023\",\"primaryLabelValue\":\"960023\"}},{\"attributeHeader\":{\"labelValue\":\"960025\",\"primaryLabelValue\":\"960025\"}},{\"attributeHeader\":{\"labelValue\":\"960027\",\"primaryLabelValue\":\"960027\"}},{\"attributeHeader\":{\"labelValue\":\"960029\",\"primaryLabelValue\":\"960029\"}},{\"attributeHeader\":{\"labelValue\":\"960031\",\"primaryLabelValue\":\"960031\"}},{\"attributeHeader\":{\"labelValue\":\"960033\",\"primaryLabelValue\":\"960033\"}},{\"attributeHeader\":{\"labelValue\":\"960035\",\"primaryLabelValue\":\"960035\"}},{\"attributeHeader\":{\"labelValue\":\"960037\",\"primaryLabelValue\":\"960037\"}},{\"attributeHeader\":{\"labelValue\":\"960039\",\"primaryLabelValue\":\"960039\"}},{\"attributeHeader\":{\"labelValue\":\"960041\",\"primaryLabelValue\":\"960041\"}},{\"attributeHeader\":{\"labelValue\":\"960043\",\"primaryLabelValue\":\"960043\"}},{\"attributeHeader\":{\"labelValue\":\"960045\",\"primaryLabelValue\":\"960045\"}},{\"attributeHeader\":{\"labelValue\":\"960047\",\"primaryLabelValue\":\"960047\"}},{\"attributeHeader\":{\"labelValue\":\"960049\",\"primaryLabelValue\":\"960049\"}},{\"attributeHeader\":{\"labelValue\":\"960051\",\"primaryLabelValue\":\"960051\"}},{\"attributeHeader\":{\"labelValue\":\"960053\",\"primaryLabelValue\":\"960053\"}},{\"attributeHeader\":{\"labelValue\":\"960055\",\"primaryLabelValue\":\"960055\"}},{\"attributeHeader\":{\"labelValue\":\"960057\",\"primaryLabelValue\":\"960057\"}},{\"attributeHeader\":{\"labelValue\":\"960059\",\"primaryLabelValue\":\"960059\"}},{\"attributeHeader\":{\"labelValue\":\"960061\",\"primaryLabelValue\":\"960061\"}},{\"attributeHeader\":{\"labelValue\":\"960063\",\"primaryLabelValue\":\"960063\"}},{\"attributeHeader\":{\"labelValue\":\"960065\",\"primaryLabelValue\":\"960065\"}},{\"attributeHeader\":{\"labelValue\":\"960067\",\"primaryLabelValue\":\"960067\"}},{\"attributeHeader\":{\"labelValue\":\"960069\",\"primaryLabelValue\":\"960069\"}},{\"attributeHeader\":{\"labelValue\":\"960071\",\"primaryLabelValue\":\"960071\"}},{\"attributeHeader\":{\"labelValue\":\"960073\",\"primaryLabelValue\":\"960073\"}},{\"attributeHeader\":{\"labelValue\":\"960075\",\"primaryLabelValue\":\"960075\"}},{\"attributeHeader\":{\"labelValue\":\"960077\",\"primaryLabelValue\":\"960077\"}},{\"attributeHeader\":{\"labelValue\":\"960079\",\"primaryLabelValue\":\"960079\"}},{\"attributeHeader\":{\"labelValue\":\"960081\",\"primaryLabelValue\":\"960081\"}},{\"attributeHeader\":{\"labelValue\":\"960083\",\"primaryLabelValue\":\"960083\"}},{\"attributeHeader\":{\"labelValue\":\"960085\",\"primaryLabelValue\":\"960085\"}},{\"attributeHeader\":{\"labelValue\":\"960087\",\"primaryLabelValue\":\"960087\"}},{\"attributeHeader\":{\"labelValue\":\"960089\",\"primaryLabelValue\":\"960089\"}},{\"attributeHeader\":{\"labelValue\":\"960091\",\"primaryLabelValue\":\"960091\"}},{\"attributeHeader\":{\"labelValue\":\"960093\",\"primaryLabelValue\":\"960093\"}},{\"attributeHeader\":{\"labelValue\":\"960095\",\"primaryLabelValue\":\"960095\"}},{\"attributeHeader\":{\"labelValue\":\"960097\",\"primaryLabelValue\":\"960097\"}},{\"attributeHeader\":{\"labelValue\":\"960099\",\"primaryLabelValue\":\"960099\"}},{\"attributeHeader\":{\"labelValue\":\"960101\",\"primaryLabelValue\":\"960101\"}},{\"attributeHeader\":{\"labelValue\":\"960103\",\"primaryLabelValue\":\"960103\"}},{\"attributeHeader\":{\"labelValue\":\"960105\",\"primaryLabelValue\":\"960105\"}},{\"attributeHeader\":{\"labelValue\":\"960107\",\"primaryLabelValue\":\"960107\"}},{\"attributeHeader\":{\"labelValue\":\"960109\",\"primaryLabelValue\":\"960109\"}},{\"attributeHeader\":{\"labelValue\":\"960111\",\"primaryLabelValue\":\"960111\"}},{\"attributeHeader\":{\"labelValue\":\"960113\",\"primaryLabelValue\":\"960113\"}},{\"attributeHeader\":{\"labelValue\":\"960115\",\"primaryLabelValue\":\"960115\"}},{\"attributeHeader\":{\"labelValue\":\"960117\",\"primaryLabelValue\":\"960117\"}},{\"attributeHeader\":{\"labelValue\":\"960119\",\"primaryLabelValue\":\"960119\"}},{\"attributeHeader\":{\"labelValue\":\"960121\",\"primaryLabelValue\":\"960121\"}},{\"attributeHeader\":{\"labelValue\":\"960123\",\"primaryLabelValue\":\"960123\"}},{\"attributeHeader\":{\"labelValue\":\"960125\",\"primaryLabelValue\":\"960125\"}},{\"attributeHeader\":{\"labelValue\":\"960127\",\"primaryLabelValue\":\"960127\"}},{\"attributeHeader\":{\"labelValue\":\"960129\",\"primaryLabelValue\":\"960129\"}},{\"attributeHeader\":{\"labelValue\":\"960131\",\"primaryLabelValue\":\"960131\"}},{\"attributeHeader\":{\"labelValue\":\"960133\",\"primaryLabelValue\":\"960133\"}},{\"attributeHeader\":{\"labelValue\":\"960135\",\"primaryLabelValue\":\"960135\"}},{\"attributeHeader\":{\"labelValue\":\"960137\",\"primaryLabelValue\":\"960137\"}},{\"attributeHeader\":{\"labelValue\":\"960139\",\"primaryLabelValue\":\"960139\"}},{\"attributeHeader\":{\"labelValue\":\"960141\",\"primaryLabelValue\":\"960141\"}},{\"attributeHeader\":{\"labelValue\":\"960143\",\"primaryLabelValue\":\"960143\"}},{\"attributeHeader\":{\"labelValue\":\"960145\",\"primaryLabelValue\":\"960145\"}},{\"attributeHeader\":{\"labelValue\":\"960147\",\"primaryLabelValue\":\"960147\"}},{\"attributeHeader\":{\"labelValue\":\"960149\",\"primaryLabelValue\":\"960149\"}},{\"attributeHeader\":{\"labelValue\":\"960151\",\"primaryLabelValue\":\"960151\"}},{\"attributeHeader\":{\"labelValue\":\"960153\",\"primaryLabelValue\":\"960153\"}},{\"attributeHeader\":{\"labelValue\":\"960155\",\"primaryLabelValue\":\"960155\"}},{\"attributeHeader\":{\"labelValue\":\"960157\",\"primaryLabelValue\":\"960157\"}},{\"attributeHeader\":{\"labelValue\":\"960159\",\"primaryLabelValue\":\"960159\"}},{\"attributeHeader\":{\"labelValue\":\"960161\",\"primaryLabelValue\":\"960161\"}},{\"attributeHeader\":{\"labelValue\":\"960163\",\"primaryLabelValue\":\"960163\"}},{\"attributeHeader\":{\"labelValue\":\"960165\",\"primaryLabelValue\":\"960165\"}},{\"attributeHeader\":{\"labelValue\":\"960167\",\"primaryLabelValue\":\"960167\"}},{\"attributeHeader\":{\"labelValue\":\"960169\",\"primaryLabelValue\":\"960169\"}},{\"attributeHeader\":{\"labelValue\":\"960171\",\"primaryLabelValue\":\"960171\"}},{\"attributeHeader\":{\"labelValue\":\"960173\",\"primaryLabelValue\":\"960173\"}},{\"attributeHeader\":{\"labelValue\":\"960175\",\"primaryLabelValue\":\"960175\"}},{\"attributeHeader\":{\"labelValue\":\"960177\",\"primaryLabelValue\":\"960177\"}},{\"attributeHeader\":{\"labelValue\":\"960179\",\"primaryLabelValue\":\"960179\"}},{\"attributeHeader\":{\"labelValue\":\"960181\",\"primaryLabelValue\":\"960181\"}},{\"attributeHeader\":{\"labelValue\":\"960183\",\"primaryLabelValue\":\"960183\"}},{\"attributeHeader\":{\"labelValue\":\"960185\",\"primaryLabelValue\":\"960185\"}},{\"attributeHeader\":{\"labelValue\":\"960187\",\"primaryLabelValue\":\"960187\"}},{\"attributeHeader\":{\"labelValue\":\"960189\",\"primaryLabelValue\":\"960189\"}},{\"attributeHeader\":{\"labelValue\":\"960191\",\"primaryLabelValue\":\"960191\"}},{\"attributeHeader\":{\"labelValue\":\"960193\",\"primaryLabelValue\":\"960193\"}},{\"attributeHeader\":{\"labelValue\":\"960195\",\"primaryLabelValue\":\"960195\"}},{\"attributeHeader\":{\"labelValue\":\"960197\",\"primaryLabelValue\":\"960197\"}},{\"attributeHeader\":{\"labelValue\":\"960199\",\"primaryLabelValue\":\"960199\"}},{\"attributeHeader\":{\"labelValue\":\"960201\",\"primaryLabelValue\":\"960201\"}},{\"attributeHeader\":{\"labelValue\":\"960203\",\"primaryLabelValue\":\"960203\"}},{\"attributeHeader\":{\"labelValue\":\"960205\",\"primaryLabelValue\":\"960205\"}},{\"attributeHeader\":{\"labelValue\":\"960207\",\"primaryLabelValue\":\"960207\"}},{\"attributeHeader\":{\"labelValue\":\"960209\",\"primaryLabelValue\":\"960209\"}},{\"attributeHeader\":{\"labelValue\":\"960211\",\"primaryLabelValue\":\"960211\"}},{\"attributeHeader\":{\"labelValue\":\"960213\",\"primaryLabelValue\":\"960213\"}},{\"attributeHeader\":{\"labelValue\":\"960215\",\"primaryLabelValue\":\"960215\"}},{\"attributeHeader\":{\"labelValue\":\"960217\",\"primaryLabelValue\":\"960217\"}},{\"attributeHeader\":{\"labelValue\":\"960219\",\"primaryLabelValue\":\"960219\"}},{\"attributeHeader\":{\"labelValue\":\"960221\",\"primaryLabelValue\":\"960221\"}},{\"attributeHeader\":{\"labelValue\":\"960223\",\"primaryLabelValue\":\"960223\"}},{\"attributeHeader\":{\"labelValue\":\"960225\",\"primaryLabelValue\":\"960225\"}},{\"attributeHeader\":{\"labelValue\":\"960227\",\"primaryLabelValue\":\"960227\"}},{\"attributeHeader\":{\"labelValue\":\"960229\",\"primaryLabelValue\":\"960229\"}},{\"attributeHeader\":{\"labelValue\":\"960231\",\"primaryLabelValue\":\"960231\"}},{\"attributeHeader\":{\"labelValue\":\"960233\",\"primaryLabelValue\":\"960233\"}},{\"attributeHeader\":{\"labelValue\":\"960235\",\"primaryLabelValue\":\"960235\"}},{\"attributeHeader\":{\"labelValue\":\"960237\",\"primaryLabelValue\":\"960237\"}},{\"attributeHeader\":{\"labelValue\":\"960239\",\"primaryLabelValue\":\"960239\"}},{\"attributeHeader\":{\"labelValue\":\"960241\",\"primaryLabelValue\":\"960241\"}},{\"attributeHeader\":{\"labelValue\":\"960243\",\"primaryLabelValue\":\"960243\"}},{\"attributeHeader\":{\"labelValue\":\"960245\",\"primaryLabelValue\":\"960245\"}},{\"attributeHeader\":{\"labelValue\":\"960247\",\"primaryLabelValue\":\"960247\"}},{\"attributeHeader\":{\"labelValue\":\"960249\",\"primaryLabelValue\":\"960249\"}},{\"attributeHeader\":{\"labelValue\":\"960251\",\"primaryLabelValue\":\"960251\"}},{\"attributeHeader\":{\"labelValue\":\"960253\",\"primaryLabelValue\":\"960253\"}},{\"attributeHeader\":{\"labelValue\":\"960255\",\"primaryLabelValue\":\"960255\"}},{\"attributeHeader\":{\"labelValue\":\"960257\",\"primaryLabelValue\":\"960257\"}},{\"attributeHeader\":{\"labelValue\":\"960259\",\"primaryLabelValue\":\"960259\"}},{\"attributeHeader\":{\"labelValue\":\"960261\",\"primaryLabelValue\":\"960261\"}},{\"attributeHeader\":{\"labelValue\":\"960263\",\"primaryLabelValue\":\"960263\"}},{\"attributeHeader\":{\"labelValue\":\"960265\",\"primaryLabelValue\":\"960265\"}},{\"attributeHeader\":{\"labelValue\":\"960267\",\"primaryLabelValue\":\"960267\"}},{\"attributeHeader\":{\"labelValue\":\"960269\",\"primaryLabelValue\":\"960269\"}},{\"attributeHeader\":{\"labelValue\":\"960271\",\"primaryLabelValue\":\"960271\"}},{\"attributeHeader\":{\"labelValue\":\"960273\",\"primaryLabelValue\":\"960273\"}},{\"attributeHeader\":{\"labelValue\":\"960275\",\"primaryLabelValue\":\"960275\"}},{\"attributeHeader\":{\"labelValue\":\"960277\",\"primaryLabelValue\":\"960277\"}},{\"attributeHeader\":{\"labelValue\":\"960279\",\"primaryLabelValue\":\"960279\"}},{\"attributeHeader\":{\"labelValue\":\"960283\",\"primaryLabelValue\":\"960283\"}},{\"attributeHeader\":{\"labelValue\":\"960285\",\"primaryLabelValue\":\"960285\"}},{\"attributeHeader\":{\"labelValue\":\"960287\",\"primaryLabelValue\":\"960287\"}},{\"attributeHeader\":{\"labelValue\":\"960289\",\"primaryLabelValue\":\"960289\"}},{\"attributeHeader\":{\"labelValue\":\"960291\",\"primaryLabelValue\":\"960291\"}},{\"attributeHeader\":{\"labelValue\":\"960293\",\"primaryLabelValue\":\"960293\"}},{\"attributeHeader\":{\"labelValue\":\"960295\",\"primaryLabelValue\":\"960295\"}},{\"attributeHeader\":{\"labelValue\":\"960297\",\"primaryLabelValue\":\"960297\"}},{\"attributeHeader\":{\"labelValue\":\"960299\",\"primaryLabelValue\":\"960299\"}},{\"attributeHeader\":{\"labelValue\":\"960301\",\"primaryLabelValue\":\"960301\"}},{\"attributeHeader\":{\"labelValue\":\"960303\",\"primaryLabelValue\":\"960303\"}},{\"attributeHeader\":{\"labelValue\":\"960305\",\"primaryLabelValue\":\"960305\"}},{\"attributeHeader\":{\"labelValue\":\"960307\",\"primaryLabelValue\":\"960307\"}},{\"attributeHeader\":{\"labelValue\":\"960309\",\"primaryLabelValue\":\"960309\"}},{\"attributeHeader\":{\"labelValue\":\"960311\",\"primaryLabelValue\":\"960311\"}},{\"attributeHeader\":{\"labelValue\":\"960313\",\"primaryLabelValue\":\"960313\"}},{\"attributeHeader\":{\"labelValue\":\"960315\",\"primaryLabelValue\":\"960315\"}},{\"attributeHeader\":{\"labelValue\":\"960317\",\"primaryLabelValue\":\"960317\"}},{\"attributeHeader\":{\"labelValue\":\"960319\",\"primaryLabelValue\":\"960319\"}},{\"attributeHeader\":{\"labelValue\":\"960321\",\"primaryLabelValue\":\"960321\"}},{\"attributeHeader\":{\"labelValue\":\"960323\",\"primaryLabelValue\":\"960323\"}},{\"attributeHeader\":{\"labelValue\":\"960325\",\"primaryLabelValue\":\"960325\"}},{\"attributeHeader\":{\"labelValue\":\"960327\",\"primaryLabelValue\":\"960327\"}},{\"attributeHeader\":{\"labelValue\":\"960329\",\"primaryLabelValue\":\"960329\"}},{\"attributeHeader\":{\"labelValue\":\"960331\",\"primaryLabelValue\":\"960331\"}},{\"attributeHeader\":{\"labelValue\":\"960333\",\"primaryLabelValue\":\"960333\"}},{\"attributeHeader\":{\"labelValue\":\"960335\",\"primaryLabelValue\":\"960335\"}},{\"attributeHeader\":{\"labelValue\":\"960337\",\"primaryLabelValue\":\"960337\"}},{\"attributeHeader\":{\"labelValue\":\"960339\",\"primaryLabelValue\":\"960339\"}},{\"attributeHeader\":{\"labelValue\":\"960341\",\"primaryLabelValue\":\"960341\"}},{\"attributeHeader\":{\"labelValue\":\"960343\",\"primaryLabelValue\":\"960343\"}},{\"attributeHeader\":{\"labelValue\":\"960345\",\"primaryLabelValue\":\"960345\"}},{\"attributeHeader\":{\"labelValue\":\"960347\",\"primaryLabelValue\":\"960347\"}},{\"attributeHeader\":{\"labelValue\":\"960349\",\"primaryLabelValue\":\"960349\"}},{\"attributeHeader\":{\"labelValue\":\"960351\",\"primaryLabelValue\":\"960351\"}},{\"attributeHeader\":{\"labelValue\":\"960353\",\"primaryLabelValue\":\"960353\"}},{\"attributeHeader\":{\"labelValue\":\"960355\",\"primaryLabelValue\":\"960355\"}},{\"attributeHeader\":{\"labelValue\":\"960357\",\"primaryLabelValue\":\"960357\"}},{\"attributeHeader\":{\"labelValue\":\"960359\",\"primaryLabelValue\":\"960359\"}},{\"attributeHeader\":{\"labelValue\":\"960361\",\"primaryLabelValue\":\"960361\"}},{\"attributeHeader\":{\"labelValue\":\"960363\",\"primaryLabelValue\":\"960363\"}},{\"attributeHeader\":{\"labelValue\":\"960365\",\"primaryLabelValue\":\"960365\"}},{\"attributeHeader\":{\"labelValue\":\"960367\",\"primaryLabelValue\":\"960367\"}},{\"attributeHeader\":{\"labelValue\":\"960369\",\"primaryLabelValue\":\"960369\"}},{\"attributeHeader\":{\"labelValue\":\"960371\",\"primaryLabelValue\":\"960371\"}},{\"attributeHeader\":{\"labelValue\":\"960373\",\"primaryLabelValue\":\"960373\"}},{\"attributeHeader\":{\"labelValue\":\"960375\",\"primaryLabelValue\":\"960375\"}},{\"attributeHeader\":{\"labelValue\":\"960377\",\"primaryLabelValue\":\"960377\"}},{\"attributeHeader\":{\"labelValue\":\"960379\",\"primaryLabelValue\":\"960379\"}},{\"attributeHeader\":{\"labelValue\":\"960381\",\"primaryLabelValue\":\"960381\"}},{\"attributeHeader\":{\"labelValue\":\"960383\",\"primaryLabelValue\":\"960383\"}},{\"attributeHeader\":{\"labelValue\":\"960385\",\"primaryLabelValue\":\"960385\"}},{\"attributeHeader\":{\"labelValue\":\"960387\",\"primaryLabelValue\":\"960387\"}},{\"attributeHeader\":{\"labelValue\":\"960389\",\"primaryLabelValue\":\"960389\"}},{\"attributeHeader\":{\"labelValue\":\"960391\",\"primaryLabelValue\":\"960391\"}},{\"attributeHeader\":{\"labelValue\":\"960393\",\"primaryLabelValue\":\"960393\"}},{\"attributeHeader\":{\"labelValue\":\"960395\",\"primaryLabelValue\":\"960395\"}},{\"attributeHeader\":{\"labelValue\":\"960397\",\"primaryLabelValue\":\"960397\"}},{\"attributeHeader\":{\"labelValue\":\"960399\",\"primaryLabelValue\":\"960399\"}},{\"attributeHeader\":{\"labelValue\":\"960401\",\"primaryLabelValue\":\"960401\"}},{\"attributeHeader\":{\"labelValue\":\"960403\",\"primaryLabelValue\":\"960403\"}},{\"attributeHeader\":{\"labelValue\":\"960405\",\"primaryLabelValue\":\"960405\"}},{\"attributeHeader\":{\"labelValue\":\"960407\",\"primaryLabelValue\":\"960407\"}},{\"attributeHeader\":{\"labelValue\":\"960409\",\"primaryLabelValue\":\"960409\"}},{\"attributeHeader\":{\"labelValue\":\"960411\",\"primaryLabelValue\":\"960411\"}},{\"attributeHeader\":{\"labelValue\":\"960413\",\"primaryLabelValue\":\"960413\"}},{\"attributeHeader\":{\"labelValue\":\"960415\",\"primaryLabelValue\":\"960415\"}},{\"attributeHeader\":{\"labelValue\":\"960417\",\"primaryLabelValue\":\"960417\"}},{\"attributeHeader\":{\"labelValue\":\"960419\",\"primaryLabelValue\":\"960419\"}},{\"attributeHeader\":{\"labelValue\":\"960421\",\"primaryLabelValue\":\"960421\"}},{\"attributeHeader\":{\"labelValue\":\"960423\",\"primaryLabelValue\":\"960423\"}},{\"attributeHeader\":{\"labelValue\":\"960425\",\"primaryLabelValue\":\"960425\"}},{\"attributeHeader\":{\"labelValue\":\"960427\",\"primaryLabelValue\":\"960427\"}},{\"attributeHeader\":{\"labelValue\":\"960429\",\"primaryLabelValue\":\"960429\"}},{\"attributeHeader\":{\"labelValue\":\"960431\",\"primaryLabelValue\":\"960431\"}},{\"attributeHeader\":{\"labelValue\":\"960433\",\"primaryLabelValue\":\"960433\"}},{\"attributeHeader\":{\"labelValue\":\"960435\",\"primaryLabelValue\":\"960435\"}},{\"attributeHeader\":{\"labelValue\":\"960437\",\"primaryLabelValue\":\"960437\"}},{\"attributeHeader\":{\"labelValue\":\"960439\",\"primaryLabelValue\":\"960439\"}},{\"attributeHeader\":{\"labelValue\":\"960441\",\"primaryLabelValue\":\"960441\"}},{\"attributeHeader\":{\"labelValue\":\"960443\",\"primaryLabelValue\":\"960443\"}},{\"attributeHeader\":{\"labelValue\":\"960445\",\"primaryLabelValue\":\"960445\"}},{\"attributeHeader\":{\"labelValue\":\"960447\",\"primaryLabelValue\":\"960447\"}},{\"attributeHeader\":{\"labelValue\":\"960449\",\"primaryLabelValue\":\"960449\"}},{\"attributeHeader\":{\"labelValue\":\"960451\",\"primaryLabelValue\":\"960451\"}},{\"attributeHeader\":{\"labelValue\":\"960453\",\"primaryLabelValue\":\"960453\"}},{\"attributeHeader\":{\"labelValue\":\"960455\",\"primaryLabelValue\":\"960455\"}},{\"attributeHeader\":{\"labelValue\":\"960457\",\"primaryLabelValue\":\"960457\"}},{\"attributeHeader\":{\"labelValue\":\"960459\",\"primaryLabelValue\":\"960459\"}},{\"attributeHeader\":{\"labelValue\":\"960461\",\"primaryLabelValue\":\"960461\"}},{\"attributeHeader\":{\"labelValue\":\"960463\",\"primaryLabelValue\":\"960463\"}},{\"attributeHeader\":{\"labelValue\":\"960465\",\"primaryLabelValue\":\"960465\"}},{\"attributeHeader\":{\"labelValue\":\"960467\",\"primaryLabelValue\":\"960467\"}},{\"attributeHeader\":{\"labelValue\":\"960469\",\"primaryLabelValue\":\"960469\"}},{\"attributeHeader\":{\"labelValue\":\"960471\",\"primaryLabelValue\":\"960471\"}},{\"attributeHeader\":{\"labelValue\":\"960473\",\"primaryLabelValue\":\"960473\"}},{\"attributeHeader\":{\"labelValue\":\"960475\",\"primaryLabelValue\":\"960475\"}},{\"attributeHeader\":{\"labelValue\":\"960477\",\"primaryLabelValue\":\"960477\"}},{\"attributeHeader\":{\"labelValue\":\"960479\",\"primaryLabelValue\":\"960479\"}},{\"attributeHeader\":{\"labelValue\":\"960481\",\"primaryLabelValue\":\"960481\"}},{\"attributeHeader\":{\"labelValue\":\"960483\",\"primaryLabelValue\":\"960483\"}},{\"attributeHeader\":{\"labelValue\":\"960485\",\"primaryLabelValue\":\"960485\"}},{\"attributeHeader\":{\"labelValue\":\"960487\",\"primaryLabelValue\":\"960487\"}},{\"attributeHeader\":{\"labelValue\":\"960489\",\"primaryLabelValue\":\"960489\"}},{\"attributeHeader\":{\"labelValue\":\"960491\",\"primaryLabelValue\":\"960491\"}},{\"attributeHeader\":{\"labelValue\":\"960493\",\"primaryLabelValue\":\"960493\"}},{\"attributeHeader\":{\"labelValue\":\"960497\",\"primaryLabelValue\":\"960497\"}},{\"attributeHeader\":{\"labelValue\":\"960499\",\"primaryLabelValue\":\"960499\"}},{\"attributeHeader\":{\"labelValue\":\"960501\",\"primaryLabelValue\":\"960501\"}},{\"attributeHeader\":{\"labelValue\":\"960503\",\"primaryLabelValue\":\"960503\"}},{\"attributeHeader\":{\"labelValue\":\"960505\",\"primaryLabelValue\":\"960505\"}},{\"attributeHeader\":{\"labelValue\":\"960507\",\"primaryLabelValue\":\"960507\"}},{\"attributeHeader\":{\"labelValue\":\"960509\",\"primaryLabelValue\":\"960509\"}},{\"attributeHeader\":{\"labelValue\":\"960511\",\"primaryLabelValue\":\"960511\"}},{\"attributeHeader\":{\"labelValue\":\"960513\",\"primaryLabelValue\":\"960513\"}},{\"attributeHeader\":{\"labelValue\":\"960515\",\"primaryLabelValue\":\"960515\"}},{\"attributeHeader\":{\"labelValue\":\"960517\",\"primaryLabelValue\":\"960517\"}},{\"attributeHeader\":{\"labelValue\":\"960519\",\"primaryLabelValue\":\"960519\"}},{\"attributeHeader\":{\"labelValue\":\"960521\",\"primaryLabelValue\":\"960521\"}},{\"attributeHeader\":{\"labelValue\":\"960527\",\"primaryLabelValue\":\"960527\"}},{\"attributeHeader\":{\"labelValue\":\"960529\",\"primaryLabelValue\":\"960529\"}},{\"attributeHeader\":{\"labelValue\":\"960531\",\"primaryLabelValue\":\"960531\"}},{\"attributeHeader\":{\"labelValue\":\"960533\",\"primaryLabelValue\":\"960533\"}},{\"attributeHeader\":{\"labelValue\":\"960535\",\"primaryLabelValue\":\"960535\"}},{\"attributeHeader\":{\"labelValue\":\"960537\",\"primaryLabelValue\":\"960537\"}},{\"attributeHeader\":{\"labelValue\":\"960539\",\"primaryLabelValue\":\"960539\"}},{\"attributeHeader\":{\"labelValue\":\"960541\",\"primaryLabelValue\":\"960541\"}},{\"attributeHeader\":{\"labelValue\":\"960543\",\"primaryLabelValue\":\"960543\"}},{\"attributeHeader\":{\"labelValue\":\"960545\",\"primaryLabelValue\":\"960545\"}},{\"attributeHeader\":{\"labelValue\":\"960547\",\"primaryLabelValue\":\"960547\"}},{\"attributeHeader\":{\"labelValue\":\"960549\",\"primaryLabelValue\":\"960549\"}},{\"attributeHeader\":{\"labelValue\":\"960551\",\"primaryLabelValue\":\"960551\"}},{\"attributeHeader\":{\"labelValue\":\"960553\",\"primaryLabelValue\":\"960553\"}},{\"attributeHeader\":{\"labelValue\":\"960555\",\"primaryLabelValue\":\"960555\"}},{\"attributeHeader\":{\"labelValue\":\"960557\",\"primaryLabelValue\":\"960557\"}},{\"attributeHeader\":{\"labelValue\":\"960559\",\"primaryLabelValue\":\"960559\"}},{\"attributeHeader\":{\"labelValue\":\"960561\",\"primaryLabelValue\":\"960561\"}},{\"attributeHeader\":{\"labelValue\":\"960563\",\"primaryLabelValue\":\"960563\"}},{\"attributeHeader\":{\"labelValue\":\"960567\",\"primaryLabelValue\":\"960567\"}},{\"attributeHeader\":{\"labelValue\":\"960569\",\"primaryLabelValue\":\"960569\"}},{\"attributeHeader\":{\"labelValue\":\"960571\",\"primaryLabelValue\":\"960571\"}},{\"attributeHeader\":{\"labelValue\":\"960573\",\"primaryLabelValue\":\"960573\"}},{\"attributeHeader\":{\"labelValue\":\"960575\",\"primaryLabelValue\":\"960575\"}},{\"attributeHeader\":{\"labelValue\":\"960577\",\"primaryLabelValue\":\"960577\"}},{\"attributeHeader\":{\"labelValue\":\"960579\",\"primaryLabelValue\":\"960579\"}},{\"attributeHeader\":{\"labelValue\":\"960581\",\"primaryLabelValue\":\"960581\"}},{\"attributeHeader\":{\"labelValue\":\"960583\",\"primaryLabelValue\":\"960583\"}},{\"attributeHeader\":{\"labelValue\":\"960585\",\"primaryLabelValue\":\"960585\"}},{\"attributeHeader\":{\"labelValue\":\"960587\",\"primaryLabelValue\":\"960587\"}},{\"attributeHeader\":{\"labelValue\":\"960589\",\"primaryLabelValue\":\"960589\"}},{\"attributeHeader\":{\"labelValue\":\"960591\",\"primaryLabelValue\":\"960591\"}},{\"attributeHeader\":{\"labelValue\":\"960593\",\"primaryLabelValue\":\"960593\"}},{\"attributeHeader\":{\"labelValue\":\"960595\",\"primaryLabelValue\":\"960595\"}},{\"attributeHeader\":{\"labelValue\":\"960597\",\"primaryLabelValue\":\"960597\"}},{\"attributeHeader\":{\"labelValue\":\"960601\",\"primaryLabelValue\":\"960601\"}},{\"attributeHeader\":{\"labelValue\":\"960605\",\"primaryLabelValue\":\"960605\"}},{\"attributeHeader\":{\"labelValue\":\"960607\",\"primaryLabelValue\":\"960607\"}},{\"attributeHeader\":{\"labelValue\":\"960609\",\"primaryLabelValue\":\"960609\"}},{\"attributeHeader\":{\"labelValue\":\"960611\",\"primaryLabelValue\":\"960611\"}},{\"attributeHeader\":{\"labelValue\":\"960613\",\"primaryLabelValue\":\"960613\"}},{\"attributeHeader\":{\"labelValue\":\"960615\",\"primaryLabelValue\":\"960615\"}},{\"attributeHeader\":{\"labelValue\":\"960617\",\"primaryLabelValue\":\"960617\"}},{\"attributeHeader\":{\"labelValue\":\"960619\",\"primaryLabelValue\":\"960619\"}},{\"attributeHeader\":{\"labelValue\":\"960621\",\"primaryLabelValue\":\"960621\"}},{\"attributeHeader\":{\"labelValue\":\"960623\",\"primaryLabelValue\":\"960623\"}},{\"attributeHeader\":{\"labelValue\":\"960625\",\"primaryLabelValue\":\"960625\"}},{\"attributeHeader\":{\"labelValue\":\"960627\",\"primaryLabelValue\":\"960627\"}},{\"attributeHeader\":{\"labelValue\":\"960629\",\"primaryLabelValue\":\"960629\"}},{\"attributeHeader\":{\"labelValue\":\"960631\",\"primaryLabelValue\":\"960631\"}},{\"attributeHeader\":{\"labelValue\":\"960633\",\"primaryLabelValue\":\"960633\"}},{\"attributeHeader\":{\"labelValue\":\"960635\",\"primaryLabelValue\":\"960635\"}},{\"attributeHeader\":{\"labelValue\":\"960637\",\"primaryLabelValue\":\"960637\"}},{\"attributeHeader\":{\"labelValue\":\"960639\",\"primaryLabelValue\":\"960639\"}},{\"attributeHeader\":{\"labelValue\":\"960641\",\"primaryLabelValue\":\"960641\"}},{\"attributeHeader\":{\"labelValue\":\"960643\",\"primaryLabelValue\":\"960643\"}},{\"attributeHeader\":{\"labelValue\":\"960645\",\"primaryLabelValue\":\"960645\"}},{\"attributeHeader\":{\"labelValue\":\"960647\",\"primaryLabelValue\":\"960647\"}},{\"attributeHeader\":{\"labelValue\":\"960649\",\"primaryLabelValue\":\"960649\"}},{\"attributeHeader\":{\"labelValue\":\"960651\",\"primaryLabelValue\":\"960651\"}},{\"attributeHeader\":{\"labelValue\":\"960653\",\"primaryLabelValue\":\"960653\"}},{\"attributeHeader\":{\"labelValue\":\"960655\",\"primaryLabelValue\":\"960655\"}},{\"attributeHeader\":{\"labelValue\":\"960661\",\"primaryLabelValue\":\"960661\"}},{\"attributeHeader\":{\"labelValue\":\"960663\",\"primaryLabelValue\":\"960663\"}},{\"attributeHeader\":{\"labelValue\":\"960665\",\"primaryLabelValue\":\"960665\"}},{\"attributeHeader\":{\"labelValue\":\"960667\",\"primaryLabelValue\":\"960667\"}},{\"attributeHeader\":{\"labelValue\":\"960669\",\"primaryLabelValue\":\"960669\"}},{\"attributeHeader\":{\"labelValue\":\"960671\",\"primaryLabelValue\":\"960671\"}},{\"attributeHeader\":{\"labelValue\":\"960675\",\"primaryLabelValue\":\"960675\"}},{\"attributeHeader\":{\"labelValue\":\"960677\",\"primaryLabelValue\":\"960677\"}},{\"attributeHeader\":{\"labelValue\":\"960679\",\"primaryLabelValue\":\"960679\"}},{\"attributeHeader\":{\"labelValue\":\"960681\",\"primaryLabelValue\":\"960681\"}},{\"attributeHeader\":{\"labelValue\":\"960683\",\"primaryLabelValue\":\"960683\"}},{\"attributeHeader\":{\"labelValue\":\"960685\",\"primaryLabelValue\":\"960685\"}},{\"attributeHeader\":{\"labelValue\":\"960687\",\"primaryLabelValue\":\"960687\"}},{\"attributeHeader\":{\"labelValue\":\"960689\",\"primaryLabelValue\":\"960689\"}},{\"attributeHeader\":{\"labelValue\":\"960691\",\"primaryLabelValue\":\"960691\"}},{\"attributeHeader\":{\"labelValue\":\"960693\",\"primaryLabelValue\":\"960693\"}},{\"attributeHeader\":{\"labelValue\":\"960695\",\"primaryLabelValue\":\"960695\"}},{\"attributeHeader\":{\"labelValue\":\"960697\",\"primaryLabelValue\":\"960697\"}},{\"attributeHeader\":{\"labelValue\":\"960699\",\"primaryLabelValue\":\"960699\"}},{\"attributeHeader\":{\"labelValue\":\"960701\",\"primaryLabelValue\":\"960701\"}},{\"attributeHeader\":{\"labelValue\":\"960703\",\"primaryLabelValue\":\"960703\"}},{\"attributeHeader\":{\"labelValue\":\"960705\",\"primaryLabelValue\":\"960705\"}},{\"attributeHeader\":{\"labelValue\":\"960707\",\"primaryLabelValue\":\"960707\"}},{\"attributeHeader\":{\"labelValue\":\"960709\",\"primaryLabelValue\":\"960709\"}},{\"attributeHeader\":{\"labelValue\":\"960711\",\"primaryLabelValue\":\"960711\"}},{\"attributeHeader\":{\"labelValue\":\"960713\",\"primaryLabelValue\":\"960713\"}},{\"attributeHeader\":{\"labelValue\":\"960715\",\"primaryLabelValue\":\"960715\"}},{\"attributeHeader\":{\"labelValue\":\"960717\",\"primaryLabelValue\":\"960717\"}},{\"attributeHeader\":{\"labelValue\":\"960719\",\"primaryLabelValue\":\"960719\"}},{\"attributeHeader\":{\"labelValue\":\"960721\",\"primaryLabelValue\":\"960721\"}},{\"attributeHeader\":{\"labelValue\":\"960723\",\"primaryLabelValue\":\"960723\"}},{\"attributeHeader\":{\"labelValue\":\"960727\",\"primaryLabelValue\":\"960727\"}},{\"attributeHeader\":{\"labelValue\":\"960729\",\"primaryLabelValue\":\"960729\"}},{\"attributeHeader\":{\"labelValue\":\"960731\",\"primaryLabelValue\":\"960731\"}},{\"attributeHeader\":{\"labelValue\":\"960733\",\"primaryLabelValue\":\"960733\"}},{\"attributeHeader\":{\"labelValue\":\"960735\",\"primaryLabelValue\":\"960735\"}},{\"attributeHeader\":{\"labelValue\":\"960737\",\"primaryLabelValue\":\"960737\"}},{\"attributeHeader\":{\"labelValue\":\"960739\",\"primaryLabelValue\":\"960739\"}},{\"attributeHeader\":{\"labelValue\":\"960741\",\"primaryLabelValue\":\"960741\"}},{\"attributeHeader\":{\"labelValue\":\"960743\",\"primaryLabelValue\":\"960743\"}},{\"attributeHeader\":{\"labelValue\":\"960745\",\"primaryLabelValue\":\"960745\"}},{\"attributeHeader\":{\"labelValue\":\"960747\",\"primaryLabelValue\":\"960747\"}},{\"attributeHeader\":{\"labelValue\":\"960749\",\"primaryLabelValue\":\"960749\"}},{\"attributeHeader\":{\"labelValue\":\"960751\",\"primaryLabelValue\":\"960751\"}},{\"attributeHeader\":{\"labelValue\":\"960753\",\"primaryLabelValue\":\"960753\"}},{\"attributeHeader\":{\"labelValue\":\"960755\",\"primaryLabelValue\":\"960755\"}},{\"attributeHeader\":{\"labelValue\":\"960757\",\"primaryLabelValue\":\"960757\"}},{\"attributeHeader\":{\"labelValue\":\"960759\",\"primaryLabelValue\":\"960759\"}},{\"attributeHeader\":{\"labelValue\":\"960761\",\"primaryLabelValue\":\"960761\"}},{\"attributeHeader\":{\"labelValue\":\"960763\",\"primaryLabelValue\":\"960763\"}},{\"attributeHeader\":{\"labelValue\":\"960765\",\"primaryLabelValue\":\"960765\"}},{\"attributeHeader\":{\"labelValue\":\"960767\",\"primaryLabelValue\":\"960767\"}},{\"attributeHeader\":{\"labelValue\":\"960769\",\"primaryLabelValue\":\"960769\"}},{\"attributeHeader\":{\"labelValue\":\"960771\",\"primaryLabelValue\":\"960771\"}},{\"attributeHeader\":{\"labelValue\":\"960773\",\"primaryLabelValue\":\"960773\"}},{\"attributeHeader\":{\"labelValue\":\"960775\",\"primaryLabelValue\":\"960775\"}},{\"attributeHeader\":{\"labelValue\":\"960777\",\"primaryLabelValue\":\"960777\"}},{\"attributeHeader\":{\"labelValue\":\"960779\",\"primaryLabelValue\":\"960779\"}},{\"attributeHeader\":{\"labelValue\":\"960781\",\"primaryLabelValue\":\"960781\"}},{\"attributeHeader\":{\"labelValue\":\"960783\",\"primaryLabelValue\":\"960783\"}},{\"attributeHeader\":{\"labelValue\":\"960785\",\"primaryLabelValue\":\"960785\"}},{\"attributeHeader\":{\"labelValue\":\"960787\",\"primaryLabelValue\":\"960787\"}},{\"attributeHeader\":{\"labelValue\":\"960789\",\"primaryLabelValue\":\"960789\"}},{\"attributeHeader\":{\"labelValue\":\"960791\",\"primaryLabelValue\":\"960791\"}},{\"attributeHeader\":{\"labelValue\":\"960793\",\"primaryLabelValue\":\"960793\"}},{\"attributeHeader\":{\"labelValue\":\"960795\",\"primaryLabelValue\":\"960795\"}},{\"attributeHeader\":{\"labelValue\":\"960797\",\"primaryLabelValue\":\"960797\"}},{\"attributeHeader\":{\"labelValue\":\"960799\",\"primaryLabelValue\":\"960799\"}},{\"attributeHeader\":{\"labelValue\":\"960801\",\"primaryLabelValue\":\"960801\"}},{\"attributeHeader\":{\"labelValue\":\"960803\",\"primaryLabelValue\":\"960803\"}},{\"attributeHeader\":{\"labelValue\":\"960805\",\"primaryLabelValue\":\"960805\"}},{\"attributeHeader\":{\"labelValue\":\"960809\",\"primaryLabelValue\":\"960809\"}},{\"attributeHeader\":{\"labelValue\":\"960811\",\"primaryLabelValue\":\"960811\"}},{\"attributeHeader\":{\"labelValue\":\"960813\",\"primaryLabelValue\":\"960813\"}},{\"attributeHeader\":{\"labelValue\":\"960815\",\"primaryLabelValue\":\"960815\"}},{\"attributeHeader\":{\"labelValue\":\"960817\",\"primaryLabelValue\":\"960817\"}},{\"attributeHeader\":{\"labelValue\":\"960819\",\"primaryLabelValue\":\"960819\"}},{\"attributeHeader\":{\"labelValue\":\"960821\",\"primaryLabelValue\":\"960821\"}},{\"attributeHeader\":{\"labelValue\":\"960823\",\"primaryLabelValue\":\"960823\"}},{\"attributeHeader\":{\"labelValue\":\"960825\",\"primaryLabelValue\":\"960825\"}},{\"attributeHeader\":{\"labelValue\":\"960827\",\"primaryLabelValue\":\"960827\"}},{\"attributeHeader\":{\"labelValue\":\"960829\",\"primaryLabelValue\":\"960829\"}},{\"attributeHeader\":{\"labelValue\":\"960831\",\"primaryLabelValue\":\"960831\"}},{\"attributeHeader\":{\"labelValue\":\"960833\",\"primaryLabelValue\":\"960833\"}},{\"attributeHeader\":{\"labelValue\":\"960835\",\"primaryLabelValue\":\"960835\"}},{\"attributeHeader\":{\"labelValue\":\"960839\",\"primaryLabelValue\":\"960839\"}},{\"attributeHeader\":{\"labelValue\":\"960841\",\"primaryLabelValue\":\"960841\"}},{\"attributeHeader\":{\"labelValue\":\"960843\",\"primaryLabelValue\":\"960843\"}},{\"attributeHeader\":{\"labelValue\":\"960845\",\"primaryLabelValue\":\"960845\"}},{\"attributeHeader\":{\"labelValue\":\"960847\",\"primaryLabelValue\":\"960847\"}},{\"attributeHeader\":{\"labelValue\":\"960849\",\"primaryLabelValue\":\"960849\"}},{\"attributeHeader\":{\"labelValue\":\"960853\",\"primaryLabelValue\":\"960853\"}},{\"attributeHeader\":{\"labelValue\":\"960855\",\"primaryLabelValue\":\"960855\"}},{\"attributeHeader\":{\"labelValue\":\"960857\",\"primaryLabelValue\":\"960857\"}},{\"attributeHeader\":{\"labelValue\":\"960859\",\"primaryLabelValue\":\"960859\"}},{\"attributeHeader\":{\"labelValue\":\"960861\",\"primaryLabelValue\":\"960861\"}},{\"attributeHeader\":{\"labelValue\":\"960863\",\"primaryLabelValue\":\"960863\"}},{\"attributeHeader\":{\"labelValue\":\"960865\",\"primaryLabelValue\":\"960865\"}},{\"attributeHeader\":{\"labelValue\":\"960867\",\"primaryLabelValue\":\"960867\"}},{\"attributeHeader\":{\"labelValue\":\"960869\",\"primaryLabelValue\":\"960869\"}},{\"attributeHeader\":{\"labelValue\":\"960871\",\"primaryLabelValue\":\"960871\"}},{\"attributeHeader\":{\"labelValue\":\"960875\",\"primaryLabelValue\":\"960875\"}},{\"attributeHeader\":{\"labelValue\":\"960877\",\"primaryLabelValue\":\"960877\"}},{\"attributeHeader\":{\"labelValue\":\"960879\",\"primaryLabelValue\":\"960879\"}},{\"attributeHeader\":{\"labelValue\":\"960881\",\"primaryLabelValue\":\"960881\"}},{\"attributeHeader\":{\"labelValue\":\"960883\",\"primaryLabelValue\":\"960883\"}},{\"attributeHeader\":{\"labelValue\":\"960887\",\"primaryLabelValue\":\"960887\"}},{\"attributeHeader\":{\"labelValue\":\"960889\",\"primaryLabelValue\":\"960889\"}},{\"attributeHeader\":{\"labelValue\":\"960891\",\"primaryLabelValue\":\"960891\"}},{\"attributeHeader\":{\"labelValue\":\"960895\",\"primaryLabelValue\":\"960895\"}},{\"attributeHeader\":{\"labelValue\":\"960897\",\"primaryLabelValue\":\"960897\"}},{\"attributeHeader\":{\"labelValue\":\"960899\",\"primaryLabelValue\":\"960899\"}},{\"attributeHeader\":{\"labelValue\":\"960901\",\"primaryLabelValue\":\"960901\"}},{\"attributeHeader\":{\"labelValue\":\"960903\",\"primaryLabelValue\":\"960903\"}},{\"attributeHeader\":{\"labelValue\":\"960905\",\"primaryLabelValue\":\"960905\"}},{\"attributeHeader\":{\"labelValue\":\"960907\",\"primaryLabelValue\":\"960907\"}},{\"attributeHeader\":{\"labelValue\":\"960909\",\"primaryLabelValue\":\"960909\"}},{\"attributeHeader\":{\"labelValue\":\"960913\",\"primaryLabelValue\":\"960913\"}},{\"attributeHeader\":{\"labelValue\":\"960915\",\"primaryLabelValue\":\"960915\"}},{\"attributeHeader\":{\"labelValue\":\"960917\",\"primaryLabelValue\":\"960917\"}},{\"attributeHeader\":{\"labelValue\":\"960919\",\"primaryLabelValue\":\"960919\"}},{\"attributeHeader\":{\"labelValue\":\"960921\",\"primaryLabelValue\":\"960921\"}},{\"attributeHeader\":{\"labelValue\":\"960923\",\"primaryLabelValue\":\"960923\"}},{\"attributeHeader\":{\"labelValue\":\"960925\",\"primaryLabelValue\":\"960925\"}},{\"attributeHeader\":{\"labelValue\":\"960926\",\"primaryLabelValue\":\"960926\"}},{\"attributeHeader\":{\"labelValue\":\"960928\",\"primaryLabelValue\":\"960928\"}},{\"attributeHeader\":{\"labelValue\":\"960929\",\"primaryLabelValue\":\"960929\"}},{\"attributeHeader\":{\"labelValue\":\"960931\",\"primaryLabelValue\":\"960931\"}},{\"attributeHeader\":{\"labelValue\":\"960933\",\"primaryLabelValue\":\"960933\"}},{\"attributeHeader\":{\"labelValue\":\"960935\",\"primaryLabelValue\":\"960935\"}},{\"attributeHeader\":{\"labelValue\":\"960937\",\"primaryLabelValue\":\"960937\"}},{\"attributeHeader\":{\"labelValue\":\"960939\",\"primaryLabelValue\":\"960939\"}},{\"attributeHeader\":{\"labelValue\":\"960941\",\"primaryLabelValue\":\"960941\"}},{\"attributeHeader\":{\"labelValue\":\"960943\",\"primaryLabelValue\":\"960943\"}},{\"attributeHeader\":{\"labelValue\":\"960945\",\"primaryLabelValue\":\"960945\"}},{\"attributeHeader\":{\"labelValue\":\"960947\",\"primaryLabelValue\":\"960947\"}},{\"attributeHeader\":{\"labelValue\":\"960949\",\"primaryLabelValue\":\"960949\"}},{\"attributeHeader\":{\"labelValue\":\"960951\",\"primaryLabelValue\":\"960951\"}},{\"attributeHeader\":{\"labelValue\":\"960953\",\"primaryLabelValue\":\"960953\"}},{\"attributeHeader\":{\"labelValue\":\"960955\",\"primaryLabelValue\":\"960955\"}},{\"attributeHeader\":{\"labelValue\":\"960957\",\"primaryLabelValue\":\"960957\"}},{\"attributeHeader\":{\"labelValue\":\"960959\",\"primaryLabelValue\":\"960959\"}},{\"attributeHeader\":{\"labelValue\":\"960963\",\"primaryLabelValue\":\"960963\"}},{\"attributeHeader\":{\"labelValue\":\"960965\",\"primaryLabelValue\":\"960965\"}},{\"attributeHeader\":{\"labelValue\":\"960967\",\"primaryLabelValue\":\"960967\"}},{\"attributeHeader\":{\"labelValue\":\"960969\",\"primaryLabelValue\":\"960969\"}},{\"attributeHeader\":{\"labelValue\":\"960971\",\"primaryLabelValue\":\"960971\"}},{\"attributeHeader\":{\"labelValue\":\"960973\",\"primaryLabelValue\":\"960973\"}},{\"attributeHeader\":{\"labelValue\":\"960975\",\"primaryLabelValue\":\"960975\"}},{\"attributeHeader\":{\"labelValue\":\"960977\",\"primaryLabelValue\":\"960977\"}},{\"attributeHeader\":{\"labelValue\":\"960979\",\"primaryLabelValue\":\"960979\"}},{\"attributeHeader\":{\"labelValue\":\"960981\",\"primaryLabelValue\":\"960981\"}},{\"attributeHeader\":{\"labelValue\":\"960983\",\"primaryLabelValue\":\"960983\"}},{\"attributeHeader\":{\"labelValue\":\"960985\",\"primaryLabelValue\":\"960985\"}},{\"attributeHeader\":{\"labelValue\":\"960987\",\"primaryLabelValue\":\"960987\"}},{\"attributeHeader\":{\"labelValue\":\"960989\",\"primaryLabelValue\":\"960989\"}},{\"attributeHeader\":{\"labelValue\":\"960991\",\"primaryLabelValue\":\"960991\"}},{\"attributeHeader\":{\"labelValue\":\"960993\",\"primaryLabelValue\":\"960993\"}},{\"attributeHeader\":{\"labelValue\":\"960995\",\"primaryLabelValue\":\"960995\"}},{\"attributeHeader\":{\"labelValue\":\"960997\",\"primaryLabelValue\":\"960997\"}},{\"attributeHeader\":{\"labelValue\":\"960999\",\"primaryLabelValue\":\"960999\"}},{\"attributeHeader\":{\"labelValue\":\"961001\",\"primaryLabelValue\":\"961001\"}},{\"attributeHeader\":{\"labelValue\":\"961003\",\"primaryLabelValue\":\"961003\"}},{\"attributeHeader\":{\"labelValue\":\"961005\",\"primaryLabelValue\":\"961005\"}},{\"attributeHeader\":{\"labelValue\":\"961007\",\"primaryLabelValue\":\"961007\"}},{\"attributeHeader\":{\"labelValue\":\"961009\",\"primaryLabelValue\":\"961009\"}},{\"attributeHeader\":{\"labelValue\":\"961011\",\"primaryLabelValue\":\"961011\"}},{\"attributeHeader\":{\"labelValue\":\"961013\",\"primaryLabelValue\":\"961013\"}},{\"attributeHeader\":{\"labelValue\":\"961015\",\"primaryLabelValue\":\"961015\"}},{\"attributeHeader\":{\"labelValue\":\"961017\",\"primaryLabelValue\":\"961017\"}},{\"attributeHeader\":{\"labelValue\":\"961019\",\"primaryLabelValue\":\"961019\"}},{\"attributeHeader\":{\"labelValue\":\"961021\",\"primaryLabelValue\":\"961021\"}},{\"attributeHeader\":{\"labelValue\":\"961023\",\"primaryLabelValue\":\"961023\"}},{\"attributeHeader\":{\"labelValue\":\"961025\",\"primaryLabelValue\":\"961025\"}},{\"attributeHeader\":{\"labelValue\":\"961027\",\"primaryLabelValue\":\"961027\"}},{\"attributeHeader\":{\"labelValue\":\"961031\",\"primaryLabelValue\":\"961031\"}},{\"attributeHeader\":{\"labelValue\":\"961033\",\"primaryLabelValue\":\"961033\"}},{\"attributeHeader\":{\"labelValue\":\"961035\",\"primaryLabelValue\":\"961035\"}},{\"attributeHeader\":{\"labelValue\":\"961037\",\"primaryLabelValue\":\"961037\"}},{\"attributeHeader\":{\"labelValue\":\"961039\",\"primaryLabelValue\":\"961039\"}},{\"attributeHeader\":{\"labelValue\":\"961041\",\"primaryLabelValue\":\"961041\"}},{\"attributeHeader\":{\"labelValue\":\"961043\",\"primaryLabelValue\":\"961043\"}},{\"attributeHeader\":{\"labelValue\":\"961045\",\"primaryLabelValue\":\"961045\"}},{\"attributeHeader\":{\"labelValue\":\"961047\",\"primaryLabelValue\":\"961047\"}},{\"attributeHeader\":{\"labelValue\":\"961055\",\"primaryLabelValue\":\"961055\"}},{\"attributeHeader\":{\"labelValue\":\"961057\",\"primaryLabelValue\":\"961057\"}},{\"attributeHeader\":{\"labelValue\":\"961059\",\"primaryLabelValue\":\"961059\"}},{\"attributeHeader\":{\"labelValue\":\"961061\",\"primaryLabelValue\":\"961061\"}},{\"attributeHeader\":{\"labelValue\":\"961063\",\"primaryLabelValue\":\"961063\"}},{\"attributeHeader\":{\"labelValue\":\"961065\",\"primaryLabelValue\":\"961065\"}},{\"attributeHeader\":{\"labelValue\":\"961067\",\"primaryLabelValue\":\"961067\"}},{\"attributeHeader\":{\"labelValue\":\"961069\",\"primaryLabelValue\":\"961069\"}},{\"attributeHeader\":{\"labelValue\":\"961071\",\"primaryLabelValue\":\"961071\"}},{\"attributeHeader\":{\"labelValue\":\"961073\",\"primaryLabelValue\":\"961073\"}},{\"attributeHeader\":{\"labelValue\":\"961075\",\"primaryLabelValue\":\"961075\"}},{\"attributeHeader\":{\"labelValue\":\"961077\",\"primaryLabelValue\":\"961077\"}},{\"attributeHeader\":{\"labelValue\":\"961081\",\"primaryLabelValue\":\"961081\"}},{\"attributeHeader\":{\"labelValue\":\"961083\",\"primaryLabelValue\":\"961083\"}},{\"attributeHeader\":{\"labelValue\":\"961085\",\"primaryLabelValue\":\"961085\"}},{\"attributeHeader\":{\"labelValue\":\"961087\",\"primaryLabelValue\":\"961087\"}},{\"attributeHeader\":{\"labelValue\":\"961089\",\"primaryLabelValue\":\"961089\"}},{\"attributeHeader\":{\"labelValue\":\"961091\",\"primaryLabelValue\":\"961091\"}},{\"attributeHeader\":{\"labelValue\":\"961093\",\"primaryLabelValue\":\"961093\"}},{\"attributeHeader\":{\"labelValue\":\"961095\",\"primaryLabelValue\":\"961095\"}},{\"attributeHeader\":{\"labelValue\":\"961097\",\"primaryLabelValue\":\"961097\"}},{\"attributeHeader\":{\"labelValue\":\"961099\",\"primaryLabelValue\":\"961099\"}},{\"attributeHeader\":{\"labelValue\":\"961101\",\"primaryLabelValue\":\"961101\"}},{\"attributeHeader\":{\"labelValue\":\"961103\",\"primaryLabelValue\":\"961103\"}},{\"attributeHeader\":{\"labelValue\":\"961105\",\"primaryLabelValue\":\"961105\"}},{\"attributeHeader\":{\"labelValue\":\"961107\",\"primaryLabelValue\":\"961107\"}},{\"attributeHeader\":{\"labelValue\":\"961109\",\"primaryLabelValue\":\"961109\"}},{\"attributeHeader\":{\"labelValue\":\"961111\",\"primaryLabelValue\":\"961111\"}},{\"attributeHeader\":{\"labelValue\":\"961113\",\"primaryLabelValue\":\"961113\"}},{\"attributeHeader\":{\"labelValue\":\"961115\",\"primaryLabelValue\":\"961115\"}},{\"attributeHeader\":{\"labelValue\":\"961117\",\"primaryLabelValue\":\"961117\"}},{\"attributeHeader\":{\"labelValue\":\"961119\",\"primaryLabelValue\":\"961119\"}},{\"attributeHeader\":{\"labelValue\":\"961121\",\"primaryLabelValue\":\"961121\"}},{\"attributeHeader\":{\"labelValue\":\"961123\",\"primaryLabelValue\":\"961123\"}},{\"attributeHeader\":{\"labelValue\":\"961125\",\"primaryLabelValue\":\"961125\"}},{\"attributeHeader\":{\"labelValue\":\"961127\",\"primaryLabelValue\":\"961127\"}},{\"attributeHeader\":{\"labelValue\":\"961129\",\"primaryLabelValue\":\"961129\"}},{\"attributeHeader\":{\"labelValue\":\"961131\",\"primaryLabelValue\":\"961131\"}},{\"attributeHeader\":{\"labelValue\":\"961133\",\"primaryLabelValue\":\"961133\"}},{\"attributeHeader\":{\"labelValue\":\"961135\",\"primaryLabelValue\":\"961135\"}},{\"attributeHeader\":{\"labelValue\":\"961137\",\"primaryLabelValue\":\"961137\"}},{\"attributeHeader\":{\"labelValue\":\"961139\",\"primaryLabelValue\":\"961139\"}},{\"attributeHeader\":{\"labelValue\":\"961141\",\"primaryLabelValue\":\"961141\"}},{\"attributeHeader\":{\"labelValue\":\"961143\",\"primaryLabelValue\":\"961143\"}},{\"attributeHeader\":{\"labelValue\":\"961145\",\"primaryLabelValue\":\"961145\"}},{\"attributeHeader\":{\"labelValue\":\"961147\",\"primaryLabelValue\":\"961147\"}},{\"attributeHeader\":{\"labelValue\":\"961149\",\"primaryLabelValue\":\"961149\"}},{\"attributeHeader\":{\"labelValue\":\"961151\",\"primaryLabelValue\":\"961151\"}},{\"attributeHeader\":{\"labelValue\":\"961153\",\"primaryLabelValue\":\"961153\"}},{\"attributeHeader\":{\"labelValue\":\"961155\",\"primaryLabelValue\":\"961155\"}},{\"attributeHeader\":{\"labelValue\":\"961157\",\"primaryLabelValue\":\"961157\"}},{\"attributeHeader\":{\"labelValue\":\"961159\",\"primaryLabelValue\":\"961159\"}},{\"attributeHeader\":{\"labelValue\":\"961161\",\"primaryLabelValue\":\"961161\"}},{\"attributeHeader\":{\"labelValue\":\"961163\",\"primaryLabelValue\":\"961163\"}},{\"attributeHeader\":{\"labelValue\":\"961165\",\"primaryLabelValue\":\"961165\"}},{\"attributeHeader\":{\"labelValue\":\"961167\",\"primaryLabelValue\":\"961167\"}},{\"attributeHeader\":{\"labelValue\":\"961169\",\"primaryLabelValue\":\"961169\"}},{\"attributeHeader\":{\"labelValue\":\"961171\",\"primaryLabelValue\":\"961171\"}},{\"attributeHeader\":{\"labelValue\":\"961173\",\"primaryLabelValue\":\"961173\"}},{\"attributeHeader\":{\"labelValue\":\"961175\",\"primaryLabelValue\":\"961175\"}},{\"attributeHeader\":{\"labelValue\":\"961177\",\"primaryLabelValue\":\"961177\"}},{\"attributeHeader\":{\"labelValue\":\"961179\",\"primaryLabelValue\":\"961179\"}},{\"attributeHeader\":{\"labelValue\":\"961181\",\"primaryLabelValue\":\"961181\"}},{\"attributeHeader\":{\"labelValue\":\"961183\",\"primaryLabelValue\":\"961183\"}},{\"attributeHeader\":{\"labelValue\":\"961185\",\"primaryLabelValue\":\"961185\"}},{\"attributeHeader\":{\"labelValue\":\"961187\",\"primaryLabelValue\":\"961187\"}},{\"attributeHeader\":{\"labelValue\":\"961189\",\"primaryLabelValue\":\"961189\"}},{\"attributeHeader\":{\"labelValue\":\"961191\",\"primaryLabelValue\":\"961191\"}},{\"attributeHeader\":{\"labelValue\":\"961193\",\"primaryLabelValue\":\"961193\"}},{\"attributeHeader\":{\"labelValue\":\"961195\",\"primaryLabelValue\":\"961195\"}},{\"attributeHeader\":{\"labelValue\":\"961197\",\"primaryLabelValue\":\"961197\"}},{\"attributeHeader\":{\"labelValue\":\"961199\",\"primaryLabelValue\":\"961199\"}},{\"attributeHeader\":{\"labelValue\":\"961201\",\"primaryLabelValue\":\"961201\"}},{\"attributeHeader\":{\"labelValue\":\"961203\",\"primaryLabelValue\":\"961203\"}},{\"attributeHeader\":{\"labelValue\":\"961205\",\"primaryLabelValue\":\"961205\"}},{\"attributeHeader\":{\"labelValue\":\"961207\",\"primaryLabelValue\":\"961207\"}},{\"attributeHeader\":{\"labelValue\":\"961209\",\"primaryLabelValue\":\"961209\"}},{\"attributeHeader\":{\"labelValue\":\"961211\",\"primaryLabelValue\":\"961211\"}},{\"attributeHeader\":{\"labelValue\":\"961213\",\"primaryLabelValue\":\"961213\"}},{\"attributeHeader\":{\"labelValue\":\"961215\",\"primaryLabelValue\":\"961215\"}},{\"attributeHeader\":{\"labelValue\":\"961217\",\"primaryLabelValue\":\"961217\"}},{\"attributeHeader\":{\"labelValue\":\"961219\",\"primaryLabelValue\":\"961219\"}},{\"attributeHeader\":{\"labelValue\":\"961221\",\"primaryLabelValue\":\"961221\"}},{\"attributeHeader\":{\"labelValue\":\"961223\",\"primaryLabelValue\":\"961223\"}},{\"attributeHeader\":{\"labelValue\":\"961225\",\"primaryLabelValue\":\"961225\"}},{\"attributeHeader\":{\"labelValue\":\"961227\",\"primaryLabelValue\":\"961227\"}},{\"attributeHeader\":{\"labelValue\":\"961229\",\"primaryLabelValue\":\"961229\"}},{\"attributeHeader\":{\"labelValue\":\"961231\",\"primaryLabelValue\":\"961231\"}},{\"attributeHeader\":{\"labelValue\":\"961233\",\"primaryLabelValue\":\"961233\"}},{\"attributeHeader\":{\"labelValue\":\"961235\",\"primaryLabelValue\":\"961235\"}},{\"attributeHeader\":{\"labelValue\":\"961237\",\"primaryLabelValue\":\"961237\"}},{\"attributeHeader\":{\"labelValue\":\"961241\",\"primaryLabelValue\":\"961241\"}},{\"attributeHeader\":{\"labelValue\":\"961243\",\"primaryLabelValue\":\"961243\"}},{\"attributeHeader\":{\"labelValue\":\"961245\",\"primaryLabelValue\":\"961245\"}},{\"attributeHeader\":{\"labelValue\":\"961247\",\"primaryLabelValue\":\"961247\"}},{\"attributeHeader\":{\"labelValue\":\"961249\",\"primaryLabelValue\":\"961249\"}},{\"attributeHeader\":{\"labelValue\":\"961251\",\"primaryLabelValue\":\"961251\"}},{\"attributeHeader\":{\"labelValue\":\"961253\",\"primaryLabelValue\":\"961253\"}},{\"attributeHeader\":{\"labelValue\":\"961255\",\"primaryLabelValue\":\"961255\"}},{\"attributeHeader\":{\"labelValue\":\"961257\",\"primaryLabelValue\":\"961257\"}},{\"attributeHeader\":{\"labelValue\":\"961259\",\"primaryLabelValue\":\"961259\"}},{\"attributeHeader\":{\"labelValue\":\"961261\",\"primaryLabelValue\":\"961261\"}},{\"attributeHeader\":{\"labelValue\":\"961263\",\"primaryLabelValue\":\"961263\"}},{\"attributeHeader\":{\"labelValue\":\"961265\",\"primaryLabelValue\":\"961265\"}},{\"attributeHeader\":{\"labelValue\":\"961267\",\"primaryLabelValue\":\"961267\"}},{\"attributeHeader\":{\"labelValue\":\"961269\",\"primaryLabelValue\":\"961269\"}},{\"attributeHeader\":{\"labelValue\":\"961271\",\"primaryLabelValue\":\"961271\"}},{\"attributeHeader\":{\"labelValue\":\"961273\",\"primaryLabelValue\":\"961273\"}},{\"attributeHeader\":{\"labelValue\":\"961275\",\"primaryLabelValue\":\"961275\"}},{\"attributeHeader\":{\"labelValue\":\"961277\",\"primaryLabelValue\":\"961277\"}},{\"attributeHeader\":{\"labelValue\":\"961279\",\"primaryLabelValue\":\"961279\"}},{\"attributeHeader\":{\"labelValue\":\"961281\",\"primaryLabelValue\":\"961281\"}},{\"attributeHeader\":{\"labelValue\":\"961283\",\"primaryLabelValue\":\"961283\"}},{\"attributeHeader\":{\"labelValue\":\"961285\",\"primaryLabelValue\":\"961285\"}},{\"attributeHeader\":{\"labelValue\":\"961287\",\"primaryLabelValue\":\"961287\"}},{\"attributeHeader\":{\"labelValue\":\"961289\",\"primaryLabelValue\":\"961289\"}},{\"attributeHeader\":{\"labelValue\":\"961291\",\"primaryLabelValue\":\"961291\"}},{\"attributeHeader\":{\"labelValue\":\"961293\",\"primaryLabelValue\":\"961293\"}},{\"attributeHeader\":{\"labelValue\":\"961295\",\"primaryLabelValue\":\"961295\"}},{\"attributeHeader\":{\"labelValue\":\"961297\",\"primaryLabelValue\":\"961297\"}},{\"attributeHeader\":{\"labelValue\":\"961299\",\"primaryLabelValue\":\"961299\"}},{\"attributeHeader\":{\"labelValue\":\"961301\",\"primaryLabelValue\":\"961301\"}},{\"attributeHeader\":{\"labelValue\":\"961303\",\"primaryLabelValue\":\"961303\"}},{\"attributeHeader\":{\"labelValue\":\"961305\",\"primaryLabelValue\":\"961305\"}},{\"attributeHeader\":{\"labelValue\":\"961307\",\"primaryLabelValue\":\"961307\"}},{\"attributeHeader\":{\"labelValue\":\"961309\",\"primaryLabelValue\":\"961309\"}},{\"attributeHeader\":{\"labelValue\":\"961311\",\"primaryLabelValue\":\"961311\"}},{\"attributeHeader\":{\"labelValue\":\"961317\",\"primaryLabelValue\":\"961317\"}},{\"attributeHeader\":{\"labelValue\":\"961319\",\"primaryLabelValue\":\"961319\"}},{\"attributeHeader\":{\"labelValue\":\"961321\",\"primaryLabelValue\":\"961321\"}},{\"attributeHeader\":{\"labelValue\":\"961323\",\"primaryLabelValue\":\"961323\"}},{\"attributeHeader\":{\"labelValue\":\"961325\",\"primaryLabelValue\":\"961325\"}},{\"attributeHeader\":{\"labelValue\":\"961327\",\"primaryLabelValue\":\"961327\"}},{\"attributeHeader\":{\"labelValue\":\"961329\",\"primaryLabelValue\":\"961329\"}},{\"attributeHeader\":{\"labelValue\":\"961331\",\"primaryLabelValue\":\"961331\"}},{\"attributeHeader\":{\"labelValue\":\"961333\",\"primaryLabelValue\":\"961333\"}},{\"attributeHeader\":{\"labelValue\":\"961335\",\"primaryLabelValue\":\"961335\"}},{\"attributeHeader\":{\"labelValue\":\"961337\",\"primaryLabelValue\":\"961337\"}},{\"attributeHeader\":{\"labelValue\":\"961339\",\"primaryLabelValue\":\"961339\"}},{\"attributeHeader\":{\"labelValue\":\"961341\",\"primaryLabelValue\":\"961341\"}},{\"attributeHeader\":{\"labelValue\":\"961343\",\"primaryLabelValue\":\"961343\"}},{\"attributeHeader\":{\"labelValue\":\"961345\",\"primaryLabelValue\":\"961345\"}},{\"attributeHeader\":{\"labelValue\":\"961349\",\"primaryLabelValue\":\"961349\"}},{\"attributeHeader\":{\"labelValue\":\"961353\",\"primaryLabelValue\":\"961353\"}},{\"attributeHeader\":{\"labelValue\":\"961355\",\"primaryLabelValue\":\"961355\"}},{\"attributeHeader\":{\"labelValue\":\"961357\",\"primaryLabelValue\":\"961357\"}},{\"attributeHeader\":{\"labelValue\":\"961363\",\"primaryLabelValue\":\"961363\"}},{\"attributeHeader\":{\"labelValue\":\"961365\",\"primaryLabelValue\":\"961365\"}},{\"attributeHeader\":{\"labelValue\":\"961367\",\"primaryLabelValue\":\"961367\"}},{\"attributeHeader\":{\"labelValue\":\"961369\",\"primaryLabelValue\":\"961369\"}},{\"attributeHeader\":{\"labelValue\":\"961371\",\"primaryLabelValue\":\"961371\"}},{\"attributeHeader\":{\"labelValue\":\"961373\",\"primaryLabelValue\":\"961373\"}},{\"attributeHeader\":{\"labelValue\":\"961375\",\"primaryLabelValue\":\"961375\"}},{\"attributeHeader\":{\"labelValue\":\"961377\",\"primaryLabelValue\":\"961377\"}},{\"attributeHeader\":{\"labelValue\":\"961379\",\"primaryLabelValue\":\"961379\"}},{\"attributeHeader\":{\"labelValue\":\"961381\",\"primaryLabelValue\":\"961381\"}},{\"attributeHeader\":{\"labelValue\":\"961383\",\"primaryLabelValue\":\"961383\"}},{\"attributeHeader\":{\"labelValue\":\"961385\",\"primaryLabelValue\":\"961385\"}},{\"attributeHeader\":{\"labelValue\":\"961387\",\"primaryLabelValue\":\"961387\"}},{\"attributeHeader\":{\"labelValue\":\"961389\",\"primaryLabelValue\":\"961389\"}},{\"attributeHeader\":{\"labelValue\":\"961391\",\"primaryLabelValue\":\"961391\"}},{\"attributeHeader\":{\"labelValue\":\"961393\",\"primaryLabelValue\":\"961393\"}},{\"attributeHeader\":{\"labelValue\":\"961395\",\"primaryLabelValue\":\"961395\"}},{\"attributeHeader\":{\"labelValue\":\"961397\",\"primaryLabelValue\":\"961397\"}},{\"attributeHeader\":{\"labelValue\":\"961399\",\"primaryLabelValue\":\"961399\"}},{\"attributeHeader\":{\"labelValue\":\"961401\",\"primaryLabelValue\":\"961401\"}},{\"attributeHeader\":{\"labelValue\":\"961403\",\"primaryLabelValue\":\"961403\"}},{\"attributeHeader\":{\"labelValue\":\"961405\",\"primaryLabelValue\":\"961405\"}},{\"attributeHeader\":{\"labelValue\":\"961407\",\"primaryLabelValue\":\"961407\"}},{\"attributeHeader\":{\"labelValue\":\"961409\",\"primaryLabelValue\":\"961409\"}},{\"attributeHeader\":{\"labelValue\":\"961411\",\"primaryLabelValue\":\"961411\"}},{\"attributeHeader\":{\"labelValue\":\"961413\",\"primaryLabelValue\":\"961413\"}},{\"attributeHeader\":{\"labelValue\":\"961415\",\"primaryLabelValue\":\"961415\"}},{\"attributeHeader\":{\"labelValue\":\"961417\",\"primaryLabelValue\":\"961417\"}},{\"attributeHeader\":{\"labelValue\":\"961419\",\"primaryLabelValue\":\"961419\"}},{\"attributeHeader\":{\"labelValue\":\"961421\",\"primaryLabelValue\":\"961421\"}},{\"attributeHeader\":{\"labelValue\":\"961423\",\"primaryLabelValue\":\"961423\"}},{\"attributeHeader\":{\"labelValue\":\"961425\",\"primaryLabelValue\":\"961425\"}},{\"attributeHeader\":{\"labelValue\":\"961427\",\"primaryLabelValue\":\"961427\"}},{\"attributeHeader\":{\"labelValue\":\"961429\",\"primaryLabelValue\":\"961429\"}},{\"attributeHeader\":{\"labelValue\":\"961431\",\"primaryLabelValue\":\"961431\"}},{\"attributeHeader\":{\"labelValue\":\"961433\",\"primaryLabelValue\":\"961433\"}},{\"attributeHeader\":{\"labelValue\":\"961435\",\"primaryLabelValue\":\"961435\"}},{\"attributeHeader\":{\"labelValue\":\"961437\",\"primaryLabelValue\":\"961437\"}},{\"attributeHeader\":{\"labelValue\":\"961439\",\"primaryLabelValue\":\"961439\"}},{\"attributeHeader\":{\"labelValue\":\"961441\",\"primaryLabelValue\":\"961441\"}},{\"attributeHeader\":{\"labelValue\":\"961443\",\"primaryLabelValue\":\"961443\"}},{\"attributeHeader\":{\"labelValue\":\"961445\",\"primaryLabelValue\":\"961445\"}},{\"attributeHeader\":{\"labelValue\":\"961447\",\"primaryLabelValue\":\"961447\"}},{\"attributeHeader\":{\"labelValue\":\"961449\",\"primaryLabelValue\":\"961449\"}},{\"attributeHeader\":{\"labelValue\":\"961451\",\"primaryLabelValue\":\"961451\"}},{\"attributeHeader\":{\"labelValue\":\"961453\",\"primaryLabelValue\":\"961453\"}},{\"attributeHeader\":{\"labelValue\":\"961455\",\"primaryLabelValue\":\"961455\"}},{\"attributeHeader\":{\"labelValue\":\"961457\",\"primaryLabelValue\":\"961457\"}},{\"attributeHeader\":{\"labelValue\":\"961459\",\"primaryLabelValue\":\"961459\"}},{\"attributeHeader\":{\"labelValue\":\"961461\",\"primaryLabelValue\":\"961461\"}},{\"attributeHeader\":{\"labelValue\":\"961463\",\"primaryLabelValue\":\"961463\"}},{\"attributeHeader\":{\"labelValue\":\"961465\",\"primaryLabelValue\":\"961465\"}},{\"attributeHeader\":{\"labelValue\":\"961471\",\"primaryLabelValue\":\"961471\"}},{\"attributeHeader\":{\"labelValue\":\"961473\",\"primaryLabelValue\":\"961473\"}},{\"attributeHeader\":{\"labelValue\":\"961477\",\"primaryLabelValue\":\"961477\"}},{\"attributeHeader\":{\"labelValue\":\"961479\",\"primaryLabelValue\":\"961479\"}},{\"attributeHeader\":{\"labelValue\":\"961481\",\"primaryLabelValue\":\"961481\"}},{\"attributeHeader\":{\"labelValue\":\"961485\",\"primaryLabelValue\":\"961485\"}},{\"attributeHeader\":{\"labelValue\":\"961487\",\"primaryLabelValue\":\"961487\"}},{\"attributeHeader\":{\"labelValue\":\"961489\",\"primaryLabelValue\":\"961489\"}},{\"attributeHeader\":{\"labelValue\":\"961491\",\"primaryLabelValue\":\"961491\"}},{\"attributeHeader\":{\"labelValue\":\"961493\",\"primaryLabelValue\":\"961493\"}},{\"attributeHeader\":{\"labelValue\":\"961495\",\"primaryLabelValue\":\"961495\"}},{\"attributeHeader\":{\"labelValue\":\"961497\",\"primaryLabelValue\":\"961497\"}},{\"attributeHeader\":{\"labelValue\":\"961499\",\"primaryLabelValue\":\"961499\"}},{\"attributeHeader\":{\"labelValue\":\"961501\",\"primaryLabelValue\":\"961501\"}},{\"attributeHeader\":{\"labelValue\":\"961503\",\"primaryLabelValue\":\"961503\"}},{\"attributeHeader\":{\"labelValue\":\"961505\",\"primaryLabelValue\":\"961505\"}},{\"attributeHeader\":{\"labelValue\":\"961507\",\"primaryLabelValue\":\"961507\"}},{\"attributeHeader\":{\"labelValue\":\"961509\",\"primaryLabelValue\":\"961509\"}},{\"attributeHeader\":{\"labelValue\":\"961511\",\"primaryLabelValue\":\"961511\"}},{\"attributeHeader\":{\"labelValue\":\"961513\",\"primaryLabelValue\":\"961513\"}},{\"attributeHeader\":{\"labelValue\":\"961515\",\"primaryLabelValue\":\"961515\"}},{\"attributeHeader\":{\"labelValue\":\"961517\",\"primaryLabelValue\":\"961517\"}},{\"attributeHeader\":{\"labelValue\":\"961519\",\"primaryLabelValue\":\"961519\"}},{\"attributeHeader\":{\"labelValue\":\"961521\",\"primaryLabelValue\":\"961521\"}},{\"attributeHeader\":{\"labelValue\":\"961523\",\"primaryLabelValue\":\"961523\"}},{\"attributeHeader\":{\"labelValue\":\"961525\",\"primaryLabelValue\":\"961525\"}},{\"attributeHeader\":{\"labelValue\":\"961527\",\"primaryLabelValue\":\"961527\"}},{\"attributeHeader\":{\"labelValue\":\"961529\",\"primaryLabelValue\":\"961529\"}},{\"attributeHeader\":{\"labelValue\":\"961531\",\"primaryLabelValue\":\"961531\"}},{\"attributeHeader\":{\"labelValue\":\"961533\",\"primaryLabelValue\":\"961533\"}},{\"attributeHeader\":{\"labelValue\":\"961535\",\"primaryLabelValue\":\"961535\"}},{\"attributeHeader\":{\"labelValue\":\"961537\",\"primaryLabelValue\":\"961537\"}},{\"attributeHeader\":{\"labelValue\":\"961539\",\"primaryLabelValue\":\"961539\"}},{\"attributeHeader\":{\"labelValue\":\"961541\",\"primaryLabelValue\":\"961541\"}},{\"attributeHeader\":{\"labelValue\":\"961543\",\"primaryLabelValue\":\"961543\"}},{\"attributeHeader\":{\"labelValue\":\"961545\",\"primaryLabelValue\":\"961545\"}},{\"attributeHeader\":{\"labelValue\":\"961547\",\"primaryLabelValue\":\"961547\"}},{\"attributeHeader\":{\"labelValue\":\"961549\",\"primaryLabelValue\":\"961549\"}},{\"attributeHeader\":{\"labelValue\":\"961551\",\"primaryLabelValue\":\"961551\"}},{\"attributeHeader\":{\"labelValue\":\"961553\",\"primaryLabelValue\":\"961553\"}},{\"attributeHeader\":{\"labelValue\":\"961555\",\"primaryLabelValue\":\"961555\"}},{\"attributeHeader\":{\"labelValue\":\"961557\",\"primaryLabelValue\":\"961557\"}},{\"attributeHeader\":{\"labelValue\":\"961559\",\"primaryLabelValue\":\"961559\"}},{\"attributeHeader\":{\"labelValue\":\"961561\",\"primaryLabelValue\":\"961561\"}},{\"attributeHeader\":{\"labelValue\":\"961563\",\"primaryLabelValue\":\"961563\"}},{\"attributeHeader\":{\"labelValue\":\"961565\",\"primaryLabelValue\":\"961565\"}},{\"attributeHeader\":{\"labelValue\":\"961569\",\"primaryLabelValue\":\"961569\"}},{\"attributeHeader\":{\"labelValue\":\"961571\",\"primaryLabelValue\":\"961571\"}},{\"attributeHeader\":{\"labelValue\":\"961573\",\"primaryLabelValue\":\"961573\"}},{\"attributeHeader\":{\"labelValue\":\"961575\",\"primaryLabelValue\":\"961575\"}},{\"attributeHeader\":{\"labelValue\":\"961577\",\"primaryLabelValue\":\"961577\"}},{\"attributeHeader\":{\"labelValue\":\"961579\",\"primaryLabelValue\":\"961579\"}},{\"attributeHeader\":{\"labelValue\":\"961581\",\"primaryLabelValue\":\"961581\"}},{\"attributeHeader\":{\"labelValue\":\"961583\",\"primaryLabelValue\":\"961583\"}},{\"attributeHeader\":{\"labelValue\":\"961585\",\"primaryLabelValue\":\"961585\"}},{\"attributeHeader\":{\"labelValue\":\"961587\",\"primaryLabelValue\":\"961587\"}},{\"attributeHeader\":{\"labelValue\":\"961589\",\"primaryLabelValue\":\"961589\"}},{\"attributeHeader\":{\"labelValue\":\"961591\",\"primaryLabelValue\":\"961591\"}},{\"attributeHeader\":{\"labelValue\":\"961593\",\"primaryLabelValue\":\"961593\"}},{\"attributeHeader\":{\"labelValue\":\"961595\",\"primaryLabelValue\":\"961595\"}},{\"attributeHeader\":{\"labelValue\":\"961597\",\"primaryLabelValue\":\"961597\"}},{\"attributeHeader\":{\"labelValue\":\"961601\",\"primaryLabelValue\":\"961601\"}},{\"attributeHeader\":{\"labelValue\":\"961603\",\"primaryLabelValue\":\"961603\"}},{\"attributeHeader\":{\"labelValue\":\"961605\",\"primaryLabelValue\":\"961605\"}},{\"attributeHeader\":{\"labelValue\":\"961607\",\"primaryLabelValue\":\"961607\"}},{\"attributeHeader\":{\"labelValue\":\"961609\",\"primaryLabelValue\":\"961609\"}},{\"attributeHeader\":{\"labelValue\":\"961611\",\"primaryLabelValue\":\"961611\"}},{\"attributeHeader\":{\"labelValue\":\"961613\",\"primaryLabelValue\":\"961613\"}},{\"attributeHeader\":{\"labelValue\":\"961615\",\"primaryLabelValue\":\"961615\"}},{\"attributeHeader\":{\"labelValue\":\"961617\",\"primaryLabelValue\":\"961617\"}},{\"attributeHeader\":{\"labelValue\":\"961619\",\"primaryLabelValue\":\"961619\"}},{\"attributeHeader\":{\"labelValue\":\"961621\",\"primaryLabelValue\":\"961621\"}},{\"attributeHeader\":{\"labelValue\":\"961623\",\"primaryLabelValue\":\"961623\"}},{\"attributeHeader\":{\"labelValue\":\"961625\",\"primaryLabelValue\":\"961625\"}},{\"attributeHeader\":{\"labelValue\":\"961627\",\"primaryLabelValue\":\"961627\"}},{\"attributeHeader\":{\"labelValue\":\"961629\",\"primaryLabelValue\":\"961629\"}},{\"attributeHeader\":{\"labelValue\":\"961631\",\"primaryLabelValue\":\"961631\"}},{\"attributeHeader\":{\"labelValue\":\"961633\",\"primaryLabelValue\":\"961633\"}},{\"attributeHeader\":{\"labelValue\":\"961635\",\"primaryLabelValue\":\"961635\"}},{\"attributeHeader\":{\"labelValue\":\"961637\",\"primaryLabelValue\":\"961637\"}},{\"attributeHeader\":{\"labelValue\":\"961639\",\"primaryLabelValue\":\"961639\"}},{\"attributeHeader\":{\"labelValue\":\"961641\",\"primaryLabelValue\":\"961641\"}},{\"attributeHeader\":{\"labelValue\":\"961643\",\"primaryLabelValue\":\"961643\"}},{\"attributeHeader\":{\"labelValue\":\"961645\",\"primaryLabelValue\":\"961645\"}},{\"attributeHeader\":{\"labelValue\":\"961647\",\"primaryLabelValue\":\"961647\"}},{\"attributeHeader\":{\"labelValue\":\"961649\",\"primaryLabelValue\":\"961649\"}},{\"attributeHeader\":{\"labelValue\":\"961651\",\"primaryLabelValue\":\"961651\"}},{\"attributeHeader\":{\"labelValue\":\"961653\",\"primaryLabelValue\":\"961653\"}},{\"attributeHeader\":{\"labelValue\":\"961655\",\"primaryLabelValue\":\"961655\"}},{\"attributeHeader\":{\"labelValue\":\"961657\",\"primaryLabelValue\":\"961657\"}},{\"attributeHeader\":{\"labelValue\":\"961659\",\"primaryLabelValue\":\"961659\"}},{\"attributeHeader\":{\"labelValue\":\"961661\",\"primaryLabelValue\":\"961661\"}},{\"attributeHeader\":{\"labelValue\":\"961663\",\"primaryLabelValue\":\"961663\"}},{\"attributeHeader\":{\"labelValue\":\"961665\",\"primaryLabelValue\":\"961665\"}},{\"attributeHeader\":{\"labelValue\":\"961667\",\"primaryLabelValue\":\"961667\"}},{\"attributeHeader\":{\"labelValue\":\"961669\",\"primaryLabelValue\":\"961669\"}},{\"attributeHeader\":{\"labelValue\":\"961671\",\"primaryLabelValue\":\"961671\"}},{\"attributeHeader\":{\"labelValue\":\"961673\",\"primaryLabelValue\":\"961673\"}},{\"attributeHeader\":{\"labelValue\":\"961675\",\"primaryLabelValue\":\"961675\"}},{\"attributeHeader\":{\"labelValue\":\"961677\",\"primaryLabelValue\":\"961677\"}},{\"attributeHeader\":{\"labelValue\":\"961679\",\"primaryLabelValue\":\"961679\"}},{\"attributeHeader\":{\"labelValue\":\"961681\",\"primaryLabelValue\":\"961681\"}},{\"attributeHeader\":{\"labelValue\":\"961683\",\"primaryLabelValue\":\"961683\"}},{\"attributeHeader\":{\"labelValue\":\"961685\",\"primaryLabelValue\":\"961685\"}},{\"attributeHeader\":{\"labelValue\":\"961687\",\"primaryLabelValue\":\"961687\"}},{\"attributeHeader\":{\"labelValue\":\"961689\",\"primaryLabelValue\":\"961689\"}},{\"attributeHeader\":{\"labelValue\":\"961691\",\"primaryLabelValue\":\"961691\"}},{\"attributeHeader\":{\"labelValue\":\"961693\",\"primaryLabelValue\":\"961693\"}},{\"attributeHeader\":{\"labelValue\":\"961695\",\"primaryLabelValue\":\"961695\"}},{\"attributeHeader\":{\"labelValue\":\"961697\",\"primaryLabelValue\":\"961697\"}},{\"attributeHeader\":{\"labelValue\":\"961699\",\"primaryLabelValue\":\"961699\"}},{\"attributeHeader\":{\"labelValue\":\"961701\",\"primaryLabelValue\":\"961701\"}},{\"attributeHeader\":{\"labelValue\":\"961703\",\"primaryLabelValue\":\"961703\"}},{\"attributeHeader\":{\"labelValue\":\"961705\",\"primaryLabelValue\":\"961705\"}},{\"attributeHeader\":{\"labelValue\":\"961707\",\"primaryLabelValue\":\"961707\"}},{\"attributeHeader\":{\"labelValue\":\"961709\",\"primaryLabelValue\":\"961709\"}},{\"attributeHeader\":{\"labelValue\":\"961711\",\"primaryLabelValue\":\"961711\"}},{\"attributeHeader\":{\"labelValue\":\"961713\",\"primaryLabelValue\":\"961713\"}},{\"attributeHeader\":{\"labelValue\":\"961715\",\"primaryLabelValue\":\"961715\"}},{\"attributeHeader\":{\"labelValue\":\"961717\",\"primaryLabelValue\":\"961717\"}},{\"attributeHeader\":{\"labelValue\":\"961719\",\"primaryLabelValue\":\"961719\"}},{\"attributeHeader\":{\"labelValue\":\"961721\",\"primaryLabelValue\":\"961721\"}},{\"attributeHeader\":{\"labelValue\":\"961723\",\"primaryLabelValue\":\"961723\"}},{\"attributeHeader\":{\"labelValue\":\"961725\",\"primaryLabelValue\":\"961725\"}},{\"attributeHeader\":{\"labelValue\":\"961727\",\"primaryLabelValue\":\"961727\"}},{\"attributeHeader\":{\"labelValue\":\"961729\",\"primaryLabelValue\":\"961729\"}},{\"attributeHeader\":{\"labelValue\":\"961731\",\"primaryLabelValue\":\"961731\"}},{\"attributeHeader\":{\"labelValue\":\"961733\",\"primaryLabelValue\":\"961733\"}},{\"attributeHeader\":{\"labelValue\":\"961735\",\"primaryLabelValue\":\"961735\"}},{\"attributeHeader\":{\"labelValue\":\"961737\",\"primaryLabelValue\":\"961737\"}},{\"attributeHeader\":{\"labelValue\":\"961739\",\"primaryLabelValue\":\"961739\"}},{\"attributeHeader\":{\"labelValue\":\"961741\",\"primaryLabelValue\":\"961741\"}},{\"attributeHeader\":{\"labelValue\":\"961743\",\"primaryLabelValue\":\"961743\"}},{\"attributeHeader\":{\"labelValue\":\"961745\",\"primaryLabelValue\":\"961745\"}},{\"attributeHeader\":{\"labelValue\":\"961747\",\"primaryLabelValue\":\"961747\"}},{\"attributeHeader\":{\"labelValue\":\"961749\",\"primaryLabelValue\":\"961749\"}},{\"attributeHeader\":{\"labelValue\":\"961751\",\"primaryLabelValue\":\"961751\"}},{\"attributeHeader\":{\"labelValue\":\"961753\",\"primaryLabelValue\":\"961753\"}},{\"attributeHeader\":{\"labelValue\":\"961755\",\"primaryLabelValue\":\"961755\"}},{\"attributeHeader\":{\"labelValue\":\"961757\",\"primaryLabelValue\":\"961757\"}},{\"attributeHeader\":{\"labelValue\":\"961759\",\"primaryLabelValue\":\"961759\"}},{\"attributeHeader\":{\"labelValue\":\"961761\",\"primaryLabelValue\":\"961761\"}},{\"attributeHeader\":{\"labelValue\":\"961763\",\"primaryLabelValue\":\"961763\"}},{\"attributeHeader\":{\"labelValue\":\"961765\",\"primaryLabelValue\":\"961765\"}},{\"attributeHeader\":{\"labelValue\":\"961767\",\"primaryLabelValue\":\"961767\"}},{\"attributeHeader\":{\"labelValue\":\"961769\",\"primaryLabelValue\":\"961769\"}},{\"attributeHeader\":{\"labelValue\":\"961771\",\"primaryLabelValue\":\"961771\"}},{\"attributeHeader\":{\"labelValue\":\"961773\",\"primaryLabelValue\":\"961773\"}},{\"attributeHeader\":{\"labelValue\":\"961775\",\"primaryLabelValue\":\"961775\"}},{\"attributeHeader\":{\"labelValue\":\"961777\",\"primaryLabelValue\":\"961777\"}},{\"attributeHeader\":{\"labelValue\":\"961779\",\"primaryLabelValue\":\"961779\"}},{\"attributeHeader\":{\"labelValue\":\"961781\",\"primaryLabelValue\":\"961781\"}},{\"attributeHeader\":{\"labelValue\":\"961783\",\"primaryLabelValue\":\"961783\"}},{\"attributeHeader\":{\"labelValue\":\"961785\",\"primaryLabelValue\":\"961785\"}},{\"attributeHeader\":{\"labelValue\":\"961787\",\"primaryLabelValue\":\"961787\"}},{\"attributeHeader\":{\"labelValue\":\"961791\",\"primaryLabelValue\":\"961791\"}},{\"attributeHeader\":{\"labelValue\":\"961793\",\"primaryLabelValue\":\"961793\"}},{\"attributeHeader\":{\"labelValue\":\"961795\",\"primaryLabelValue\":\"961795\"}},{\"attributeHeader\":{\"labelValue\":\"961797\",\"primaryLabelValue\":\"961797\"}},{\"attributeHeader\":{\"labelValue\":\"961799\",\"primaryLabelValue\":\"961799\"}},{\"attributeHeader\":{\"labelValue\":\"961801\",\"primaryLabelValue\":\"961801\"}},{\"attributeHeader\":{\"labelValue\":\"961803\",\"primaryLabelValue\":\"961803\"}},{\"attributeHeader\":{\"labelValue\":\"961805\",\"primaryLabelValue\":\"961805\"}},{\"attributeHeader\":{\"labelValue\":\"961807\",\"primaryLabelValue\":\"961807\"}},{\"attributeHeader\":{\"labelValue\":\"961809\",\"primaryLabelValue\":\"961809\"}},{\"attributeHeader\":{\"labelValue\":\"961811\",\"primaryLabelValue\":\"961811\"}},{\"attributeHeader\":{\"labelValue\":\"961813\",\"primaryLabelValue\":\"961813\"}},{\"attributeHeader\":{\"labelValue\":\"961815\",\"primaryLabelValue\":\"961815\"}},{\"attributeHeader\":{\"labelValue\":\"961817\",\"primaryLabelValue\":\"961817\"}},{\"attributeHeader\":{\"labelValue\":\"961819\",\"primaryLabelValue\":\"961819\"}},{\"attributeHeader\":{\"labelValue\":\"961821\",\"primaryLabelValue\":\"961821\"}},{\"attributeHeader\":{\"labelValue\":\"961823\",\"primaryLabelValue\":\"961823\"}},{\"attributeHeader\":{\"labelValue\":\"961825\",\"primaryLabelValue\":\"961825\"}},{\"attributeHeader\":{\"labelValue\":\"961827\",\"primaryLabelValue\":\"961827\"}},{\"attributeHeader\":{\"labelValue\":\"961829\",\"primaryLabelValue\":\"961829\"}},{\"attributeHeader\":{\"labelValue\":\"961831\",\"primaryLabelValue\":\"961831\"}},{\"attributeHeader\":{\"labelValue\":\"961833\",\"primaryLabelValue\":\"961833\"}},{\"attributeHeader\":{\"labelValue\":\"961835\",\"primaryLabelValue\":\"961835\"}},{\"attributeHeader\":{\"labelValue\":\"961837\",\"primaryLabelValue\":\"961837\"}},{\"attributeHeader\":{\"labelValue\":\"961839\",\"primaryLabelValue\":\"961839\"}},{\"attributeHeader\":{\"labelValue\":\"961841\",\"primaryLabelValue\":\"961841\"}},{\"attributeHeader\":{\"labelValue\":\"961843\",\"primaryLabelValue\":\"961843\"}},{\"attributeHeader\":{\"labelValue\":\"961845\",\"primaryLabelValue\":\"961845\"}},{\"attributeHeader\":{\"labelValue\":\"961847\",\"primaryLabelValue\":\"961847\"}},{\"attributeHeader\":{\"labelValue\":\"961849\",\"primaryLabelValue\":\"961849\"}},{\"attributeHeader\":{\"labelValue\":\"961851\",\"primaryLabelValue\":\"961851\"}},{\"attributeHeader\":{\"labelValue\":\"961853\",\"primaryLabelValue\":\"961853\"}},{\"attributeHeader\":{\"labelValue\":\"961855\",\"primaryLabelValue\":\"961855\"}},{\"attributeHeader\":{\"labelValue\":\"961857\",\"primaryLabelValue\":\"961857\"}},{\"attributeHeader\":{\"labelValue\":\"961859\",\"primaryLabelValue\":\"961859\"}},{\"attributeHeader\":{\"labelValue\":\"961861\",\"primaryLabelValue\":\"961861\"}},{\"attributeHeader\":{\"labelValue\":\"961863\",\"primaryLabelValue\":\"961863\"}},{\"attributeHeader\":{\"labelValue\":\"961865\",\"primaryLabelValue\":\"961865\"}},{\"attributeHeader\":{\"labelValue\":\"961867\",\"primaryLabelValue\":\"961867\"}},{\"attributeHeader\":{\"labelValue\":\"961869\",\"primaryLabelValue\":\"961869\"}},{\"attributeHeader\":{\"labelValue\":\"961871\",\"primaryLabelValue\":\"961871\"}},{\"attributeHeader\":{\"labelValue\":\"961873\",\"primaryLabelValue\":\"961873\"}},{\"attributeHeader\":{\"labelValue\":\"961875\",\"primaryLabelValue\":\"961875\"}},{\"attributeHeader\":{\"labelValue\":\"961877\",\"primaryLabelValue\":\"961877\"}},{\"attributeHeader\":{\"labelValue\":\"961879\",\"primaryLabelValue\":\"961879\"}},{\"attributeHeader\":{\"labelValue\":\"961881\",\"primaryLabelValue\":\"961881\"}},{\"attributeHeader\":{\"labelValue\":\"961883\",\"primaryLabelValue\":\"961883\"}},{\"attributeHeader\":{\"labelValue\":\"961885\",\"primaryLabelValue\":\"961885\"}},{\"attributeHeader\":{\"labelValue\":\"961887\",\"primaryLabelValue\":\"961887\"}},{\"attributeHeader\":{\"labelValue\":\"961889\",\"primaryLabelValue\":\"961889\"}},{\"attributeHeader\":{\"labelValue\":\"961891\",\"primaryLabelValue\":\"961891\"}},{\"attributeHeader\":{\"labelValue\":\"961893\",\"primaryLabelValue\":\"961893\"}},{\"attributeHeader\":{\"labelValue\":\"961895\",\"primaryLabelValue\":\"961895\"}},{\"attributeHeader\":{\"labelValue\":\"961897\",\"primaryLabelValue\":\"961897\"}},{\"attributeHeader\":{\"labelValue\":\"961899\",\"primaryLabelValue\":\"961899\"}},{\"attributeHeader\":{\"labelValue\":\"961901\",\"primaryLabelValue\":\"961901\"}},{\"attributeHeader\":{\"labelValue\":\"961903\",\"primaryLabelValue\":\"961903\"}},{\"attributeHeader\":{\"labelValue\":\"961905\",\"primaryLabelValue\":\"961905\"}},{\"attributeHeader\":{\"labelValue\":\"961907\",\"primaryLabelValue\":\"961907\"}},{\"attributeHeader\":{\"labelValue\":\"961909\",\"primaryLabelValue\":\"961909\"}},{\"attributeHeader\":{\"labelValue\":\"961911\",\"primaryLabelValue\":\"961911\"}},{\"attributeHeader\":{\"labelValue\":\"961913\",\"primaryLabelValue\":\"961913\"}},{\"attributeHeader\":{\"labelValue\":\"961915\",\"primaryLabelValue\":\"961915\"}},{\"attributeHeader\":{\"labelValue\":\"961917\",\"primaryLabelValue\":\"961917\"}},{\"attributeHeader\":{\"labelValue\":\"961919\",\"primaryLabelValue\":\"961919\"}},{\"attributeHeader\":{\"labelValue\":\"961921\",\"primaryLabelValue\":\"961921\"}},{\"attributeHeader\":{\"labelValue\":\"961923\",\"primaryLabelValue\":\"961923\"}},{\"attributeHeader\":{\"labelValue\":\"961925\",\"primaryLabelValue\":\"961925\"}},{\"attributeHeader\":{\"labelValue\":\"961927\",\"primaryLabelValue\":\"961927\"}},{\"attributeHeader\":{\"labelValue\":\"961929\",\"primaryLabelValue\":\"961929\"}},{\"attributeHeader\":{\"labelValue\":\"961931\",\"primaryLabelValue\":\"961931\"}},{\"attributeHeader\":{\"labelValue\":\"961933\",\"primaryLabelValue\":\"961933\"}},{\"attributeHeader\":{\"labelValue\":\"961935\",\"primaryLabelValue\":\"961935\"}},{\"attributeHeader\":{\"labelValue\":\"961937\",\"primaryLabelValue\":\"961937\"}},{\"attributeHeader\":{\"labelValue\":\"961939\",\"primaryLabelValue\":\"961939\"}},{\"attributeHeader\":{\"labelValue\":\"961941\",\"primaryLabelValue\":\"961941\"}},{\"attributeHeader\":{\"labelValue\":\"961943\",\"primaryLabelValue\":\"961943\"}},{\"attributeHeader\":{\"labelValue\":\"961945\",\"primaryLabelValue\":\"961945\"}},{\"attributeHeader\":{\"labelValue\":\"961947\",\"primaryLabelValue\":\"961947\"}},{\"attributeHeader\":{\"labelValue\":\"961949\",\"primaryLabelValue\":\"961949\"}},{\"attributeHeader\":{\"labelValue\":\"961951\",\"primaryLabelValue\":\"961951\"}},{\"attributeHeader\":{\"labelValue\":\"961953\",\"primaryLabelValue\":\"961953\"}},{\"attributeHeader\":{\"labelValue\":\"961955\",\"primaryLabelValue\":\"961955\"}},{\"attributeHeader\":{\"labelValue\":\"961957\",\"primaryLabelValue\":\"961957\"}},{\"attributeHeader\":{\"labelValue\":\"961959\",\"primaryLabelValue\":\"961959\"}},{\"attributeHeader\":{\"labelValue\":\"961961\",\"primaryLabelValue\":\"961961\"}},{\"attributeHeader\":{\"labelValue\":\"961963\",\"primaryLabelValue\":\"961963\"}},{\"attributeHeader\":{\"labelValue\":\"961965\",\"primaryLabelValue\":\"961965\"}},{\"attributeHeader\":{\"labelValue\":\"961967\",\"primaryLabelValue\":\"961967\"}},{\"attributeHeader\":{\"labelValue\":\"961969\",\"primaryLabelValue\":\"961969\"}},{\"attributeHeader\":{\"labelValue\":\"961971\",\"primaryLabelValue\":\"961971\"}},{\"attributeHeader\":{\"labelValue\":\"961973\",\"primaryLabelValue\":\"961973\"}},{\"attributeHeader\":{\"labelValue\":\"961975\",\"primaryLabelValue\":\"961975\"}},{\"attributeHeader\":{\"labelValue\":\"961977\",\"primaryLabelValue\":\"961977\"}},{\"attributeHeader\":{\"labelValue\":\"961979\",\"primaryLabelValue\":\"961979\"}},{\"attributeHeader\":{\"labelValue\":\"961981\",\"primaryLabelValue\":\"961981\"}},{\"attributeHeader\":{\"labelValue\":\"961983\",\"primaryLabelValue\":\"961983\"}},{\"attributeHeader\":{\"labelValue\":\"961985\",\"primaryLabelValue\":\"961985\"}},{\"attributeHeader\":{\"labelValue\":\"961987\",\"primaryLabelValue\":\"961987\"}},{\"attributeHeader\":{\"labelValue\":\"961989\",\"primaryLabelValue\":\"961989\"}},{\"attributeHeader\":{\"labelValue\":\"961991\",\"primaryLabelValue\":\"961991\"}},{\"attributeHeader\":{\"labelValue\":\"961993\",\"primaryLabelValue\":\"961993\"}},{\"attributeHeader\":{\"labelValue\":\"961995\",\"primaryLabelValue\":\"961995\"}},{\"attributeHeader\":{\"labelValue\":\"961997\",\"primaryLabelValue\":\"961997\"}},{\"attributeHeader\":{\"labelValue\":\"961999\",\"primaryLabelValue\":\"961999\"}},{\"attributeHeader\":{\"labelValue\":\"962001\",\"primaryLabelValue\":\"962001\"}},{\"attributeHeader\":{\"labelValue\":\"962003\",\"primaryLabelValue\":\"962003\"}},{\"attributeHeader\":{\"labelValue\":\"962005\",\"primaryLabelValue\":\"962005\"}},{\"attributeHeader\":{\"labelValue\":\"962007\",\"primaryLabelValue\":\"962007\"}},{\"attributeHeader\":{\"labelValue\":\"962009\",\"primaryLabelValue\":\"962009\"}},{\"attributeHeader\":{\"labelValue\":\"962011\",\"primaryLabelValue\":\"962011\"}},{\"attributeHeader\":{\"labelValue\":\"962013\",\"primaryLabelValue\":\"962013\"}},{\"attributeHeader\":{\"labelValue\":\"962015\",\"primaryLabelValue\":\"962015\"}},{\"attributeHeader\":{\"labelValue\":\"962017\",\"primaryLabelValue\":\"962017\"}},{\"attributeHeader\":{\"labelValue\":\"962019\",\"primaryLabelValue\":\"962019\"}},{\"attributeHeader\":{\"labelValue\":\"962021\",\"primaryLabelValue\":\"962021\"}},{\"attributeHeader\":{\"labelValue\":\"962023\",\"primaryLabelValue\":\"962023\"}},{\"attributeHeader\":{\"labelValue\":\"962025\",\"primaryLabelValue\":\"962025\"}},{\"attributeHeader\":{\"labelValue\":\"962027\",\"primaryLabelValue\":\"962027\"}},{\"attributeHeader\":{\"labelValue\":\"962029\",\"primaryLabelValue\":\"962029\"}},{\"attributeHeader\":{\"labelValue\":\"962031\",\"primaryLabelValue\":\"962031\"}},{\"attributeHeader\":{\"labelValue\":\"962033\",\"primaryLabelValue\":\"962033\"}},{\"attributeHeader\":{\"labelValue\":\"962035\",\"primaryLabelValue\":\"962035\"}},{\"attributeHeader\":{\"labelValue\":\"962037\",\"primaryLabelValue\":\"962037\"}},{\"attributeHeader\":{\"labelValue\":\"962039\",\"primaryLabelValue\":\"962039\"}},{\"attributeHeader\":{\"labelValue\":\"962041\",\"primaryLabelValue\":\"962041\"}},{\"attributeHeader\":{\"labelValue\":\"962043\",\"primaryLabelValue\":\"962043\"}},{\"attributeHeader\":{\"labelValue\":\"962045\",\"primaryLabelValue\":\"962045\"}},{\"attributeHeader\":{\"labelValue\":\"962047\",\"primaryLabelValue\":\"962047\"}},{\"attributeHeader\":{\"labelValue\":\"962049\",\"primaryLabelValue\":\"962049\"}},{\"attributeHeader\":{\"labelValue\":\"962051\",\"primaryLabelValue\":\"962051\"}},{\"attributeHeader\":{\"labelValue\":\"962053\",\"primaryLabelValue\":\"962053\"}},{\"attributeHeader\":{\"labelValue\":\"962055\",\"primaryLabelValue\":\"962055\"}},{\"attributeHeader\":{\"labelValue\":\"962057\",\"primaryLabelValue\":\"962057\"}},{\"attributeHeader\":{\"labelValue\":\"962059\",\"primaryLabelValue\":\"962059\"}},{\"attributeHeader\":{\"labelValue\":\"962061\",\"primaryLabelValue\":\"962061\"}},{\"attributeHeader\":{\"labelValue\":\"962063\",\"primaryLabelValue\":\"962063\"}},{\"attributeHeader\":{\"labelValue\":\"962065\",\"primaryLabelValue\":\"962065\"}},{\"attributeHeader\":{\"labelValue\":\"962067\",\"primaryLabelValue\":\"962067\"}},{\"attributeHeader\":{\"labelValue\":\"962069\",\"primaryLabelValue\":\"962069\"}},{\"attributeHeader\":{\"labelValue\":\"962071\",\"primaryLabelValue\":\"962071\"}},{\"attributeHeader\":{\"labelValue\":\"962073\",\"primaryLabelValue\":\"962073\"}},{\"attributeHeader\":{\"labelValue\":\"962075\",\"primaryLabelValue\":\"962075\"}},{\"attributeHeader\":{\"labelValue\":\"962077\",\"primaryLabelValue\":\"962077\"}},{\"attributeHeader\":{\"labelValue\":\"962079\",\"primaryLabelValue\":\"962079\"}},{\"attributeHeader\":{\"labelValue\":\"962081\",\"primaryLabelValue\":\"962081\"}},{\"attributeHeader\":{\"labelValue\":\"962083\",\"primaryLabelValue\":\"962083\"}},{\"attributeHeader\":{\"labelValue\":\"962085\",\"primaryLabelValue\":\"962085\"}},{\"attributeHeader\":{\"labelValue\":\"962087\",\"primaryLabelValue\":\"962087\"}},{\"attributeHeader\":{\"labelValue\":\"962089\",\"primaryLabelValue\":\"962089\"}},{\"attributeHeader\":{\"labelValue\":\"962091\",\"primaryLabelValue\":\"962091\"}},{\"attributeHeader\":{\"labelValue\":\"962093\",\"primaryLabelValue\":\"962093\"}},{\"attributeHeader\":{\"labelValue\":\"962095\",\"primaryLabelValue\":\"962095\"}},{\"attributeHeader\":{\"labelValue\":\"962097\",\"primaryLabelValue\":\"962097\"}},{\"attributeHeader\":{\"labelValue\":\"962101\",\"primaryLabelValue\":\"962101\"}},{\"attributeHeader\":{\"labelValue\":\"962103\",\"primaryLabelValue\":\"962103\"}},{\"attributeHeader\":{\"labelValue\":\"962105\",\"primaryLabelValue\":\"962105\"}},{\"attributeHeader\":{\"labelValue\":\"962107\",\"primaryLabelValue\":\"962107\"}},{\"attributeHeader\":{\"labelValue\":\"962109\",\"primaryLabelValue\":\"962109\"}},{\"attributeHeader\":{\"labelValue\":\"962111\",\"primaryLabelValue\":\"962111\"}},{\"attributeHeader\":{\"labelValue\":\"962113\",\"primaryLabelValue\":\"962113\"}},{\"attributeHeader\":{\"labelValue\":\"962115\",\"primaryLabelValue\":\"962115\"}},{\"attributeHeader\":{\"labelValue\":\"962117\",\"primaryLabelValue\":\"962117\"}},{\"attributeHeader\":{\"labelValue\":\"962119\",\"primaryLabelValue\":\"962119\"}},{\"attributeHeader\":{\"labelValue\":\"962121\",\"primaryLabelValue\":\"962121\"}},{\"attributeHeader\":{\"labelValue\":\"962123\",\"primaryLabelValue\":\"962123\"}},{\"attributeHeader\":{\"labelValue\":\"962125\",\"primaryLabelValue\":\"962125\"}},{\"attributeHeader\":{\"labelValue\":\"962127\",\"primaryLabelValue\":\"962127\"}},{\"attributeHeader\":{\"labelValue\":\"962129\",\"primaryLabelValue\":\"962129\"}},{\"attributeHeader\":{\"labelValue\":\"962131\",\"primaryLabelValue\":\"962131\"}},{\"attributeHeader\":{\"labelValue\":\"962133\",\"primaryLabelValue\":\"962133\"}},{\"attributeHeader\":{\"labelValue\":\"962135\",\"primaryLabelValue\":\"962135\"}},{\"attributeHeader\":{\"labelValue\":\"962137\",\"primaryLabelValue\":\"962137\"}},{\"attributeHeader\":{\"labelValue\":\"962139\",\"primaryLabelValue\":\"962139\"}},{\"attributeHeader\":{\"labelValue\":\"962141\",\"primaryLabelValue\":\"962141\"}},{\"attributeHeader\":{\"labelValue\":\"962143\",\"primaryLabelValue\":\"962143\"}},{\"attributeHeader\":{\"labelValue\":\"962145\",\"primaryLabelValue\":\"962145\"}},{\"attributeHeader\":{\"labelValue\":\"962147\",\"primaryLabelValue\":\"962147\"}},{\"attributeHeader\":{\"labelValue\":\"962149\",\"primaryLabelValue\":\"962149\"}},{\"attributeHeader\":{\"labelValue\":\"962151\",\"primaryLabelValue\":\"962151\"}},{\"attributeHeader\":{\"labelValue\":\"962153\",\"primaryLabelValue\":\"962153\"}},{\"attributeHeader\":{\"labelValue\":\"962155\",\"primaryLabelValue\":\"962155\"}},{\"attributeHeader\":{\"labelValue\":\"962157\",\"primaryLabelValue\":\"962157\"}},{\"attributeHeader\":{\"labelValue\":\"962161\",\"primaryLabelValue\":\"962161\"}},{\"attributeHeader\":{\"labelValue\":\"962163\",\"primaryLabelValue\":\"962163\"}},{\"attributeHeader\":{\"labelValue\":\"962165\",\"primaryLabelValue\":\"962165\"}},{\"attributeHeader\":{\"labelValue\":\"962167\",\"primaryLabelValue\":\"962167\"}},{\"attributeHeader\":{\"labelValue\":\"962169\",\"primaryLabelValue\":\"962169\"}},{\"attributeHeader\":{\"labelValue\":\"962171\",\"primaryLabelValue\":\"962171\"}},{\"attributeHeader\":{\"labelValue\":\"962173\",\"primaryLabelValue\":\"962173\"}},{\"attributeHeader\":{\"labelValue\":\"962175\",\"primaryLabelValue\":\"962175\"}},{\"attributeHeader\":{\"labelValue\":\"962177\",\"primaryLabelValue\":\"962177\"}},{\"attributeHeader\":{\"labelValue\":\"962179\",\"primaryLabelValue\":\"962179\"}},{\"attributeHeader\":{\"labelValue\":\"962181\",\"primaryLabelValue\":\"962181\"}},{\"attributeHeader\":{\"labelValue\":\"962183\",\"primaryLabelValue\":\"962183\"}},{\"attributeHeader\":{\"labelValue\":\"962185\",\"primaryLabelValue\":\"962185\"}},{\"attributeHeader\":{\"labelValue\":\"962187\",\"primaryLabelValue\":\"962187\"}},{\"attributeHeader\":{\"labelValue\":\"962189\",\"primaryLabelValue\":\"962189\"}},{\"attributeHeader\":{\"labelValue\":\"962191\",\"primaryLabelValue\":\"962191\"}},{\"attributeHeader\":{\"labelValue\":\"962193\",\"primaryLabelValue\":\"962193\"}},{\"attributeHeader\":{\"labelValue\":\"962195\",\"primaryLabelValue\":\"962195\"}},{\"attributeHeader\":{\"labelValue\":\"962197\",\"primaryLabelValue\":\"962197\"}},{\"attributeHeader\":{\"labelValue\":\"962199\",\"primaryLabelValue\":\"962199\"}},{\"attributeHeader\":{\"labelValue\":\"962201\",\"primaryLabelValue\":\"962201\"}},{\"attributeHeader\":{\"labelValue\":\"962203\",\"primaryLabelValue\":\"962203\"}},{\"attributeHeader\":{\"labelValue\":\"962205\",\"primaryLabelValue\":\"962205\"}},{\"attributeHeader\":{\"labelValue\":\"962207\",\"primaryLabelValue\":\"962207\"}},{\"attributeHeader\":{\"labelValue\":\"962209\",\"primaryLabelValue\":\"962209\"}},{\"attributeHeader\":{\"labelValue\":\"962211\",\"primaryLabelValue\":\"962211\"}},{\"attributeHeader\":{\"labelValue\":\"962213\",\"primaryLabelValue\":\"962213\"}},{\"attributeHeader\":{\"labelValue\":\"962215\",\"primaryLabelValue\":\"962215\"}},{\"attributeHeader\":{\"labelValue\":\"962217\",\"primaryLabelValue\":\"962217\"}},{\"attributeHeader\":{\"labelValue\":\"962219\",\"primaryLabelValue\":\"962219\"}},{\"attributeHeader\":{\"labelValue\":\"962221\",\"primaryLabelValue\":\"962221\"}},{\"attributeHeader\":{\"labelValue\":\"962223\",\"primaryLabelValue\":\"962223\"}},{\"attributeHeader\":{\"labelValue\":\"962225\",\"primaryLabelValue\":\"962225\"}},{\"attributeHeader\":{\"labelValue\":\"962227\",\"primaryLabelValue\":\"962227\"}},{\"attributeHeader\":{\"labelValue\":\"962229\",\"primaryLabelValue\":\"962229\"}},{\"attributeHeader\":{\"labelValue\":\"962231\",\"primaryLabelValue\":\"962231\"}},{\"attributeHeader\":{\"labelValue\":\"962233\",\"primaryLabelValue\":\"962233\"}},{\"attributeHeader\":{\"labelValue\":\"962235\",\"primaryLabelValue\":\"962235\"}},{\"attributeHeader\":{\"labelValue\":\"962237\",\"primaryLabelValue\":\"962237\"}},{\"attributeHeader\":{\"labelValue\":\"962239\",\"primaryLabelValue\":\"962239\"}},{\"attributeHeader\":{\"labelValue\":\"962241\",\"primaryLabelValue\":\"962241\"}},{\"attributeHeader\":{\"labelValue\":\"962243\",\"primaryLabelValue\":\"962243\"}},{\"attributeHeader\":{\"labelValue\":\"962245\",\"primaryLabelValue\":\"962245\"}},{\"attributeHeader\":{\"labelValue\":\"962247\",\"primaryLabelValue\":\"962247\"}},{\"attributeHeader\":{\"labelValue\":\"962249\",\"primaryLabelValue\":\"962249\"}},{\"attributeHeader\":{\"labelValue\":\"962251\",\"primaryLabelValue\":\"962251\"}},{\"attributeHeader\":{\"labelValue\":\"962253\",\"primaryLabelValue\":\"962253\"}},{\"attributeHeader\":{\"labelValue\":\"962255\",\"primaryLabelValue\":\"962255\"}},{\"attributeHeader\":{\"labelValue\":\"962257\",\"primaryLabelValue\":\"962257\"}},{\"attributeHeader\":{\"labelValue\":\"962259\",\"primaryLabelValue\":\"962259\"}},{\"attributeHeader\":{\"labelValue\":\"962261\",\"primaryLabelValue\":\"962261\"}},{\"attributeHeader\":{\"labelValue\":\"962263\",\"primaryLabelValue\":\"962263\"}},{\"attributeHeader\":{\"labelValue\":\"962265\",\"primaryLabelValue\":\"962265\"}},{\"attributeHeader\":{\"labelValue\":\"962267\",\"primaryLabelValue\":\"962267\"}},{\"attributeHeader\":{\"labelValue\":\"962269\",\"primaryLabelValue\":\"962269\"}},{\"attributeHeader\":{\"labelValue\":\"962271\",\"primaryLabelValue\":\"962271\"}},{\"attributeHeader\":{\"labelValue\":\"962273\",\"primaryLabelValue\":\"962273\"}},{\"attributeHeader\":{\"labelValue\":\"962275\",\"primaryLabelValue\":\"962275\"}},{\"attributeHeader\":{\"labelValue\":\"962277\",\"primaryLabelValue\":\"962277\"}},{\"attributeHeader\":{\"labelValue\":\"962279\",\"primaryLabelValue\":\"962279\"}},{\"attributeHeader\":{\"labelValue\":\"962281\",\"primaryLabelValue\":\"962281\"}},{\"attributeHeader\":{\"labelValue\":\"962283\",\"primaryLabelValue\":\"962283\"}},{\"attributeHeader\":{\"labelValue\":\"962285\",\"primaryLabelValue\":\"962285\"}},{\"attributeHeader\":{\"labelValue\":\"962287\",\"primaryLabelValue\":\"962287\"}},{\"attributeHeader\":{\"labelValue\":\"962289\",\"primaryLabelValue\":\"962289\"}},{\"attributeHeader\":{\"labelValue\":\"962291\",\"primaryLabelValue\":\"962291\"}},{\"attributeHeader\":{\"labelValue\":\"962293\",\"primaryLabelValue\":\"962293\"}},{\"attributeHeader\":{\"labelValue\":\"962295\",\"primaryLabelValue\":\"962295\"}},{\"attributeHeader\":{\"labelValue\":\"962297\",\"primaryLabelValue\":\"962297\"}},{\"attributeHeader\":{\"labelValue\":\"962299\",\"primaryLabelValue\":\"962299\"}},{\"attributeHeader\":{\"labelValue\":\"962301\",\"primaryLabelValue\":\"962301\"}},{\"attributeHeader\":{\"labelValue\":\"962303\",\"primaryLabelValue\":\"962303\"}},{\"attributeHeader\":{\"labelValue\":\"962305\",\"primaryLabelValue\":\"962305\"}},{\"attributeHeader\":{\"labelValue\":\"962307\",\"primaryLabelValue\":\"962307\"}},{\"attributeHeader\":{\"labelValue\":\"962309\",\"primaryLabelValue\":\"962309\"}},{\"attributeHeader\":{\"labelValue\":\"962311\",\"primaryLabelValue\":\"962311\"}},{\"attributeHeader\":{\"labelValue\":\"962313\",\"primaryLabelValue\":\"962313\"}},{\"attributeHeader\":{\"labelValue\":\"962315\",\"primaryLabelValue\":\"962315\"}},{\"attributeHeader\":{\"labelValue\":\"962317\",\"primaryLabelValue\":\"962317\"}},{\"attributeHeader\":{\"labelValue\":\"962319\",\"primaryLabelValue\":\"962319\"}},{\"attributeHeader\":{\"labelValue\":\"962321\",\"primaryLabelValue\":\"962321\"}},{\"attributeHeader\":{\"labelValue\":\"962323\",\"primaryLabelValue\":\"962323\"}},{\"attributeHeader\":{\"labelValue\":\"962325\",\"primaryLabelValue\":\"962325\"}},{\"attributeHeader\":{\"labelValue\":\"962327\",\"primaryLabelValue\":\"962327\"}},{\"attributeHeader\":{\"labelValue\":\"962329\",\"primaryLabelValue\":\"962329\"}},{\"attributeHeader\":{\"labelValue\":\"962331\",\"primaryLabelValue\":\"962331\"}},{\"attributeHeader\":{\"labelValue\":\"962333\",\"primaryLabelValue\":\"962333\"}},{\"attributeHeader\":{\"labelValue\":\"962335\",\"primaryLabelValue\":\"962335\"}},{\"attributeHeader\":{\"labelValue\":\"962337\",\"primaryLabelValue\":\"962337\"}},{\"attributeHeader\":{\"labelValue\":\"962339\",\"primaryLabelValue\":\"962339\"}},{\"attributeHeader\":{\"labelValue\":\"962341\",\"primaryLabelValue\":\"962341\"}},{\"attributeHeader\":{\"labelValue\":\"962343\",\"primaryLabelValue\":\"962343\"}},{\"attributeHeader\":{\"labelValue\":\"962345\",\"primaryLabelValue\":\"962345\"}},{\"attributeHeader\":{\"labelValue\":\"962347\",\"primaryLabelValue\":\"962347\"}},{\"attributeHeader\":{\"labelValue\":\"962349\",\"primaryLabelValue\":\"962349\"}},{\"attributeHeader\":{\"labelValue\":\"962351\",\"primaryLabelValue\":\"962351\"}},{\"attributeHeader\":{\"labelValue\":\"962353\",\"primaryLabelValue\":\"962353\"}},{\"attributeHeader\":{\"labelValue\":\"962355\",\"primaryLabelValue\":\"962355\"}},{\"attributeHeader\":{\"labelValue\":\"962357\",\"primaryLabelValue\":\"962357\"}},{\"attributeHeader\":{\"labelValue\":\"962359\",\"primaryLabelValue\":\"962359\"}},{\"attributeHeader\":{\"labelValue\":\"962361\",\"primaryLabelValue\":\"962361\"}},{\"attributeHeader\":{\"labelValue\":\"962363\",\"primaryLabelValue\":\"962363\"}},{\"attributeHeader\":{\"labelValue\":\"962365\",\"primaryLabelValue\":\"962365\"}},{\"attributeHeader\":{\"labelValue\":\"962367\",\"primaryLabelValue\":\"962367\"}},{\"attributeHeader\":{\"labelValue\":\"962369\",\"primaryLabelValue\":\"962369\"}},{\"attributeHeader\":{\"labelValue\":\"962371\",\"primaryLabelValue\":\"962371\"}},{\"attributeHeader\":{\"labelValue\":\"962373\",\"primaryLabelValue\":\"962373\"}},{\"attributeHeader\":{\"labelValue\":\"962375\",\"primaryLabelValue\":\"962375\"}},{\"attributeHeader\":{\"labelValue\":\"962377\",\"primaryLabelValue\":\"962377\"}},{\"attributeHeader\":{\"labelValue\":\"962379\",\"primaryLabelValue\":\"962379\"}},{\"attributeHeader\":{\"labelValue\":\"962381\",\"primaryLabelValue\":\"962381\"}},{\"attributeHeader\":{\"labelValue\":\"962383\",\"primaryLabelValue\":\"962383\"}},{\"attributeHeader\":{\"labelValue\":\"962385\",\"primaryLabelValue\":\"962385\"}},{\"attributeHeader\":{\"labelValue\":\"962387\",\"primaryLabelValue\":\"962387\"}},{\"attributeHeader\":{\"labelValue\":\"962389\",\"primaryLabelValue\":\"962389\"}},{\"attributeHeader\":{\"labelValue\":\"962391\",\"primaryLabelValue\":\"962391\"}},{\"attributeHeader\":{\"labelValue\":\"962393\",\"primaryLabelValue\":\"962393\"}},{\"attributeHeader\":{\"labelValue\":\"962395\",\"primaryLabelValue\":\"962395\"}},{\"attributeHeader\":{\"labelValue\":\"962397\",\"primaryLabelValue\":\"962397\"}},{\"attributeHeader\":{\"labelValue\":\"962399\",\"primaryLabelValue\":\"962399\"}},{\"attributeHeader\":{\"labelValue\":\"962401\",\"primaryLabelValue\":\"962401\"}},{\"attributeHeader\":{\"labelValue\":\"962403\",\"primaryLabelValue\":\"962403\"}},{\"attributeHeader\":{\"labelValue\":\"962405\",\"primaryLabelValue\":\"962405\"}},{\"attributeHeader\":{\"labelValue\":\"962407\",\"primaryLabelValue\":\"962407\"}},{\"attributeHeader\":{\"labelValue\":\"962409\",\"primaryLabelValue\":\"962409\"}},{\"attributeHeader\":{\"labelValue\":\"962411\",\"primaryLabelValue\":\"962411\"}},{\"attributeHeader\":{\"labelValue\":\"962413\",\"primaryLabelValue\":\"962413\"}},{\"attributeHeader\":{\"labelValue\":\"962415\",\"primaryLabelValue\":\"962415\"}},{\"attributeHeader\":{\"labelValue\":\"962417\",\"primaryLabelValue\":\"962417\"}},{\"attributeHeader\":{\"labelValue\":\"962419\",\"primaryLabelValue\":\"962419\"}},{\"attributeHeader\":{\"labelValue\":\"962421\",\"primaryLabelValue\":\"962421\"}},{\"attributeHeader\":{\"labelValue\":\"962423\",\"primaryLabelValue\":\"962423\"}},{\"attributeHeader\":{\"labelValue\":\"962425\",\"primaryLabelValue\":\"962425\"}},{\"attributeHeader\":{\"labelValue\":\"962427\",\"primaryLabelValue\":\"962427\"}},{\"attributeHeader\":{\"labelValue\":\"962429\",\"primaryLabelValue\":\"962429\"}},{\"attributeHeader\":{\"labelValue\":\"962431\",\"primaryLabelValue\":\"962431\"}},{\"attributeHeader\":{\"labelValue\":\"962433\",\"primaryLabelValue\":\"962433\"}},{\"attributeHeader\":{\"labelValue\":\"962435\",\"primaryLabelValue\":\"962435\"}},{\"attributeHeader\":{\"labelValue\":\"962437\",\"primaryLabelValue\":\"962437\"}},{\"attributeHeader\":{\"labelValue\":\"962439\",\"primaryLabelValue\":\"962439\"}},{\"attributeHeader\":{\"labelValue\":\"962441\",\"primaryLabelValue\":\"962441\"}},{\"attributeHeader\":{\"labelValue\":\"962443\",\"primaryLabelValue\":\"962443\"}},{\"attributeHeader\":{\"labelValue\":\"962445\",\"primaryLabelValue\":\"962445\"}},{\"attributeHeader\":{\"labelValue\":\"962447\",\"primaryLabelValue\":\"962447\"}},{\"attributeHeader\":{\"labelValue\":\"962449\",\"primaryLabelValue\":\"962449\"}},{\"attributeHeader\":{\"labelValue\":\"962451\",\"primaryLabelValue\":\"962451\"}},{\"attributeHeader\":{\"labelValue\":\"962453\",\"primaryLabelValue\":\"962453\"}},{\"attributeHeader\":{\"labelValue\":\"962455\",\"primaryLabelValue\":\"962455\"}},{\"attributeHeader\":{\"labelValue\":\"962457\",\"primaryLabelValue\":\"962457\"}},{\"attributeHeader\":{\"labelValue\":\"962459\",\"primaryLabelValue\":\"962459\"}},{\"attributeHeader\":{\"labelValue\":\"962461\",\"primaryLabelValue\":\"962461\"}},{\"attributeHeader\":{\"labelValue\":\"962463\",\"primaryLabelValue\":\"962463\"}},{\"attributeHeader\":{\"labelValue\":\"962465\",\"primaryLabelValue\":\"962465\"}},{\"attributeHeader\":{\"labelValue\":\"962467\",\"primaryLabelValue\":\"962467\"}},{\"attributeHeader\":{\"labelValue\":\"962469\",\"primaryLabelValue\":\"962469\"}},{\"attributeHeader\":{\"labelValue\":\"962471\",\"primaryLabelValue\":\"962471\"}},{\"attributeHeader\":{\"labelValue\":\"962473\",\"primaryLabelValue\":\"962473\"}},{\"attributeHeader\":{\"labelValue\":\"962475\",\"primaryLabelValue\":\"962475\"}},{\"attributeHeader\":{\"labelValue\":\"962477\",\"primaryLabelValue\":\"962477\"}},{\"attributeHeader\":{\"labelValue\":\"962479\",\"primaryLabelValue\":\"962479\"}},{\"attributeHeader\":{\"labelValue\":\"962481\",\"primaryLabelValue\":\"962481\"}},{\"attributeHeader\":{\"labelValue\":\"962483\",\"primaryLabelValue\":\"962483\"}},{\"attributeHeader\":{\"labelValue\":\"962485\",\"primaryLabelValue\":\"962485\"}},{\"attributeHeader\":{\"labelValue\":\"962487\",\"primaryLabelValue\":\"962487\"}},{\"attributeHeader\":{\"labelValue\":\"962489\",\"primaryLabelValue\":\"962489\"}},{\"attributeHeader\":{\"labelValue\":\"962491\",\"primaryLabelValue\":\"962491\"}},{\"attributeHeader\":{\"labelValue\":\"962493\",\"primaryLabelValue\":\"962493\"}},{\"attributeHeader\":{\"labelValue\":\"962495\",\"primaryLabelValue\":\"962495\"}},{\"attributeHeader\":{\"labelValue\":\"962497\",\"primaryLabelValue\":\"962497\"}},{\"attributeHeader\":{\"labelValue\":\"962499\",\"primaryLabelValue\":\"962499\"}},{\"attributeHeader\":{\"labelValue\":\"962501\",\"primaryLabelValue\":\"962501\"}},{\"attributeHeader\":{\"labelValue\":\"962503\",\"primaryLabelValue\":\"962503\"}},{\"attributeHeader\":{\"labelValue\":\"962505\",\"primaryLabelValue\":\"962505\"}},{\"attributeHeader\":{\"labelValue\":\"962507\",\"primaryLabelValue\":\"962507\"}},{\"attributeHeader\":{\"labelValue\":\"962509\",\"primaryLabelValue\":\"962509\"}},{\"attributeHeader\":{\"labelValue\":\"962511\",\"primaryLabelValue\":\"962511\"}},{\"attributeHeader\":{\"labelValue\":\"962513\",\"primaryLabelValue\":\"962513\"}},{\"attributeHeader\":{\"labelValue\":\"962515\",\"primaryLabelValue\":\"962515\"}},{\"attributeHeader\":{\"labelValue\":\"962517\",\"primaryLabelValue\":\"962517\"}},{\"attributeHeader\":{\"labelValue\":\"962519\",\"primaryLabelValue\":\"962519\"}},{\"attributeHeader\":{\"labelValue\":\"962521\",\"primaryLabelValue\":\"962521\"}},{\"attributeHeader\":{\"labelValue\":\"962523\",\"primaryLabelValue\":\"962523\"}},{\"attributeHeader\":{\"labelValue\":\"962525\",\"primaryLabelValue\":\"962525\"}},{\"attributeHeader\":{\"labelValue\":\"962527\",\"primaryLabelValue\":\"962527\"}},{\"attributeHeader\":{\"labelValue\":\"962529\",\"primaryLabelValue\":\"962529\"}},{\"attributeHeader\":{\"labelValue\":\"962531\",\"primaryLabelValue\":\"962531\"}},{\"attributeHeader\":{\"labelValue\":\"962533\",\"primaryLabelValue\":\"962533\"}},{\"attributeHeader\":{\"labelValue\":\"962535\",\"primaryLabelValue\":\"962535\"}},{\"attributeHeader\":{\"labelValue\":\"962537\",\"primaryLabelValue\":\"962537\"}},{\"attributeHeader\":{\"labelValue\":\"962539\",\"primaryLabelValue\":\"962539\"}},{\"attributeHeader\":{\"labelValue\":\"962541\",\"primaryLabelValue\":\"962541\"}},{\"attributeHeader\":{\"labelValue\":\"962543\",\"primaryLabelValue\":\"962543\"}},{\"attributeHeader\":{\"labelValue\":\"962545\",\"primaryLabelValue\":\"962545\"}},{\"attributeHeader\":{\"labelValue\":\"962547\",\"primaryLabelValue\":\"962547\"}},{\"attributeHeader\":{\"labelValue\":\"962549\",\"primaryLabelValue\":\"962549\"}},{\"attributeHeader\":{\"labelValue\":\"962551\",\"primaryLabelValue\":\"962551\"}},{\"attributeHeader\":{\"labelValue\":\"962553\",\"primaryLabelValue\":\"962553\"}},{\"attributeHeader\":{\"labelValue\":\"962555\",\"primaryLabelValue\":\"962555\"}},{\"attributeHeader\":{\"labelValue\":\"962557\",\"primaryLabelValue\":\"962557\"}},{\"attributeHeader\":{\"labelValue\":\"962559\",\"primaryLabelValue\":\"962559\"}},{\"attributeHeader\":{\"labelValue\":\"962561\",\"primaryLabelValue\":\"962561\"}},{\"attributeHeader\":{\"labelValue\":\"962563\",\"primaryLabelValue\":\"962563\"}},{\"attributeHeader\":{\"labelValue\":\"962565\",\"primaryLabelValue\":\"962565\"}},{\"attributeHeader\":{\"labelValue\":\"962567\",\"primaryLabelValue\":\"962567\"}},{\"attributeHeader\":{\"labelValue\":\"962569\",\"primaryLabelValue\":\"962569\"}},{\"attributeHeader\":{\"labelValue\":\"962571\",\"primaryLabelValue\":\"962571\"}},{\"attributeHeader\":{\"labelValue\":\"962573\",\"primaryLabelValue\":\"962573\"}},{\"attributeHeader\":{\"labelValue\":\"962575\",\"primaryLabelValue\":\"962575\"}},{\"attributeHeader\":{\"labelValue\":\"962577\",\"primaryLabelValue\":\"962577\"}},{\"attributeHeader\":{\"labelValue\":\"962579\",\"primaryLabelValue\":\"962579\"}},{\"attributeHeader\":{\"labelValue\":\"962581\",\"primaryLabelValue\":\"962581\"}},{\"attributeHeader\":{\"labelValue\":\"962583\",\"primaryLabelValue\":\"962583\"}},{\"attributeHeader\":{\"labelValue\":\"962585\",\"primaryLabelValue\":\"962585\"}},{\"attributeHeader\":{\"labelValue\":\"962587\",\"primaryLabelValue\":\"962587\"}},{\"attributeHeader\":{\"labelValue\":\"962589\",\"primaryLabelValue\":\"962589\"}},{\"attributeHeader\":{\"labelValue\":\"962591\",\"primaryLabelValue\":\"962591\"}},{\"attributeHeader\":{\"labelValue\":\"962593\",\"primaryLabelValue\":\"962593\"}},{\"attributeHeader\":{\"labelValue\":\"962595\",\"primaryLabelValue\":\"962595\"}},{\"attributeHeader\":{\"labelValue\":\"962597\",\"primaryLabelValue\":\"962597\"}},{\"attributeHeader\":{\"labelValue\":\"962599\",\"primaryLabelValue\":\"962599\"}},{\"attributeHeader\":{\"labelValue\":\"962601\",\"primaryLabelValue\":\"962601\"}},{\"attributeHeader\":{\"labelValue\":\"962603\",\"primaryLabelValue\":\"962603\"}},{\"attributeHeader\":{\"labelValue\":\"962605\",\"primaryLabelValue\":\"962605\"}},{\"attributeHeader\":{\"labelValue\":\"962607\",\"primaryLabelValue\":\"962607\"}},{\"attributeHeader\":{\"labelValue\":\"962609\",\"primaryLabelValue\":\"962609\"}},{\"attributeHeader\":{\"labelValue\":\"962611\",\"primaryLabelValue\":\"962611\"}},{\"attributeHeader\":{\"labelValue\":\"962613\",\"primaryLabelValue\":\"962613\"}},{\"attributeHeader\":{\"labelValue\":\"962615\",\"primaryLabelValue\":\"962615\"}},{\"attributeHeader\":{\"labelValue\":\"962617\",\"primaryLabelValue\":\"962617\"}},{\"attributeHeader\":{\"labelValue\":\"962619\",\"primaryLabelValue\":\"962619\"}},{\"attributeHeader\":{\"labelValue\":\"962621\",\"primaryLabelValue\":\"962621\"}},{\"attributeHeader\":{\"labelValue\":\"962623\",\"primaryLabelValue\":\"962623\"}},{\"attributeHeader\":{\"labelValue\":\"962625\",\"primaryLabelValue\":\"962625\"}},{\"attributeHeader\":{\"labelValue\":\"962627\",\"primaryLabelValue\":\"962627\"}},{\"attributeHeader\":{\"labelValue\":\"962629\",\"primaryLabelValue\":\"962629\"}},{\"attributeHeader\":{\"labelValue\":\"962633\",\"primaryLabelValue\":\"962633\"}},{\"attributeHeader\":{\"labelValue\":\"962635\",\"primaryLabelValue\":\"962635\"}},{\"attributeHeader\":{\"labelValue\":\"962637\",\"primaryLabelValue\":\"962637\"}},{\"attributeHeader\":{\"labelValue\":\"962639\",\"primaryLabelValue\":\"962639\"}},{\"attributeHeader\":{\"labelValue\":\"962641\",\"primaryLabelValue\":\"962641\"}},{\"attributeHeader\":{\"labelValue\":\"962643\",\"primaryLabelValue\":\"962643\"}},{\"attributeHeader\":{\"labelValue\":\"962645\",\"primaryLabelValue\":\"962645\"}},{\"attributeHeader\":{\"labelValue\":\"962647\",\"primaryLabelValue\":\"962647\"}},{\"attributeHeader\":{\"labelValue\":\"962649\",\"primaryLabelValue\":\"962649\"}},{\"attributeHeader\":{\"labelValue\":\"962651\",\"primaryLabelValue\":\"962651\"}},{\"attributeHeader\":{\"labelValue\":\"962653\",\"primaryLabelValue\":\"962653\"}},{\"attributeHeader\":{\"labelValue\":\"962655\",\"primaryLabelValue\":\"962655\"}},{\"attributeHeader\":{\"labelValue\":\"962657\",\"primaryLabelValue\":\"962657\"}},{\"attributeHeader\":{\"labelValue\":\"962659\",\"primaryLabelValue\":\"962659\"}},{\"attributeHeader\":{\"labelValue\":\"962661\",\"primaryLabelValue\":\"962661\"}},{\"attributeHeader\":{\"labelValue\":\"962663\",\"primaryLabelValue\":\"962663\"}},{\"attributeHeader\":{\"labelValue\":\"962665\",\"primaryLabelValue\":\"962665\"}},{\"attributeHeader\":{\"labelValue\":\"962667\",\"primaryLabelValue\":\"962667\"}},{\"attributeHeader\":{\"labelValue\":\"962669\",\"primaryLabelValue\":\"962669\"}},{\"attributeHeader\":{\"labelValue\":\"962671\",\"primaryLabelValue\":\"962671\"}},{\"attributeHeader\":{\"labelValue\":\"962673\",\"primaryLabelValue\":\"962673\"}},{\"attributeHeader\":{\"labelValue\":\"962675\",\"primaryLabelValue\":\"962675\"}},{\"attributeHeader\":{\"labelValue\":\"962677\",\"primaryLabelValue\":\"962677\"}},{\"attributeHeader\":{\"labelValue\":\"962679\",\"primaryLabelValue\":\"962679\"}},{\"attributeHeader\":{\"labelValue\":\"962681\",\"primaryLabelValue\":\"962681\"}},{\"attributeHeader\":{\"labelValue\":\"962683\",\"primaryLabelValue\":\"962683\"}},{\"attributeHeader\":{\"labelValue\":\"962685\",\"primaryLabelValue\":\"962685\"}},{\"attributeHeader\":{\"labelValue\":\"962687\",\"primaryLabelValue\":\"962687\"}},{\"attributeHeader\":{\"labelValue\":\"962689\",\"primaryLabelValue\":\"962689\"}},{\"attributeHeader\":{\"labelValue\":\"962691\",\"primaryLabelValue\":\"962691\"}},{\"attributeHeader\":{\"labelValue\":\"962693\",\"primaryLabelValue\":\"962693\"}},{\"attributeHeader\":{\"labelValue\":\"962695\",\"primaryLabelValue\":\"962695\"}},{\"attributeHeader\":{\"labelValue\":\"962697\",\"primaryLabelValue\":\"962697\"}},{\"attributeHeader\":{\"labelValue\":\"962699\",\"primaryLabelValue\":\"962699\"}},{\"attributeHeader\":{\"labelValue\":\"962701\",\"primaryLabelValue\":\"962701\"}},{\"attributeHeader\":{\"labelValue\":\"962703\",\"primaryLabelValue\":\"962703\"}},{\"attributeHeader\":{\"labelValue\":\"962705\",\"primaryLabelValue\":\"962705\"}},{\"attributeHeader\":{\"labelValue\":\"962707\",\"primaryLabelValue\":\"962707\"}},{\"attributeHeader\":{\"labelValue\":\"962709\",\"primaryLabelValue\":\"962709\"}},{\"attributeHeader\":{\"labelValue\":\"962711\",\"primaryLabelValue\":\"962711\"}},{\"attributeHeader\":{\"labelValue\":\"962713\",\"primaryLabelValue\":\"962713\"}},{\"attributeHeader\":{\"labelValue\":\"962715\",\"primaryLabelValue\":\"962715\"}},{\"attributeHeader\":{\"labelValue\":\"962717\",\"primaryLabelValue\":\"962717\"}},{\"attributeHeader\":{\"labelValue\":\"962719\",\"primaryLabelValue\":\"962719\"}},{\"attributeHeader\":{\"labelValue\":\"962721\",\"primaryLabelValue\":\"962721\"}},{\"attributeHeader\":{\"labelValue\":\"962723\",\"primaryLabelValue\":\"962723\"}},{\"attributeHeader\":{\"labelValue\":\"962725\",\"primaryLabelValue\":\"962725\"}},{\"attributeHeader\":{\"labelValue\":\"962727\",\"primaryLabelValue\":\"962727\"}},{\"attributeHeader\":{\"labelValue\":\"962729\",\"primaryLabelValue\":\"962729\"}},{\"attributeHeader\":{\"labelValue\":\"962731\",\"primaryLabelValue\":\"962731\"}},{\"attributeHeader\":{\"labelValue\":\"962733\",\"primaryLabelValue\":\"962733\"}},{\"attributeHeader\":{\"labelValue\":\"962735\",\"primaryLabelValue\":\"962735\"}},{\"attributeHeader\":{\"labelValue\":\"962737\",\"primaryLabelValue\":\"962737\"}},{\"attributeHeader\":{\"labelValue\":\"962739\",\"primaryLabelValue\":\"962739\"}},{\"attributeHeader\":{\"labelValue\":\"962741\",\"primaryLabelValue\":\"962741\"}},{\"attributeHeader\":{\"labelValue\":\"962743\",\"primaryLabelValue\":\"962743\"}},{\"attributeHeader\":{\"labelValue\":\"962745\",\"primaryLabelValue\":\"962745\"}},{\"attributeHeader\":{\"labelValue\":\"962747\",\"primaryLabelValue\":\"962747\"}},{\"attributeHeader\":{\"labelValue\":\"962749\",\"primaryLabelValue\":\"962749\"}},{\"attributeHeader\":{\"labelValue\":\"962751\",\"primaryLabelValue\":\"962751\"}},{\"attributeHeader\":{\"labelValue\":\"962753\",\"primaryLabelValue\":\"962753\"}},{\"attributeHeader\":{\"labelValue\":\"962755\",\"primaryLabelValue\":\"962755\"}},{\"attributeHeader\":{\"labelValue\":\"962757\",\"primaryLabelValue\":\"962757\"}},{\"attributeHeader\":{\"labelValue\":\"962759\",\"primaryLabelValue\":\"962759\"}},{\"attributeHeader\":{\"labelValue\":\"962761\",\"primaryLabelValue\":\"962761\"}},{\"attributeHeader\":{\"labelValue\":\"962763\",\"primaryLabelValue\":\"962763\"}},{\"attributeHeader\":{\"labelValue\":\"962765\",\"primaryLabelValue\":\"962765\"}},{\"attributeHeader\":{\"labelValue\":\"962767\",\"primaryLabelValue\":\"962767\"}},{\"attributeHeader\":{\"labelValue\":\"962769\",\"primaryLabelValue\":\"962769\"}},{\"attributeHeader\":{\"labelValue\":\"962771\",\"primaryLabelValue\":\"962771\"}},{\"attributeHeader\":{\"labelValue\":\"962773\",\"primaryLabelValue\":\"962773\"}},{\"attributeHeader\":{\"labelValue\":\"962775\",\"primaryLabelValue\":\"962775\"}},{\"attributeHeader\":{\"labelValue\":\"962777\",\"primaryLabelValue\":\"962777\"}},{\"attributeHeader\":{\"labelValue\":\"962779\",\"primaryLabelValue\":\"962779\"}},{\"attributeHeader\":{\"labelValue\":\"962781\",\"primaryLabelValue\":\"962781\"}},{\"attributeHeader\":{\"labelValue\":\"962783\",\"primaryLabelValue\":\"962783\"}},{\"attributeHeader\":{\"labelValue\":\"962785\",\"primaryLabelValue\":\"962785\"}},{\"attributeHeader\":{\"labelValue\":\"962787\",\"primaryLabelValue\":\"962787\"}},{\"attributeHeader\":{\"labelValue\":\"962789\",\"primaryLabelValue\":\"962789\"}},{\"attributeHeader\":{\"labelValue\":\"962791\",\"primaryLabelValue\":\"962791\"}},{\"attributeHeader\":{\"labelValue\":\"962793\",\"primaryLabelValue\":\"962793\"}},{\"attributeHeader\":{\"labelValue\":\"962795\",\"primaryLabelValue\":\"962795\"}},{\"attributeHeader\":{\"labelValue\":\"962797\",\"primaryLabelValue\":\"962797\"}},{\"attributeHeader\":{\"labelValue\":\"962799\",\"primaryLabelValue\":\"962799\"}},{\"attributeHeader\":{\"labelValue\":\"962801\",\"primaryLabelValue\":\"962801\"}},{\"attributeHeader\":{\"labelValue\":\"962803\",\"primaryLabelValue\":\"962803\"}},{\"attributeHeader\":{\"labelValue\":\"962805\",\"primaryLabelValue\":\"962805\"}},{\"attributeHeader\":{\"labelValue\":\"962807\",\"primaryLabelValue\":\"962807\"}},{\"attributeHeader\":{\"labelValue\":\"962809\",\"primaryLabelValue\":\"962809\"}},{\"attributeHeader\":{\"labelValue\":\"962811\",\"primaryLabelValue\":\"962811\"}},{\"attributeHeader\":{\"labelValue\":\"962813\",\"primaryLabelValue\":\"962813\"}},{\"attributeHeader\":{\"labelValue\":\"962815\",\"primaryLabelValue\":\"962815\"}},{\"attributeHeader\":{\"labelValue\":\"962817\",\"primaryLabelValue\":\"962817\"}},{\"attributeHeader\":{\"labelValue\":\"962819\",\"primaryLabelValue\":\"962819\"}},{\"attributeHeader\":{\"labelValue\":\"962821\",\"primaryLabelValue\":\"962821\"}},{\"attributeHeader\":{\"labelValue\":\"962823\",\"primaryLabelValue\":\"962823\"}},{\"attributeHeader\":{\"labelValue\":\"962825\",\"primaryLabelValue\":\"962825\"}},{\"attributeHeader\":{\"labelValue\":\"962827\",\"primaryLabelValue\":\"962827\"}},{\"attributeHeader\":{\"labelValue\":\"962829\",\"primaryLabelValue\":\"962829\"}},{\"attributeHeader\":{\"labelValue\":\"962831\",\"primaryLabelValue\":\"962831\"}},{\"attributeHeader\":{\"labelValue\":\"962833\",\"primaryLabelValue\":\"962833\"}},{\"attributeHeader\":{\"labelValue\":\"962835\",\"primaryLabelValue\":\"962835\"}},{\"attributeHeader\":{\"labelValue\":\"962837\",\"primaryLabelValue\":\"962837\"}},{\"attributeHeader\":{\"labelValue\":\"962839\",\"primaryLabelValue\":\"962839\"}},{\"attributeHeader\":{\"labelValue\":\"962843\",\"primaryLabelValue\":\"962843\"}},{\"attributeHeader\":{\"labelValue\":\"962845\",\"primaryLabelValue\":\"962845\"}},{\"attributeHeader\":{\"labelValue\":\"962847\",\"primaryLabelValue\":\"962847\"}},{\"attributeHeader\":{\"labelValue\":\"962849\",\"primaryLabelValue\":\"962849\"}},{\"attributeHeader\":{\"labelValue\":\"962851\",\"primaryLabelValue\":\"962851\"}},{\"attributeHeader\":{\"labelValue\":\"962853\",\"primaryLabelValue\":\"962853\"}},{\"attributeHeader\":{\"labelValue\":\"962857\",\"primaryLabelValue\":\"962857\"}},{\"attributeHeader\":{\"labelValue\":\"962859\",\"primaryLabelValue\":\"962859\"}},{\"attributeHeader\":{\"labelValue\":\"962861\",\"primaryLabelValue\":\"962861\"}},{\"attributeHeader\":{\"labelValue\":\"962863\",\"primaryLabelValue\":\"962863\"}},{\"attributeHeader\":{\"labelValue\":\"962865\",\"primaryLabelValue\":\"962865\"}},{\"attributeHeader\":{\"labelValue\":\"962867\",\"primaryLabelValue\":\"962867\"}},{\"attributeHeader\":{\"labelValue\":\"962869\",\"primaryLabelValue\":\"962869\"}},{\"attributeHeader\":{\"labelValue\":\"962871\",\"primaryLabelValue\":\"962871\"}},{\"attributeHeader\":{\"labelValue\":\"962873\",\"primaryLabelValue\":\"962873\"}},{\"attributeHeader\":{\"labelValue\":\"962875\",\"primaryLabelValue\":\"962875\"}},{\"attributeHeader\":{\"labelValue\":\"962877\",\"primaryLabelValue\":\"962877\"}},{\"attributeHeader\":{\"labelValue\":\"962879\",\"primaryLabelValue\":\"962879\"}},{\"attributeHeader\":{\"labelValue\":\"962881\",\"primaryLabelValue\":\"962881\"}},{\"attributeHeader\":{\"labelValue\":\"962883\",\"primaryLabelValue\":\"962883\"}},{\"attributeHeader\":{\"labelValue\":\"962885\",\"primaryLabelValue\":\"962885\"}},{\"attributeHeader\":{\"labelValue\":\"962887\",\"primaryLabelValue\":\"962887\"}},{\"attributeHeader\":{\"labelValue\":\"962889\",\"primaryLabelValue\":\"962889\"}},{\"attributeHeader\":{\"labelValue\":\"962891\",\"primaryLabelValue\":\"962891\"}},{\"attributeHeader\":{\"labelValue\":\"962893\",\"primaryLabelValue\":\"962893\"}},{\"attributeHeader\":{\"labelValue\":\"962895\",\"primaryLabelValue\":\"962895\"}},{\"attributeHeader\":{\"labelValue\":\"962897\",\"primaryLabelValue\":\"962897\"}},{\"attributeHeader\":{\"labelValue\":\"962899\",\"primaryLabelValue\":\"962899\"}},{\"attributeHeader\":{\"labelValue\":\"962901\",\"primaryLabelValue\":\"962901\"}},{\"attributeHeader\":{\"labelValue\":\"962903\",\"primaryLabelValue\":\"962903\"}},{\"attributeHeader\":{\"labelValue\":\"962905\",\"primaryLabelValue\":\"962905\"}},{\"attributeHeader\":{\"labelValue\":\"962907\",\"primaryLabelValue\":\"962907\"}},{\"attributeHeader\":{\"labelValue\":\"962909\",\"primaryLabelValue\":\"962909\"}},{\"attributeHeader\":{\"labelValue\":\"962911\",\"primaryLabelValue\":\"962911\"}},{\"attributeHeader\":{\"labelValue\":\"962913\",\"primaryLabelValue\":\"962913\"}},{\"attributeHeader\":{\"labelValue\":\"962915\",\"primaryLabelValue\":\"962915\"}},{\"attributeHeader\":{\"labelValue\":\"962917\",\"primaryLabelValue\":\"962917\"}},{\"attributeHeader\":{\"labelValue\":\"962919\",\"primaryLabelValue\":\"962919\"}},{\"attributeHeader\":{\"labelValue\":\"962921\",\"primaryLabelValue\":\"962921\"}},{\"attributeHeader\":{\"labelValue\":\"962923\",\"primaryLabelValue\":\"962923\"}},{\"attributeHeader\":{\"labelValue\":\"962925\",\"primaryLabelValue\":\"962925\"}},{\"attributeHeader\":{\"labelValue\":\"962927\",\"primaryLabelValue\":\"962927\"}},{\"attributeHeader\":{\"labelValue\":\"962929\",\"primaryLabelValue\":\"962929\"}},{\"attributeHeader\":{\"labelValue\":\"962931\",\"primaryLabelValue\":\"962931\"}},{\"attributeHeader\":{\"labelValue\":\"962933\",\"primaryLabelValue\":\"962933\"}},{\"attributeHeader\":{\"labelValue\":\"962935\",\"primaryLabelValue\":\"962935\"}},{\"attributeHeader\":{\"labelValue\":\"962937\",\"primaryLabelValue\":\"962937\"}},{\"attributeHeader\":{\"labelValue\":\"962939\",\"primaryLabelValue\":\"962939\"}},{\"attributeHeader\":{\"labelValue\":\"962941\",\"primaryLabelValue\":\"962941\"}},{\"attributeHeader\":{\"labelValue\":\"962943\",\"primaryLabelValue\":\"962943\"}},{\"attributeHeader\":{\"labelValue\":\"962945\",\"primaryLabelValue\":\"962945\"}},{\"attributeHeader\":{\"labelValue\":\"962949\",\"primaryLabelValue\":\"962949\"}},{\"attributeHeader\":{\"labelValue\":\"962951\",\"primaryLabelValue\":\"962951\"}},{\"attributeHeader\":{\"labelValue\":\"962953\",\"primaryLabelValue\":\"962953\"}},{\"attributeHeader\":{\"labelValue\":\"962955\",\"primaryLabelValue\":\"962955\"}},{\"attributeHeader\":{\"labelValue\":\"962957\",\"primaryLabelValue\":\"962957\"}},{\"attributeHeader\":{\"labelValue\":\"962959\",\"primaryLabelValue\":\"962959\"}},{\"attributeHeader\":{\"labelValue\":\"962961\",\"primaryLabelValue\":\"962961\"}},{\"attributeHeader\":{\"labelValue\":\"962963\",\"primaryLabelValue\":\"962963\"}},{\"attributeHeader\":{\"labelValue\":\"962965\",\"primaryLabelValue\":\"962965\"}},{\"attributeHeader\":{\"labelValue\":\"962967\",\"primaryLabelValue\":\"962967\"}},{\"attributeHeader\":{\"labelValue\":\"962969\",\"primaryLabelValue\":\"962969\"}},{\"attributeHeader\":{\"labelValue\":\"962971\",\"primaryLabelValue\":\"962971\"}},{\"attributeHeader\":{\"labelValue\":\"962973\",\"primaryLabelValue\":\"962973\"}},{\"attributeHeader\":{\"labelValue\":\"962975\",\"primaryLabelValue\":\"962975\"}},{\"attributeHeader\":{\"labelValue\":\"962977\",\"primaryLabelValue\":\"962977\"}},{\"attributeHeader\":{\"labelValue\":\"962979\",\"primaryLabelValue\":\"962979\"}},{\"attributeHeader\":{\"labelValue\":\"962981\",\"primaryLabelValue\":\"962981\"}},{\"attributeHeader\":{\"labelValue\":\"962983\",\"primaryLabelValue\":\"962983\"}},{\"attributeHeader\":{\"labelValue\":\"962985\",\"primaryLabelValue\":\"962985\"}},{\"attributeHeader\":{\"labelValue\":\"962987\",\"primaryLabelValue\":\"962987\"}},{\"attributeHeader\":{\"labelValue\":\"962989\",\"primaryLabelValue\":\"962989\"}},{\"attributeHeader\":{\"labelValue\":\"962991\",\"primaryLabelValue\":\"962991\"}},{\"attributeHeader\":{\"labelValue\":\"962993\",\"primaryLabelValue\":\"962993\"}},{\"attributeHeader\":{\"labelValue\":\"962995\",\"primaryLabelValue\":\"962995\"}},{\"attributeHeader\":{\"labelValue\":\"962997\",\"primaryLabelValue\":\"962997\"}},{\"attributeHeader\":{\"labelValue\":\"962999\",\"primaryLabelValue\":\"962999\"}},{\"attributeHeader\":{\"labelValue\":\"963001\",\"primaryLabelValue\":\"963001\"}},{\"attributeHeader\":{\"labelValue\":\"963005\",\"primaryLabelValue\":\"963005\"}},{\"attributeHeader\":{\"labelValue\":\"963007\",\"primaryLabelValue\":\"963007\"}},{\"attributeHeader\":{\"labelValue\":\"963009\",\"primaryLabelValue\":\"963009\"}},{\"attributeHeader\":{\"labelValue\":\"963011\",\"primaryLabelValue\":\"963011\"}},{\"attributeHeader\":{\"labelValue\":\"963013\",\"primaryLabelValue\":\"963013\"}},{\"attributeHeader\":{\"labelValue\":\"963015\",\"primaryLabelValue\":\"963015\"}},{\"attributeHeader\":{\"labelValue\":\"963017\",\"primaryLabelValue\":\"963017\"}},{\"attributeHeader\":{\"labelValue\":\"963019\",\"primaryLabelValue\":\"963019\"}},{\"attributeHeader\":{\"labelValue\":\"963021\",\"primaryLabelValue\":\"963021\"}},{\"attributeHeader\":{\"labelValue\":\"963023\",\"primaryLabelValue\":\"963023\"}},{\"attributeHeader\":{\"labelValue\":\"963025\",\"primaryLabelValue\":\"963025\"}},{\"attributeHeader\":{\"labelValue\":\"963027\",\"primaryLabelValue\":\"963027\"}},{\"attributeHeader\":{\"labelValue\":\"963029\",\"primaryLabelValue\":\"963029\"}},{\"attributeHeader\":{\"labelValue\":\"963031\",\"primaryLabelValue\":\"963031\"}},{\"attributeHeader\":{\"labelValue\":\"963033\",\"primaryLabelValue\":\"963033\"}},{\"attributeHeader\":{\"labelValue\":\"963035\",\"primaryLabelValue\":\"963035\"}},{\"attributeHeader\":{\"labelValue\":\"963037\",\"primaryLabelValue\":\"963037\"}},{\"attributeHeader\":{\"labelValue\":\"963039\",\"primaryLabelValue\":\"963039\"}},{\"attributeHeader\":{\"labelValue\":\"963041\",\"primaryLabelValue\":\"963041\"}},{\"attributeHeader\":{\"labelValue\":\"963043\",\"primaryLabelValue\":\"963043\"}},{\"attributeHeader\":{\"labelValue\":\"963045\",\"primaryLabelValue\":\"963045\"}},{\"attributeHeader\":{\"labelValue\":\"963047\",\"primaryLabelValue\":\"963047\"}},{\"attributeHeader\":{\"labelValue\":\"963049\",\"primaryLabelValue\":\"963049\"}},{\"attributeHeader\":{\"labelValue\":\"963051\",\"primaryLabelValue\":\"963051\"}},{\"attributeHeader\":{\"labelValue\":\"963053\",\"primaryLabelValue\":\"963053\"}},{\"attributeHeader\":{\"labelValue\":\"963055\",\"primaryLabelValue\":\"963055\"}},{\"attributeHeader\":{\"labelValue\":\"963057\",\"primaryLabelValue\":\"963057\"}},{\"attributeHeader\":{\"labelValue\":\"963059\",\"primaryLabelValue\":\"963059\"}},{\"attributeHeader\":{\"labelValue\":\"963061\",\"primaryLabelValue\":\"963061\"}},{\"attributeHeader\":{\"labelValue\":\"963063\",\"primaryLabelValue\":\"963063\"}},{\"attributeHeader\":{\"labelValue\":\"963065\",\"primaryLabelValue\":\"963065\"}},{\"attributeHeader\":{\"labelValue\":\"963067\",\"primaryLabelValue\":\"963067\"}},{\"attributeHeader\":{\"labelValue\":\"963069\",\"primaryLabelValue\":\"963069\"}},{\"attributeHeader\":{\"labelValue\":\"963071\",\"primaryLabelValue\":\"963071\"}},{\"attributeHeader\":{\"labelValue\":\"963075\",\"primaryLabelValue\":\"963075\"}},{\"attributeHeader\":{\"labelValue\":\"963077\",\"primaryLabelValue\":\"963077\"}},{\"attributeHeader\":{\"labelValue\":\"963079\",\"primaryLabelValue\":\"963079\"}},{\"attributeHeader\":{\"labelValue\":\"963081\",\"primaryLabelValue\":\"963081\"}},{\"attributeHeader\":{\"labelValue\":\"963083\",\"primaryLabelValue\":\"963083\"}},{\"attributeHeader\":{\"labelValue\":\"963085\",\"primaryLabelValue\":\"963085\"}},{\"attributeHeader\":{\"labelValue\":\"963087\",\"primaryLabelValue\":\"963087\"}},{\"attributeHeader\":{\"labelValue\":\"963089\",\"primaryLabelValue\":\"963089\"}},{\"attributeHeader\":{\"labelValue\":\"963091\",\"primaryLabelValue\":\"963091\"}},{\"attributeHeader\":{\"labelValue\":\"963093\",\"primaryLabelValue\":\"963093\"}},{\"attributeHeader\":{\"labelValue\":\"963095\",\"primaryLabelValue\":\"963095\"}},{\"attributeHeader\":{\"labelValue\":\"963097\",\"primaryLabelValue\":\"963097\"}},{\"attributeHeader\":{\"labelValue\":\"963099\",\"primaryLabelValue\":\"963099\"}},{\"attributeHeader\":{\"labelValue\":\"963101\",\"primaryLabelValue\":\"963101\"}},{\"attributeHeader\":{\"labelValue\":\"963103\",\"primaryLabelValue\":\"963103\"}},{\"attributeHeader\":{\"labelValue\":\"963105\",\"primaryLabelValue\":\"963105\"}},{\"attributeHeader\":{\"labelValue\":\"963107\",\"primaryLabelValue\":\"963107\"}},{\"attributeHeader\":{\"labelValue\":\"963109\",\"primaryLabelValue\":\"963109\"}},{\"attributeHeader\":{\"labelValue\":\"963111\",\"primaryLabelValue\":\"963111\"}},{\"attributeHeader\":{\"labelValue\":\"963113\",\"primaryLabelValue\":\"963113\"}},{\"attributeHeader\":{\"labelValue\":\"963115\",\"primaryLabelValue\":\"963115\"}},{\"attributeHeader\":{\"labelValue\":\"963117\",\"primaryLabelValue\":\"963117\"}},{\"attributeHeader\":{\"labelValue\":\"963119\",\"primaryLabelValue\":\"963119\"}},{\"attributeHeader\":{\"labelValue\":\"963121\",\"primaryLabelValue\":\"963121\"}},{\"attributeHeader\":{\"labelValue\":\"963123\",\"primaryLabelValue\":\"963123\"}},{\"attributeHeader\":{\"labelValue\":\"963125\",\"primaryLabelValue\":\"963125\"}},{\"attributeHeader\":{\"labelValue\":\"963127\",\"primaryLabelValue\":\"963127\"}},{\"attributeHeader\":{\"labelValue\":\"963129\",\"primaryLabelValue\":\"963129\"}},{\"attributeHeader\":{\"labelValue\":\"963131\",\"primaryLabelValue\":\"963131\"}},{\"attributeHeader\":{\"labelValue\":\"963133\",\"primaryLabelValue\":\"963133\"}},{\"attributeHeader\":{\"labelValue\":\"963135\",\"primaryLabelValue\":\"963135\"}},{\"attributeHeader\":{\"labelValue\":\"963137\",\"primaryLabelValue\":\"963137\"}},{\"attributeHeader\":{\"labelValue\":\"963139\",\"primaryLabelValue\":\"963139\"}},{\"attributeHeader\":{\"labelValue\":\"963141\",\"primaryLabelValue\":\"963141\"}},{\"attributeHeader\":{\"labelValue\":\"963143\",\"primaryLabelValue\":\"963143\"}},{\"attributeHeader\":{\"labelValue\":\"963145\",\"primaryLabelValue\":\"963145\"}},{\"attributeHeader\":{\"labelValue\":\"963147\",\"primaryLabelValue\":\"963147\"}},{\"attributeHeader\":{\"labelValue\":\"963149\",\"primaryLabelValue\":\"963149\"}},{\"attributeHeader\":{\"labelValue\":\"963151\",\"primaryLabelValue\":\"963151\"}},{\"attributeHeader\":{\"labelValue\":\"963153\",\"primaryLabelValue\":\"963153\"}},{\"attributeHeader\":{\"labelValue\":\"963155\",\"primaryLabelValue\":\"963155\"}},{\"attributeHeader\":{\"labelValue\":\"963157\",\"primaryLabelValue\":\"963157\"}},{\"attributeHeader\":{\"labelValue\":\"963159\",\"primaryLabelValue\":\"963159\"}},{\"attributeHeader\":{\"labelValue\":\"963161\",\"primaryLabelValue\":\"963161\"}},{\"attributeHeader\":{\"labelValue\":\"963163\",\"primaryLabelValue\":\"963163\"}},{\"attributeHeader\":{\"labelValue\":\"963165\",\"primaryLabelValue\":\"963165\"}},{\"attributeHeader\":{\"labelValue\":\"963167\",\"primaryLabelValue\":\"963167\"}},{\"attributeHeader\":{\"labelValue\":\"963169\",\"primaryLabelValue\":\"963169\"}},{\"attributeHeader\":{\"labelValue\":\"963171\",\"primaryLabelValue\":\"963171\"}},{\"attributeHeader\":{\"labelValue\":\"963173\",\"primaryLabelValue\":\"963173\"}},{\"attributeHeader\":{\"labelValue\":\"963175\",\"primaryLabelValue\":\"963175\"}},{\"attributeHeader\":{\"labelValue\":\"963177\",\"primaryLabelValue\":\"963177\"}},{\"attributeHeader\":{\"labelValue\":\"963179\",\"primaryLabelValue\":\"963179\"}},{\"attributeHeader\":{\"labelValue\":\"963181\",\"primaryLabelValue\":\"963181\"}},{\"attributeHeader\":{\"labelValue\":\"963183\",\"primaryLabelValue\":\"963183\"}},{\"attributeHeader\":{\"labelValue\":\"963185\",\"primaryLabelValue\":\"963185\"}},{\"attributeHeader\":{\"labelValue\":\"963187\",\"primaryLabelValue\":\"963187\"}},{\"attributeHeader\":{\"labelValue\":\"963189\",\"primaryLabelValue\":\"963189\"}},{\"attributeHeader\":{\"labelValue\":\"963193\",\"primaryLabelValue\":\"963193\"}},{\"attributeHeader\":{\"labelValue\":\"963195\",\"primaryLabelValue\":\"963195\"}},{\"attributeHeader\":{\"labelValue\":\"963197\",\"primaryLabelValue\":\"963197\"}},{\"attributeHeader\":{\"labelValue\":\"963199\",\"primaryLabelValue\":\"963199\"}},{\"attributeHeader\":{\"labelValue\":\"963201\",\"primaryLabelValue\":\"963201\"}},{\"attributeHeader\":{\"labelValue\":\"963203\",\"primaryLabelValue\":\"963203\"}},{\"attributeHeader\":{\"labelValue\":\"963205\",\"primaryLabelValue\":\"963205\"}},{\"attributeHeader\":{\"labelValue\":\"963207\",\"primaryLabelValue\":\"963207\"}},{\"attributeHeader\":{\"labelValue\":\"963209\",\"primaryLabelValue\":\"963209\"}},{\"attributeHeader\":{\"labelValue\":\"963211\",\"primaryLabelValue\":\"963211\"}},{\"attributeHeader\":{\"labelValue\":\"963213\",\"primaryLabelValue\":\"963213\"}},{\"attributeHeader\":{\"labelValue\":\"963215\",\"primaryLabelValue\":\"963215\"}},{\"attributeHeader\":{\"labelValue\":\"963217\",\"primaryLabelValue\":\"963217\"}},{\"attributeHeader\":{\"labelValue\":\"963219\",\"primaryLabelValue\":\"963219\"}},{\"attributeHeader\":{\"labelValue\":\"963221\",\"primaryLabelValue\":\"963221\"}},{\"attributeHeader\":{\"labelValue\":\"963223\",\"primaryLabelValue\":\"963223\"}},{\"attributeHeader\":{\"labelValue\":\"963225\",\"primaryLabelValue\":\"963225\"}},{\"attributeHeader\":{\"labelValue\":\"963227\",\"primaryLabelValue\":\"963227\"}},{\"attributeHeader\":{\"labelValue\":\"963229\",\"primaryLabelValue\":\"963229\"}},{\"attributeHeader\":{\"labelValue\":\"963231\",\"primaryLabelValue\":\"963231\"}},{\"attributeHeader\":{\"labelValue\":\"963233\",\"primaryLabelValue\":\"963233\"}},{\"attributeHeader\":{\"labelValue\":\"963235\",\"primaryLabelValue\":\"963235\"}},{\"attributeHeader\":{\"labelValue\":\"963237\",\"primaryLabelValue\":\"963237\"}},{\"attributeHeader\":{\"labelValue\":\"963239\",\"primaryLabelValue\":\"963239\"}},{\"attributeHeader\":{\"labelValue\":\"963241\",\"primaryLabelValue\":\"963241\"}},{\"attributeHeader\":{\"labelValue\":\"963243\",\"primaryLabelValue\":\"963243\"}},{\"attributeHeader\":{\"labelValue\":\"963245\",\"primaryLabelValue\":\"963245\"}},{\"attributeHeader\":{\"labelValue\":\"963247\",\"primaryLabelValue\":\"963247\"}},{\"attributeHeader\":{\"labelValue\":\"963249\",\"primaryLabelValue\":\"963249\"}},{\"attributeHeader\":{\"labelValue\":\"963251\",\"primaryLabelValue\":\"963251\"}},{\"attributeHeader\":{\"labelValue\":\"963253\",\"primaryLabelValue\":\"963253\"}},{\"attributeHeader\":{\"labelValue\":\"963255\",\"primaryLabelValue\":\"963255\"}},{\"attributeHeader\":{\"labelValue\":\"963257\",\"primaryLabelValue\":\"963257\"}},{\"attributeHeader\":{\"labelValue\":\"963259\",\"primaryLabelValue\":\"963259\"}},{\"attributeHeader\":{\"labelValue\":\"963261\",\"primaryLabelValue\":\"963261\"}},{\"attributeHeader\":{\"labelValue\":\"963263\",\"primaryLabelValue\":\"963263\"}},{\"attributeHeader\":{\"labelValue\":\"963265\",\"primaryLabelValue\":\"963265\"}},{\"attributeHeader\":{\"labelValue\":\"963267\",\"primaryLabelValue\":\"963267\"}},{\"attributeHeader\":{\"labelValue\":\"963269\",\"primaryLabelValue\":\"963269\"}},{\"attributeHeader\":{\"labelValue\":\"963271\",\"primaryLabelValue\":\"963271\"}},{\"attributeHeader\":{\"labelValue\":\"963273\",\"primaryLabelValue\":\"963273\"}},{\"attributeHeader\":{\"labelValue\":\"963275\",\"primaryLabelValue\":\"963275\"}},{\"attributeHeader\":{\"labelValue\":\"963277\",\"primaryLabelValue\":\"963277\"}},{\"attributeHeader\":{\"labelValue\":\"963279\",\"primaryLabelValue\":\"963279\"}},{\"attributeHeader\":{\"labelValue\":\"963281\",\"primaryLabelValue\":\"963281\"}},{\"attributeHeader\":{\"labelValue\":\"963283\",\"primaryLabelValue\":\"963283\"}},{\"attributeHeader\":{\"labelValue\":\"963285\",\"primaryLabelValue\":\"963285\"}},{\"attributeHeader\":{\"labelValue\":\"963287\",\"primaryLabelValue\":\"963287\"}},{\"attributeHeader\":{\"labelValue\":\"963289\",\"primaryLabelValue\":\"963289\"}},{\"attributeHeader\":{\"labelValue\":\"963291\",\"primaryLabelValue\":\"963291\"}},{\"attributeHeader\":{\"labelValue\":\"963293\",\"primaryLabelValue\":\"963293\"}},{\"attributeHeader\":{\"labelValue\":\"963295\",\"primaryLabelValue\":\"963295\"}},{\"attributeHeader\":{\"labelValue\":\"963297\",\"primaryLabelValue\":\"963297\"}},{\"attributeHeader\":{\"labelValue\":\"963299\",\"primaryLabelValue\":\"963299\"}},{\"attributeHeader\":{\"labelValue\":\"963301\",\"primaryLabelValue\":\"963301\"}},{\"attributeHeader\":{\"labelValue\":\"963303\",\"primaryLabelValue\":\"963303\"}},{\"attributeHeader\":{\"labelValue\":\"963305\",\"primaryLabelValue\":\"963305\"}},{\"attributeHeader\":{\"labelValue\":\"963307\",\"primaryLabelValue\":\"963307\"}},{\"attributeHeader\":{\"labelValue\":\"963309\",\"primaryLabelValue\":\"963309\"}},{\"attributeHeader\":{\"labelValue\":\"963311\",\"primaryLabelValue\":\"963311\"}},{\"attributeHeader\":{\"labelValue\":\"963313\",\"primaryLabelValue\":\"963313\"}},{\"attributeHeader\":{\"labelValue\":\"963315\",\"primaryLabelValue\":\"963315\"}},{\"attributeHeader\":{\"labelValue\":\"963317\",\"primaryLabelValue\":\"963317\"}},{\"attributeHeader\":{\"labelValue\":\"963319\",\"primaryLabelValue\":\"963319\"}},{\"attributeHeader\":{\"labelValue\":\"963321\",\"primaryLabelValue\":\"963321\"}},{\"attributeHeader\":{\"labelValue\":\"963323\",\"primaryLabelValue\":\"963323\"}},{\"attributeHeader\":{\"labelValue\":\"963325\",\"primaryLabelValue\":\"963325\"}},{\"attributeHeader\":{\"labelValue\":\"963327\",\"primaryLabelValue\":\"963327\"}},{\"attributeHeader\":{\"labelValue\":\"963331\",\"primaryLabelValue\":\"963331\"}},{\"attributeHeader\":{\"labelValue\":\"963333\",\"primaryLabelValue\":\"963333\"}},{\"attributeHeader\":{\"labelValue\":\"963335\",\"primaryLabelValue\":\"963335\"}},{\"attributeHeader\":{\"labelValue\":\"963337\",\"primaryLabelValue\":\"963337\"}},{\"attributeHeader\":{\"labelValue\":\"963339\",\"primaryLabelValue\":\"963339\"}},{\"attributeHeader\":{\"labelValue\":\"963341\",\"primaryLabelValue\":\"963341\"}},{\"attributeHeader\":{\"labelValue\":\"963343\",\"primaryLabelValue\":\"963343\"}},{\"attributeHeader\":{\"labelValue\":\"963345\",\"primaryLabelValue\":\"963345\"}},{\"attributeHeader\":{\"labelValue\":\"963347\",\"primaryLabelValue\":\"963347\"}},{\"attributeHeader\":{\"labelValue\":\"963349\",\"primaryLabelValue\":\"963349\"}},{\"attributeHeader\":{\"labelValue\":\"963351\",\"primaryLabelValue\":\"963351\"}},{\"attributeHeader\":{\"labelValue\":\"963353\",\"primaryLabelValue\":\"963353\"}},{\"attributeHeader\":{\"labelValue\":\"963355\",\"primaryLabelValue\":\"963355\"}},{\"attributeHeader\":{\"labelValue\":\"963357\",\"primaryLabelValue\":\"963357\"}},{\"attributeHeader\":{\"labelValue\":\"963359\",\"primaryLabelValue\":\"963359\"}},{\"attributeHeader\":{\"labelValue\":\"963363\",\"primaryLabelValue\":\"963363\"}},{\"attributeHeader\":{\"labelValue\":\"963365\",\"primaryLabelValue\":\"963365\"}},{\"attributeHeader\":{\"labelValue\":\"963367\",\"primaryLabelValue\":\"963367\"}},{\"attributeHeader\":{\"labelValue\":\"963369\",\"primaryLabelValue\":\"963369\"}},{\"attributeHeader\":{\"labelValue\":\"963371\",\"primaryLabelValue\":\"963371\"}},{\"attributeHeader\":{\"labelValue\":\"963373\",\"primaryLabelValue\":\"963373\"}},{\"attributeHeader\":{\"labelValue\":\"963375\",\"primaryLabelValue\":\"963375\"}},{\"attributeHeader\":{\"labelValue\":\"963377\",\"primaryLabelValue\":\"963377\"}},{\"attributeHeader\":{\"labelValue\":\"963379\",\"primaryLabelValue\":\"963379\"}},{\"attributeHeader\":{\"labelValue\":\"963381\",\"primaryLabelValue\":\"963381\"}},{\"attributeHeader\":{\"labelValue\":\"963383\",\"primaryLabelValue\":\"963383\"}},{\"attributeHeader\":{\"labelValue\":\"963385\",\"primaryLabelValue\":\"963385\"}},{\"attributeHeader\":{\"labelValue\":\"963387\",\"primaryLabelValue\":\"963387\"}},{\"attributeHeader\":{\"labelValue\":\"963389\",\"primaryLabelValue\":\"963389\"}},{\"attributeHeader\":{\"labelValue\":\"963391\",\"primaryLabelValue\":\"963391\"}},{\"attributeHeader\":{\"labelValue\":\"963393\",\"primaryLabelValue\":\"963393\"}},{\"attributeHeader\":{\"labelValue\":\"963397\",\"primaryLabelValue\":\"963397\"}},{\"attributeHeader\":{\"labelValue\":\"963399\",\"primaryLabelValue\":\"963399\"}},{\"attributeHeader\":{\"labelValue\":\"963403\",\"primaryLabelValue\":\"963403\"}},{\"attributeHeader\":{\"labelValue\":\"963405\",\"primaryLabelValue\":\"963405\"}},{\"attributeHeader\":{\"labelValue\":\"963407\",\"primaryLabelValue\":\"963407\"}},{\"attributeHeader\":{\"labelValue\":\"963409\",\"primaryLabelValue\":\"963409\"}},{\"attributeHeader\":{\"labelValue\":\"963411\",\"primaryLabelValue\":\"963411\"}},{\"attributeHeader\":{\"labelValue\":\"963413\",\"primaryLabelValue\":\"963413\"}},{\"attributeHeader\":{\"labelValue\":\"963415\",\"primaryLabelValue\":\"963415\"}},{\"attributeHeader\":{\"labelValue\":\"963417\",\"primaryLabelValue\":\"963417\"}},{\"attributeHeader\":{\"labelValue\":\"963419\",\"primaryLabelValue\":\"963419\"}},{\"attributeHeader\":{\"labelValue\":\"963421\",\"primaryLabelValue\":\"963421\"}},{\"attributeHeader\":{\"labelValue\":\"963423\",\"primaryLabelValue\":\"963423\"}},{\"attributeHeader\":{\"labelValue\":\"963425\",\"primaryLabelValue\":\"963425\"}},{\"attributeHeader\":{\"labelValue\":\"963427\",\"primaryLabelValue\":\"963427\"}},{\"attributeHeader\":{\"labelValue\":\"963429\",\"primaryLabelValue\":\"963429\"}},{\"attributeHeader\":{\"labelValue\":\"963431\",\"primaryLabelValue\":\"963431\"}},{\"attributeHeader\":{\"labelValue\":\"963433\",\"primaryLabelValue\":\"963433\"}},{\"attributeHeader\":{\"labelValue\":\"963435\",\"primaryLabelValue\":\"963435\"}},{\"attributeHeader\":{\"labelValue\":\"963437\",\"primaryLabelValue\":\"963437\"}},{\"attributeHeader\":{\"labelValue\":\"963441\",\"primaryLabelValue\":\"963441\"}},{\"attributeHeader\":{\"labelValue\":\"963443\",\"primaryLabelValue\":\"963443\"}},{\"attributeHeader\":{\"labelValue\":\"963445\",\"primaryLabelValue\":\"963445\"}},{\"attributeHeader\":{\"labelValue\":\"963447\",\"primaryLabelValue\":\"963447\"}},{\"attributeHeader\":{\"labelValue\":\"963449\",\"primaryLabelValue\":\"963449\"}},{\"attributeHeader\":{\"labelValue\":\"963451\",\"primaryLabelValue\":\"963451\"}},{\"attributeHeader\":{\"labelValue\":\"963453\",\"primaryLabelValue\":\"963453\"}},{\"attributeHeader\":{\"labelValue\":\"963455\",\"primaryLabelValue\":\"963455\"}},{\"attributeHeader\":{\"labelValue\":\"963457\",\"primaryLabelValue\":\"963457\"}},{\"attributeHeader\":{\"labelValue\":\"963459\",\"primaryLabelValue\":\"963459\"}},{\"attributeHeader\":{\"labelValue\":\"963461\",\"primaryLabelValue\":\"963461\"}},{\"attributeHeader\":{\"labelValue\":\"963463\",\"primaryLabelValue\":\"963463\"}},{\"attributeHeader\":{\"labelValue\":\"963465\",\"primaryLabelValue\":\"963465\"}},{\"attributeHeader\":{\"labelValue\":\"963467\",\"primaryLabelValue\":\"963467\"}},{\"attributeHeader\":{\"labelValue\":\"963469\",\"primaryLabelValue\":\"963469\"}},{\"attributeHeader\":{\"labelValue\":\"963471\",\"primaryLabelValue\":\"963471\"}},{\"attributeHeader\":{\"labelValue\":\"963473\",\"primaryLabelValue\":\"963473\"}},{\"attributeHeader\":{\"labelValue\":\"963475\",\"primaryLabelValue\":\"963475\"}},{\"attributeHeader\":{\"labelValue\":\"963477\",\"primaryLabelValue\":\"963477\"}},{\"attributeHeader\":{\"labelValue\":\"963479\",\"primaryLabelValue\":\"963479\"}},{\"attributeHeader\":{\"labelValue\":\"963481\",\"primaryLabelValue\":\"963481\"}},{\"attributeHeader\":{\"labelValue\":\"963483\",\"primaryLabelValue\":\"963483\"}},{\"attributeHeader\":{\"labelValue\":\"963485\",\"primaryLabelValue\":\"963485\"}},{\"attributeHeader\":{\"labelValue\":\"963487\",\"primaryLabelValue\":\"963487\"}},{\"attributeHeader\":{\"labelValue\":\"963489\",\"primaryLabelValue\":\"963489\"}},{\"attributeHeader\":{\"labelValue\":\"963491\",\"primaryLabelValue\":\"963491\"}},{\"attributeHeader\":{\"labelValue\":\"963493\",\"primaryLabelValue\":\"963493\"}},{\"attributeHeader\":{\"labelValue\":\"963495\",\"primaryLabelValue\":\"963495\"}},{\"attributeHeader\":{\"labelValue\":\"963497\",\"primaryLabelValue\":\"963497\"}},{\"attributeHeader\":{\"labelValue\":\"963499\",\"primaryLabelValue\":\"963499\"}},{\"attributeHeader\":{\"labelValue\":\"963501\",\"primaryLabelValue\":\"963501\"}},{\"attributeHeader\":{\"labelValue\":\"963503\",\"primaryLabelValue\":\"963503\"}},{\"attributeHeader\":{\"labelValue\":\"963507\",\"primaryLabelValue\":\"963507\"}},{\"attributeHeader\":{\"labelValue\":\"963509\",\"primaryLabelValue\":\"963509\"}},{\"attributeHeader\":{\"labelValue\":\"963511\",\"primaryLabelValue\":\"963511\"}},{\"attributeHeader\":{\"labelValue\":\"963513\",\"primaryLabelValue\":\"963513\"}},{\"attributeHeader\":{\"labelValue\":\"963515\",\"primaryLabelValue\":\"963515\"}},{\"attributeHeader\":{\"labelValue\":\"963517\",\"primaryLabelValue\":\"963517\"}},{\"attributeHeader\":{\"labelValue\":\"963519\",\"primaryLabelValue\":\"963519\"}},{\"attributeHeader\":{\"labelValue\":\"963521\",\"primaryLabelValue\":\"963521\"}},{\"attributeHeader\":{\"labelValue\":\"963523\",\"primaryLabelValue\":\"963523\"}},{\"attributeHeader\":{\"labelValue\":\"963525\",\"primaryLabelValue\":\"963525\"}},{\"attributeHeader\":{\"labelValue\":\"963527\",\"primaryLabelValue\":\"963527\"}},{\"attributeHeader\":{\"labelValue\":\"963529\",\"primaryLabelValue\":\"963529\"}},{\"attributeHeader\":{\"labelValue\":\"963531\",\"primaryLabelValue\":\"963531\"}},{\"attributeHeader\":{\"labelValue\":\"963533\",\"primaryLabelValue\":\"963533\"}},{\"attributeHeader\":{\"labelValue\":\"963535\",\"primaryLabelValue\":\"963535\"}},{\"attributeHeader\":{\"labelValue\":\"963537\",\"primaryLabelValue\":\"963537\"}},{\"attributeHeader\":{\"labelValue\":\"963539\",\"primaryLabelValue\":\"963539\"}},{\"attributeHeader\":{\"labelValue\":\"963541\",\"primaryLabelValue\":\"963541\"}},{\"attributeHeader\":{\"labelValue\":\"963543\",\"primaryLabelValue\":\"963543\"}},{\"attributeHeader\":{\"labelValue\":\"963545\",\"primaryLabelValue\":\"963545\"}},{\"attributeHeader\":{\"labelValue\":\"963547\",\"primaryLabelValue\":\"963547\"}},{\"attributeHeader\":{\"labelValue\":\"963549\",\"primaryLabelValue\":\"963549\"}},{\"attributeHeader\":{\"labelValue\":\"963551\",\"primaryLabelValue\":\"963551\"}},{\"attributeHeader\":{\"labelValue\":\"963553\",\"primaryLabelValue\":\"963553\"}},{\"attributeHeader\":{\"labelValue\":\"963555\",\"primaryLabelValue\":\"963555\"}},{\"attributeHeader\":{\"labelValue\":\"963559\",\"primaryLabelValue\":\"963559\"}},{\"attributeHeader\":{\"labelValue\":\"963563\",\"primaryLabelValue\":\"963563\"}},{\"attributeHeader\":{\"labelValue\":\"963565\",\"primaryLabelValue\":\"963565\"}},{\"attributeHeader\":{\"labelValue\":\"963567\",\"primaryLabelValue\":\"963567\"}},{\"attributeHeader\":{\"labelValue\":\"963569\",\"primaryLabelValue\":\"963569\"}},{\"attributeHeader\":{\"labelValue\":\"963571\",\"primaryLabelValue\":\"963571\"}},{\"attributeHeader\":{\"labelValue\":\"963573\",\"primaryLabelValue\":\"963573\"}},{\"attributeHeader\":{\"labelValue\":\"963575\",\"primaryLabelValue\":\"963575\"}},{\"attributeHeader\":{\"labelValue\":\"963577\",\"primaryLabelValue\":\"963577\"}},{\"attributeHeader\":{\"labelValue\":\"963579\",\"primaryLabelValue\":\"963579\"}},{\"attributeHeader\":{\"labelValue\":\"963583\",\"primaryLabelValue\":\"963583\"}},{\"attributeHeader\":{\"labelValue\":\"963585\",\"primaryLabelValue\":\"963585\"}},{\"attributeHeader\":{\"labelValue\":\"963587\",\"primaryLabelValue\":\"963587\"}},{\"attributeHeader\":{\"labelValue\":\"963589\",\"primaryLabelValue\":\"963589\"}},{\"attributeHeader\":{\"labelValue\":\"963591\",\"primaryLabelValue\":\"963591\"}},{\"attributeHeader\":{\"labelValue\":\"963593\",\"primaryLabelValue\":\"963593\"}},{\"attributeHeader\":{\"labelValue\":\"963595\",\"primaryLabelValue\":\"963595\"}},{\"attributeHeader\":{\"labelValue\":\"963597\",\"primaryLabelValue\":\"963597\"}},{\"attributeHeader\":{\"labelValue\":\"963599\",\"primaryLabelValue\":\"963599\"}},{\"attributeHeader\":{\"labelValue\":\"963601\",\"primaryLabelValue\":\"963601\"}},{\"attributeHeader\":{\"labelValue\":\"963603\",\"primaryLabelValue\":\"963603\"}},{\"attributeHeader\":{\"labelValue\":\"963605\",\"primaryLabelValue\":\"963605\"}},{\"attributeHeader\":{\"labelValue\":\"963607\",\"primaryLabelValue\":\"963607\"}},{\"attributeHeader\":{\"labelValue\":\"963609\",\"primaryLabelValue\":\"963609\"}},{\"attributeHeader\":{\"labelValue\":\"963611\",\"primaryLabelValue\":\"963611\"}},{\"attributeHeader\":{\"labelValue\":\"963613\",\"primaryLabelValue\":\"963613\"}},{\"attributeHeader\":{\"labelValue\":\"963615\",\"primaryLabelValue\":\"963615\"}},{\"attributeHeader\":{\"labelValue\":\"963617\",\"primaryLabelValue\":\"963617\"}},{\"attributeHeader\":{\"labelValue\":\"963619\",\"primaryLabelValue\":\"963619\"}},{\"attributeHeader\":{\"labelValue\":\"963621\",\"primaryLabelValue\":\"963621\"}},{\"attributeHeader\":{\"labelValue\":\"963625\",\"primaryLabelValue\":\"963625\"}},{\"attributeHeader\":{\"labelValue\":\"963627\",\"primaryLabelValue\":\"963627\"}},{\"attributeHeader\":{\"labelValue\":\"963631\",\"primaryLabelValue\":\"963631\"}},{\"attributeHeader\":{\"labelValue\":\"963633\",\"primaryLabelValue\":\"963633\"}},{\"attributeHeader\":{\"labelValue\":\"963635\",\"primaryLabelValue\":\"963635\"}},{\"attributeHeader\":{\"labelValue\":\"963637\",\"primaryLabelValue\":\"963637\"}},{\"attributeHeader\":{\"labelValue\":\"963639\",\"primaryLabelValue\":\"963639\"}},{\"attributeHeader\":{\"labelValue\":\"963643\",\"primaryLabelValue\":\"963643\"}},{\"attributeHeader\":{\"labelValue\":\"963647\",\"primaryLabelValue\":\"963647\"}},{\"attributeHeader\":{\"labelValue\":\"963649\",\"primaryLabelValue\":\"963649\"}},{\"attributeHeader\":{\"labelValue\":\"963651\",\"primaryLabelValue\":\"963651\"}},{\"attributeHeader\":{\"labelValue\":\"963653\",\"primaryLabelValue\":\"963653\"}},{\"attributeHeader\":{\"labelValue\":\"963655\",\"primaryLabelValue\":\"963655\"}},{\"attributeHeader\":{\"labelValue\":\"963657\",\"primaryLabelValue\":\"963657\"}},{\"attributeHeader\":{\"labelValue\":\"963659\",\"primaryLabelValue\":\"963659\"}},{\"attributeHeader\":{\"labelValue\":\"963661\",\"primaryLabelValue\":\"963661\"}},{\"attributeHeader\":{\"labelValue\":\"963663\",\"primaryLabelValue\":\"963663\"}},{\"attributeHeader\":{\"labelValue\":\"963665\",\"primaryLabelValue\":\"963665\"}},{\"attributeHeader\":{\"labelValue\":\"963667\",\"primaryLabelValue\":\"963667\"}},{\"attributeHeader\":{\"labelValue\":\"963669\",\"primaryLabelValue\":\"963669\"}},{\"attributeHeader\":{\"labelValue\":\"963671\",\"primaryLabelValue\":\"963671\"}},{\"attributeHeader\":{\"labelValue\":\"963673\",\"primaryLabelValue\":\"963673\"}},{\"attributeHeader\":{\"labelValue\":\"963675\",\"primaryLabelValue\":\"963675\"}},{\"attributeHeader\":{\"labelValue\":\"963677\",\"primaryLabelValue\":\"963677\"}},{\"attributeHeader\":{\"labelValue\":\"963679\",\"primaryLabelValue\":\"963679\"}},{\"attributeHeader\":{\"labelValue\":\"963681\",\"primaryLabelValue\":\"963681\"}},{\"attributeHeader\":{\"labelValue\":\"963683\",\"primaryLabelValue\":\"963683\"}},{\"attributeHeader\":{\"labelValue\":\"963685\",\"primaryLabelValue\":\"963685\"}},{\"attributeHeader\":{\"labelValue\":\"963687\",\"primaryLabelValue\":\"963687\"}},{\"attributeHeader\":{\"labelValue\":\"963689\",\"primaryLabelValue\":\"963689\"}},{\"attributeHeader\":{\"labelValue\":\"963691\",\"primaryLabelValue\":\"963691\"}},{\"attributeHeader\":{\"labelValue\":\"963693\",\"primaryLabelValue\":\"963693\"}},{\"attributeHeader\":{\"labelValue\":\"963695\",\"primaryLabelValue\":\"963695\"}},{\"attributeHeader\":{\"labelValue\":\"963697\",\"primaryLabelValue\":\"963697\"}},{\"attributeHeader\":{\"labelValue\":\"963701\",\"primaryLabelValue\":\"963701\"}},{\"attributeHeader\":{\"labelValue\":\"963703\",\"primaryLabelValue\":\"963703\"}},{\"attributeHeader\":{\"labelValue\":\"963709\",\"primaryLabelValue\":\"963709\"}},{\"attributeHeader\":{\"labelValue\":\"963711\",\"primaryLabelValue\":\"963711\"}},{\"attributeHeader\":{\"labelValue\":\"963713\",\"primaryLabelValue\":\"963713\"}},{\"attributeHeader\":{\"labelValue\":\"963715\",\"primaryLabelValue\":\"963715\"}},{\"attributeHeader\":{\"labelValue\":\"963717\",\"primaryLabelValue\":\"963717\"}},{\"attributeHeader\":{\"labelValue\":\"963719\",\"primaryLabelValue\":\"963719\"}},{\"attributeHeader\":{\"labelValue\":\"963721\",\"primaryLabelValue\":\"963721\"}},{\"attributeHeader\":{\"labelValue\":\"963723\",\"primaryLabelValue\":\"963723\"}},{\"attributeHeader\":{\"labelValue\":\"963725\",\"primaryLabelValue\":\"963725\"}},{\"attributeHeader\":{\"labelValue\":\"963727\",\"primaryLabelValue\":\"963727\"}},{\"attributeHeader\":{\"labelValue\":\"963731\",\"primaryLabelValue\":\"963731\"}},{\"attributeHeader\":{\"labelValue\":\"963733\",\"primaryLabelValue\":\"963733\"}},{\"attributeHeader\":{\"labelValue\":\"963735\",\"primaryLabelValue\":\"963735\"}},{\"attributeHeader\":{\"labelValue\":\"963737\",\"primaryLabelValue\":\"963737\"}},{\"attributeHeader\":{\"labelValue\":\"963739\",\"primaryLabelValue\":\"963739\"}},{\"attributeHeader\":{\"labelValue\":\"963741\",\"primaryLabelValue\":\"963741\"}},{\"attributeHeader\":{\"labelValue\":\"963743\",\"primaryLabelValue\":\"963743\"}},{\"attributeHeader\":{\"labelValue\":\"963745\",\"primaryLabelValue\":\"963745\"}},{\"attributeHeader\":{\"labelValue\":\"963747\",\"primaryLabelValue\":\"963747\"}},{\"attributeHeader\":{\"labelValue\":\"963749\",\"primaryLabelValue\":\"963749\"}},{\"attributeHeader\":{\"labelValue\":\"963751\",\"primaryLabelValue\":\"963751\"}},{\"attributeHeader\":{\"labelValue\":\"963753\",\"primaryLabelValue\":\"963753\"}},{\"attributeHeader\":{\"labelValue\":\"963755\",\"primaryLabelValue\":\"963755\"}},{\"attributeHeader\":{\"labelValue\":\"963757\",\"primaryLabelValue\":\"963757\"}},{\"attributeHeader\":{\"labelValue\":\"963759\",\"primaryLabelValue\":\"963759\"}},{\"attributeHeader\":{\"labelValue\":\"963761\",\"primaryLabelValue\":\"963761\"}},{\"attributeHeader\":{\"labelValue\":\"963765\",\"primaryLabelValue\":\"963765\"}},{\"attributeHeader\":{\"labelValue\":\"963767\",\"primaryLabelValue\":\"963767\"}},{\"attributeHeader\":{\"labelValue\":\"963769\",\"primaryLabelValue\":\"963769\"}},{\"attributeHeader\":{\"labelValue\":\"963771\",\"primaryLabelValue\":\"963771\"}},{\"attributeHeader\":{\"labelValue\":\"963773\",\"primaryLabelValue\":\"963773\"}},{\"attributeHeader\":{\"labelValue\":\"963775\",\"primaryLabelValue\":\"963775\"}},{\"attributeHeader\":{\"labelValue\":\"963777\",\"primaryLabelValue\":\"963777\"}},{\"attributeHeader\":{\"labelValue\":\"963779\",\"primaryLabelValue\":\"963779\"}},{\"attributeHeader\":{\"labelValue\":\"963781\",\"primaryLabelValue\":\"963781\"}},{\"attributeHeader\":{\"labelValue\":\"963783\",\"primaryLabelValue\":\"963783\"}},{\"attributeHeader\":{\"labelValue\":\"963785\",\"primaryLabelValue\":\"963785\"}},{\"attributeHeader\":{\"labelValue\":\"963787\",\"primaryLabelValue\":\"963787\"}},{\"attributeHeader\":{\"labelValue\":\"963789\",\"primaryLabelValue\":\"963789\"}},{\"attributeHeader\":{\"labelValue\":\"963791\",\"primaryLabelValue\":\"963791\"}},{\"attributeHeader\":{\"labelValue\":\"963793\",\"primaryLabelValue\":\"963793\"}},{\"attributeHeader\":{\"labelValue\":\"963795\",\"primaryLabelValue\":\"963795\"}},{\"attributeHeader\":{\"labelValue\":\"963797\",\"primaryLabelValue\":\"963797\"}},{\"attributeHeader\":{\"labelValue\":\"963799\",\"primaryLabelValue\":\"963799\"}},{\"attributeHeader\":{\"labelValue\":\"963801\",\"primaryLabelValue\":\"963801\"}},{\"attributeHeader\":{\"labelValue\":\"963803\",\"primaryLabelValue\":\"963803\"}},{\"attributeHeader\":{\"labelValue\":\"963805\",\"primaryLabelValue\":\"963805\"}},{\"attributeHeader\":{\"labelValue\":\"963807\",\"primaryLabelValue\":\"963807\"}},{\"attributeHeader\":{\"labelValue\":\"963811\",\"primaryLabelValue\":\"963811\"}},{\"attributeHeader\":{\"labelValue\":\"963813\",\"primaryLabelValue\":\"963813\"}},{\"attributeHeader\":{\"labelValue\":\"963817\",\"primaryLabelValue\":\"963817\"}},{\"attributeHeader\":{\"labelValue\":\"963819\",\"primaryLabelValue\":\"963819\"}},{\"attributeHeader\":{\"labelValue\":\"963821\",\"primaryLabelValue\":\"963821\"}},{\"attributeHeader\":{\"labelValue\":\"963823\",\"primaryLabelValue\":\"963823\"}},{\"attributeHeader\":{\"labelValue\":\"963825\",\"primaryLabelValue\":\"963825\"}},{\"attributeHeader\":{\"labelValue\":\"963829\",\"primaryLabelValue\":\"963829\"}},{\"attributeHeader\":{\"labelValue\":\"963831\",\"primaryLabelValue\":\"963831\"}},{\"attributeHeader\":{\"labelValue\":\"963833\",\"primaryLabelValue\":\"963833\"}},{\"attributeHeader\":{\"labelValue\":\"963835\",\"primaryLabelValue\":\"963835\"}},{\"attributeHeader\":{\"labelValue\":\"963837\",\"primaryLabelValue\":\"963837\"}},{\"attributeHeader\":{\"labelValue\":\"963839\",\"primaryLabelValue\":\"963839\"}},{\"attributeHeader\":{\"labelValue\":\"963841\",\"primaryLabelValue\":\"963841\"}},{\"attributeHeader\":{\"labelValue\":\"963843\",\"primaryLabelValue\":\"963843\"}},{\"attributeHeader\":{\"labelValue\":\"963845\",\"primaryLabelValue\":\"963845\"}},{\"attributeHeader\":{\"labelValue\":\"963847\",\"primaryLabelValue\":\"963847\"}},{\"attributeHeader\":{\"labelValue\":\"963849\",\"primaryLabelValue\":\"963849\"}},{\"attributeHeader\":{\"labelValue\":\"963851\",\"primaryLabelValue\":\"963851\"}},{\"attributeHeader\":{\"labelValue\":\"963855\",\"primaryLabelValue\":\"963855\"}},{\"attributeHeader\":{\"labelValue\":\"963857\",\"primaryLabelValue\":\"963857\"}},{\"attributeHeader\":{\"labelValue\":\"963859\",\"primaryLabelValue\":\"963859\"}},{\"attributeHeader\":{\"labelValue\":\"963863\",\"primaryLabelValue\":\"963863\"}},{\"attributeHeader\":{\"labelValue\":\"963865\",\"primaryLabelValue\":\"963865\"}},{\"attributeHeader\":{\"labelValue\":\"963867\",\"primaryLabelValue\":\"963867\"}},{\"attributeHeader\":{\"labelValue\":\"963869\",\"primaryLabelValue\":\"963869\"}},{\"attributeHeader\":{\"labelValue\":\"963871\",\"primaryLabelValue\":\"963871\"}},{\"attributeHeader\":{\"labelValue\":\"963873\",\"primaryLabelValue\":\"963873\"}},{\"attributeHeader\":{\"labelValue\":\"963875\",\"primaryLabelValue\":\"963875\"}},{\"attributeHeader\":{\"labelValue\":\"963877\",\"primaryLabelValue\":\"963877\"}},{\"attributeHeader\":{\"labelValue\":\"963879\",\"primaryLabelValue\":\"963879\"}},{\"attributeHeader\":{\"labelValue\":\"963881\",\"primaryLabelValue\":\"963881\"}},{\"attributeHeader\":{\"labelValue\":\"963883\",\"primaryLabelValue\":\"963883\"}},{\"attributeHeader\":{\"labelValue\":\"963885\",\"primaryLabelValue\":\"963885\"}},{\"attributeHeader\":{\"labelValue\":\"963887\",\"primaryLabelValue\":\"963887\"}},{\"attributeHeader\":{\"labelValue\":\"963889\",\"primaryLabelValue\":\"963889\"}},{\"attributeHeader\":{\"labelValue\":\"963891\",\"primaryLabelValue\":\"963891\"}},{\"attributeHeader\":{\"labelValue\":\"963893\",\"primaryLabelValue\":\"963893\"}},{\"attributeHeader\":{\"labelValue\":\"963895\",\"primaryLabelValue\":\"963895\"}},{\"attributeHeader\":{\"labelValue\":\"963897\",\"primaryLabelValue\":\"963897\"}},{\"attributeHeader\":{\"labelValue\":\"963899\",\"primaryLabelValue\":\"963899\"}},{\"attributeHeader\":{\"labelValue\":\"963901\",\"primaryLabelValue\":\"963901\"}},{\"attributeHeader\":{\"labelValue\":\"963903\",\"primaryLabelValue\":\"963903\"}},{\"attributeHeader\":{\"labelValue\":\"963905\",\"primaryLabelValue\":\"963905\"}},{\"attributeHeader\":{\"labelValue\":\"963907\",\"primaryLabelValue\":\"963907\"}},{\"attributeHeader\":{\"labelValue\":\"963909\",\"primaryLabelValue\":\"963909\"}},{\"attributeHeader\":{\"labelValue\":\"963911\",\"primaryLabelValue\":\"963911\"}},{\"attributeHeader\":{\"labelValue\":\"963913\",\"primaryLabelValue\":\"963913\"}},{\"attributeHeader\":{\"labelValue\":\"963915\",\"primaryLabelValue\":\"963915\"}},{\"attributeHeader\":{\"labelValue\":\"963917\",\"primaryLabelValue\":\"963917\"}},{\"attributeHeader\":{\"labelValue\":\"963919\",\"primaryLabelValue\":\"963919\"}},{\"attributeHeader\":{\"labelValue\":\"963921\",\"primaryLabelValue\":\"963921\"}},{\"attributeHeader\":{\"labelValue\":\"963923\",\"primaryLabelValue\":\"963923\"}},{\"attributeHeader\":{\"labelValue\":\"963925\",\"primaryLabelValue\":\"963925\"}},{\"attributeHeader\":{\"labelValue\":\"963927\",\"primaryLabelValue\":\"963927\"}},{\"attributeHeader\":{\"labelValue\":\"963929\",\"primaryLabelValue\":\"963929\"}},{\"attributeHeader\":{\"labelValue\":\"963931\",\"primaryLabelValue\":\"963931\"}},{\"attributeHeader\":{\"labelValue\":\"963933\",\"primaryLabelValue\":\"963933\"}},{\"attributeHeader\":{\"labelValue\":\"963935\",\"primaryLabelValue\":\"963935\"}},{\"attributeHeader\":{\"labelValue\":\"963937\",\"primaryLabelValue\":\"963937\"}},{\"attributeHeader\":{\"labelValue\":\"963939\",\"primaryLabelValue\":\"963939\"}},{\"attributeHeader\":{\"labelValue\":\"963941\",\"primaryLabelValue\":\"963941\"}},{\"attributeHeader\":{\"labelValue\":\"963943\",\"primaryLabelValue\":\"963943\"}},{\"attributeHeader\":{\"labelValue\":\"963947\",\"primaryLabelValue\":\"963947\"}},{\"attributeHeader\":{\"labelValue\":\"963949\",\"primaryLabelValue\":\"963949\"}},{\"attributeHeader\":{\"labelValue\":\"963951\",\"primaryLabelValue\":\"963951\"}},{\"attributeHeader\":{\"labelValue\":\"963953\",\"primaryLabelValue\":\"963953\"}},{\"attributeHeader\":{\"labelValue\":\"963955\",\"primaryLabelValue\":\"963955\"}},{\"attributeHeader\":{\"labelValue\":\"963959\",\"primaryLabelValue\":\"963959\"}},{\"attributeHeader\":{\"labelValue\":\"963961\",\"primaryLabelValue\":\"963961\"}},{\"attributeHeader\":{\"labelValue\":\"963963\",\"primaryLabelValue\":\"963963\"}},{\"attributeHeader\":{\"labelValue\":\"963965\",\"primaryLabelValue\":\"963965\"}},{\"attributeHeader\":{\"labelValue\":\"963967\",\"primaryLabelValue\":\"963967\"}},{\"attributeHeader\":{\"labelValue\":\"963969\",\"primaryLabelValue\":\"963969\"}},{\"attributeHeader\":{\"labelValue\":\"963973\",\"primaryLabelValue\":\"963973\"}},{\"attributeHeader\":{\"labelValue\":\"963975\",\"primaryLabelValue\":\"963975\"}},{\"attributeHeader\":{\"labelValue\":\"963977\",\"primaryLabelValue\":\"963977\"}},{\"attributeHeader\":{\"labelValue\":\"963979\",\"primaryLabelValue\":\"963979\"}},{\"attributeHeader\":{\"labelValue\":\"963981\",\"primaryLabelValue\":\"963981\"}},{\"attributeHeader\":{\"labelValue\":\"963983\",\"primaryLabelValue\":\"963983\"}},{\"attributeHeader\":{\"labelValue\":\"963985\",\"primaryLabelValue\":\"963985\"}},{\"attributeHeader\":{\"labelValue\":\"963987\",\"primaryLabelValue\":\"963987\"}},{\"attributeHeader\":{\"labelValue\":\"963989\",\"primaryLabelValue\":\"963989\"}},{\"attributeHeader\":{\"labelValue\":\"963991\",\"primaryLabelValue\":\"963991\"}},{\"attributeHeader\":{\"labelValue\":\"963993\",\"primaryLabelValue\":\"963993\"}},{\"attributeHeader\":{\"labelValue\":\"963995\",\"primaryLabelValue\":\"963995\"}},{\"attributeHeader\":{\"labelValue\":\"963997\",\"primaryLabelValue\":\"963997\"}},{\"attributeHeader\":{\"labelValue\":\"963999\",\"primaryLabelValue\":\"963999\"}},{\"attributeHeader\":{\"labelValue\":\"964001\",\"primaryLabelValue\":\"964001\"}},{\"attributeHeader\":{\"labelValue\":\"964003\",\"primaryLabelValue\":\"964003\"}},{\"attributeHeader\":{\"labelValue\":\"964005\",\"primaryLabelValue\":\"964005\"}},{\"attributeHeader\":{\"labelValue\":\"964009\",\"primaryLabelValue\":\"964009\"}},{\"attributeHeader\":{\"labelValue\":\"964011\",\"primaryLabelValue\":\"964011\"}},{\"attributeHeader\":{\"labelValue\":\"964013\",\"primaryLabelValue\":\"964013\"}},{\"attributeHeader\":{\"labelValue\":\"964015\",\"primaryLabelValue\":\"964015\"}},{\"attributeHeader\":{\"labelValue\":\"964017\",\"primaryLabelValue\":\"964017\"}},{\"attributeHeader\":{\"labelValue\":\"964019\",\"primaryLabelValue\":\"964019\"}},{\"attributeHeader\":{\"labelValue\":\"964021\",\"primaryLabelValue\":\"964021\"}},{\"attributeHeader\":{\"labelValue\":\"964023\",\"primaryLabelValue\":\"964023\"}},{\"attributeHeader\":{\"labelValue\":\"964025\",\"primaryLabelValue\":\"964025\"}},{\"attributeHeader\":{\"labelValue\":\"964027\",\"primaryLabelValue\":\"964027\"}},{\"attributeHeader\":{\"labelValue\":\"964029\",\"primaryLabelValue\":\"964029\"}},{\"attributeHeader\":{\"labelValue\":\"964031\",\"primaryLabelValue\":\"964031\"}},{\"attributeHeader\":{\"labelValue\":\"964033\",\"primaryLabelValue\":\"964033\"}},{\"attributeHeader\":{\"labelValue\":\"964035\",\"primaryLabelValue\":\"964035\"}},{\"attributeHeader\":{\"labelValue\":\"964037\",\"primaryLabelValue\":\"964037\"}},{\"attributeHeader\":{\"labelValue\":\"964039\",\"primaryLabelValue\":\"964039\"}},{\"attributeHeader\":{\"labelValue\":\"964045\",\"primaryLabelValue\":\"964045\"}},{\"attributeHeader\":{\"labelValue\":\"964047\",\"primaryLabelValue\":\"964047\"}},{\"attributeHeader\":{\"labelValue\":\"964049\",\"primaryLabelValue\":\"964049\"}},{\"attributeHeader\":{\"labelValue\":\"964051\",\"primaryLabelValue\":\"964051\"}},{\"attributeHeader\":{\"labelValue\":\"964053\",\"primaryLabelValue\":\"964053\"}},{\"attributeHeader\":{\"labelValue\":\"964055\",\"primaryLabelValue\":\"964055\"}},{\"attributeHeader\":{\"labelValue\":\"964057\",\"primaryLabelValue\":\"964057\"}},{\"attributeHeader\":{\"labelValue\":\"964059\",\"primaryLabelValue\":\"964059\"}},{\"attributeHeader\":{\"labelValue\":\"964061\",\"primaryLabelValue\":\"964061\"}},{\"attributeHeader\":{\"labelValue\":\"964063\",\"primaryLabelValue\":\"964063\"}},{\"attributeHeader\":{\"labelValue\":\"964065\",\"primaryLabelValue\":\"964065\"}},{\"attributeHeader\":{\"labelValue\":\"964067\",\"primaryLabelValue\":\"964067\"}},{\"attributeHeader\":{\"labelValue\":\"964071\",\"primaryLabelValue\":\"964071\"}},{\"attributeHeader\":{\"labelValue\":\"964073\",\"primaryLabelValue\":\"964073\"}},{\"attributeHeader\":{\"labelValue\":\"964075\",\"primaryLabelValue\":\"964075\"}},{\"attributeHeader\":{\"labelValue\":\"964077\",\"primaryLabelValue\":\"964077\"}},{\"attributeHeader\":{\"labelValue\":\"964079\",\"primaryLabelValue\":\"964079\"}},{\"attributeHeader\":{\"labelValue\":\"964083\",\"primaryLabelValue\":\"964083\"}},{\"attributeHeader\":{\"labelValue\":\"964084\",\"primaryLabelValue\":\"964084\"}},{\"attributeHeader\":{\"labelValue\":\"964085\",\"primaryLabelValue\":\"964085\"}},{\"attributeHeader\":{\"labelValue\":\"964088\",\"primaryLabelValue\":\"964088\"}},{\"attributeHeader\":{\"labelValue\":\"964089\",\"primaryLabelValue\":\"964089\"}},{\"attributeHeader\":{\"labelValue\":\"964090\",\"primaryLabelValue\":\"964090\"}},{\"attributeHeader\":{\"labelValue\":\"964091\",\"primaryLabelValue\":\"964091\"}},{\"attributeHeader\":{\"labelValue\":\"964092\",\"primaryLabelValue\":\"964092\"}},{\"attributeHeader\":{\"labelValue\":\"964093\",\"primaryLabelValue\":\"964093\"}},{\"attributeHeader\":{\"labelValue\":\"964095\",\"primaryLabelValue\":\"964095\"}},{\"attributeHeader\":{\"labelValue\":\"964096\",\"primaryLabelValue\":\"964096\"}},{\"attributeHeader\":{\"labelValue\":\"964097\",\"primaryLabelValue\":\"964097\"}},{\"attributeHeader\":{\"labelValue\":\"964098\",\"primaryLabelValue\":\"964098\"}},{\"attributeHeader\":{\"labelValue\":\"964100\",\"primaryLabelValue\":\"964100\"}},{\"attributeHeader\":{\"labelValue\":\"964102\",\"primaryLabelValue\":\"964102\"}},{\"attributeHeader\":{\"labelValue\":\"964103\",\"primaryLabelValue\":\"964103\"}},{\"attributeHeader\":{\"labelValue\":\"964104\",\"primaryLabelValue\":\"964104\"}},{\"attributeHeader\":{\"labelValue\":\"964105\",\"primaryLabelValue\":\"964105\"}},{\"attributeHeader\":{\"labelValue\":\"964107\",\"primaryLabelValue\":\"964107\"}},{\"attributeHeader\":{\"labelValue\":\"964108\",\"primaryLabelValue\":\"964108\"}},{\"attributeHeader\":{\"labelValue\":\"964110\",\"primaryLabelValue\":\"964110\"}},{\"attributeHeader\":{\"labelValue\":\"964111\",\"primaryLabelValue\":\"964111\"}},{\"attributeHeader\":{\"labelValue\":\"964112\",\"primaryLabelValue\":\"964112\"}},{\"attributeHeader\":{\"labelValue\":\"964113\",\"primaryLabelValue\":\"964113\"}},{\"attributeHeader\":{\"labelValue\":\"964114\",\"primaryLabelValue\":\"964114\"}},{\"attributeHeader\":{\"labelValue\":\"964115\",\"primaryLabelValue\":\"964115\"}},{\"attributeHeader\":{\"labelValue\":\"964117\",\"primaryLabelValue\":\"964117\"}},{\"attributeHeader\":{\"labelValue\":\"964119\",\"primaryLabelValue\":\"964119\"}},{\"attributeHeader\":{\"labelValue\":\"964121\",\"primaryLabelValue\":\"964121\"}},{\"attributeHeader\":{\"labelValue\":\"964123\",\"primaryLabelValue\":\"964123\"}},{\"attributeHeader\":{\"labelValue\":\"964127\",\"primaryLabelValue\":\"964127\"}},{\"attributeHeader\":{\"labelValue\":\"964128\",\"primaryLabelValue\":\"964128\"}},{\"attributeHeader\":{\"labelValue\":\"964129\",\"primaryLabelValue\":\"964129\"}},{\"attributeHeader\":{\"labelValue\":\"964131\",\"primaryLabelValue\":\"964131\"}},{\"attributeHeader\":{\"labelValue\":\"964132\",\"primaryLabelValue\":\"964132\"}},{\"attributeHeader\":{\"labelValue\":\"964133\",\"primaryLabelValue\":\"964133\"}},{\"attributeHeader\":{\"labelValue\":\"964134\",\"primaryLabelValue\":\"964134\"}},{\"attributeHeader\":{\"labelValue\":\"964135\",\"primaryLabelValue\":\"964135\"}},{\"attributeHeader\":{\"labelValue\":\"964138\",\"primaryLabelValue\":\"964138\"}},{\"attributeHeader\":{\"labelValue\":\"964139\",\"primaryLabelValue\":\"964139\"}},{\"attributeHeader\":{\"labelValue\":\"964140\",\"primaryLabelValue\":\"964140\"}},{\"attributeHeader\":{\"labelValue\":\"964142\",\"primaryLabelValue\":\"964142\"}},{\"attributeHeader\":{\"labelValue\":\"964144\",\"primaryLabelValue\":\"964144\"}},{\"attributeHeader\":{\"labelValue\":\"964145\",\"primaryLabelValue\":\"964145\"}},{\"attributeHeader\":{\"labelValue\":\"964147\",\"primaryLabelValue\":\"964147\"}},{\"attributeHeader\":{\"labelValue\":\"964149\",\"primaryLabelValue\":\"964149\"}},{\"attributeHeader\":{\"labelValue\":\"964150\",\"primaryLabelValue\":\"964150\"}},{\"attributeHeader\":{\"labelValue\":\"964151\",\"primaryLabelValue\":\"964151\"}},{\"attributeHeader\":{\"labelValue\":\"964152\",\"primaryLabelValue\":\"964152\"}},{\"attributeHeader\":{\"labelValue\":\"964153\",\"primaryLabelValue\":\"964153\"}},{\"attributeHeader\":{\"labelValue\":\"964154\",\"primaryLabelValue\":\"964154\"}},{\"attributeHeader\":{\"labelValue\":\"964156\",\"primaryLabelValue\":\"964156\"}},{\"attributeHeader\":{\"labelValue\":\"964157\",\"primaryLabelValue\":\"964157\"}},{\"attributeHeader\":{\"labelValue\":\"964159\",\"primaryLabelValue\":\"964159\"}},{\"attributeHeader\":{\"labelValue\":\"964160\",\"primaryLabelValue\":\"964160\"}},{\"attributeHeader\":{\"labelValue\":\"964161\",\"primaryLabelValue\":\"964161\"}},{\"attributeHeader\":{\"labelValue\":\"964162\",\"primaryLabelValue\":\"964162\"}},{\"attributeHeader\":{\"labelValue\":\"964163\",\"primaryLabelValue\":\"964163\"}},{\"attributeHeader\":{\"labelValue\":\"964164\",\"primaryLabelValue\":\"964164\"}},{\"attributeHeader\":{\"labelValue\":\"964165\",\"primaryLabelValue\":\"964165\"}},{\"attributeHeader\":{\"labelValue\":\"964166\",\"primaryLabelValue\":\"964166\"}},{\"attributeHeader\":{\"labelValue\":\"964167\",\"primaryLabelValue\":\"964167\"}},{\"attributeHeader\":{\"labelValue\":\"964168\",\"primaryLabelValue\":\"964168\"}},{\"attributeHeader\":{\"labelValue\":\"964169\",\"primaryLabelValue\":\"964169\"}},{\"attributeHeader\":{\"labelValue\":\"964170\",\"primaryLabelValue\":\"964170\"}},{\"attributeHeader\":{\"labelValue\":\"964171\",\"primaryLabelValue\":\"964171\"}},{\"attributeHeader\":{\"labelValue\":\"964172\",\"primaryLabelValue\":\"964172\"}},{\"attributeHeader\":{\"labelValue\":\"964173\",\"primaryLabelValue\":\"964173\"}},{\"attributeHeader\":{\"labelValue\":\"964174\",\"primaryLabelValue\":\"964174\"}},{\"attributeHeader\":{\"labelValue\":\"964176\",\"primaryLabelValue\":\"964176\"}},{\"attributeHeader\":{\"labelValue\":\"964178\",\"primaryLabelValue\":\"964178\"}},{\"attributeHeader\":{\"labelValue\":\"964179\",\"primaryLabelValue\":\"964179\"}},{\"attributeHeader\":{\"labelValue\":\"964180\",\"primaryLabelValue\":\"964180\"}},{\"attributeHeader\":{\"labelValue\":\"964182\",\"primaryLabelValue\":\"964182\"}},{\"attributeHeader\":{\"labelValue\":\"964183\",\"primaryLabelValue\":\"964183\"}},{\"attributeHeader\":{\"labelValue\":\"964185\",\"primaryLabelValue\":\"964185\"}},{\"attributeHeader\":{\"labelValue\":\"964187\",\"primaryLabelValue\":\"964187\"}},{\"attributeHeader\":{\"labelValue\":\"964188\",\"primaryLabelValue\":\"964188\"}},{\"attributeHeader\":{\"labelValue\":\"964189\",\"primaryLabelValue\":\"964189\"}},{\"attributeHeader\":{\"labelValue\":\"964190\",\"primaryLabelValue\":\"964190\"}},{\"attributeHeader\":{\"labelValue\":\"964192\",\"primaryLabelValue\":\"964192\"}},{\"attributeHeader\":{\"labelValue\":\"964194\",\"primaryLabelValue\":\"964194\"}},{\"attributeHeader\":{\"labelValue\":\"964195\",\"primaryLabelValue\":\"964195\"}},{\"attributeHeader\":{\"labelValue\":\"964196\",\"primaryLabelValue\":\"964196\"}},{\"attributeHeader\":{\"labelValue\":\"964197\",\"primaryLabelValue\":\"964197\"}},{\"attributeHeader\":{\"labelValue\":\"964199\",\"primaryLabelValue\":\"964199\"}},{\"attributeHeader\":{\"labelValue\":\"964200\",\"primaryLabelValue\":\"964200\"}},{\"attributeHeader\":{\"labelValue\":\"964201\",\"primaryLabelValue\":\"964201\"}},{\"attributeHeader\":{\"labelValue\":\"964203\",\"primaryLabelValue\":\"964203\"}},{\"attributeHeader\":{\"labelValue\":\"964204\",\"primaryLabelValue\":\"964204\"}},{\"attributeHeader\":{\"labelValue\":\"964206\",\"primaryLabelValue\":\"964206\"}},{\"attributeHeader\":{\"labelValue\":\"964208\",\"primaryLabelValue\":\"964208\"}},{\"attributeHeader\":{\"labelValue\":\"964209\",\"primaryLabelValue\":\"964209\"}},{\"attributeHeader\":{\"labelValue\":\"964210\",\"primaryLabelValue\":\"964210\"}},{\"attributeHeader\":{\"labelValue\":\"964211\",\"primaryLabelValue\":\"964211\"}},{\"attributeHeader\":{\"labelValue\":\"964212\",\"primaryLabelValue\":\"964212\"}},{\"attributeHeader\":{\"labelValue\":\"964213\",\"primaryLabelValue\":\"964213\"}},{\"attributeHeader\":{\"labelValue\":\"964214\",\"primaryLabelValue\":\"964214\"}},{\"attributeHeader\":{\"labelValue\":\"964216\",\"primaryLabelValue\":\"964216\"}},{\"attributeHeader\":{\"labelValue\":\"964218\",\"primaryLabelValue\":\"964218\"}},{\"attributeHeader\":{\"labelValue\":\"964219\",\"primaryLabelValue\":\"964219\"}},{\"attributeHeader\":{\"labelValue\":\"964220\",\"primaryLabelValue\":\"964220\"}},{\"attributeHeader\":{\"labelValue\":\"964221\",\"primaryLabelValue\":\"964221\"}},{\"attributeHeader\":{\"labelValue\":\"964222\",\"primaryLabelValue\":\"964222\"}},{\"attributeHeader\":{\"labelValue\":\"964223\",\"primaryLabelValue\":\"964223\"}},{\"attributeHeader\":{\"labelValue\":\"964225\",\"primaryLabelValue\":\"964225\"}},{\"attributeHeader\":{\"labelValue\":\"964227\",\"primaryLabelValue\":\"964227\"}},{\"attributeHeader\":{\"labelValue\":\"964229\",\"primaryLabelValue\":\"964229\"}},{\"attributeHeader\":{\"labelValue\":\"964230\",\"primaryLabelValue\":\"964230\"}},{\"attributeHeader\":{\"labelValue\":\"964231\",\"primaryLabelValue\":\"964231\"}},{\"attributeHeader\":{\"labelValue\":\"964232\",\"primaryLabelValue\":\"964232\"}},{\"attributeHeader\":{\"labelValue\":\"964234\",\"primaryLabelValue\":\"964234\"}},{\"attributeHeader\":{\"labelValue\":\"964236\",\"primaryLabelValue\":\"964236\"}},{\"attributeHeader\":{\"labelValue\":\"964237\",\"primaryLabelValue\":\"964237\"}},{\"attributeHeader\":{\"labelValue\":\"964239\",\"primaryLabelValue\":\"964239\"}},{\"attributeHeader\":{\"labelValue\":\"964241\",\"primaryLabelValue\":\"964241\"}},{\"attributeHeader\":{\"labelValue\":\"964243\",\"primaryLabelValue\":\"964243\"}},{\"attributeHeader\":{\"labelValue\":\"964244\",\"primaryLabelValue\":\"964244\"}},{\"attributeHeader\":{\"labelValue\":\"964245\",\"primaryLabelValue\":\"964245\"}},{\"attributeHeader\":{\"labelValue\":\"964246\",\"primaryLabelValue\":\"964246\"}},{\"attributeHeader\":{\"labelValue\":\"964248\",\"primaryLabelValue\":\"964248\"}},{\"attributeHeader\":{\"labelValue\":\"964250\",\"primaryLabelValue\":\"964250\"}},{\"attributeHeader\":{\"labelValue\":\"964252\",\"primaryLabelValue\":\"964252\"}},{\"attributeHeader\":{\"labelValue\":\"964253\",\"primaryLabelValue\":\"964253\"}},{\"attributeHeader\":{\"labelValue\":\"964255\",\"primaryLabelValue\":\"964255\"}},{\"attributeHeader\":{\"labelValue\":\"964257\",\"primaryLabelValue\":\"964257\"}},{\"attributeHeader\":{\"labelValue\":\"964258\",\"primaryLabelValue\":\"964258\"}},{\"attributeHeader\":{\"labelValue\":\"964259\",\"primaryLabelValue\":\"964259\"}},{\"attributeHeader\":{\"labelValue\":\"964260\",\"primaryLabelValue\":\"964260\"}},{\"attributeHeader\":{\"labelValue\":\"964261\",\"primaryLabelValue\":\"964261\"}},{\"attributeHeader\":{\"labelValue\":\"964262\",\"primaryLabelValue\":\"964262\"}},{\"attributeHeader\":{\"labelValue\":\"964264\",\"primaryLabelValue\":\"964264\"}},{\"attributeHeader\":{\"labelValue\":\"964265\",\"primaryLabelValue\":\"964265\"}},{\"attributeHeader\":{\"labelValue\":\"964267\",\"primaryLabelValue\":\"964267\"}},{\"attributeHeader\":{\"labelValue\":\"964269\",\"primaryLabelValue\":\"964269\"}},{\"attributeHeader\":{\"labelValue\":\"964271\",\"primaryLabelValue\":\"964271\"}},{\"attributeHeader\":{\"labelValue\":\"964272\",\"primaryLabelValue\":\"964272\"}},{\"attributeHeader\":{\"labelValue\":\"964273\",\"primaryLabelValue\":\"964273\"}},{\"attributeHeader\":{\"labelValue\":\"964274\",\"primaryLabelValue\":\"964274\"}},{\"attributeHeader\":{\"labelValue\":\"964275\",\"primaryLabelValue\":\"964275\"}},{\"attributeHeader\":{\"labelValue\":\"964276\",\"primaryLabelValue\":\"964276\"}},{\"attributeHeader\":{\"labelValue\":\"964277\",\"primaryLabelValue\":\"964277\"}},{\"attributeHeader\":{\"labelValue\":\"964278\",\"primaryLabelValue\":\"964278\"}},{\"attributeHeader\":{\"labelValue\":\"964280\",\"primaryLabelValue\":\"964280\"}},{\"attributeHeader\":{\"labelValue\":\"964281\",\"primaryLabelValue\":\"964281\"}},{\"attributeHeader\":{\"labelValue\":\"964282\",\"primaryLabelValue\":\"964282\"}},{\"attributeHeader\":{\"labelValue\":\"964284\",\"primaryLabelValue\":\"964284\"}},{\"attributeHeader\":{\"labelValue\":\"964285\",\"primaryLabelValue\":\"964285\"}},{\"attributeHeader\":{\"labelValue\":\"964287\",\"primaryLabelValue\":\"964287\"}},{\"attributeHeader\":{\"labelValue\":\"964288\",\"primaryLabelValue\":\"964288\"}},{\"attributeHeader\":{\"labelValue\":\"964290\",\"primaryLabelValue\":\"964290\"}},{\"attributeHeader\":{\"labelValue\":\"964291\",\"primaryLabelValue\":\"964291\"}},{\"attributeHeader\":{\"labelValue\":\"964292\",\"primaryLabelValue\":\"964292\"}},{\"attributeHeader\":{\"labelValue\":\"964293\",\"primaryLabelValue\":\"964293\"}},{\"attributeHeader\":{\"labelValue\":\"964295\",\"primaryLabelValue\":\"964295\"}},{\"attributeHeader\":{\"labelValue\":\"964297\",\"primaryLabelValue\":\"964297\"}},{\"attributeHeader\":{\"labelValue\":\"964299\",\"primaryLabelValue\":\"964299\"}},{\"attributeHeader\":{\"labelValue\":\"964301\",\"primaryLabelValue\":\"964301\"}},{\"attributeHeader\":{\"labelValue\":\"964302\",\"primaryLabelValue\":\"964302\"}},{\"attributeHeader\":{\"labelValue\":\"964303\",\"primaryLabelValue\":\"964303\"}},{\"attributeHeader\":{\"labelValue\":\"964304\",\"primaryLabelValue\":\"964304\"}},{\"attributeHeader\":{\"labelValue\":\"964305\",\"primaryLabelValue\":\"964305\"}},{\"attributeHeader\":{\"labelValue\":\"964306\",\"primaryLabelValue\":\"964306\"}},{\"attributeHeader\":{\"labelValue\":\"964307\",\"primaryLabelValue\":\"964307\"}},{\"attributeHeader\":{\"labelValue\":\"964308\",\"primaryLabelValue\":\"964308\"}},{\"attributeHeader\":{\"labelValue\":\"964310\",\"primaryLabelValue\":\"964310\"}},{\"attributeHeader\":{\"labelValue\":\"964312\",\"primaryLabelValue\":\"964312\"}},{\"attributeHeader\":{\"labelValue\":\"964313\",\"primaryLabelValue\":\"964313\"}},{\"attributeHeader\":{\"labelValue\":\"964315\",\"primaryLabelValue\":\"964315\"}},{\"attributeHeader\":{\"labelValue\":\"964317\",\"primaryLabelValue\":\"964317\"}},{\"attributeHeader\":{\"labelValue\":\"964318\",\"primaryLabelValue\":\"964318\"}},{\"attributeHeader\":{\"labelValue\":\"964319\",\"primaryLabelValue\":\"964319\"}},{\"attributeHeader\":{\"labelValue\":\"964321\",\"primaryLabelValue\":\"964321\"}},{\"attributeHeader\":{\"labelValue\":\"964322\",\"primaryLabelValue\":\"964322\"}},{\"attributeHeader\":{\"labelValue\":\"964324\",\"primaryLabelValue\":\"964324\"}},{\"attributeHeader\":{\"labelValue\":\"964325\",\"primaryLabelValue\":\"964325\"}},{\"attributeHeader\":{\"labelValue\":\"964327\",\"primaryLabelValue\":\"964327\"}},{\"attributeHeader\":{\"labelValue\":\"964328\",\"primaryLabelValue\":\"964328\"}},{\"attributeHeader\":{\"labelValue\":\"964329\",\"primaryLabelValue\":\"964329\"}},{\"attributeHeader\":{\"labelValue\":\"964330\",\"primaryLabelValue\":\"964330\"}},{\"attributeHeader\":{\"labelValue\":\"964331\",\"primaryLabelValue\":\"964331\"}},{\"attributeHeader\":{\"labelValue\":\"964332\",\"primaryLabelValue\":\"964332\"}},{\"attributeHeader\":{\"labelValue\":\"964333\",\"primaryLabelValue\":\"964333\"}},{\"attributeHeader\":{\"labelValue\":\"964334\",\"primaryLabelValue\":\"964334\"}},{\"attributeHeader\":{\"labelValue\":\"964335\",\"primaryLabelValue\":\"964335\"}},{\"attributeHeader\":{\"labelValue\":\"964336\",\"primaryLabelValue\":\"964336\"}},{\"attributeHeader\":{\"labelValue\":\"964338\",\"primaryLabelValue\":\"964338\"}},{\"attributeHeader\":{\"labelValue\":\"964339\",\"primaryLabelValue\":\"964339\"}},{\"attributeHeader\":{\"labelValue\":\"964340\",\"primaryLabelValue\":\"964340\"}},{\"attributeHeader\":{\"labelValue\":\"964341\",\"primaryLabelValue\":\"964341\"}},{\"attributeHeader\":{\"labelValue\":\"964342\",\"primaryLabelValue\":\"964342\"}},{\"attributeHeader\":{\"labelValue\":\"964343\",\"primaryLabelValue\":\"964343\"}},{\"attributeHeader\":{\"labelValue\":\"964344\",\"primaryLabelValue\":\"964344\"}},{\"attributeHeader\":{\"labelValue\":\"964345\",\"primaryLabelValue\":\"964345\"}},{\"attributeHeader\":{\"labelValue\":\"964346\",\"primaryLabelValue\":\"964346\"}},{\"attributeHeader\":{\"labelValue\":\"964348\",\"primaryLabelValue\":\"964348\"}},{\"attributeHeader\":{\"labelValue\":\"964349\",\"primaryLabelValue\":\"964349\"}},{\"attributeHeader\":{\"labelValue\":\"964350\",\"primaryLabelValue\":\"964350\"}},{\"attributeHeader\":{\"labelValue\":\"964352\",\"primaryLabelValue\":\"964352\"}},{\"attributeHeader\":{\"labelValue\":\"964354\",\"primaryLabelValue\":\"964354\"}},{\"attributeHeader\":{\"labelValue\":\"964355\",\"primaryLabelValue\":\"964355\"}},{\"attributeHeader\":{\"labelValue\":\"964356\",\"primaryLabelValue\":\"964356\"}},{\"attributeHeader\":{\"labelValue\":\"964357\",\"primaryLabelValue\":\"964357\"}},{\"attributeHeader\":{\"labelValue\":\"964358\",\"primaryLabelValue\":\"964358\"}},{\"attributeHeader\":{\"labelValue\":\"964359\",\"primaryLabelValue\":\"964359\"}},{\"attributeHeader\":{\"labelValue\":\"964360\",\"primaryLabelValue\":\"964360\"}},{\"attributeHeader\":{\"labelValue\":\"964362\",\"primaryLabelValue\":\"964362\"}},{\"attributeHeader\":{\"labelValue\":\"964364\",\"primaryLabelValue\":\"964364\"}},{\"attributeHeader\":{\"labelValue\":\"964365\",\"primaryLabelValue\":\"964365\"}},{\"attributeHeader\":{\"labelValue\":\"964366\",\"primaryLabelValue\":\"964366\"}},{\"attributeHeader\":{\"labelValue\":\"964367\",\"primaryLabelValue\":\"964367\"}},{\"attributeHeader\":{\"labelValue\":\"964368\",\"primaryLabelValue\":\"964368\"}},{\"attributeHeader\":{\"labelValue\":\"964369\",\"primaryLabelValue\":\"964369\"}},{\"attributeHeader\":{\"labelValue\":\"964370\",\"primaryLabelValue\":\"964370\"}},{\"attributeHeader\":{\"labelValue\":\"964371\",\"primaryLabelValue\":\"964371\"}},{\"attributeHeader\":{\"labelValue\":\"964373\",\"primaryLabelValue\":\"964373\"}},{\"attributeHeader\":{\"labelValue\":\"964374\",\"primaryLabelValue\":\"964374\"}},{\"attributeHeader\":{\"labelValue\":\"964375\",\"primaryLabelValue\":\"964375\"}},{\"attributeHeader\":{\"labelValue\":\"964377\",\"primaryLabelValue\":\"964377\"}},{\"attributeHeader\":{\"labelValue\":\"964378\",\"primaryLabelValue\":\"964378\"}},{\"attributeHeader\":{\"labelValue\":\"964380\",\"primaryLabelValue\":\"964380\"}},{\"attributeHeader\":{\"labelValue\":\"964381\",\"primaryLabelValue\":\"964381\"}},{\"attributeHeader\":{\"labelValue\":\"964382\",\"primaryLabelValue\":\"964382\"}},{\"attributeHeader\":{\"labelValue\":\"964383\",\"primaryLabelValue\":\"964383\"}},{\"attributeHeader\":{\"labelValue\":\"964384\",\"primaryLabelValue\":\"964384\"}},{\"attributeHeader\":{\"labelValue\":\"964386\",\"primaryLabelValue\":\"964386\"}},{\"attributeHeader\":{\"labelValue\":\"964387\",\"primaryLabelValue\":\"964387\"}},{\"attributeHeader\":{\"labelValue\":\"964388\",\"primaryLabelValue\":\"964388\"}},{\"attributeHeader\":{\"labelValue\":\"964390\",\"primaryLabelValue\":\"964390\"}},{\"attributeHeader\":{\"labelValue\":\"964392\",\"primaryLabelValue\":\"964392\"}},{\"attributeHeader\":{\"labelValue\":\"964393\",\"primaryLabelValue\":\"964393\"}},{\"attributeHeader\":{\"labelValue\":\"964395\",\"primaryLabelValue\":\"964395\"}},{\"attributeHeader\":{\"labelValue\":\"964396\",\"primaryLabelValue\":\"964396\"}},{\"attributeHeader\":{\"labelValue\":\"964397\",\"primaryLabelValue\":\"964397\"}},{\"attributeHeader\":{\"labelValue\":\"964399\",\"primaryLabelValue\":\"964399\"}},{\"attributeHeader\":{\"labelValue\":\"964400\",\"primaryLabelValue\":\"964400\"}},{\"attributeHeader\":{\"labelValue\":\"964402\",\"primaryLabelValue\":\"964402\"}},{\"attributeHeader\":{\"labelValue\":\"964403\",\"primaryLabelValue\":\"964403\"}},{\"attributeHeader\":{\"labelValue\":\"964405\",\"primaryLabelValue\":\"964405\"}},{\"attributeHeader\":{\"labelValue\":\"964407\",\"primaryLabelValue\":\"964407\"}},{\"attributeHeader\":{\"labelValue\":\"964408\",\"primaryLabelValue\":\"964408\"}},{\"attributeHeader\":{\"labelValue\":\"964410\",\"primaryLabelValue\":\"964410\"}},{\"attributeHeader\":{\"labelValue\":\"964411\",\"primaryLabelValue\":\"964411\"}},{\"attributeHeader\":{\"labelValue\":\"964412\",\"primaryLabelValue\":\"964412\"}},{\"attributeHeader\":{\"labelValue\":\"964413\",\"primaryLabelValue\":\"964413\"}},{\"attributeHeader\":{\"labelValue\":\"964415\",\"primaryLabelValue\":\"964415\"}},{\"attributeHeader\":{\"labelValue\":\"964416\",\"primaryLabelValue\":\"964416\"}},{\"attributeHeader\":{\"labelValue\":\"964418\",\"primaryLabelValue\":\"964418\"}},{\"attributeHeader\":{\"labelValue\":\"964419\",\"primaryLabelValue\":\"964419\"}},{\"attributeHeader\":{\"labelValue\":\"964421\",\"primaryLabelValue\":\"964421\"}},{\"attributeHeader\":{\"labelValue\":\"964422\",\"primaryLabelValue\":\"964422\"}},{\"attributeHeader\":{\"labelValue\":\"964423\",\"primaryLabelValue\":\"964423\"}},{\"attributeHeader\":{\"labelValue\":\"964425\",\"primaryLabelValue\":\"964425\"}},{\"attributeHeader\":{\"labelValue\":\"964426\",\"primaryLabelValue\":\"964426\"}},{\"attributeHeader\":{\"labelValue\":\"964427\",\"primaryLabelValue\":\"964427\"}},{\"attributeHeader\":{\"labelValue\":\"964428\",\"primaryLabelValue\":\"964428\"}},{\"attributeHeader\":{\"labelValue\":\"964429\",\"primaryLabelValue\":\"964429\"}},{\"attributeHeader\":{\"labelValue\":\"964431\",\"primaryLabelValue\":\"964431\"}},{\"attributeHeader\":{\"labelValue\":\"964433\",\"primaryLabelValue\":\"964433\"}},{\"attributeHeader\":{\"labelValue\":\"964434\",\"primaryLabelValue\":\"964434\"}},{\"attributeHeader\":{\"labelValue\":\"964435\",\"primaryLabelValue\":\"964435\"}},{\"attributeHeader\":{\"labelValue\":\"964437\",\"primaryLabelValue\":\"964437\"}},{\"attributeHeader\":{\"labelValue\":\"964438\",\"primaryLabelValue\":\"964438\"}},{\"attributeHeader\":{\"labelValue\":\"964439\",\"primaryLabelValue\":\"964439\"}},{\"attributeHeader\":{\"labelValue\":\"964441\",\"primaryLabelValue\":\"964441\"}},{\"attributeHeader\":{\"labelValue\":\"964442\",\"primaryLabelValue\":\"964442\"}},{\"attributeHeader\":{\"labelValue\":\"964443\",\"primaryLabelValue\":\"964443\"}},{\"attributeHeader\":{\"labelValue\":\"964444\",\"primaryLabelValue\":\"964444\"}},{\"attributeHeader\":{\"labelValue\":\"964445\",\"primaryLabelValue\":\"964445\"}},{\"attributeHeader\":{\"labelValue\":\"964446\",\"primaryLabelValue\":\"964446\"}},{\"attributeHeader\":{\"labelValue\":\"964448\",\"primaryLabelValue\":\"964448\"}},{\"attributeHeader\":{\"labelValue\":\"964449\",\"primaryLabelValue\":\"964449\"}},{\"attributeHeader\":{\"labelValue\":\"964451\",\"primaryLabelValue\":\"964451\"}},{\"attributeHeader\":{\"labelValue\":\"964452\",\"primaryLabelValue\":\"964452\"}},{\"attributeHeader\":{\"labelValue\":\"964453\",\"primaryLabelValue\":\"964453\"}},{\"attributeHeader\":{\"labelValue\":\"964454\",\"primaryLabelValue\":\"964454\"}},{\"attributeHeader\":{\"labelValue\":\"964455\",\"primaryLabelValue\":\"964455\"}},{\"attributeHeader\":{\"labelValue\":\"964456\",\"primaryLabelValue\":\"964456\"}},{\"attributeHeader\":{\"labelValue\":\"964457\",\"primaryLabelValue\":\"964457\"}},{\"attributeHeader\":{\"labelValue\":\"964458\",\"primaryLabelValue\":\"964458\"}},{\"attributeHeader\":{\"labelValue\":\"964460\",\"primaryLabelValue\":\"964460\"}},{\"attributeHeader\":{\"labelValue\":\"964461\",\"primaryLabelValue\":\"964461\"}},{\"attributeHeader\":{\"labelValue\":\"964463\",\"primaryLabelValue\":\"964463\"}},{\"attributeHeader\":{\"labelValue\":\"964465\",\"primaryLabelValue\":\"964465\"}},{\"attributeHeader\":{\"labelValue\":\"964466\",\"primaryLabelValue\":\"964466\"}},{\"attributeHeader\":{\"labelValue\":\"964467\",\"primaryLabelValue\":\"964467\"}},{\"attributeHeader\":{\"labelValue\":\"964468\",\"primaryLabelValue\":\"964468\"}},{\"attributeHeader\":{\"labelValue\":\"964469\",\"primaryLabelValue\":\"964469\"}},{\"attributeHeader\":{\"labelValue\":\"964470\",\"primaryLabelValue\":\"964470\"}},{\"attributeHeader\":{\"labelValue\":\"964471\",\"primaryLabelValue\":\"964471\"}},{\"attributeHeader\":{\"labelValue\":\"964472\",\"primaryLabelValue\":\"964472\"}},{\"attributeHeader\":{\"labelValue\":\"964473\",\"primaryLabelValue\":\"964473\"}},{\"attributeHeader\":{\"labelValue\":\"964474\",\"primaryLabelValue\":\"964474\"}},{\"attributeHeader\":{\"labelValue\":\"964475\",\"primaryLabelValue\":\"964475\"}},{\"attributeHeader\":{\"labelValue\":\"964477\",\"primaryLabelValue\":\"964477\"}},{\"attributeHeader\":{\"labelValue\":\"964479\",\"primaryLabelValue\":\"964479\"}},{\"attributeHeader\":{\"labelValue\":\"964480\",\"primaryLabelValue\":\"964480\"}},{\"attributeHeader\":{\"labelValue\":\"964482\",\"primaryLabelValue\":\"964482\"}},{\"attributeHeader\":{\"labelValue\":\"964483\",\"primaryLabelValue\":\"964483\"}},{\"attributeHeader\":{\"labelValue\":\"964484\",\"primaryLabelValue\":\"964484\"}},{\"attributeHeader\":{\"labelValue\":\"964486\",\"primaryLabelValue\":\"964486\"}},{\"attributeHeader\":{\"labelValue\":\"964487\",\"primaryLabelValue\":\"964487\"}},{\"attributeHeader\":{\"labelValue\":\"964488\",\"primaryLabelValue\":\"964488\"}},{\"attributeHeader\":{\"labelValue\":\"964489\",\"primaryLabelValue\":\"964489\"}},{\"attributeHeader\":{\"labelValue\":\"964491\",\"primaryLabelValue\":\"964491\"}},{\"attributeHeader\":{\"labelValue\":\"964492\",\"primaryLabelValue\":\"964492\"}},{\"attributeHeader\":{\"labelValue\":\"964493\",\"primaryLabelValue\":\"964493\"}},{\"attributeHeader\":{\"labelValue\":\"964494\",\"primaryLabelValue\":\"964494\"}},{\"attributeHeader\":{\"labelValue\":\"964496\",\"primaryLabelValue\":\"964496\"}},{\"attributeHeader\":{\"labelValue\":\"964498\",\"primaryLabelValue\":\"964498\"}},{\"attributeHeader\":{\"labelValue\":\"964500\",\"primaryLabelValue\":\"964500\"}},{\"attributeHeader\":{\"labelValue\":\"964501\",\"primaryLabelValue\":\"964501\"}},{\"attributeHeader\":{\"labelValue\":\"964503\",\"primaryLabelValue\":\"964503\"}},{\"attributeHeader\":{\"labelValue\":\"964505\",\"primaryLabelValue\":\"964505\"}},{\"attributeHeader\":{\"labelValue\":\"964507\",\"primaryLabelValue\":\"964507\"}},{\"attributeHeader\":{\"labelValue\":\"964508\",\"primaryLabelValue\":\"964508\"}},{\"attributeHeader\":{\"labelValue\":\"964509\",\"primaryLabelValue\":\"964509\"}},{\"attributeHeader\":{\"labelValue\":\"964510\",\"primaryLabelValue\":\"964510\"}},{\"attributeHeader\":{\"labelValue\":\"964512\",\"primaryLabelValue\":\"964512\"}},{\"attributeHeader\":{\"labelValue\":\"964514\",\"primaryLabelValue\":\"964514\"}},{\"attributeHeader\":{\"labelValue\":\"964515\",\"primaryLabelValue\":\"964515\"}},{\"attributeHeader\":{\"labelValue\":\"964516\",\"primaryLabelValue\":\"964516\"}},{\"attributeHeader\":{\"labelValue\":\"964517\",\"primaryLabelValue\":\"964517\"}},{\"attributeHeader\":{\"labelValue\":\"964518\",\"primaryLabelValue\":\"964518\"}},{\"attributeHeader\":{\"labelValue\":\"964520\",\"primaryLabelValue\":\"964520\"}},{\"attributeHeader\":{\"labelValue\":\"964521\",\"primaryLabelValue\":\"964521\"}},{\"attributeHeader\":{\"labelValue\":\"964523\",\"primaryLabelValue\":\"964523\"}},{\"attributeHeader\":{\"labelValue\":\"964524\",\"primaryLabelValue\":\"964524\"}},{\"attributeHeader\":{\"labelValue\":\"964525\",\"primaryLabelValue\":\"964525\"}},{\"attributeHeader\":{\"labelValue\":\"964526\",\"primaryLabelValue\":\"964526\"}},{\"attributeHeader\":{\"labelValue\":\"964527\",\"primaryLabelValue\":\"964527\"}},{\"attributeHeader\":{\"labelValue\":\"964529\",\"primaryLabelValue\":\"964529\"}},{\"attributeHeader\":{\"labelValue\":\"964530\",\"primaryLabelValue\":\"964530\"}},{\"attributeHeader\":{\"labelValue\":\"964531\",\"primaryLabelValue\":\"964531\"}},{\"attributeHeader\":{\"labelValue\":\"964533\",\"primaryLabelValue\":\"964533\"}},{\"attributeHeader\":{\"labelValue\":\"964534\",\"primaryLabelValue\":\"964534\"}},{\"attributeHeader\":{\"labelValue\":\"964535\",\"primaryLabelValue\":\"964535\"}},{\"attributeHeader\":{\"labelValue\":\"964537\",\"primaryLabelValue\":\"964537\"}},{\"attributeHeader\":{\"labelValue\":\"964539\",\"primaryLabelValue\":\"964539\"}},{\"attributeHeader\":{\"labelValue\":\"964541\",\"primaryLabelValue\":\"964541\"}},{\"attributeHeader\":{\"labelValue\":\"964542\",\"primaryLabelValue\":\"964542\"}},{\"attributeHeader\":{\"labelValue\":\"964543\",\"primaryLabelValue\":\"964543\"}},{\"attributeHeader\":{\"labelValue\":\"964544\",\"primaryLabelValue\":\"964544\"}},{\"attributeHeader\":{\"labelValue\":\"964545\",\"primaryLabelValue\":\"964545\"}},{\"attributeHeader\":{\"labelValue\":\"964548\",\"primaryLabelValue\":\"964548\"}},{\"attributeHeader\":{\"labelValue\":\"964549\",\"primaryLabelValue\":\"964549\"}},{\"attributeHeader\":{\"labelValue\":\"964550\",\"primaryLabelValue\":\"964550\"}},{\"attributeHeader\":{\"labelValue\":\"964551\",\"primaryLabelValue\":\"964551\"}},{\"attributeHeader\":{\"labelValue\":\"964552\",\"primaryLabelValue\":\"964552\"}},{\"attributeHeader\":{\"labelValue\":\"964554\",\"primaryLabelValue\":\"964554\"}},{\"attributeHeader\":{\"labelValue\":\"964555\",\"primaryLabelValue\":\"964555\"}},{\"attributeHeader\":{\"labelValue\":\"964557\",\"primaryLabelValue\":\"964557\"}},{\"attributeHeader\":{\"labelValue\":\"964558\",\"primaryLabelValue\":\"964558\"}},{\"attributeHeader\":{\"labelValue\":\"964560\",\"primaryLabelValue\":\"964560\"}},{\"attributeHeader\":{\"labelValue\":\"964561\",\"primaryLabelValue\":\"964561\"}},{\"attributeHeader\":{\"labelValue\":\"964562\",\"primaryLabelValue\":\"964562\"}},{\"attributeHeader\":{\"labelValue\":\"964563\",\"primaryLabelValue\":\"964563\"}},{\"attributeHeader\":{\"labelValue\":\"964565\",\"primaryLabelValue\":\"964565\"}},{\"attributeHeader\":{\"labelValue\":\"964567\",\"primaryLabelValue\":\"964567\"}},{\"attributeHeader\":{\"labelValue\":\"964568\",\"primaryLabelValue\":\"964568\"}},{\"attributeHeader\":{\"labelValue\":\"964570\",\"primaryLabelValue\":\"964570\"}},{\"attributeHeader\":{\"labelValue\":\"964572\",\"primaryLabelValue\":\"964572\"}},{\"attributeHeader\":{\"labelValue\":\"964573\",\"primaryLabelValue\":\"964573\"}},{\"attributeHeader\":{\"labelValue\":\"964574\",\"primaryLabelValue\":\"964574\"}},{\"attributeHeader\":{\"labelValue\":\"964575\",\"primaryLabelValue\":\"964575\"}},{\"attributeHeader\":{\"labelValue\":\"964577\",\"primaryLabelValue\":\"964577\"}},{\"attributeHeader\":{\"labelValue\":\"964578\",\"primaryLabelValue\":\"964578\"}},{\"attributeHeader\":{\"labelValue\":\"964579\",\"primaryLabelValue\":\"964579\"}},{\"attributeHeader\":{\"labelValue\":\"964580\",\"primaryLabelValue\":\"964580\"}},{\"attributeHeader\":{\"labelValue\":\"964582\",\"primaryLabelValue\":\"964582\"}},{\"attributeHeader\":{\"labelValue\":\"964584\",\"primaryLabelValue\":\"964584\"}},{\"attributeHeader\":{\"labelValue\":\"964586\",\"primaryLabelValue\":\"964586\"}},{\"attributeHeader\":{\"labelValue\":\"964588\",\"primaryLabelValue\":\"964588\"}},{\"attributeHeader\":{\"labelValue\":\"964589\",\"primaryLabelValue\":\"964589\"}},{\"attributeHeader\":{\"labelValue\":\"964590\",\"primaryLabelValue\":\"964590\"}},{\"attributeHeader\":{\"labelValue\":\"964591\",\"primaryLabelValue\":\"964591\"}},{\"attributeHeader\":{\"labelValue\":\"964592\",\"primaryLabelValue\":\"964592\"}},{\"attributeHeader\":{\"labelValue\":\"964594\",\"primaryLabelValue\":\"964594\"}},{\"attributeHeader\":{\"labelValue\":\"964595\",\"primaryLabelValue\":\"964595\"}},{\"attributeHeader\":{\"labelValue\":\"964596\",\"primaryLabelValue\":\"964596\"}},{\"attributeHeader\":{\"labelValue\":\"964598\",\"primaryLabelValue\":\"964598\"}},{\"attributeHeader\":{\"labelValue\":\"964600\",\"primaryLabelValue\":\"964600\"}},{\"attributeHeader\":{\"labelValue\":\"964601\",\"primaryLabelValue\":\"964601\"}},{\"attributeHeader\":{\"labelValue\":\"964603\",\"primaryLabelValue\":\"964603\"}},{\"attributeHeader\":{\"labelValue\":\"964604\",\"primaryLabelValue\":\"964604\"}},{\"attributeHeader\":{\"labelValue\":\"964605\",\"primaryLabelValue\":\"964605\"}},{\"attributeHeader\":{\"labelValue\":\"964606\",\"primaryLabelValue\":\"964606\"}},{\"attributeHeader\":{\"labelValue\":\"964607\",\"primaryLabelValue\":\"964607\"}},{\"attributeHeader\":{\"labelValue\":\"964608\",\"primaryLabelValue\":\"964608\"}},{\"attributeHeader\":{\"labelValue\":\"964609\",\"primaryLabelValue\":\"964609\"}},{\"attributeHeader\":{\"labelValue\":\"964610\",\"primaryLabelValue\":\"964610\"}},{\"attributeHeader\":{\"labelValue\":\"964611\",\"primaryLabelValue\":\"964611\"}},{\"attributeHeader\":{\"labelValue\":\"964612\",\"primaryLabelValue\":\"964612\"}},{\"attributeHeader\":{\"labelValue\":\"964614\",\"primaryLabelValue\":\"964614\"}},{\"attributeHeader\":{\"labelValue\":\"964615\",\"primaryLabelValue\":\"964615\"}},{\"attributeHeader\":{\"labelValue\":\"964616\",\"primaryLabelValue\":\"964616\"}},{\"attributeHeader\":{\"labelValue\":\"964618\",\"primaryLabelValue\":\"964618\"}},{\"attributeHeader\":{\"labelValue\":\"964620\",\"primaryLabelValue\":\"964620\"}},{\"attributeHeader\":{\"labelValue\":\"964621\",\"primaryLabelValue\":\"964621\"}},{\"attributeHeader\":{\"labelValue\":\"964622\",\"primaryLabelValue\":\"964622\"}},{\"attributeHeader\":{\"labelValue\":\"964624\",\"primaryLabelValue\":\"964624\"}},{\"attributeHeader\":{\"labelValue\":\"964626\",\"primaryLabelValue\":\"964626\"}},{\"attributeHeader\":{\"labelValue\":\"964627\",\"primaryLabelValue\":\"964627\"}},{\"attributeHeader\":{\"labelValue\":\"964629\",\"primaryLabelValue\":\"964629\"}},{\"attributeHeader\":{\"labelValue\":\"964630\",\"primaryLabelValue\":\"964630\"}},{\"attributeHeader\":{\"labelValue\":\"964631\",\"primaryLabelValue\":\"964631\"}},{\"attributeHeader\":{\"labelValue\":\"964632\",\"primaryLabelValue\":\"964632\"}},{\"attributeHeader\":{\"labelValue\":\"964634\",\"primaryLabelValue\":\"964634\"}},{\"attributeHeader\":{\"labelValue\":\"964637\",\"primaryLabelValue\":\"964637\"}},{\"attributeHeader\":{\"labelValue\":\"964638\",\"primaryLabelValue\":\"964638\"}},{\"attributeHeader\":{\"labelValue\":\"964640\",\"primaryLabelValue\":\"964640\"}},{\"attributeHeader\":{\"labelValue\":\"964642\",\"primaryLabelValue\":\"964642\"}},{\"attributeHeader\":{\"labelValue\":\"964644\",\"primaryLabelValue\":\"964644\"}},{\"attributeHeader\":{\"labelValue\":\"964645\",\"primaryLabelValue\":\"964645\"}},{\"attributeHeader\":{\"labelValue\":\"964646\",\"primaryLabelValue\":\"964646\"}},{\"attributeHeader\":{\"labelValue\":\"964647\",\"primaryLabelValue\":\"964647\"}},{\"attributeHeader\":{\"labelValue\":\"964648\",\"primaryLabelValue\":\"964648\"}},{\"attributeHeader\":{\"labelValue\":\"964649\",\"primaryLabelValue\":\"964649\"}},{\"attributeHeader\":{\"labelValue\":\"964650\",\"primaryLabelValue\":\"964650\"}},{\"attributeHeader\":{\"labelValue\":\"964651\",\"primaryLabelValue\":\"964651\"}},{\"attributeHeader\":{\"labelValue\":\"964652\",\"primaryLabelValue\":\"964652\"}},{\"attributeHeader\":{\"labelValue\":\"964654\",\"primaryLabelValue\":\"964654\"}},{\"attributeHeader\":{\"labelValue\":\"964655\",\"primaryLabelValue\":\"964655\"}},{\"attributeHeader\":{\"labelValue\":\"964656\",\"primaryLabelValue\":\"964656\"}},{\"attributeHeader\":{\"labelValue\":\"964658\",\"primaryLabelValue\":\"964658\"}},{\"attributeHeader\":{\"labelValue\":\"964660\",\"primaryLabelValue\":\"964660\"}},{\"attributeHeader\":{\"labelValue\":\"964662\",\"primaryLabelValue\":\"964662\"}},{\"attributeHeader\":{\"labelValue\":\"964663\",\"primaryLabelValue\":\"964663\"}},{\"attributeHeader\":{\"labelValue\":\"964664\",\"primaryLabelValue\":\"964664\"}},{\"attributeHeader\":{\"labelValue\":\"964665\",\"primaryLabelValue\":\"964665\"}},{\"attributeHeader\":{\"labelValue\":\"964666\",\"primaryLabelValue\":\"964666\"}},{\"attributeHeader\":{\"labelValue\":\"964667\",\"primaryLabelValue\":\"964667\"}},{\"attributeHeader\":{\"labelValue\":\"964668\",\"primaryLabelValue\":\"964668\"}},{\"attributeHeader\":{\"labelValue\":\"964669\",\"primaryLabelValue\":\"964669\"}},{\"attributeHeader\":{\"labelValue\":\"964671\",\"primaryLabelValue\":\"964671\"}},{\"attributeHeader\":{\"labelValue\":\"964673\",\"primaryLabelValue\":\"964673\"}},{\"attributeHeader\":{\"labelValue\":\"964674\",\"primaryLabelValue\":\"964674\"}},{\"attributeHeader\":{\"labelValue\":\"964675\",\"primaryLabelValue\":\"964675\"}},{\"attributeHeader\":{\"labelValue\":\"964676\",\"primaryLabelValue\":\"964676\"}},{\"attributeHeader\":{\"labelValue\":\"964678\",\"primaryLabelValue\":\"964678\"}},{\"attributeHeader\":{\"labelValue\":\"964680\",\"primaryLabelValue\":\"964680\"}},{\"attributeHeader\":{\"labelValue\":\"964682\",\"primaryLabelValue\":\"964682\"}},{\"attributeHeader\":{\"labelValue\":\"964683\",\"primaryLabelValue\":\"964683\"}},{\"attributeHeader\":{\"labelValue\":\"964685\",\"primaryLabelValue\":\"964685\"}},{\"attributeHeader\":{\"labelValue\":\"964686\",\"primaryLabelValue\":\"964686\"}},{\"attributeHeader\":{\"labelValue\":\"964687\",\"primaryLabelValue\":\"964687\"}},{\"attributeHeader\":{\"labelValue\":\"964688\",\"primaryLabelValue\":\"964688\"}},{\"attributeHeader\":{\"labelValue\":\"964689\",\"primaryLabelValue\":\"964689\"}},{\"attributeHeader\":{\"labelValue\":\"964690\",\"primaryLabelValue\":\"964690\"}},{\"attributeHeader\":{\"labelValue\":\"964691\",\"primaryLabelValue\":\"964691\"}},{\"attributeHeader\":{\"labelValue\":\"964693\",\"primaryLabelValue\":\"964693\"}},{\"attributeHeader\":{\"labelValue\":\"964694\",\"primaryLabelValue\":\"964694\"}},{\"attributeHeader\":{\"labelValue\":\"964696\",\"primaryLabelValue\":\"964696\"}},{\"attributeHeader\":{\"labelValue\":\"964697\",\"primaryLabelValue\":\"964697\"}},{\"attributeHeader\":{\"labelValue\":\"964698\",\"primaryLabelValue\":\"964698\"}},{\"attributeHeader\":{\"labelValue\":\"964699\",\"primaryLabelValue\":\"964699\"}},{\"attributeHeader\":{\"labelValue\":\"964701\",\"primaryLabelValue\":\"964701\"}},{\"attributeHeader\":{\"labelValue\":\"964702\",\"primaryLabelValue\":\"964702\"}},{\"attributeHeader\":{\"labelValue\":\"964703\",\"primaryLabelValue\":\"964703\"}},{\"attributeHeader\":{\"labelValue\":\"964704\",\"primaryLabelValue\":\"964704\"}},{\"attributeHeader\":{\"labelValue\":\"964705\",\"primaryLabelValue\":\"964705\"}},{\"attributeHeader\":{\"labelValue\":\"964706\",\"primaryLabelValue\":\"964706\"}},{\"attributeHeader\":{\"labelValue\":\"964707\",\"primaryLabelValue\":\"964707\"}},{\"attributeHeader\":{\"labelValue\":\"964709\",\"primaryLabelValue\":\"964709\"}},{\"attributeHeader\":{\"labelValue\":\"964710\",\"primaryLabelValue\":\"964710\"}},{\"attributeHeader\":{\"labelValue\":\"964711\",\"primaryLabelValue\":\"964711\"}},{\"attributeHeader\":{\"labelValue\":\"964712\",\"primaryLabelValue\":\"964712\"}},{\"attributeHeader\":{\"labelValue\":\"964713\",\"primaryLabelValue\":\"964713\"}},{\"attributeHeader\":{\"labelValue\":\"964717\",\"primaryLabelValue\":\"964717\"}},{\"attributeHeader\":{\"labelValue\":\"964718\",\"primaryLabelValue\":\"964718\"}},{\"attributeHeader\":{\"labelValue\":\"964720\",\"primaryLabelValue\":\"964720\"}},{\"attributeHeader\":{\"labelValue\":\"964721\",\"primaryLabelValue\":\"964721\"}},{\"attributeHeader\":{\"labelValue\":\"964722\",\"primaryLabelValue\":\"964722\"}},{\"attributeHeader\":{\"labelValue\":\"964724\",\"primaryLabelValue\":\"964724\"}},{\"attributeHeader\":{\"labelValue\":\"964726\",\"primaryLabelValue\":\"964726\"}},{\"attributeHeader\":{\"labelValue\":\"964727\",\"primaryLabelValue\":\"964727\"}},{\"attributeHeader\":{\"labelValue\":\"964728\",\"primaryLabelValue\":\"964728\"}},{\"attributeHeader\":{\"labelValue\":\"964729\",\"primaryLabelValue\":\"964729\"}},{\"attributeHeader\":{\"labelValue\":\"964730\",\"primaryLabelValue\":\"964730\"}},{\"attributeHeader\":{\"labelValue\":\"964732\",\"primaryLabelValue\":\"964732\"}},{\"attributeHeader\":{\"labelValue\":\"964733\",\"primaryLabelValue\":\"964733\"}},{\"attributeHeader\":{\"labelValue\":\"964734\",\"primaryLabelValue\":\"964734\"}},{\"attributeHeader\":{\"labelValue\":\"964736\",\"primaryLabelValue\":\"964736\"}},{\"attributeHeader\":{\"labelValue\":\"964738\",\"primaryLabelValue\":\"964738\"}},{\"attributeHeader\":{\"labelValue\":\"964739\",\"primaryLabelValue\":\"964739\"}},{\"attributeHeader\":{\"labelValue\":\"964742\",\"primaryLabelValue\":\"964742\"}},{\"attributeHeader\":{\"labelValue\":\"964743\",\"primaryLabelValue\":\"964743\"}},{\"attributeHeader\":{\"labelValue\":\"964745\",\"primaryLabelValue\":\"964745\"}},{\"attributeHeader\":{\"labelValue\":\"964746\",\"primaryLabelValue\":\"964746\"}},{\"attributeHeader\":{\"labelValue\":\"964747\",\"primaryLabelValue\":\"964747\"}},{\"attributeHeader\":{\"labelValue\":\"964748\",\"primaryLabelValue\":\"964748\"}},{\"attributeHeader\":{\"labelValue\":\"964750\",\"primaryLabelValue\":\"964750\"}},{\"attributeHeader\":{\"labelValue\":\"964751\",\"primaryLabelValue\":\"964751\"}},{\"attributeHeader\":{\"labelValue\":\"964753\",\"primaryLabelValue\":\"964753\"}},{\"attributeHeader\":{\"labelValue\":\"964756\",\"primaryLabelValue\":\"964756\"}},{\"attributeHeader\":{\"labelValue\":\"964757\",\"primaryLabelValue\":\"964757\"}},{\"attributeHeader\":{\"labelValue\":\"964759\",\"primaryLabelValue\":\"964759\"}},{\"attributeHeader\":{\"labelValue\":\"964760\",\"primaryLabelValue\":\"964760\"}},{\"attributeHeader\":{\"labelValue\":\"964761\",\"primaryLabelValue\":\"964761\"}},{\"attributeHeader\":{\"labelValue\":\"964763\",\"primaryLabelValue\":\"964763\"}},{\"attributeHeader\":{\"labelValue\":\"964764\",\"primaryLabelValue\":\"964764\"}},{\"attributeHeader\":{\"labelValue\":\"964765\",\"primaryLabelValue\":\"964765\"}},{\"attributeHeader\":{\"labelValue\":\"964766\",\"primaryLabelValue\":\"964766\"}},{\"attributeHeader\":{\"labelValue\":\"964767\",\"primaryLabelValue\":\"964767\"}},{\"attributeHeader\":{\"labelValue\":\"964769\",\"primaryLabelValue\":\"964769\"}},{\"attributeHeader\":{\"labelValue\":\"964772\",\"primaryLabelValue\":\"964772\"}},{\"attributeHeader\":{\"labelValue\":\"964773\",\"primaryLabelValue\":\"964773\"}},{\"attributeHeader\":{\"labelValue\":\"964774\",\"primaryLabelValue\":\"964774\"}},{\"attributeHeader\":{\"labelValue\":\"964776\",\"primaryLabelValue\":\"964776\"}},{\"attributeHeader\":{\"labelValue\":\"964778\",\"primaryLabelValue\":\"964778\"}},{\"attributeHeader\":{\"labelValue\":\"964780\",\"primaryLabelValue\":\"964780\"}},{\"attributeHeader\":{\"labelValue\":\"964781\",\"primaryLabelValue\":\"964781\"}},{\"attributeHeader\":{\"labelValue\":\"964783\",\"primaryLabelValue\":\"964783\"}},{\"attributeHeader\":{\"labelValue\":\"964786\",\"primaryLabelValue\":\"964786\"}},{\"attributeHeader\":{\"labelValue\":\"964787\",\"primaryLabelValue\":\"964787\"}},{\"attributeHeader\":{\"labelValue\":\"964788\",\"primaryLabelValue\":\"964788\"}},{\"attributeHeader\":{\"labelValue\":\"964789\",\"primaryLabelValue\":\"964789\"}},{\"attributeHeader\":{\"labelValue\":\"964791\",\"primaryLabelValue\":\"964791\"}},{\"attributeHeader\":{\"labelValue\":\"964792\",\"primaryLabelValue\":\"964792\"}},{\"attributeHeader\":{\"labelValue\":\"964793\",\"primaryLabelValue\":\"964793\"}},{\"attributeHeader\":{\"labelValue\":\"964795\",\"primaryLabelValue\":\"964795\"}},{\"attributeHeader\":{\"labelValue\":\"964796\",\"primaryLabelValue\":\"964796\"}},{\"attributeHeader\":{\"labelValue\":\"964798\",\"primaryLabelValue\":\"964798\"}},{\"attributeHeader\":{\"labelValue\":\"964799\",\"primaryLabelValue\":\"964799\"}},{\"attributeHeader\":{\"labelValue\":\"964801\",\"primaryLabelValue\":\"964801\"}},{\"attributeHeader\":{\"labelValue\":\"964802\",\"primaryLabelValue\":\"964802\"}},{\"attributeHeader\":{\"labelValue\":\"964803\",\"primaryLabelValue\":\"964803\"}},{\"attributeHeader\":{\"labelValue\":\"964804\",\"primaryLabelValue\":\"964804\"}},{\"attributeHeader\":{\"labelValue\":\"964805\",\"primaryLabelValue\":\"964805\"}},{\"attributeHeader\":{\"labelValue\":\"964808\",\"primaryLabelValue\":\"964808\"}},{\"attributeHeader\":{\"labelValue\":\"964809\",\"primaryLabelValue\":\"964809\"}},{\"attributeHeader\":{\"labelValue\":\"964812\",\"primaryLabelValue\":\"964812\"}},{\"attributeHeader\":{\"labelValue\":\"964813\",\"primaryLabelValue\":\"964813\"}},{\"attributeHeader\":{\"labelValue\":\"964814\",\"primaryLabelValue\":\"964814\"}},{\"attributeHeader\":{\"labelValue\":\"964815\",\"primaryLabelValue\":\"964815\"}},{\"attributeHeader\":{\"labelValue\":\"964816\",\"primaryLabelValue\":\"964816\"}},{\"attributeHeader\":{\"labelValue\":\"964817\",\"primaryLabelValue\":\"964817\"}},{\"attributeHeader\":{\"labelValue\":\"964818\",\"primaryLabelValue\":\"964818\"}},{\"attributeHeader\":{\"labelValue\":\"964819\",\"primaryLabelValue\":\"964819\"}},{\"attributeHeader\":{\"labelValue\":\"964820\",\"primaryLabelValue\":\"964820\"}},{\"attributeHeader\":{\"labelValue\":\"964822\",\"primaryLabelValue\":\"964822\"}},{\"attributeHeader\":{\"labelValue\":\"964823\",\"primaryLabelValue\":\"964823\"}},{\"attributeHeader\":{\"labelValue\":\"964824\",\"primaryLabelValue\":\"964824\"}},{\"attributeHeader\":{\"labelValue\":\"964825\",\"primaryLabelValue\":\"964825\"}},{\"attributeHeader\":{\"labelValue\":\"964826\",\"primaryLabelValue\":\"964826\"}},{\"attributeHeader\":{\"labelValue\":\"964831\",\"primaryLabelValue\":\"964831\"}},{\"attributeHeader\":{\"labelValue\":\"964833\",\"primaryLabelValue\":\"964833\"}},{\"attributeHeader\":{\"labelValue\":\"964835\",\"primaryLabelValue\":\"964835\"}},{\"attributeHeader\":{\"labelValue\":\"964837\",\"primaryLabelValue\":\"964837\"}},{\"attributeHeader\":{\"labelValue\":\"964839\",\"primaryLabelValue\":\"964839\"}},{\"attributeHeader\":{\"labelValue\":\"964841\",\"primaryLabelValue\":\"964841\"}},{\"attributeHeader\":{\"labelValue\":\"964843\",\"primaryLabelValue\":\"964843\"}},{\"attributeHeader\":{\"labelValue\":\"964844\",\"primaryLabelValue\":\"964844\"}},{\"attributeHeader\":{\"labelValue\":\"964845\",\"primaryLabelValue\":\"964845\"}},{\"attributeHeader\":{\"labelValue\":\"964846\",\"primaryLabelValue\":\"964846\"}},{\"attributeHeader\":{\"labelValue\":\"964848\",\"primaryLabelValue\":\"964848\"}},{\"attributeHeader\":{\"labelValue\":\"964849\",\"primaryLabelValue\":\"964849\"}},{\"attributeHeader\":{\"labelValue\":\"964850\",\"primaryLabelValue\":\"964850\"}},{\"attributeHeader\":{\"labelValue\":\"964851\",\"primaryLabelValue\":\"964851\"}},{\"attributeHeader\":{\"labelValue\":\"964852\",\"primaryLabelValue\":\"964852\"}},{\"attributeHeader\":{\"labelValue\":\"964854\",\"primaryLabelValue\":\"964854\"}},{\"attributeHeader\":{\"labelValue\":\"964855\",\"primaryLabelValue\":\"964855\"}},{\"attributeHeader\":{\"labelValue\":\"964856\",\"primaryLabelValue\":\"964856\"}},{\"attributeHeader\":{\"labelValue\":\"964858\",\"primaryLabelValue\":\"964858\"}},{\"attributeHeader\":{\"labelValue\":\"964860\",\"primaryLabelValue\":\"964860\"}},{\"attributeHeader\":{\"labelValue\":\"964862\",\"primaryLabelValue\":\"964862\"}},{\"attributeHeader\":{\"labelValue\":\"964864\",\"primaryLabelValue\":\"964864\"}},{\"attributeHeader\":{\"labelValue\":\"964865\",\"primaryLabelValue\":\"964865\"}},{\"attributeHeader\":{\"labelValue\":\"964866\",\"primaryLabelValue\":\"964866\"}},{\"attributeHeader\":{\"labelValue\":\"964868\",\"primaryLabelValue\":\"964868\"}},{\"attributeHeader\":{\"labelValue\":\"964870\",\"primaryLabelValue\":\"964870\"}},{\"attributeHeader\":{\"labelValue\":\"964871\",\"primaryLabelValue\":\"964871\"}},{\"attributeHeader\":{\"labelValue\":\"964873\",\"primaryLabelValue\":\"964873\"}},{\"attributeHeader\":{\"labelValue\":\"964875\",\"primaryLabelValue\":\"964875\"}},{\"attributeHeader\":{\"labelValue\":\"964877\",\"primaryLabelValue\":\"964877\"}},{\"attributeHeader\":{\"labelValue\":\"964878\",\"primaryLabelValue\":\"964878\"}},{\"attributeHeader\":{\"labelValue\":\"964879\",\"primaryLabelValue\":\"964879\"}},{\"attributeHeader\":{\"labelValue\":\"964880\",\"primaryLabelValue\":\"964880\"}},{\"attributeHeader\":{\"labelValue\":\"964881\",\"primaryLabelValue\":\"964881\"}},{\"attributeHeader\":{\"labelValue\":\"964882\",\"primaryLabelValue\":\"964882\"}},{\"attributeHeader\":{\"labelValue\":\"964883\",\"primaryLabelValue\":\"964883\"}},{\"attributeHeader\":{\"labelValue\":\"964884\",\"primaryLabelValue\":\"964884\"}},{\"attributeHeader\":{\"labelValue\":\"964885\",\"primaryLabelValue\":\"964885\"}},{\"attributeHeader\":{\"labelValue\":\"964886\",\"primaryLabelValue\":\"964886\"}},{\"attributeHeader\":{\"labelValue\":\"964887\",\"primaryLabelValue\":\"964887\"}},{\"attributeHeader\":{\"labelValue\":\"964888\",\"primaryLabelValue\":\"964888\"}},{\"attributeHeader\":{\"labelValue\":\"964890\",\"primaryLabelValue\":\"964890\"}},{\"attributeHeader\":{\"labelValue\":\"964891\",\"primaryLabelValue\":\"964891\"}},{\"attributeHeader\":{\"labelValue\":\"964892\",\"primaryLabelValue\":\"964892\"}},{\"attributeHeader\":{\"labelValue\":\"964893\",\"primaryLabelValue\":\"964893\"}},{\"attributeHeader\":{\"labelValue\":\"964894\",\"primaryLabelValue\":\"964894\"}},{\"attributeHeader\":{\"labelValue\":\"964896\",\"primaryLabelValue\":\"964896\"}},{\"attributeHeader\":{\"labelValue\":\"964897\",\"primaryLabelValue\":\"964897\"}},{\"attributeHeader\":{\"labelValue\":\"964898\",\"primaryLabelValue\":\"964898\"}},{\"attributeHeader\":{\"labelValue\":\"964900\",\"primaryLabelValue\":\"964900\"}},{\"attributeHeader\":{\"labelValue\":\"964901\",\"primaryLabelValue\":\"964901\"}},{\"attributeHeader\":{\"labelValue\":\"964902\",\"primaryLabelValue\":\"964902\"}},{\"attributeHeader\":{\"labelValue\":\"964903\",\"primaryLabelValue\":\"964903\"}},{\"attributeHeader\":{\"labelValue\":\"964905\",\"primaryLabelValue\":\"964905\"}},{\"attributeHeader\":{\"labelValue\":\"964907\",\"primaryLabelValue\":\"964907\"}},{\"attributeHeader\":{\"labelValue\":\"964909\",\"primaryLabelValue\":\"964909\"}},{\"attributeHeader\":{\"labelValue\":\"964911\",\"primaryLabelValue\":\"964911\"}},{\"attributeHeader\":{\"labelValue\":\"964912\",\"primaryLabelValue\":\"964912\"}},{\"attributeHeader\":{\"labelValue\":\"964914\",\"primaryLabelValue\":\"964914\"}},{\"attributeHeader\":{\"labelValue\":\"964915\",\"primaryLabelValue\":\"964915\"}},{\"attributeHeader\":{\"labelValue\":\"964917\",\"primaryLabelValue\":\"964917\"}},{\"attributeHeader\":{\"labelValue\":\"964919\",\"primaryLabelValue\":\"964919\"}},{\"attributeHeader\":{\"labelValue\":\"964921\",\"primaryLabelValue\":\"964921\"}},{\"attributeHeader\":{\"labelValue\":\"964923\",\"primaryLabelValue\":\"964923\"}},{\"attributeHeader\":{\"labelValue\":\"964924\",\"primaryLabelValue\":\"964924\"}},{\"attributeHeader\":{\"labelValue\":\"964926\",\"primaryLabelValue\":\"964926\"}},{\"attributeHeader\":{\"labelValue\":\"964928\",\"primaryLabelValue\":\"964928\"}},{\"attributeHeader\":{\"labelValue\":\"964929\",\"primaryLabelValue\":\"964929\"}},{\"attributeHeader\":{\"labelValue\":\"964930\",\"primaryLabelValue\":\"964930\"}},{\"attributeHeader\":{\"labelValue\":\"964931\",\"primaryLabelValue\":\"964931\"}},{\"attributeHeader\":{\"labelValue\":\"964933\",\"primaryLabelValue\":\"964933\"}},{\"attributeHeader\":{\"labelValue\":\"964935\",\"primaryLabelValue\":\"964935\"}},{\"attributeHeader\":{\"labelValue\":\"964936\",\"primaryLabelValue\":\"964936\"}},{\"attributeHeader\":{\"labelValue\":\"964937\",\"primaryLabelValue\":\"964937\"}},{\"attributeHeader\":{\"labelValue\":\"964939\",\"primaryLabelValue\":\"964939\"}},{\"attributeHeader\":{\"labelValue\":\"964940\",\"primaryLabelValue\":\"964940\"}},{\"attributeHeader\":{\"labelValue\":\"964942\",\"primaryLabelValue\":\"964942\"}},{\"attributeHeader\":{\"labelValue\":\"964943\",\"primaryLabelValue\":\"964943\"}},{\"attributeHeader\":{\"labelValue\":\"964944\",\"primaryLabelValue\":\"964944\"}},{\"attributeHeader\":{\"labelValue\":\"964946\",\"primaryLabelValue\":\"964946\"}},{\"attributeHeader\":{\"labelValue\":\"964947\",\"primaryLabelValue\":\"964947\"}},{\"attributeHeader\":{\"labelValue\":\"964948\",\"primaryLabelValue\":\"964948\"}},{\"attributeHeader\":{\"labelValue\":\"964949\",\"primaryLabelValue\":\"964949\"}},{\"attributeHeader\":{\"labelValue\":\"964950\",\"primaryLabelValue\":\"964950\"}},{\"attributeHeader\":{\"labelValue\":\"964952\",\"primaryLabelValue\":\"964952\"}},{\"attributeHeader\":{\"labelValue\":\"964953\",\"primaryLabelValue\":\"964953\"}},{\"attributeHeader\":{\"labelValue\":\"964954\",\"primaryLabelValue\":\"964954\"}},{\"attributeHeader\":{\"labelValue\":\"964956\",\"primaryLabelValue\":\"964956\"}},{\"attributeHeader\":{\"labelValue\":\"964958\",\"primaryLabelValue\":\"964958\"}},{\"attributeHeader\":{\"labelValue\":\"964960\",\"primaryLabelValue\":\"964960\"}},{\"attributeHeader\":{\"labelValue\":\"964962\",\"primaryLabelValue\":\"964962\"}},{\"attributeHeader\":{\"labelValue\":\"964964\",\"primaryLabelValue\":\"964964\"}},{\"attributeHeader\":{\"labelValue\":\"964965\",\"primaryLabelValue\":\"964965\"}},{\"attributeHeader\":{\"labelValue\":\"964966\",\"primaryLabelValue\":\"964966\"}},{\"attributeHeader\":{\"labelValue\":\"964967\",\"primaryLabelValue\":\"964967\"}},{\"attributeHeader\":{\"labelValue\":\"964968\",\"primaryLabelValue\":\"964968\"}},{\"attributeHeader\":{\"labelValue\":\"964969\",\"primaryLabelValue\":\"964969\"}},{\"attributeHeader\":{\"labelValue\":\"964970\",\"primaryLabelValue\":\"964970\"}},{\"attributeHeader\":{\"labelValue\":\"964971\",\"primaryLabelValue\":\"964971\"}},{\"attributeHeader\":{\"labelValue\":\"964972\",\"primaryLabelValue\":\"964972\"}},{\"attributeHeader\":{\"labelValue\":\"964973\",\"primaryLabelValue\":\"964973\"}},{\"attributeHeader\":{\"labelValue\":\"964974\",\"primaryLabelValue\":\"964974\"}},{\"attributeHeader\":{\"labelValue\":\"964976\",\"primaryLabelValue\":\"964976\"}},{\"attributeHeader\":{\"labelValue\":\"964977\",\"primaryLabelValue\":\"964977\"}},{\"attributeHeader\":{\"labelValue\":\"964978\",\"primaryLabelValue\":\"964978\"}},{\"attributeHeader\":{\"labelValue\":\"964979\",\"primaryLabelValue\":\"964979\"}},{\"attributeHeader\":{\"labelValue\":\"964980\",\"primaryLabelValue\":\"964980\"}},{\"attributeHeader\":{\"labelValue\":\"964981\",\"primaryLabelValue\":\"964981\"}},{\"attributeHeader\":{\"labelValue\":\"964982\",\"primaryLabelValue\":\"964982\"}},{\"attributeHeader\":{\"labelValue\":\"964983\",\"primaryLabelValue\":\"964983\"}},{\"attributeHeader\":{\"labelValue\":\"964984\",\"primaryLabelValue\":\"964984\"}},{\"attributeHeader\":{\"labelValue\":\"964985\",\"primaryLabelValue\":\"964985\"}},{\"attributeHeader\":{\"labelValue\":\"964986\",\"primaryLabelValue\":\"964986\"}},{\"attributeHeader\":{\"labelValue\":\"964988\",\"primaryLabelValue\":\"964988\"}},{\"attributeHeader\":{\"labelValue\":\"964989\",\"primaryLabelValue\":\"964989\"}},{\"attributeHeader\":{\"labelValue\":\"964991\",\"primaryLabelValue\":\"964991\"}},{\"attributeHeader\":{\"labelValue\":\"964992\",\"primaryLabelValue\":\"964992\"}},{\"attributeHeader\":{\"labelValue\":\"964993\",\"primaryLabelValue\":\"964993\"}},{\"attributeHeader\":{\"labelValue\":\"964994\",\"primaryLabelValue\":\"964994\"}},{\"attributeHeader\":{\"labelValue\":\"964995\",\"primaryLabelValue\":\"964995\"}},{\"attributeHeader\":{\"labelValue\":\"964996\",\"primaryLabelValue\":\"964996\"}},{\"attributeHeader\":{\"labelValue\":\"964997\",\"primaryLabelValue\":\"964997\"}},{\"attributeHeader\":{\"labelValue\":\"964999\",\"primaryLabelValue\":\"964999\"}},{\"attributeHeader\":{\"labelValue\":\"965000\",\"primaryLabelValue\":\"965000\"}},{\"attributeHeader\":{\"labelValue\":\"965001\",\"primaryLabelValue\":\"965001\"}},{\"attributeHeader\":{\"labelValue\":\"965002\",\"primaryLabelValue\":\"965002\"}},{\"attributeHeader\":{\"labelValue\":\"965003\",\"primaryLabelValue\":\"965003\"}},{\"attributeHeader\":{\"labelValue\":\"965004\",\"primaryLabelValue\":\"965004\"}},{\"attributeHeader\":{\"labelValue\":\"965005\",\"primaryLabelValue\":\"965005\"}},{\"attributeHeader\":{\"labelValue\":\"965007\",\"primaryLabelValue\":\"965007\"}},{\"attributeHeader\":{\"labelValue\":\"965008\",\"primaryLabelValue\":\"965008\"}},{\"attributeHeader\":{\"labelValue\":\"965009\",\"primaryLabelValue\":\"965009\"}},{\"attributeHeader\":{\"labelValue\":\"965011\",\"primaryLabelValue\":\"965011\"}},{\"attributeHeader\":{\"labelValue\":\"965012\",\"primaryLabelValue\":\"965012\"}},{\"attributeHeader\":{\"labelValue\":\"965013\",\"primaryLabelValue\":\"965013\"}},{\"attributeHeader\":{\"labelValue\":\"965015\",\"primaryLabelValue\":\"965015\"}},{\"attributeHeader\":{\"labelValue\":\"965016\",\"primaryLabelValue\":\"965016\"}},{\"attributeHeader\":{\"labelValue\":\"965017\",\"primaryLabelValue\":\"965017\"}},{\"attributeHeader\":{\"labelValue\":\"965019\",\"primaryLabelValue\":\"965019\"}},{\"attributeHeader\":{\"labelValue\":\"965020\",\"primaryLabelValue\":\"965020\"}},{\"attributeHeader\":{\"labelValue\":\"965021\",\"primaryLabelValue\":\"965021\"}},{\"attributeHeader\":{\"labelValue\":\"965022\",\"primaryLabelValue\":\"965022\"}},{\"attributeHeader\":{\"labelValue\":\"965023\",\"primaryLabelValue\":\"965023\"}},{\"attributeHeader\":{\"labelValue\":\"965024\",\"primaryLabelValue\":\"965024\"}},{\"attributeHeader\":{\"labelValue\":\"965025\",\"primaryLabelValue\":\"965025\"}},{\"attributeHeader\":{\"labelValue\":\"965026\",\"primaryLabelValue\":\"965026\"}},{\"attributeHeader\":{\"labelValue\":\"965028\",\"primaryLabelValue\":\"965028\"}},{\"attributeHeader\":{\"labelValue\":\"965029\",\"primaryLabelValue\":\"965029\"}},{\"attributeHeader\":{\"labelValue\":\"965031\",\"primaryLabelValue\":\"965031\"}},{\"attributeHeader\":{\"labelValue\":\"965032\",\"primaryLabelValue\":\"965032\"}},{\"attributeHeader\":{\"labelValue\":\"965034\",\"primaryLabelValue\":\"965034\"}},{\"attributeHeader\":{\"labelValue\":\"965036\",\"primaryLabelValue\":\"965036\"}},{\"attributeHeader\":{\"labelValue\":\"965038\",\"primaryLabelValue\":\"965038\"}},{\"attributeHeader\":{\"labelValue\":\"965041\",\"primaryLabelValue\":\"965041\"}},{\"attributeHeader\":{\"labelValue\":\"965042\",\"primaryLabelValue\":\"965042\"}},{\"attributeHeader\":{\"labelValue\":\"965044\",\"primaryLabelValue\":\"965044\"}},{\"attributeHeader\":{\"labelValue\":\"965045\",\"primaryLabelValue\":\"965045\"}},{\"attributeHeader\":{\"labelValue\":\"965046\",\"primaryLabelValue\":\"965046\"}},{\"attributeHeader\":{\"labelValue\":\"965047\",\"primaryLabelValue\":\"965047\"}},{\"attributeHeader\":{\"labelValue\":\"965048\",\"primaryLabelValue\":\"965048\"}},{\"attributeHeader\":{\"labelValue\":\"965049\",\"primaryLabelValue\":\"965049\"}},{\"attributeHeader\":{\"labelValue\":\"965050\",\"primaryLabelValue\":\"965050\"}},{\"attributeHeader\":{\"labelValue\":\"965052\",\"primaryLabelValue\":\"965052\"}},{\"attributeHeader\":{\"labelValue\":\"965053\",\"primaryLabelValue\":\"965053\"}},{\"attributeHeader\":{\"labelValue\":\"965055\",\"primaryLabelValue\":\"965055\"}},{\"attributeHeader\":{\"labelValue\":\"965056\",\"primaryLabelValue\":\"965056\"}},{\"attributeHeader\":{\"labelValue\":\"965058\",\"primaryLabelValue\":\"965058\"}},{\"attributeHeader\":{\"labelValue\":\"965059\",\"primaryLabelValue\":\"965059\"}},{\"attributeHeader\":{\"labelValue\":\"965060\",\"primaryLabelValue\":\"965060\"}},{\"attributeHeader\":{\"labelValue\":\"965061\",\"primaryLabelValue\":\"965061\"}},{\"attributeHeader\":{\"labelValue\":\"965062\",\"primaryLabelValue\":\"965062\"}},{\"attributeHeader\":{\"labelValue\":\"965063\",\"primaryLabelValue\":\"965063\"}},{\"attributeHeader\":{\"labelValue\":\"965065\",\"primaryLabelValue\":\"965065\"}},{\"attributeHeader\":{\"labelValue\":\"965066\",\"primaryLabelValue\":\"965066\"}},{\"attributeHeader\":{\"labelValue\":\"965067\",\"primaryLabelValue\":\"965067\"}},{\"attributeHeader\":{\"labelValue\":\"965068\",\"primaryLabelValue\":\"965068\"}},{\"attributeHeader\":{\"labelValue\":\"965069\",\"primaryLabelValue\":\"965069\"}},{\"attributeHeader\":{\"labelValue\":\"965070\",\"primaryLabelValue\":\"965070\"}},{\"attributeHeader\":{\"labelValue\":\"965071\",\"primaryLabelValue\":\"965071\"}},{\"attributeHeader\":{\"labelValue\":\"965072\",\"primaryLabelValue\":\"965072\"}},{\"attributeHeader\":{\"labelValue\":\"965074\",\"primaryLabelValue\":\"965074\"}},{\"attributeHeader\":{\"labelValue\":\"965077\",\"primaryLabelValue\":\"965077\"}},{\"attributeHeader\":{\"labelValue\":\"965078\",\"primaryLabelValue\":\"965078\"}},{\"attributeHeader\":{\"labelValue\":\"965080\",\"primaryLabelValue\":\"965080\"}},{\"attributeHeader\":{\"labelValue\":\"965081\",\"primaryLabelValue\":\"965081\"}},{\"attributeHeader\":{\"labelValue\":\"965083\",\"primaryLabelValue\":\"965083\"}},{\"attributeHeader\":{\"labelValue\":\"965084\",\"primaryLabelValue\":\"965084\"}},{\"attributeHeader\":{\"labelValue\":\"965086\",\"primaryLabelValue\":\"965086\"}},{\"attributeHeader\":{\"labelValue\":\"965087\",\"primaryLabelValue\":\"965087\"}},{\"attributeHeader\":{\"labelValue\":\"965089\",\"primaryLabelValue\":\"965089\"}},{\"attributeHeader\":{\"labelValue\":\"965091\",\"primaryLabelValue\":\"965091\"}},{\"attributeHeader\":{\"labelValue\":\"965092\",\"primaryLabelValue\":\"965092\"}},{\"attributeHeader\":{\"labelValue\":\"965093\",\"primaryLabelValue\":\"965093\"}},{\"attributeHeader\":{\"labelValue\":\"965094\",\"primaryLabelValue\":\"965094\"}},{\"attributeHeader\":{\"labelValue\":\"965095\",\"primaryLabelValue\":\"965095\"}},{\"attributeHeader\":{\"labelValue\":\"965096\",\"primaryLabelValue\":\"965096\"}},{\"attributeHeader\":{\"labelValue\":\"965097\",\"primaryLabelValue\":\"965097\"}},{\"attributeHeader\":{\"labelValue\":\"965098\",\"primaryLabelValue\":\"965098\"}},{\"attributeHeader\":{\"labelValue\":\"965100\",\"primaryLabelValue\":\"965100\"}},{\"attributeHeader\":{\"labelValue\":\"965101\",\"primaryLabelValue\":\"965101\"}},{\"attributeHeader\":{\"labelValue\":\"965102\",\"primaryLabelValue\":\"965102\"}},{\"attributeHeader\":{\"labelValue\":\"965103\",\"primaryLabelValue\":\"965103\"}},{\"attributeHeader\":{\"labelValue\":\"965104\",\"primaryLabelValue\":\"965104\"}},{\"attributeHeader\":{\"labelValue\":\"965106\",\"primaryLabelValue\":\"965106\"}},{\"attributeHeader\":{\"labelValue\":\"965107\",\"primaryLabelValue\":\"965107\"}},{\"attributeHeader\":{\"labelValue\":\"965109\",\"primaryLabelValue\":\"965109\"}},{\"attributeHeader\":{\"labelValue\":\"965110\",\"primaryLabelValue\":\"965110\"}},{\"attributeHeader\":{\"labelValue\":\"965112\",\"primaryLabelValue\":\"965112\"}},{\"attributeHeader\":{\"labelValue\":\"965113\",\"primaryLabelValue\":\"965113\"}},{\"attributeHeader\":{\"labelValue\":\"965114\",\"primaryLabelValue\":\"965114\"}},{\"attributeHeader\":{\"labelValue\":\"965116\",\"primaryLabelValue\":\"965116\"}},{\"attributeHeader\":{\"labelValue\":\"965117\",\"primaryLabelValue\":\"965117\"}},{\"attributeHeader\":{\"labelValue\":\"965118\",\"primaryLabelValue\":\"965118\"}},{\"attributeHeader\":{\"labelValue\":\"965119\",\"primaryLabelValue\":\"965119\"}},{\"attributeHeader\":{\"labelValue\":\"965121\",\"primaryLabelValue\":\"965121\"}},{\"attributeHeader\":{\"labelValue\":\"965122\",\"primaryLabelValue\":\"965122\"}},{\"attributeHeader\":{\"labelValue\":\"965123\",\"primaryLabelValue\":\"965123\"}},{\"attributeHeader\":{\"labelValue\":\"965124\",\"primaryLabelValue\":\"965124\"}},{\"attributeHeader\":{\"labelValue\":\"965125\",\"primaryLabelValue\":\"965125\"}},{\"attributeHeader\":{\"labelValue\":\"965127\",\"primaryLabelValue\":\"965127\"}},{\"attributeHeader\":{\"labelValue\":\"965128\",\"primaryLabelValue\":\"965128\"}},{\"attributeHeader\":{\"labelValue\":\"965129\",\"primaryLabelValue\":\"965129\"}},{\"attributeHeader\":{\"labelValue\":\"965131\",\"primaryLabelValue\":\"965131\"}},{\"attributeHeader\":{\"labelValue\":\"965132\",\"primaryLabelValue\":\"965132\"}},{\"attributeHeader\":{\"labelValue\":\"965133\",\"primaryLabelValue\":\"965133\"}},{\"attributeHeader\":{\"labelValue\":\"965134\",\"primaryLabelValue\":\"965134\"}},{\"attributeHeader\":{\"labelValue\":\"965136\",\"primaryLabelValue\":\"965136\"}},{\"attributeHeader\":{\"labelValue\":\"965138\",\"primaryLabelValue\":\"965138\"}},{\"attributeHeader\":{\"labelValue\":\"965139\",\"primaryLabelValue\":\"965139\"}},{\"attributeHeader\":{\"labelValue\":\"965140\",\"primaryLabelValue\":\"965140\"}},{\"attributeHeader\":{\"labelValue\":\"965142\",\"primaryLabelValue\":\"965142\"}},{\"attributeHeader\":{\"labelValue\":\"965143\",\"primaryLabelValue\":\"965143\"}},{\"attributeHeader\":{\"labelValue\":\"965144\",\"primaryLabelValue\":\"965144\"}},{\"attributeHeader\":{\"labelValue\":\"965145\",\"primaryLabelValue\":\"965145\"}},{\"attributeHeader\":{\"labelValue\":\"965146\",\"primaryLabelValue\":\"965146\"}},{\"attributeHeader\":{\"labelValue\":\"965148\",\"primaryLabelValue\":\"965148\"}},{\"attributeHeader\":{\"labelValue\":\"965149\",\"primaryLabelValue\":\"965149\"}},{\"attributeHeader\":{\"labelValue\":\"965150\",\"primaryLabelValue\":\"965150\"}},{\"attributeHeader\":{\"labelValue\":\"965151\",\"primaryLabelValue\":\"965151\"}},{\"attributeHeader\":{\"labelValue\":\"965152\",\"primaryLabelValue\":\"965152\"}},{\"attributeHeader\":{\"labelValue\":\"965155\",\"primaryLabelValue\":\"965155\"}},{\"attributeHeader\":{\"labelValue\":\"965156\",\"primaryLabelValue\":\"965156\"}},{\"attributeHeader\":{\"labelValue\":\"965157\",\"primaryLabelValue\":\"965157\"}},{\"attributeHeader\":{\"labelValue\":\"965158\",\"primaryLabelValue\":\"965158\"}},{\"attributeHeader\":{\"labelValue\":\"965159\",\"primaryLabelValue\":\"965159\"}},{\"attributeHeader\":{\"labelValue\":\"965160\",\"primaryLabelValue\":\"965160\"}},{\"attributeHeader\":{\"labelValue\":\"965161\",\"primaryLabelValue\":\"965161\"}},{\"attributeHeader\":{\"labelValue\":\"965163\",\"primaryLabelValue\":\"965163\"}},{\"attributeHeader\":{\"labelValue\":\"965165\",\"primaryLabelValue\":\"965165\"}},{\"attributeHeader\":{\"labelValue\":\"965166\",\"primaryLabelValue\":\"965166\"}},{\"attributeHeader\":{\"labelValue\":\"965167\",\"primaryLabelValue\":\"965167\"}},{\"attributeHeader\":{\"labelValue\":\"965168\",\"primaryLabelValue\":\"965168\"}},{\"attributeHeader\":{\"labelValue\":\"965170\",\"primaryLabelValue\":\"965170\"}},{\"attributeHeader\":{\"labelValue\":\"965171\",\"primaryLabelValue\":\"965171\"}},{\"attributeHeader\":{\"labelValue\":\"965172\",\"primaryLabelValue\":\"965172\"}},{\"attributeHeader\":{\"labelValue\":\"965173\",\"primaryLabelValue\":\"965173\"}},{\"attributeHeader\":{\"labelValue\":\"965174\",\"primaryLabelValue\":\"965174\"}},{\"attributeHeader\":{\"labelValue\":\"965176\",\"primaryLabelValue\":\"965176\"}},{\"attributeHeader\":{\"labelValue\":\"965178\",\"primaryLabelValue\":\"965178\"}},{\"attributeHeader\":{\"labelValue\":\"965180\",\"primaryLabelValue\":\"965180\"}},{\"attributeHeader\":{\"labelValue\":\"965181\",\"primaryLabelValue\":\"965181\"}},{\"attributeHeader\":{\"labelValue\":\"965182\",\"primaryLabelValue\":\"965182\"}},{\"attributeHeader\":{\"labelValue\":\"965184\",\"primaryLabelValue\":\"965184\"}},{\"attributeHeader\":{\"labelValue\":\"965186\",\"primaryLabelValue\":\"965186\"}},{\"attributeHeader\":{\"labelValue\":\"965187\",\"primaryLabelValue\":\"965187\"}},{\"attributeHeader\":{\"labelValue\":\"965188\",\"primaryLabelValue\":\"965188\"}},{\"attributeHeader\":{\"labelValue\":\"965189\",\"primaryLabelValue\":\"965189\"}},{\"attributeHeader\":{\"labelValue\":\"965190\",\"primaryLabelValue\":\"965190\"}},{\"attributeHeader\":{\"labelValue\":\"965191\",\"primaryLabelValue\":\"965191\"}},{\"attributeHeader\":{\"labelValue\":\"965192\",\"primaryLabelValue\":\"965192\"}},{\"attributeHeader\":{\"labelValue\":\"965194\",\"primaryLabelValue\":\"965194\"}},{\"attributeHeader\":{\"labelValue\":\"965196\",\"primaryLabelValue\":\"965196\"}},{\"attributeHeader\":{\"labelValue\":\"965197\",\"primaryLabelValue\":\"965197\"}},{\"attributeHeader\":{\"labelValue\":\"965199\",\"primaryLabelValue\":\"965199\"}},{\"attributeHeader\":{\"labelValue\":\"965200\",\"primaryLabelValue\":\"965200\"}},{\"attributeHeader\":{\"labelValue\":\"965201\",\"primaryLabelValue\":\"965201\"}},{\"attributeHeader\":{\"labelValue\":\"965202\",\"primaryLabelValue\":\"965202\"}},{\"attributeHeader\":{\"labelValue\":\"965203\",\"primaryLabelValue\":\"965203\"}},{\"attributeHeader\":{\"labelValue\":\"965205\",\"primaryLabelValue\":\"965205\"}},{\"attributeHeader\":{\"labelValue\":\"965206\",\"primaryLabelValue\":\"965206\"}},{\"attributeHeader\":{\"labelValue\":\"965207\",\"primaryLabelValue\":\"965207\"}},{\"attributeHeader\":{\"labelValue\":\"965208\",\"primaryLabelValue\":\"965208\"}},{\"attributeHeader\":{\"labelValue\":\"965209\",\"primaryLabelValue\":\"965209\"}},{\"attributeHeader\":{\"labelValue\":\"965210\",\"primaryLabelValue\":\"965210\"}},{\"attributeHeader\":{\"labelValue\":\"965212\",\"primaryLabelValue\":\"965212\"}},{\"attributeHeader\":{\"labelValue\":\"965213\",\"primaryLabelValue\":\"965213\"}},{\"attributeHeader\":{\"labelValue\":\"965215\",\"primaryLabelValue\":\"965215\"}},{\"attributeHeader\":{\"labelValue\":\"965217\",\"primaryLabelValue\":\"965217\"}},{\"attributeHeader\":{\"labelValue\":\"965219\",\"primaryLabelValue\":\"965219\"}},{\"attributeHeader\":{\"labelValue\":\"965220\",\"primaryLabelValue\":\"965220\"}},{\"attributeHeader\":{\"labelValue\":\"965221\",\"primaryLabelValue\":\"965221\"}},{\"attributeHeader\":{\"labelValue\":\"965222\",\"primaryLabelValue\":\"965222\"}},{\"attributeHeader\":{\"labelValue\":\"965223\",\"primaryLabelValue\":\"965223\"}},{\"attributeHeader\":{\"labelValue\":\"965224\",\"primaryLabelValue\":\"965224\"}},{\"attributeHeader\":{\"labelValue\":\"965226\",\"primaryLabelValue\":\"965226\"}},{\"attributeHeader\":{\"labelValue\":\"965228\",\"primaryLabelValue\":\"965228\"}},{\"attributeHeader\":{\"labelValue\":\"965229\",\"primaryLabelValue\":\"965229\"}},{\"attributeHeader\":{\"labelValue\":\"965230\",\"primaryLabelValue\":\"965230\"}},{\"attributeHeader\":{\"labelValue\":\"965232\",\"primaryLabelValue\":\"965232\"}},{\"attributeHeader\":{\"labelValue\":\"965233\",\"primaryLabelValue\":\"965233\"}},{\"attributeHeader\":{\"labelValue\":\"965234\",\"primaryLabelValue\":\"965234\"}},{\"attributeHeader\":{\"labelValue\":\"965235\",\"primaryLabelValue\":\"965235\"}},{\"attributeHeader\":{\"labelValue\":\"965236\",\"primaryLabelValue\":\"965236\"}},{\"attributeHeader\":{\"labelValue\":\"965237\",\"primaryLabelValue\":\"965237\"}},{\"attributeHeader\":{\"labelValue\":\"965238\",\"primaryLabelValue\":\"965238\"}},{\"attributeHeader\":{\"labelValue\":\"965239\",\"primaryLabelValue\":\"965239\"}},{\"attributeHeader\":{\"labelValue\":\"965240\",\"primaryLabelValue\":\"965240\"}},{\"attributeHeader\":{\"labelValue\":\"965241\",\"primaryLabelValue\":\"965241\"}},{\"attributeHeader\":{\"labelValue\":\"965242\",\"primaryLabelValue\":\"965242\"}},{\"attributeHeader\":{\"labelValue\":\"965243\",\"primaryLabelValue\":\"965243\"}},{\"attributeHeader\":{\"labelValue\":\"965244\",\"primaryLabelValue\":\"965244\"}},{\"attributeHeader\":{\"labelValue\":\"965245\",\"primaryLabelValue\":\"965245\"}},{\"attributeHeader\":{\"labelValue\":\"965246\",\"primaryLabelValue\":\"965246\"}},{\"attributeHeader\":{\"labelValue\":\"965248\",\"primaryLabelValue\":\"965248\"}},{\"attributeHeader\":{\"labelValue\":\"965249\",\"primaryLabelValue\":\"965249\"}},{\"attributeHeader\":{\"labelValue\":\"965250\",\"primaryLabelValue\":\"965250\"}},{\"attributeHeader\":{\"labelValue\":\"965252\",\"primaryLabelValue\":\"965252\"}},{\"attributeHeader\":{\"labelValue\":\"965253\",\"primaryLabelValue\":\"965253\"}},{\"attributeHeader\":{\"labelValue\":\"965254\",\"primaryLabelValue\":\"965254\"}},{\"attributeHeader\":{\"labelValue\":\"965256\",\"primaryLabelValue\":\"965256\"}},{\"attributeHeader\":{\"labelValue\":\"965259\",\"primaryLabelValue\":\"965259\"}},{\"attributeHeader\":{\"labelValue\":\"965260\",\"primaryLabelValue\":\"965260\"}},{\"attributeHeader\":{\"labelValue\":\"965261\",\"primaryLabelValue\":\"965261\"}},{\"attributeHeader\":{\"labelValue\":\"965262\",\"primaryLabelValue\":\"965262\"}},{\"attributeHeader\":{\"labelValue\":\"965263\",\"primaryLabelValue\":\"965263\"}},{\"attributeHeader\":{\"labelValue\":\"965264\",\"primaryLabelValue\":\"965264\"}},{\"attributeHeader\":{\"labelValue\":\"965265\",\"primaryLabelValue\":\"965265\"}},{\"attributeHeader\":{\"labelValue\":\"965266\",\"primaryLabelValue\":\"965266\"}},{\"attributeHeader\":{\"labelValue\":\"965267\",\"primaryLabelValue\":\"965267\"}},{\"attributeHeader\":{\"labelValue\":\"965268\",\"primaryLabelValue\":\"965268\"}},{\"attributeHeader\":{\"labelValue\":\"965269\",\"primaryLabelValue\":\"965269\"}},{\"attributeHeader\":{\"labelValue\":\"965270\",\"primaryLabelValue\":\"965270\"}},{\"attributeHeader\":{\"labelValue\":\"965271\",\"primaryLabelValue\":\"965271\"}},{\"attributeHeader\":{\"labelValue\":\"965272\",\"primaryLabelValue\":\"965272\"}},{\"attributeHeader\":{\"labelValue\":\"965273\",\"primaryLabelValue\":\"965273\"}},{\"attributeHeader\":{\"labelValue\":\"965274\",\"primaryLabelValue\":\"965274\"}},{\"attributeHeader\":{\"labelValue\":\"965275\",\"primaryLabelValue\":\"965275\"}},{\"attributeHeader\":{\"labelValue\":\"965276\",\"primaryLabelValue\":\"965276\"}},{\"attributeHeader\":{\"labelValue\":\"965278\",\"primaryLabelValue\":\"965278\"}},{\"attributeHeader\":{\"labelValue\":\"965279\",\"primaryLabelValue\":\"965279\"}},{\"attributeHeader\":{\"labelValue\":\"965280\",\"primaryLabelValue\":\"965280\"}},{\"attributeHeader\":{\"labelValue\":\"965282\",\"primaryLabelValue\":\"965282\"}},{\"attributeHeader\":{\"labelValue\":\"965283\",\"primaryLabelValue\":\"965283\"}},{\"attributeHeader\":{\"labelValue\":\"965284\",\"primaryLabelValue\":\"965284\"}},{\"attributeHeader\":{\"labelValue\":\"965285\",\"primaryLabelValue\":\"965285\"}},{\"attributeHeader\":{\"labelValue\":\"965288\",\"primaryLabelValue\":\"965288\"}},{\"attributeHeader\":{\"labelValue\":\"965290\",\"primaryLabelValue\":\"965290\"}},{\"attributeHeader\":{\"labelValue\":\"965291\",\"primaryLabelValue\":\"965291\"}},{\"attributeHeader\":{\"labelValue\":\"965292\",\"primaryLabelValue\":\"965292\"}},{\"attributeHeader\":{\"labelValue\":\"965293\",\"primaryLabelValue\":\"965293\"}},{\"attributeHeader\":{\"labelValue\":\"965294\",\"primaryLabelValue\":\"965294\"}},{\"attributeHeader\":{\"labelValue\":\"965295\",\"primaryLabelValue\":\"965295\"}},{\"attributeHeader\":{\"labelValue\":\"965296\",\"primaryLabelValue\":\"965296\"}},{\"attributeHeader\":{\"labelValue\":\"965297\",\"primaryLabelValue\":\"965297\"}},{\"attributeHeader\":{\"labelValue\":\"965298\",\"primaryLabelValue\":\"965298\"}},{\"attributeHeader\":{\"labelValue\":\"965299\",\"primaryLabelValue\":\"965299\"}},{\"attributeHeader\":{\"labelValue\":\"965300\",\"primaryLabelValue\":\"965300\"}},{\"attributeHeader\":{\"labelValue\":\"965301\",\"primaryLabelValue\":\"965301\"}},{\"attributeHeader\":{\"labelValue\":\"965302\",\"primaryLabelValue\":\"965302\"}},{\"attributeHeader\":{\"labelValue\":\"965304\",\"primaryLabelValue\":\"965304\"}},{\"attributeHeader\":{\"labelValue\":\"965306\",\"primaryLabelValue\":\"965306\"}},{\"attributeHeader\":{\"labelValue\":\"965307\",\"primaryLabelValue\":\"965307\"}},{\"attributeHeader\":{\"labelValue\":\"965308\",\"primaryLabelValue\":\"965308\"}},{\"attributeHeader\":{\"labelValue\":\"965310\",\"primaryLabelValue\":\"965310\"}},{\"attributeHeader\":{\"labelValue\":\"965311\",\"primaryLabelValue\":\"965311\"}},{\"attributeHeader\":{\"labelValue\":\"965313\",\"primaryLabelValue\":\"965313\"}},{\"attributeHeader\":{\"labelValue\":\"965314\",\"primaryLabelValue\":\"965314\"}},{\"attributeHeader\":{\"labelValue\":\"965315\",\"primaryLabelValue\":\"965315\"}},{\"attributeHeader\":{\"labelValue\":\"965316\",\"primaryLabelValue\":\"965316\"}},{\"attributeHeader\":{\"labelValue\":\"965317\",\"primaryLabelValue\":\"965317\"}},{\"attributeHeader\":{\"labelValue\":\"965318\",\"primaryLabelValue\":\"965318\"}},{\"attributeHeader\":{\"labelValue\":\"965319\",\"primaryLabelValue\":\"965319\"}},{\"attributeHeader\":{\"labelValue\":\"965320\",\"primaryLabelValue\":\"965320\"}},{\"attributeHeader\":{\"labelValue\":\"965321\",\"primaryLabelValue\":\"965321\"}},{\"attributeHeader\":{\"labelValue\":\"965322\",\"primaryLabelValue\":\"965322\"}},{\"attributeHeader\":{\"labelValue\":\"965323\",\"primaryLabelValue\":\"965323\"}},{\"attributeHeader\":{\"labelValue\":\"965325\",\"primaryLabelValue\":\"965325\"}},{\"attributeHeader\":{\"labelValue\":\"965326\",\"primaryLabelValue\":\"965326\"}},{\"attributeHeader\":{\"labelValue\":\"965328\",\"primaryLabelValue\":\"965328\"}},{\"attributeHeader\":{\"labelValue\":\"965329\",\"primaryLabelValue\":\"965329\"}},{\"attributeHeader\":{\"labelValue\":\"965331\",\"primaryLabelValue\":\"965331\"}},{\"attributeHeader\":{\"labelValue\":\"965332\",\"primaryLabelValue\":\"965332\"}},{\"attributeHeader\":{\"labelValue\":\"965333\",\"primaryLabelValue\":\"965333\"}},{\"attributeHeader\":{\"labelValue\":\"965335\",\"primaryLabelValue\":\"965335\"}},{\"attributeHeader\":{\"labelValue\":\"965336\",\"primaryLabelValue\":\"965336\"}},{\"attributeHeader\":{\"labelValue\":\"965337\",\"primaryLabelValue\":\"965337\"}},{\"attributeHeader\":{\"labelValue\":\"965338\",\"primaryLabelValue\":\"965338\"}},{\"attributeHeader\":{\"labelValue\":\"965339\",\"primaryLabelValue\":\"965339\"}},{\"attributeHeader\":{\"labelValue\":\"965340\",\"primaryLabelValue\":\"965340\"}},{\"attributeHeader\":{\"labelValue\":\"965341\",\"primaryLabelValue\":\"965341\"}},{\"attributeHeader\":{\"labelValue\":\"965342\",\"primaryLabelValue\":\"965342\"}},{\"attributeHeader\":{\"labelValue\":\"965343\",\"primaryLabelValue\":\"965343\"}},{\"attributeHeader\":{\"labelValue\":\"965345\",\"primaryLabelValue\":\"965345\"}},{\"attributeHeader\":{\"labelValue\":\"965346\",\"primaryLabelValue\":\"965346\"}},{\"attributeHeader\":{\"labelValue\":\"965347\",\"primaryLabelValue\":\"965347\"}},{\"attributeHeader\":{\"labelValue\":\"965349\",\"primaryLabelValue\":\"965349\"}},{\"attributeHeader\":{\"labelValue\":\"965350\",\"primaryLabelValue\":\"965350\"}},{\"attributeHeader\":{\"labelValue\":\"965351\",\"primaryLabelValue\":\"965351\"}},{\"attributeHeader\":{\"labelValue\":\"965353\",\"primaryLabelValue\":\"965353\"}},{\"attributeHeader\":{\"labelValue\":\"965354\",\"primaryLabelValue\":\"965354\"}},{\"attributeHeader\":{\"labelValue\":\"965355\",\"primaryLabelValue\":\"965355\"}},{\"attributeHeader\":{\"labelValue\":\"965357\",\"primaryLabelValue\":\"965357\"}},{\"attributeHeader\":{\"labelValue\":\"965359\",\"primaryLabelValue\":\"965359\"}},{\"attributeHeader\":{\"labelValue\":\"965360\",\"primaryLabelValue\":\"965360\"}},{\"attributeHeader\":{\"labelValue\":\"965361\",\"primaryLabelValue\":\"965361\"}},{\"attributeHeader\":{\"labelValue\":\"965362\",\"primaryLabelValue\":\"965362\"}},{\"attributeHeader\":{\"labelValue\":\"965363\",\"primaryLabelValue\":\"965363\"}},{\"attributeHeader\":{\"labelValue\":\"965365\",\"primaryLabelValue\":\"965365\"}},{\"attributeHeader\":{\"labelValue\":\"965367\",\"primaryLabelValue\":\"965367\"}},{\"attributeHeader\":{\"labelValue\":\"965368\",\"primaryLabelValue\":\"965368\"}},{\"attributeHeader\":{\"labelValue\":\"965370\",\"primaryLabelValue\":\"965370\"}},{\"attributeHeader\":{\"labelValue\":\"965371\",\"primaryLabelValue\":\"965371\"}},{\"attributeHeader\":{\"labelValue\":\"965373\",\"primaryLabelValue\":\"965373\"}},{\"attributeHeader\":{\"labelValue\":\"965375\",\"primaryLabelValue\":\"965375\"}},{\"attributeHeader\":{\"labelValue\":\"965376\",\"primaryLabelValue\":\"965376\"}},{\"attributeHeader\":{\"labelValue\":\"965377\",\"primaryLabelValue\":\"965377\"}},{\"attributeHeader\":{\"labelValue\":\"965378\",\"primaryLabelValue\":\"965378\"}},{\"attributeHeader\":{\"labelValue\":\"965379\",\"primaryLabelValue\":\"965379\"}},{\"attributeHeader\":{\"labelValue\":\"965381\",\"primaryLabelValue\":\"965381\"}},{\"attributeHeader\":{\"labelValue\":\"965382\",\"primaryLabelValue\":\"965382\"}},{\"attributeHeader\":{\"labelValue\":\"965384\",\"primaryLabelValue\":\"965384\"}},{\"attributeHeader\":{\"labelValue\":\"965385\",\"primaryLabelValue\":\"965385\"}},{\"attributeHeader\":{\"labelValue\":\"965386\",\"primaryLabelValue\":\"965386\"}},{\"attributeHeader\":{\"labelValue\":\"965387\",\"primaryLabelValue\":\"965387\"}},{\"attributeHeader\":{\"labelValue\":\"965389\",\"primaryLabelValue\":\"965389\"}},{\"attributeHeader\":{\"labelValue\":\"965390\",\"primaryLabelValue\":\"965390\"}},{\"attributeHeader\":{\"labelValue\":\"965392\",\"primaryLabelValue\":\"965392\"}},{\"attributeHeader\":{\"labelValue\":\"965393\",\"primaryLabelValue\":\"965393\"}},{\"attributeHeader\":{\"labelValue\":\"965394\",\"primaryLabelValue\":\"965394\"}},{\"attributeHeader\":{\"labelValue\":\"965396\",\"primaryLabelValue\":\"965396\"}},{\"attributeHeader\":{\"labelValue\":\"965397\",\"primaryLabelValue\":\"965397\"}},{\"attributeHeader\":{\"labelValue\":\"965399\",\"primaryLabelValue\":\"965399\"}},{\"attributeHeader\":{\"labelValue\":\"965400\",\"primaryLabelValue\":\"965400\"}},{\"attributeHeader\":{\"labelValue\":\"965401\",\"primaryLabelValue\":\"965401\"}},{\"attributeHeader\":{\"labelValue\":\"965402\",\"primaryLabelValue\":\"965402\"}},{\"attributeHeader\":{\"labelValue\":\"965403\",\"primaryLabelValue\":\"965403\"}},{\"attributeHeader\":{\"labelValue\":\"965404\",\"primaryLabelValue\":\"965404\"}},{\"attributeHeader\":{\"labelValue\":\"965405\",\"primaryLabelValue\":\"965405\"}},{\"attributeHeader\":{\"labelValue\":\"965406\",\"primaryLabelValue\":\"965406\"}},{\"attributeHeader\":{\"labelValue\":\"965407\",\"primaryLabelValue\":\"965407\"}},{\"attributeHeader\":{\"labelValue\":\"965408\",\"primaryLabelValue\":\"965408\"}},{\"attributeHeader\":{\"labelValue\":\"965409\",\"primaryLabelValue\":\"965409\"}},{\"attributeHeader\":{\"labelValue\":\"965410\",\"primaryLabelValue\":\"965410\"}},{\"attributeHeader\":{\"labelValue\":\"965411\",\"primaryLabelValue\":\"965411\"}},{\"attributeHeader\":{\"labelValue\":\"965413\",\"primaryLabelValue\":\"965413\"}},{\"attributeHeader\":{\"labelValue\":\"965415\",\"primaryLabelValue\":\"965415\"}},{\"attributeHeader\":{\"labelValue\":\"965416\",\"primaryLabelValue\":\"965416\"}},{\"attributeHeader\":{\"labelValue\":\"965417\",\"primaryLabelValue\":\"965417\"}},{\"attributeHeader\":{\"labelValue\":\"965418\",\"primaryLabelValue\":\"965418\"}},{\"attributeHeader\":{\"labelValue\":\"965419\",\"primaryLabelValue\":\"965419\"}},{\"attributeHeader\":{\"labelValue\":\"965421\",\"primaryLabelValue\":\"965421\"}},{\"attributeHeader\":{\"labelValue\":\"965423\",\"primaryLabelValue\":\"965423\"}},{\"attributeHeader\":{\"labelValue\":\"965425\",\"primaryLabelValue\":\"965425\"}},{\"attributeHeader\":{\"labelValue\":\"965427\",\"primaryLabelValue\":\"965427\"}},{\"attributeHeader\":{\"labelValue\":\"965428\",\"primaryLabelValue\":\"965428\"}},{\"attributeHeader\":{\"labelValue\":\"965429\",\"primaryLabelValue\":\"965429\"}},{\"attributeHeader\":{\"labelValue\":\"965430\",\"primaryLabelValue\":\"965430\"}},{\"attributeHeader\":{\"labelValue\":\"965432\",\"primaryLabelValue\":\"965432\"}},{\"attributeHeader\":{\"labelValue\":\"965433\",\"primaryLabelValue\":\"965433\"}},{\"attributeHeader\":{\"labelValue\":\"965434\",\"primaryLabelValue\":\"965434\"}},{\"attributeHeader\":{\"labelValue\":\"965435\",\"primaryLabelValue\":\"965435\"}},{\"attributeHeader\":{\"labelValue\":\"965436\",\"primaryLabelValue\":\"965436\"}},{\"attributeHeader\":{\"labelValue\":\"965438\",\"primaryLabelValue\":\"965438\"}},{\"attributeHeader\":{\"labelValue\":\"965440\",\"primaryLabelValue\":\"965440\"}},{\"attributeHeader\":{\"labelValue\":\"965441\",\"primaryLabelValue\":\"965441\"}},{\"attributeHeader\":{\"labelValue\":\"965442\",\"primaryLabelValue\":\"965442\"}},{\"attributeHeader\":{\"labelValue\":\"965443\",\"primaryLabelValue\":\"965443\"}},{\"attributeHeader\":{\"labelValue\":\"965445\",\"primaryLabelValue\":\"965445\"}},{\"attributeHeader\":{\"labelValue\":\"965447\",\"primaryLabelValue\":\"965447\"}},{\"attributeHeader\":{\"labelValue\":\"965449\",\"primaryLabelValue\":\"965449\"}},{\"attributeHeader\":{\"labelValue\":\"965450\",\"primaryLabelValue\":\"965450\"}},{\"attributeHeader\":{\"labelValue\":\"965451\",\"primaryLabelValue\":\"965451\"}},{\"attributeHeader\":{\"labelValue\":\"965453\",\"primaryLabelValue\":\"965453\"}},{\"attributeHeader\":{\"labelValue\":\"965454\",\"primaryLabelValue\":\"965454\"}},{\"attributeHeader\":{\"labelValue\":\"965456\",\"primaryLabelValue\":\"965456\"}},{\"attributeHeader\":{\"labelValue\":\"965457\",\"primaryLabelValue\":\"965457\"}},{\"attributeHeader\":{\"labelValue\":\"965458\",\"primaryLabelValue\":\"965458\"}},{\"attributeHeader\":{\"labelValue\":\"965459\",\"primaryLabelValue\":\"965459\"}},{\"attributeHeader\":{\"labelValue\":\"965461\",\"primaryLabelValue\":\"965461\"}},{\"attributeHeader\":{\"labelValue\":\"965462\",\"primaryLabelValue\":\"965462\"}},{\"attributeHeader\":{\"labelValue\":\"965466\",\"primaryLabelValue\":\"965466\"}},{\"attributeHeader\":{\"labelValue\":\"965467\",\"primaryLabelValue\":\"965467\"}},{\"attributeHeader\":{\"labelValue\":\"965469\",\"primaryLabelValue\":\"965469\"}},{\"attributeHeader\":{\"labelValue\":\"965470\",\"primaryLabelValue\":\"965470\"}},{\"attributeHeader\":{\"labelValue\":\"965471\",\"primaryLabelValue\":\"965471\"}},{\"attributeHeader\":{\"labelValue\":\"965473\",\"primaryLabelValue\":\"965473\"}},{\"attributeHeader\":{\"labelValue\":\"965474\",\"primaryLabelValue\":\"965474\"}},{\"attributeHeader\":{\"labelValue\":\"965476\",\"primaryLabelValue\":\"965476\"}},{\"attributeHeader\":{\"labelValue\":\"965477\",\"primaryLabelValue\":\"965477\"}},{\"attributeHeader\":{\"labelValue\":\"965478\",\"primaryLabelValue\":\"965478\"}},{\"attributeHeader\":{\"labelValue\":\"965479\",\"primaryLabelValue\":\"965479\"}},{\"attributeHeader\":{\"labelValue\":\"965481\",\"primaryLabelValue\":\"965481\"}},{\"attributeHeader\":{\"labelValue\":\"965483\",\"primaryLabelValue\":\"965483\"}},{\"attributeHeader\":{\"labelValue\":\"965484\",\"primaryLabelValue\":\"965484\"}},{\"attributeHeader\":{\"labelValue\":\"965485\",\"primaryLabelValue\":\"965485\"}},{\"attributeHeader\":{\"labelValue\":\"965487\",\"primaryLabelValue\":\"965487\"}},{\"attributeHeader\":{\"labelValue\":\"965489\",\"primaryLabelValue\":\"965489\"}},{\"attributeHeader\":{\"labelValue\":\"965490\",\"primaryLabelValue\":\"965490\"}},{\"attributeHeader\":{\"labelValue\":\"965492\",\"primaryLabelValue\":\"965492\"}},{\"attributeHeader\":{\"labelValue\":\"965493\",\"primaryLabelValue\":\"965493\"}},{\"attributeHeader\":{\"labelValue\":\"965496\",\"primaryLabelValue\":\"965496\"}},{\"attributeHeader\":{\"labelValue\":\"965498\",\"primaryLabelValue\":\"965498\"}},{\"attributeHeader\":{\"labelValue\":\"965499\",\"primaryLabelValue\":\"965499\"}},{\"attributeHeader\":{\"labelValue\":\"965500\",\"primaryLabelValue\":\"965500\"}},{\"attributeHeader\":{\"labelValue\":\"965501\",\"primaryLabelValue\":\"965501\"}},{\"attributeHeader\":{\"labelValue\":\"965502\",\"primaryLabelValue\":\"965502\"}},{\"attributeHeader\":{\"labelValue\":\"965504\",\"primaryLabelValue\":\"965504\"}},{\"attributeHeader\":{\"labelValue\":\"965505\",\"primaryLabelValue\":\"965505\"}},{\"attributeHeader\":{\"labelValue\":\"965506\",\"primaryLabelValue\":\"965506\"}},{\"attributeHeader\":{\"labelValue\":\"965508\",\"primaryLabelValue\":\"965508\"}},{\"attributeHeader\":{\"labelValue\":\"965510\",\"primaryLabelValue\":\"965510\"}},{\"attributeHeader\":{\"labelValue\":\"965511\",\"primaryLabelValue\":\"965511\"}},{\"attributeHeader\":{\"labelValue\":\"965512\",\"primaryLabelValue\":\"965512\"}},{\"attributeHeader\":{\"labelValue\":\"965513\",\"primaryLabelValue\":\"965513\"}},{\"attributeHeader\":{\"labelValue\":\"965515\",\"primaryLabelValue\":\"965515\"}},{\"attributeHeader\":{\"labelValue\":\"965516\",\"primaryLabelValue\":\"965516\"}},{\"attributeHeader\":{\"labelValue\":\"965517\",\"primaryLabelValue\":\"965517\"}},{\"attributeHeader\":{\"labelValue\":\"965518\",\"primaryLabelValue\":\"965518\"}},{\"attributeHeader\":{\"labelValue\":\"965520\",\"primaryLabelValue\":\"965520\"}},{\"attributeHeader\":{\"labelValue\":\"965522\",\"primaryLabelValue\":\"965522\"}},{\"attributeHeader\":{\"labelValue\":\"965524\",\"primaryLabelValue\":\"965524\"}},{\"attributeHeader\":{\"labelValue\":\"965525\",\"primaryLabelValue\":\"965525\"}},{\"attributeHeader\":{\"labelValue\":\"965526\",\"primaryLabelValue\":\"965526\"}},{\"attributeHeader\":{\"labelValue\":\"965527\",\"primaryLabelValue\":\"965527\"}},{\"attributeHeader\":{\"labelValue\":\"965528\",\"primaryLabelValue\":\"965528\"}},{\"attributeHeader\":{\"labelValue\":\"965531\",\"primaryLabelValue\":\"965531\"}},{\"attributeHeader\":{\"labelValue\":\"965533\",\"primaryLabelValue\":\"965533\"}},{\"attributeHeader\":{\"labelValue\":\"965534\",\"primaryLabelValue\":\"965534\"}},{\"attributeHeader\":{\"labelValue\":\"965536\",\"primaryLabelValue\":\"965536\"}},{\"attributeHeader\":{\"labelValue\":\"965537\",\"primaryLabelValue\":\"965537\"}},{\"attributeHeader\":{\"labelValue\":\"965538\",\"primaryLabelValue\":\"965538\"}},{\"attributeHeader\":{\"labelValue\":\"965539\",\"primaryLabelValue\":\"965539\"}},{\"attributeHeader\":{\"labelValue\":\"965540\",\"primaryLabelValue\":\"965540\"}},{\"attributeHeader\":{\"labelValue\":\"965541\",\"primaryLabelValue\":\"965541\"}},{\"attributeHeader\":{\"labelValue\":\"965542\",\"primaryLabelValue\":\"965542\"}},{\"attributeHeader\":{\"labelValue\":\"965545\",\"primaryLabelValue\":\"965545\"}},{\"attributeHeader\":{\"labelValue\":\"965546\",\"primaryLabelValue\":\"965546\"}},{\"attributeHeader\":{\"labelValue\":\"965547\",\"primaryLabelValue\":\"965547\"}},{\"attributeHeader\":{\"labelValue\":\"965548\",\"primaryLabelValue\":\"965548\"}},{\"attributeHeader\":{\"labelValue\":\"965549\",\"primaryLabelValue\":\"965549\"}},{\"attributeHeader\":{\"labelValue\":\"965550\",\"primaryLabelValue\":\"965550\"}},{\"attributeHeader\":{\"labelValue\":\"965551\",\"primaryLabelValue\":\"965551\"}},{\"attributeHeader\":{\"labelValue\":\"965552\",\"primaryLabelValue\":\"965552\"}},{\"attributeHeader\":{\"labelValue\":\"965553\",\"primaryLabelValue\":\"965553\"}},{\"attributeHeader\":{\"labelValue\":\"965555\",\"primaryLabelValue\":\"965555\"}},{\"attributeHeader\":{\"labelValue\":\"965557\",\"primaryLabelValue\":\"965557\"}},{\"attributeHeader\":{\"labelValue\":\"965559\",\"primaryLabelValue\":\"965559\"}},{\"attributeHeader\":{\"labelValue\":\"965560\",\"primaryLabelValue\":\"965560\"}},{\"attributeHeader\":{\"labelValue\":\"965562\",\"primaryLabelValue\":\"965562\"}},{\"attributeHeader\":{\"labelValue\":\"965563\",\"primaryLabelValue\":\"965563\"}},{\"attributeHeader\":{\"labelValue\":\"965564\",\"primaryLabelValue\":\"965564\"}},{\"attributeHeader\":{\"labelValue\":\"965565\",\"primaryLabelValue\":\"965565\"}},{\"attributeHeader\":{\"labelValue\":\"965566\",\"primaryLabelValue\":\"965566\"}},{\"attributeHeader\":{\"labelValue\":\"965567\",\"primaryLabelValue\":\"965567\"}},{\"attributeHeader\":{\"labelValue\":\"965569\",\"primaryLabelValue\":\"965569\"}},{\"attributeHeader\":{\"labelValue\":\"965570\",\"primaryLabelValue\":\"965570\"}},{\"attributeHeader\":{\"labelValue\":\"965571\",\"primaryLabelValue\":\"965571\"}},{\"attributeHeader\":{\"labelValue\":\"965572\",\"primaryLabelValue\":\"965572\"}},{\"attributeHeader\":{\"labelValue\":\"965573\",\"primaryLabelValue\":\"965573\"}},{\"attributeHeader\":{\"labelValue\":\"965574\",\"primaryLabelValue\":\"965574\"}},{\"attributeHeader\":{\"labelValue\":\"965576\",\"primaryLabelValue\":\"965576\"}},{\"attributeHeader\":{\"labelValue\":\"965578\",\"primaryLabelValue\":\"965578\"}},{\"attributeHeader\":{\"labelValue\":\"965579\",\"primaryLabelValue\":\"965579\"}},{\"attributeHeader\":{\"labelValue\":\"965580\",\"primaryLabelValue\":\"965580\"}},{\"attributeHeader\":{\"labelValue\":\"965582\",\"primaryLabelValue\":\"965582\"}},{\"attributeHeader\":{\"labelValue\":\"965583\",\"primaryLabelValue\":\"965583\"}},{\"attributeHeader\":{\"labelValue\":\"965584\",\"primaryLabelValue\":\"965584\"}},{\"attributeHeader\":{\"labelValue\":\"965585\",\"primaryLabelValue\":\"965585\"}},{\"attributeHeader\":{\"labelValue\":\"965586\",\"primaryLabelValue\":\"965586\"}},{\"attributeHeader\":{\"labelValue\":\"965587\",\"primaryLabelValue\":\"965587\"}},{\"attributeHeader\":{\"labelValue\":\"965588\",\"primaryLabelValue\":\"965588\"}},{\"attributeHeader\":{\"labelValue\":\"965589\",\"primaryLabelValue\":\"965589\"}},{\"attributeHeader\":{\"labelValue\":\"965591\",\"primaryLabelValue\":\"965591\"}},{\"attributeHeader\":{\"labelValue\":\"965592\",\"primaryLabelValue\":\"965592\"}},{\"attributeHeader\":{\"labelValue\":\"965593\",\"primaryLabelValue\":\"965593\"}},{\"attributeHeader\":{\"labelValue\":\"965595\",\"primaryLabelValue\":\"965595\"}},{\"attributeHeader\":{\"labelValue\":\"965596\",\"primaryLabelValue\":\"965596\"}},{\"attributeHeader\":{\"labelValue\":\"965597\",\"primaryLabelValue\":\"965597\"}},{\"attributeHeader\":{\"labelValue\":\"965600\",\"primaryLabelValue\":\"965600\"}},{\"attributeHeader\":{\"labelValue\":\"965602\",\"primaryLabelValue\":\"965602\"}},{\"attributeHeader\":{\"labelValue\":\"965605\",\"primaryLabelValue\":\"965605\"}},{\"attributeHeader\":{\"labelValue\":\"965606\",\"primaryLabelValue\":\"965606\"}},{\"attributeHeader\":{\"labelValue\":\"965607\",\"primaryLabelValue\":\"965607\"}},{\"attributeHeader\":{\"labelValue\":\"965609\",\"primaryLabelValue\":\"965609\"}},{\"attributeHeader\":{\"labelValue\":\"965611\",\"primaryLabelValue\":\"965611\"}},{\"attributeHeader\":{\"labelValue\":\"965612\",\"primaryLabelValue\":\"965612\"}},{\"attributeHeader\":{\"labelValue\":\"965613\",\"primaryLabelValue\":\"965613\"}},{\"attributeHeader\":{\"labelValue\":\"965614\",\"primaryLabelValue\":\"965614\"}},{\"attributeHeader\":{\"labelValue\":\"965615\",\"primaryLabelValue\":\"965615\"}},{\"attributeHeader\":{\"labelValue\":\"965616\",\"primaryLabelValue\":\"965616\"}},{\"attributeHeader\":{\"labelValue\":\"965617\",\"primaryLabelValue\":\"965617\"}},{\"attributeHeader\":{\"labelValue\":\"965619\",\"primaryLabelValue\":\"965619\"}},{\"attributeHeader\":{\"labelValue\":\"965620\",\"primaryLabelValue\":\"965620\"}},{\"attributeHeader\":{\"labelValue\":\"965621\",\"primaryLabelValue\":\"965621\"}},{\"attributeHeader\":{\"labelValue\":\"965622\",\"primaryLabelValue\":\"965622\"}},{\"attributeHeader\":{\"labelValue\":\"965624\",\"primaryLabelValue\":\"965624\"}},{\"attributeHeader\":{\"labelValue\":\"965625\",\"primaryLabelValue\":\"965625\"}},{\"attributeHeader\":{\"labelValue\":\"965626\",\"primaryLabelValue\":\"965626\"}},{\"attributeHeader\":{\"labelValue\":\"965627\",\"primaryLabelValue\":\"965627\"}},{\"attributeHeader\":{\"labelValue\":\"965628\",\"primaryLabelValue\":\"965628\"}},{\"attributeHeader\":{\"labelValue\":\"965630\",\"primaryLabelValue\":\"965630\"}},{\"attributeHeader\":{\"labelValue\":\"965632\",\"primaryLabelValue\":\"965632\"}},{\"attributeHeader\":{\"labelValue\":\"965634\",\"primaryLabelValue\":\"965634\"}},{\"attributeHeader\":{\"labelValue\":\"965635\",\"primaryLabelValue\":\"965635\"}},{\"attributeHeader\":{\"labelValue\":\"965636\",\"primaryLabelValue\":\"965636\"}},{\"attributeHeader\":{\"labelValue\":\"965637\",\"primaryLabelValue\":\"965637\"}},{\"attributeHeader\":{\"labelValue\":\"965638\",\"primaryLabelValue\":\"965638\"}},{\"attributeHeader\":{\"labelValue\":\"965639\",\"primaryLabelValue\":\"965639\"}},{\"attributeHeader\":{\"labelValue\":\"965640\",\"primaryLabelValue\":\"965640\"}},{\"attributeHeader\":{\"labelValue\":\"965641\",\"primaryLabelValue\":\"965641\"}},{\"attributeHeader\":{\"labelValue\":\"965642\",\"primaryLabelValue\":\"965642\"}},{\"attributeHeader\":{\"labelValue\":\"965643\",\"primaryLabelValue\":\"965643\"}},{\"attributeHeader\":{\"labelValue\":\"965645\",\"primaryLabelValue\":\"965645\"}},{\"attributeHeader\":{\"labelValue\":\"965646\",\"primaryLabelValue\":\"965646\"}},{\"attributeHeader\":{\"labelValue\":\"965648\",\"primaryLabelValue\":\"965648\"}},{\"attributeHeader\":{\"labelValue\":\"965650\",\"primaryLabelValue\":\"965650\"}},{\"attributeHeader\":{\"labelValue\":\"965652\",\"primaryLabelValue\":\"965652\"}},{\"attributeHeader\":{\"labelValue\":\"965653\",\"primaryLabelValue\":\"965653\"}},{\"attributeHeader\":{\"labelValue\":\"965654\",\"primaryLabelValue\":\"965654\"}},{\"attributeHeader\":{\"labelValue\":\"965656\",\"primaryLabelValue\":\"965656\"}},{\"attributeHeader\":{\"labelValue\":\"965657\",\"primaryLabelValue\":\"965657\"}},{\"attributeHeader\":{\"labelValue\":\"965659\",\"primaryLabelValue\":\"965659\"}},{\"attributeHeader\":{\"labelValue\":\"965661\",\"primaryLabelValue\":\"965661\"}},{\"attributeHeader\":{\"labelValue\":\"965663\",\"primaryLabelValue\":\"965663\"}},{\"attributeHeader\":{\"labelValue\":\"965664\",\"primaryLabelValue\":\"965664\"}},{\"attributeHeader\":{\"labelValue\":\"965666\",\"primaryLabelValue\":\"965666\"}},{\"attributeHeader\":{\"labelValue\":\"965668\",\"primaryLabelValue\":\"965668\"}},{\"attributeHeader\":{\"labelValue\":\"965669\",\"primaryLabelValue\":\"965669\"}},{\"attributeHeader\":{\"labelValue\":\"965670\",\"primaryLabelValue\":\"965670\"}},{\"attributeHeader\":{\"labelValue\":\"965672\",\"primaryLabelValue\":\"965672\"}},{\"attributeHeader\":{\"labelValue\":\"965673\",\"primaryLabelValue\":\"965673\"}},{\"attributeHeader\":{\"labelValue\":\"965675\",\"primaryLabelValue\":\"965675\"}},{\"attributeHeader\":{\"labelValue\":\"965676\",\"primaryLabelValue\":\"965676\"}},{\"attributeHeader\":{\"labelValue\":\"965677\",\"primaryLabelValue\":\"965677\"}},{\"attributeHeader\":{\"labelValue\":\"965678\",\"primaryLabelValue\":\"965678\"}},{\"attributeHeader\":{\"labelValue\":\"965679\",\"primaryLabelValue\":\"965679\"}},{\"attributeHeader\":{\"labelValue\":\"965680\",\"primaryLabelValue\":\"965680\"}},{\"attributeHeader\":{\"labelValue\":\"965681\",\"primaryLabelValue\":\"965681\"}},{\"attributeHeader\":{\"labelValue\":\"965682\",\"primaryLabelValue\":\"965682\"}},{\"attributeHeader\":{\"labelValue\":\"965683\",\"primaryLabelValue\":\"965683\"}},{\"attributeHeader\":{\"labelValue\":\"965684\",\"primaryLabelValue\":\"965684\"}},{\"attributeHeader\":{\"labelValue\":\"965685\",\"primaryLabelValue\":\"965685\"}},{\"attributeHeader\":{\"labelValue\":\"965687\",\"primaryLabelValue\":\"965687\"}},{\"attributeHeader\":{\"labelValue\":\"965688\",\"primaryLabelValue\":\"965688\"}},{\"attributeHeader\":{\"labelValue\":\"965689\",\"primaryLabelValue\":\"965689\"}},{\"attributeHeader\":{\"labelValue\":\"965691\",\"primaryLabelValue\":\"965691\"}},{\"attributeHeader\":{\"labelValue\":\"965693\",\"primaryLabelValue\":\"965693\"}},{\"attributeHeader\":{\"labelValue\":\"965695\",\"primaryLabelValue\":\"965695\"}},{\"attributeHeader\":{\"labelValue\":\"965696\",\"primaryLabelValue\":\"965696\"}},{\"attributeHeader\":{\"labelValue\":\"965698\",\"primaryLabelValue\":\"965698\"}},{\"attributeHeader\":{\"labelValue\":\"965700\",\"primaryLabelValue\":\"965700\"}},{\"attributeHeader\":{\"labelValue\":\"965702\",\"primaryLabelValue\":\"965702\"}},{\"attributeHeader\":{\"labelValue\":\"965703\",\"primaryLabelValue\":\"965703\"}},{\"attributeHeader\":{\"labelValue\":\"965704\",\"primaryLabelValue\":\"965704\"}},{\"attributeHeader\":{\"labelValue\":\"965705\",\"primaryLabelValue\":\"965705\"}},{\"attributeHeader\":{\"labelValue\":\"965706\",\"primaryLabelValue\":\"965706\"}},{\"attributeHeader\":{\"labelValue\":\"965708\",\"primaryLabelValue\":\"965708\"}},{\"attributeHeader\":{\"labelValue\":\"965709\",\"primaryLabelValue\":\"965709\"}},{\"attributeHeader\":{\"labelValue\":\"965710\",\"primaryLabelValue\":\"965710\"}},{\"attributeHeader\":{\"labelValue\":\"965711\",\"primaryLabelValue\":\"965711\"}},{\"attributeHeader\":{\"labelValue\":\"965712\",\"primaryLabelValue\":\"965712\"}},{\"attributeHeader\":{\"labelValue\":\"965713\",\"primaryLabelValue\":\"965713\"}},{\"attributeHeader\":{\"labelValue\":\"965714\",\"primaryLabelValue\":\"965714\"}},{\"attributeHeader\":{\"labelValue\":\"965715\",\"primaryLabelValue\":\"965715\"}},{\"attributeHeader\":{\"labelValue\":\"965716\",\"primaryLabelValue\":\"965716\"}},{\"attributeHeader\":{\"labelValue\":\"965717\",\"primaryLabelValue\":\"965717\"}},{\"attributeHeader\":{\"labelValue\":\"965719\",\"primaryLabelValue\":\"965719\"}},{\"attributeHeader\":{\"labelValue\":\"965720\",\"primaryLabelValue\":\"965720\"}},{\"attributeHeader\":{\"labelValue\":\"965722\",\"primaryLabelValue\":\"965722\"}},{\"attributeHeader\":{\"labelValue\":\"965724\",\"primaryLabelValue\":\"965724\"}},{\"attributeHeader\":{\"labelValue\":\"965726\",\"primaryLabelValue\":\"965726\"}},{\"attributeHeader\":{\"labelValue\":\"965727\",\"primaryLabelValue\":\"965727\"}},{\"attributeHeader\":{\"labelValue\":\"965728\",\"primaryLabelValue\":\"965728\"}},{\"attributeHeader\":{\"labelValue\":\"965730\",\"primaryLabelValue\":\"965730\"}},{\"attributeHeader\":{\"labelValue\":\"965732\",\"primaryLabelValue\":\"965732\"}},{\"attributeHeader\":{\"labelValue\":\"965733\",\"primaryLabelValue\":\"965733\"}},{\"attributeHeader\":{\"labelValue\":\"965734\",\"primaryLabelValue\":\"965734\"}},{\"attributeHeader\":{\"labelValue\":\"965735\",\"primaryLabelValue\":\"965735\"}},{\"attributeHeader\":{\"labelValue\":\"965736\",\"primaryLabelValue\":\"965736\"}},{\"attributeHeader\":{\"labelValue\":\"965737\",\"primaryLabelValue\":\"965737\"}},{\"attributeHeader\":{\"labelValue\":\"965738\",\"primaryLabelValue\":\"965738\"}},{\"attributeHeader\":{\"labelValue\":\"965740\",\"primaryLabelValue\":\"965740\"}},{\"attributeHeader\":{\"labelValue\":\"965741\",\"primaryLabelValue\":\"965741\"}},{\"attributeHeader\":{\"labelValue\":\"965743\",\"primaryLabelValue\":\"965743\"}},{\"attributeHeader\":{\"labelValue\":\"965745\",\"primaryLabelValue\":\"965745\"}},{\"attributeHeader\":{\"labelValue\":\"965746\",\"primaryLabelValue\":\"965746\"}},{\"attributeHeader\":{\"labelValue\":\"965747\",\"primaryLabelValue\":\"965747\"}},{\"attributeHeader\":{\"labelValue\":\"965748\",\"primaryLabelValue\":\"965748\"}},{\"attributeHeader\":{\"labelValue\":\"965749\",\"primaryLabelValue\":\"965749\"}},{\"attributeHeader\":{\"labelValue\":\"965750\",\"primaryLabelValue\":\"965750\"}},{\"attributeHeader\":{\"labelValue\":\"965751\",\"primaryLabelValue\":\"965751\"}},{\"attributeHeader\":{\"labelValue\":\"965753\",\"primaryLabelValue\":\"965753\"}},{\"attributeHeader\":{\"labelValue\":\"965754\",\"primaryLabelValue\":\"965754\"}},{\"attributeHeader\":{\"labelValue\":\"965756\",\"primaryLabelValue\":\"965756\"}},{\"attributeHeader\":{\"labelValue\":\"965757\",\"primaryLabelValue\":\"965757\"}},{\"attributeHeader\":{\"labelValue\":\"965758\",\"primaryLabelValue\":\"965758\"}},{\"attributeHeader\":{\"labelValue\":\"965759\",\"primaryLabelValue\":\"965759\"}},{\"attributeHeader\":{\"labelValue\":\"965760\",\"primaryLabelValue\":\"965760\"}},{\"attributeHeader\":{\"labelValue\":\"965762\",\"primaryLabelValue\":\"965762\"}},{\"attributeHeader\":{\"labelValue\":\"965763\",\"primaryLabelValue\":\"965763\"}},{\"attributeHeader\":{\"labelValue\":\"965764\",\"primaryLabelValue\":\"965764\"}},{\"attributeHeader\":{\"labelValue\":\"965766\",\"primaryLabelValue\":\"965766\"}},{\"attributeHeader\":{\"labelValue\":\"965767\",\"primaryLabelValue\":\"965767\"}},{\"attributeHeader\":{\"labelValue\":\"965768\",\"primaryLabelValue\":\"965768\"}},{\"attributeHeader\":{\"labelValue\":\"965770\",\"primaryLabelValue\":\"965770\"}},{\"attributeHeader\":{\"labelValue\":\"965772\",\"primaryLabelValue\":\"965772\"}},{\"attributeHeader\":{\"labelValue\":\"965773\",\"primaryLabelValue\":\"965773\"}},{\"attributeHeader\":{\"labelValue\":\"965775\",\"primaryLabelValue\":\"965775\"}},{\"attributeHeader\":{\"labelValue\":\"965777\",\"primaryLabelValue\":\"965777\"}},{\"attributeHeader\":{\"labelValue\":\"965779\",\"primaryLabelValue\":\"965779\"}},{\"attributeHeader\":{\"labelValue\":\"965780\",\"primaryLabelValue\":\"965780\"}},{\"attributeHeader\":{\"labelValue\":\"965781\",\"primaryLabelValue\":\"965781\"}},{\"attributeHeader\":{\"labelValue\":\"965783\",\"primaryLabelValue\":\"965783\"}},{\"attributeHeader\":{\"labelValue\":\"965785\",\"primaryLabelValue\":\"965785\"}},{\"attributeHeader\":{\"labelValue\":\"965786\",\"primaryLabelValue\":\"965786\"}},{\"attributeHeader\":{\"labelValue\":\"965787\",\"primaryLabelValue\":\"965787\"}},{\"attributeHeader\":{\"labelValue\":\"965788\",\"primaryLabelValue\":\"965788\"}},{\"attributeHeader\":{\"labelValue\":\"965789\",\"primaryLabelValue\":\"965789\"}},{\"attributeHeader\":{\"labelValue\":\"965791\",\"primaryLabelValue\":\"965791\"}},{\"attributeHeader\":{\"labelValue\":\"965792\",\"primaryLabelValue\":\"965792\"}},{\"attributeHeader\":{\"labelValue\":\"965793\",\"primaryLabelValue\":\"965793\"}},{\"attributeHeader\":{\"labelValue\":\"965794\",\"primaryLabelValue\":\"965794\"}},{\"attributeHeader\":{\"labelValue\":\"965795\",\"primaryLabelValue\":\"965795\"}},{\"attributeHeader\":{\"labelValue\":\"965796\",\"primaryLabelValue\":\"965796\"}},{\"attributeHeader\":{\"labelValue\":\"965798\",\"primaryLabelValue\":\"965798\"}},{\"attributeHeader\":{\"labelValue\":\"965799\",\"primaryLabelValue\":\"965799\"}},{\"attributeHeader\":{\"labelValue\":\"965800\",\"primaryLabelValue\":\"965800\"}},{\"attributeHeader\":{\"labelValue\":\"965801\",\"primaryLabelValue\":\"965801\"}},{\"attributeHeader\":{\"labelValue\":\"965802\",\"primaryLabelValue\":\"965802\"}},{\"attributeHeader\":{\"labelValue\":\"965804\",\"primaryLabelValue\":\"965804\"}},{\"attributeHeader\":{\"labelValue\":\"965805\",\"primaryLabelValue\":\"965805\"}},{\"attributeHeader\":{\"labelValue\":\"965807\",\"primaryLabelValue\":\"965807\"}},{\"attributeHeader\":{\"labelValue\":\"965808\",\"primaryLabelValue\":\"965808\"}},{\"attributeHeader\":{\"labelValue\":\"965810\",\"primaryLabelValue\":\"965810\"}},{\"attributeHeader\":{\"labelValue\":\"965811\",\"primaryLabelValue\":\"965811\"}},{\"attributeHeader\":{\"labelValue\":\"965813\",\"primaryLabelValue\":\"965813\"}},{\"attributeHeader\":{\"labelValue\":\"965814\",\"primaryLabelValue\":\"965814\"}},{\"attributeHeader\":{\"labelValue\":\"965816\",\"primaryLabelValue\":\"965816\"}},{\"attributeHeader\":{\"labelValue\":\"965817\",\"primaryLabelValue\":\"965817\"}},{\"attributeHeader\":{\"labelValue\":\"965818\",\"primaryLabelValue\":\"965818\"}},{\"attributeHeader\":{\"labelValue\":\"965819\",\"primaryLabelValue\":\"965819\"}},{\"attributeHeader\":{\"labelValue\":\"965821\",\"primaryLabelValue\":\"965821\"}},{\"attributeHeader\":{\"labelValue\":\"965823\",\"primaryLabelValue\":\"965823\"}},{\"attributeHeader\":{\"labelValue\":\"965825\",\"primaryLabelValue\":\"965825\"}},{\"attributeHeader\":{\"labelValue\":\"965826\",\"primaryLabelValue\":\"965826\"}},{\"attributeHeader\":{\"labelValue\":\"965827\",\"primaryLabelValue\":\"965827\"}},{\"attributeHeader\":{\"labelValue\":\"965829\",\"primaryLabelValue\":\"965829\"}},{\"attributeHeader\":{\"labelValue\":\"965830\",\"primaryLabelValue\":\"965830\"}},{\"attributeHeader\":{\"labelValue\":\"965831\",\"primaryLabelValue\":\"965831\"}},{\"attributeHeader\":{\"labelValue\":\"965833\",\"primaryLabelValue\":\"965833\"}},{\"attributeHeader\":{\"labelValue\":\"965835\",\"primaryLabelValue\":\"965835\"}},{\"attributeHeader\":{\"labelValue\":\"965837\",\"primaryLabelValue\":\"965837\"}},{\"attributeHeader\":{\"labelValue\":\"965838\",\"primaryLabelValue\":\"965838\"}},{\"attributeHeader\":{\"labelValue\":\"965839\",\"primaryLabelValue\":\"965839\"}},{\"attributeHeader\":{\"labelValue\":\"965841\",\"primaryLabelValue\":\"965841\"}},{\"attributeHeader\":{\"labelValue\":\"965842\",\"primaryLabelValue\":\"965842\"}},{\"attributeHeader\":{\"labelValue\":\"965843\",\"primaryLabelValue\":\"965843\"}},{\"attributeHeader\":{\"labelValue\":\"965844\",\"primaryLabelValue\":\"965844\"}},{\"attributeHeader\":{\"labelValue\":\"965845\",\"primaryLabelValue\":\"965845\"}},{\"attributeHeader\":{\"labelValue\":\"965846\",\"primaryLabelValue\":\"965846\"}},{\"attributeHeader\":{\"labelValue\":\"965847\",\"primaryLabelValue\":\"965847\"}},{\"attributeHeader\":{\"labelValue\":\"965848\",\"primaryLabelValue\":\"965848\"}},{\"attributeHeader\":{\"labelValue\":\"965849\",\"primaryLabelValue\":\"965849\"}},{\"attributeHeader\":{\"labelValue\":\"965850\",\"primaryLabelValue\":\"965850\"}},{\"attributeHeader\":{\"labelValue\":\"965852\",\"primaryLabelValue\":\"965852\"}},{\"attributeHeader\":{\"labelValue\":\"965854\",\"primaryLabelValue\":\"965854\"}},{\"attributeHeader\":{\"labelValue\":\"965855\",\"primaryLabelValue\":\"965855\"}},{\"attributeHeader\":{\"labelValue\":\"965856\",\"primaryLabelValue\":\"965856\"}},{\"attributeHeader\":{\"labelValue\":\"965857\",\"primaryLabelValue\":\"965857\"}},{\"attributeHeader\":{\"labelValue\":\"965859\",\"primaryLabelValue\":\"965859\"}},{\"attributeHeader\":{\"labelValue\":\"965860\",\"primaryLabelValue\":\"965860\"}},{\"attributeHeader\":{\"labelValue\":\"965861\",\"primaryLabelValue\":\"965861\"}},{\"attributeHeader\":{\"labelValue\":\"965862\",\"primaryLabelValue\":\"965862\"}},{\"attributeHeader\":{\"labelValue\":\"965863\",\"primaryLabelValue\":\"965863\"}},{\"attributeHeader\":{\"labelValue\":\"965864\",\"primaryLabelValue\":\"965864\"}},{\"attributeHeader\":{\"labelValue\":\"965865\",\"primaryLabelValue\":\"965865\"}},{\"attributeHeader\":{\"labelValue\":\"965867\",\"primaryLabelValue\":\"965867\"}},{\"attributeHeader\":{\"labelValue\":\"965868\",\"primaryLabelValue\":\"965868\"}},{\"attributeHeader\":{\"labelValue\":\"965870\",\"primaryLabelValue\":\"965870\"}},{\"attributeHeader\":{\"labelValue\":\"965871\",\"primaryLabelValue\":\"965871\"}},{\"attributeHeader\":{\"labelValue\":\"965872\",\"primaryLabelValue\":\"965872\"}},{\"attributeHeader\":{\"labelValue\":\"965873\",\"primaryLabelValue\":\"965873\"}},{\"attributeHeader\":{\"labelValue\":\"965874\",\"primaryLabelValue\":\"965874\"}},{\"attributeHeader\":{\"labelValue\":\"965876\",\"primaryLabelValue\":\"965876\"}},{\"attributeHeader\":{\"labelValue\":\"965877\",\"primaryLabelValue\":\"965877\"}},{\"attributeHeader\":{\"labelValue\":\"965878\",\"primaryLabelValue\":\"965878\"}},{\"attributeHeader\":{\"labelValue\":\"965880\",\"primaryLabelValue\":\"965880\"}},{\"attributeHeader\":{\"labelValue\":\"965882\",\"primaryLabelValue\":\"965882\"}},{\"attributeHeader\":{\"labelValue\":\"965883\",\"primaryLabelValue\":\"965883\"}},{\"attributeHeader\":{\"labelValue\":\"965884\",\"primaryLabelValue\":\"965884\"}},{\"attributeHeader\":{\"labelValue\":\"965885\",\"primaryLabelValue\":\"965885\"}},{\"attributeHeader\":{\"labelValue\":\"965888\",\"primaryLabelValue\":\"965888\"}},{\"attributeHeader\":{\"labelValue\":\"965890\",\"primaryLabelValue\":\"965890\"}},{\"attributeHeader\":{\"labelValue\":\"965891\",\"primaryLabelValue\":\"965891\"}},{\"attributeHeader\":{\"labelValue\":\"965892\",\"primaryLabelValue\":\"965892\"}},{\"attributeHeader\":{\"labelValue\":\"965894\",\"primaryLabelValue\":\"965894\"}},{\"attributeHeader\":{\"labelValue\":\"965895\",\"primaryLabelValue\":\"965895\"}},{\"attributeHeader\":{\"labelValue\":\"965896\",\"primaryLabelValue\":\"965896\"}},{\"attributeHeader\":{\"labelValue\":\"965898\",\"primaryLabelValue\":\"965898\"}},{\"attributeHeader\":{\"labelValue\":\"965900\",\"primaryLabelValue\":\"965900\"}},{\"attributeHeader\":{\"labelValue\":\"965901\",\"primaryLabelValue\":\"965901\"}},{\"attributeHeader\":{\"labelValue\":\"965902\",\"primaryLabelValue\":\"965902\"}},{\"attributeHeader\":{\"labelValue\":\"965903\",\"primaryLabelValue\":\"965903\"}},{\"attributeHeader\":{\"labelValue\":\"965904\",\"primaryLabelValue\":\"965904\"}},{\"attributeHeader\":{\"labelValue\":\"965905\",\"primaryLabelValue\":\"965905\"}},{\"attributeHeader\":{\"labelValue\":\"965906\",\"primaryLabelValue\":\"965906\"}},{\"attributeHeader\":{\"labelValue\":\"965908\",\"primaryLabelValue\":\"965908\"}},{\"attributeHeader\":{\"labelValue\":\"965909\",\"primaryLabelValue\":\"965909\"}},{\"attributeHeader\":{\"labelValue\":\"965910\",\"primaryLabelValue\":\"965910\"}},{\"attributeHeader\":{\"labelValue\":\"965912\",\"primaryLabelValue\":\"965912\"}},{\"attributeHeader\":{\"labelValue\":\"965914\",\"primaryLabelValue\":\"965914\"}},{\"attributeHeader\":{\"labelValue\":\"965916\",\"primaryLabelValue\":\"965916\"}},{\"attributeHeader\":{\"labelValue\":\"965917\",\"primaryLabelValue\":\"965917\"}},{\"attributeHeader\":{\"labelValue\":\"965919\",\"primaryLabelValue\":\"965919\"}},{\"attributeHeader\":{\"labelValue\":\"965922\",\"primaryLabelValue\":\"965922\"}},{\"attributeHeader\":{\"labelValue\":\"965923\",\"primaryLabelValue\":\"965923\"}},{\"attributeHeader\":{\"labelValue\":\"965925\",\"primaryLabelValue\":\"965925\"}},{\"attributeHeader\":{\"labelValue\":\"965926\",\"primaryLabelValue\":\"965926\"}},{\"attributeHeader\":{\"labelValue\":\"965927\",\"primaryLabelValue\":\"965927\"}},{\"attributeHeader\":{\"labelValue\":\"965928\",\"primaryLabelValue\":\"965928\"}},{\"attributeHeader\":{\"labelValue\":\"965929\",\"primaryLabelValue\":\"965929\"}},{\"attributeHeader\":{\"labelValue\":\"965930\",\"primaryLabelValue\":\"965930\"}},{\"attributeHeader\":{\"labelValue\":\"965931\",\"primaryLabelValue\":\"965931\"}},{\"attributeHeader\":{\"labelValue\":\"965932\",\"primaryLabelValue\":\"965932\"}},{\"attributeHeader\":{\"labelValue\":\"965934\",\"primaryLabelValue\":\"965934\"}},{\"attributeHeader\":{\"labelValue\":\"965935\",\"primaryLabelValue\":\"965935\"}},{\"attributeHeader\":{\"labelValue\":\"965936\",\"primaryLabelValue\":\"965936\"}},{\"attributeHeader\":{\"labelValue\":\"965937\",\"primaryLabelValue\":\"965937\"}},{\"attributeHeader\":{\"labelValue\":\"965938\",\"primaryLabelValue\":\"965938\"}},{\"attributeHeader\":{\"labelValue\":\"965939\",\"primaryLabelValue\":\"965939\"}},{\"attributeHeader\":{\"labelValue\":\"965941\",\"primaryLabelValue\":\"965941\"}},{\"attributeHeader\":{\"labelValue\":\"965942\",\"primaryLabelValue\":\"965942\"}},{\"attributeHeader\":{\"labelValue\":\"965944\",\"primaryLabelValue\":\"965944\"}},{\"attributeHeader\":{\"labelValue\":\"965946\",\"primaryLabelValue\":\"965946\"}},{\"attributeHeader\":{\"labelValue\":\"965948\",\"primaryLabelValue\":\"965948\"}},{\"attributeHeader\":{\"labelValue\":\"965950\",\"primaryLabelValue\":\"965950\"}},{\"attributeHeader\":{\"labelValue\":\"965951\",\"primaryLabelValue\":\"965951\"}},{\"attributeHeader\":{\"labelValue\":\"965953\",\"primaryLabelValue\":\"965953\"}},{\"attributeHeader\":{\"labelValue\":\"965955\",\"primaryLabelValue\":\"965955\"}},{\"attributeHeader\":{\"labelValue\":\"965956\",\"primaryLabelValue\":\"965956\"}},{\"attributeHeader\":{\"labelValue\":\"965958\",\"primaryLabelValue\":\"965958\"}},{\"attributeHeader\":{\"labelValue\":\"965960\",\"primaryLabelValue\":\"965960\"}},{\"attributeHeader\":{\"labelValue\":\"965961\",\"primaryLabelValue\":\"965961\"}},{\"attributeHeader\":{\"labelValue\":\"965963\",\"primaryLabelValue\":\"965963\"}},{\"attributeHeader\":{\"labelValue\":\"965964\",\"primaryLabelValue\":\"965964\"}},{\"attributeHeader\":{\"labelValue\":\"965965\",\"primaryLabelValue\":\"965965\"}},{\"attributeHeader\":{\"labelValue\":\"965966\",\"primaryLabelValue\":\"965966\"}},{\"attributeHeader\":{\"labelValue\":\"965968\",\"primaryLabelValue\":\"965968\"}},{\"attributeHeader\":{\"labelValue\":\"965969\",\"primaryLabelValue\":\"965969\"}},{\"attributeHeader\":{\"labelValue\":\"965970\",\"primaryLabelValue\":\"965970\"}},{\"attributeHeader\":{\"labelValue\":\"965971\",\"primaryLabelValue\":\"965971\"}},{\"attributeHeader\":{\"labelValue\":\"965972\",\"primaryLabelValue\":\"965972\"}},{\"attributeHeader\":{\"labelValue\":\"965973\",\"primaryLabelValue\":\"965973\"}},{\"attributeHeader\":{\"labelValue\":\"965974\",\"primaryLabelValue\":\"965974\"}},{\"attributeHeader\":{\"labelValue\":\"965976\",\"primaryLabelValue\":\"965976\"}},{\"attributeHeader\":{\"labelValue\":\"965977\",\"primaryLabelValue\":\"965977\"}},{\"attributeHeader\":{\"labelValue\":\"965979\",\"primaryLabelValue\":\"965979\"}},{\"attributeHeader\":{\"labelValue\":\"965981\",\"primaryLabelValue\":\"965981\"}},{\"attributeHeader\":{\"labelValue\":\"965982\",\"primaryLabelValue\":\"965982\"}},{\"attributeHeader\":{\"labelValue\":\"965983\",\"primaryLabelValue\":\"965983\"}},{\"attributeHeader\":{\"labelValue\":\"965985\",\"primaryLabelValue\":\"965985\"}},{\"attributeHeader\":{\"labelValue\":\"965986\",\"primaryLabelValue\":\"965986\"}},{\"attributeHeader\":{\"labelValue\":\"965987\",\"primaryLabelValue\":\"965987\"}},{\"attributeHeader\":{\"labelValue\":\"965989\",\"primaryLabelValue\":\"965989\"}},{\"attributeHeader\":{\"labelValue\":\"965991\",\"primaryLabelValue\":\"965991\"}},{\"attributeHeader\":{\"labelValue\":\"965993\",\"primaryLabelValue\":\"965993\"}},{\"attributeHeader\":{\"labelValue\":\"965994\",\"primaryLabelValue\":\"965994\"}},{\"attributeHeader\":{\"labelValue\":\"965995\",\"primaryLabelValue\":\"965995\"}},{\"attributeHeader\":{\"labelValue\":\"965996\",\"primaryLabelValue\":\"965996\"}},{\"attributeHeader\":{\"labelValue\":\"965997\",\"primaryLabelValue\":\"965997\"}},{\"attributeHeader\":{\"labelValue\":\"965999\",\"primaryLabelValue\":\"965999\"}},{\"attributeHeader\":{\"labelValue\":\"966001\",\"primaryLabelValue\":\"966001\"}},{\"attributeHeader\":{\"labelValue\":\"966002\",\"primaryLabelValue\":\"966002\"}},{\"attributeHeader\":{\"labelValue\":\"966004\",\"primaryLabelValue\":\"966004\"}},{\"attributeHeader\":{\"labelValue\":\"966005\",\"primaryLabelValue\":\"966005\"}},{\"attributeHeader\":{\"labelValue\":\"966007\",\"primaryLabelValue\":\"966007\"}},{\"attributeHeader\":{\"labelValue\":\"966009\",\"primaryLabelValue\":\"966009\"}},{\"attributeHeader\":{\"labelValue\":\"966010\",\"primaryLabelValue\":\"966010\"}},{\"attributeHeader\":{\"labelValue\":\"966011\",\"primaryLabelValue\":\"966011\"}},{\"attributeHeader\":{\"labelValue\":\"966013\",\"primaryLabelValue\":\"966013\"}},{\"attributeHeader\":{\"labelValue\":\"966016\",\"primaryLabelValue\":\"966016\"}},{\"attributeHeader\":{\"labelValue\":\"966017\",\"primaryLabelValue\":\"966017\"}},{\"attributeHeader\":{\"labelValue\":\"966019\",\"primaryLabelValue\":\"966019\"}},{\"attributeHeader\":{\"labelValue\":\"966020\",\"primaryLabelValue\":\"966020\"}},{\"attributeHeader\":{\"labelValue\":\"966021\",\"primaryLabelValue\":\"966021\"}},{\"attributeHeader\":{\"labelValue\":\"966023\",\"primaryLabelValue\":\"966023\"}},{\"attributeHeader\":{\"labelValue\":\"966025\",\"primaryLabelValue\":\"966025\"}},{\"attributeHeader\":{\"labelValue\":\"966026\",\"primaryLabelValue\":\"966026\"}},{\"attributeHeader\":{\"labelValue\":\"966027\",\"primaryLabelValue\":\"966027\"}},{\"attributeHeader\":{\"labelValue\":\"966028\",\"primaryLabelValue\":\"966028\"}},{\"attributeHeader\":{\"labelValue\":\"966029\",\"primaryLabelValue\":\"966029\"}},{\"attributeHeader\":{\"labelValue\":\"966030\",\"primaryLabelValue\":\"966030\"}},{\"attributeHeader\":{\"labelValue\":\"966031\",\"primaryLabelValue\":\"966031\"}},{\"attributeHeader\":{\"labelValue\":\"966033\",\"primaryLabelValue\":\"966033\"}},{\"attributeHeader\":{\"labelValue\":\"966034\",\"primaryLabelValue\":\"966034\"}},{\"attributeHeader\":{\"labelValue\":\"966035\",\"primaryLabelValue\":\"966035\"}},{\"attributeHeader\":{\"labelValue\":\"966036\",\"primaryLabelValue\":\"966036\"}},{\"attributeHeader\":{\"labelValue\":\"966037\",\"primaryLabelValue\":\"966037\"}},{\"attributeHeader\":{\"labelValue\":\"966039\",\"primaryLabelValue\":\"966039\"}},{\"attributeHeader\":{\"labelValue\":\"966041\",\"primaryLabelValue\":\"966041\"}},{\"attributeHeader\":{\"labelValue\":\"966043\",\"primaryLabelValue\":\"966043\"}},{\"attributeHeader\":{\"labelValue\":\"966045\",\"primaryLabelValue\":\"966045\"}},{\"attributeHeader\":{\"labelValue\":\"966047\",\"primaryLabelValue\":\"966047\"}},{\"attributeHeader\":{\"labelValue\":\"966049\",\"primaryLabelValue\":\"966049\"}},{\"attributeHeader\":{\"labelValue\":\"966050\",\"primaryLabelValue\":\"966050\"}},{\"attributeHeader\":{\"labelValue\":\"966051\",\"primaryLabelValue\":\"966051\"}},{\"attributeHeader\":{\"labelValue\":\"966053\",\"primaryLabelValue\":\"966053\"}},{\"attributeHeader\":{\"labelValue\":\"966055\",\"primaryLabelValue\":\"966055\"}},{\"attributeHeader\":{\"labelValue\":\"966057\",\"primaryLabelValue\":\"966057\"}},{\"attributeHeader\":{\"labelValue\":\"966059\",\"primaryLabelValue\":\"966059\"}},{\"attributeHeader\":{\"labelValue\":\"966061\",\"primaryLabelValue\":\"966061\"}},{\"attributeHeader\":{\"labelValue\":\"966062\",\"primaryLabelValue\":\"966062\"}},{\"attributeHeader\":{\"labelValue\":\"966063\",\"primaryLabelValue\":\"966063\"}},{\"attributeHeader\":{\"labelValue\":\"966064\",\"primaryLabelValue\":\"966064\"}},{\"attributeHeader\":{\"labelValue\":\"966066\",\"primaryLabelValue\":\"966066\"}},{\"attributeHeader\":{\"labelValue\":\"966067\",\"primaryLabelValue\":\"966067\"}},{\"attributeHeader\":{\"labelValue\":\"966068\",\"primaryLabelValue\":\"966068\"}},{\"attributeHeader\":{\"labelValue\":\"966069\",\"primaryLabelValue\":\"966069\"}},{\"attributeHeader\":{\"labelValue\":\"966071\",\"primaryLabelValue\":\"966071\"}},{\"attributeHeader\":{\"labelValue\":\"966072\",\"primaryLabelValue\":\"966072\"}},{\"attributeHeader\":{\"labelValue\":\"966074\",\"primaryLabelValue\":\"966074\"}},{\"attributeHeader\":{\"labelValue\":\"966075\",\"primaryLabelValue\":\"966075\"}},{\"attributeHeader\":{\"labelValue\":\"966077\",\"primaryLabelValue\":\"966077\"}},{\"attributeHeader\":{\"labelValue\":\"966079\",\"primaryLabelValue\":\"966079\"}},{\"attributeHeader\":{\"labelValue\":\"966083\",\"primaryLabelValue\":\"966083\"}},{\"attributeHeader\":{\"labelValue\":\"966084\",\"primaryLabelValue\":\"966084\"}},{\"attributeHeader\":{\"labelValue\":\"966085\",\"primaryLabelValue\":\"966085\"}},{\"attributeHeader\":{\"labelValue\":\"966086\",\"primaryLabelValue\":\"966086\"}},{\"attributeHeader\":{\"labelValue\":\"966087\",\"primaryLabelValue\":\"966087\"}},{\"attributeHeader\":{\"labelValue\":\"966088\",\"primaryLabelValue\":\"966088\"}},{\"attributeHeader\":{\"labelValue\":\"966089\",\"primaryLabelValue\":\"966089\"}},{\"attributeHeader\":{\"labelValue\":\"966090\",\"primaryLabelValue\":\"966090\"}},{\"attributeHeader\":{\"labelValue\":\"966091\",\"primaryLabelValue\":\"966091\"}},{\"attributeHeader\":{\"labelValue\":\"966092\",\"primaryLabelValue\":\"966092\"}},{\"attributeHeader\":{\"labelValue\":\"966094\",\"primaryLabelValue\":\"966094\"}},{\"attributeHeader\":{\"labelValue\":\"966095\",\"primaryLabelValue\":\"966095\"}},{\"attributeHeader\":{\"labelValue\":\"966097\",\"primaryLabelValue\":\"966097\"}},{\"attributeHeader\":{\"labelValue\":\"966099\",\"primaryLabelValue\":\"966099\"}},{\"attributeHeader\":{\"labelValue\":\"966101\",\"primaryLabelValue\":\"966101\"}},{\"attributeHeader\":{\"labelValue\":\"966102\",\"primaryLabelValue\":\"966102\"}},{\"attributeHeader\":{\"labelValue\":\"966104\",\"primaryLabelValue\":\"966104\"}},{\"attributeHeader\":{\"labelValue\":\"966105\",\"primaryLabelValue\":\"966105\"}},{\"attributeHeader\":{\"labelValue\":\"966106\",\"primaryLabelValue\":\"966106\"}},{\"attributeHeader\":{\"labelValue\":\"966107\",\"primaryLabelValue\":\"966107\"}},{\"attributeHeader\":{\"labelValue\":\"966109\",\"primaryLabelValue\":\"966109\"}},{\"attributeHeader\":{\"labelValue\":\"966110\",\"primaryLabelValue\":\"966110\"}},{\"attributeHeader\":{\"labelValue\":\"966111\",\"primaryLabelValue\":\"966111\"}},{\"attributeHeader\":{\"labelValue\":\"966113\",\"primaryLabelValue\":\"966113\"}},{\"attributeHeader\":{\"labelValue\":\"966114\",\"primaryLabelValue\":\"966114\"}},{\"attributeHeader\":{\"labelValue\":\"966115\",\"primaryLabelValue\":\"966115\"}},{\"attributeHeader\":{\"labelValue\":\"966116\",\"primaryLabelValue\":\"966116\"}},{\"attributeHeader\":{\"labelValue\":\"966118\",\"primaryLabelValue\":\"966118\"}},{\"attributeHeader\":{\"labelValue\":\"966119\",\"primaryLabelValue\":\"966119\"}},{\"attributeHeader\":{\"labelValue\":\"966120\",\"primaryLabelValue\":\"966120\"}},{\"attributeHeader\":{\"labelValue\":\"966122\",\"primaryLabelValue\":\"966122\"}},{\"attributeHeader\":{\"labelValue\":\"966123\",\"primaryLabelValue\":\"966123\"}},{\"attributeHeader\":{\"labelValue\":\"966125\",\"primaryLabelValue\":\"966125\"}},{\"attributeHeader\":{\"labelValue\":\"966126\",\"primaryLabelValue\":\"966126\"}},{\"attributeHeader\":{\"labelValue\":\"966128\",\"primaryLabelValue\":\"966128\"}},{\"attributeHeader\":{\"labelValue\":\"966129\",\"primaryLabelValue\":\"966129\"}},{\"attributeHeader\":{\"labelValue\":\"966130\",\"primaryLabelValue\":\"966130\"}},{\"attributeHeader\":{\"labelValue\":\"966131\",\"primaryLabelValue\":\"966131\"}},{\"attributeHeader\":{\"labelValue\":\"966132\",\"primaryLabelValue\":\"966132\"}},{\"attributeHeader\":{\"labelValue\":\"966133\",\"primaryLabelValue\":\"966133\"}},{\"attributeHeader\":{\"labelValue\":\"966134\",\"primaryLabelValue\":\"966134\"}},{\"attributeHeader\":{\"labelValue\":\"966136\",\"primaryLabelValue\":\"966136\"}},{\"attributeHeader\":{\"labelValue\":\"966137\",\"primaryLabelValue\":\"966137\"}},{\"attributeHeader\":{\"labelValue\":\"966139\",\"primaryLabelValue\":\"966139\"}},{\"attributeHeader\":{\"labelValue\":\"966140\",\"primaryLabelValue\":\"966140\"}},{\"attributeHeader\":{\"labelValue\":\"966141\",\"primaryLabelValue\":\"966141\"}},{\"attributeHeader\":{\"labelValue\":\"966142\",\"primaryLabelValue\":\"966142\"}},{\"attributeHeader\":{\"labelValue\":\"966143\",\"primaryLabelValue\":\"966143\"}},{\"attributeHeader\":{\"labelValue\":\"966144\",\"primaryLabelValue\":\"966144\"}},{\"attributeHeader\":{\"labelValue\":\"966145\",\"primaryLabelValue\":\"966145\"}},{\"attributeHeader\":{\"labelValue\":\"966147\",\"primaryLabelValue\":\"966147\"}},{\"attributeHeader\":{\"labelValue\":\"966148\",\"primaryLabelValue\":\"966148\"}},{\"attributeHeader\":{\"labelValue\":\"966150\",\"primaryLabelValue\":\"966150\"}},{\"attributeHeader\":{\"labelValue\":\"966151\",\"primaryLabelValue\":\"966151\"}},{\"attributeHeader\":{\"labelValue\":\"966153\",\"primaryLabelValue\":\"966153\"}},{\"attributeHeader\":{\"labelValue\":\"966154\",\"primaryLabelValue\":\"966154\"}},{\"attributeHeader\":{\"labelValue\":\"966156\",\"primaryLabelValue\":\"966156\"}},{\"attributeHeader\":{\"labelValue\":\"966157\",\"primaryLabelValue\":\"966157\"}},{\"attributeHeader\":{\"labelValue\":\"966159\",\"primaryLabelValue\":\"966159\"}},{\"attributeHeader\":{\"labelValue\":\"966160\",\"primaryLabelValue\":\"966160\"}},{\"attributeHeader\":{\"labelValue\":\"966162\",\"primaryLabelValue\":\"966162\"}},{\"attributeHeader\":{\"labelValue\":\"966164\",\"primaryLabelValue\":\"966164\"}},{\"attributeHeader\":{\"labelValue\":\"966165\",\"primaryLabelValue\":\"966165\"}},{\"attributeHeader\":{\"labelValue\":\"966166\",\"primaryLabelValue\":\"966166\"}},{\"attributeHeader\":{\"labelValue\":\"966167\",\"primaryLabelValue\":\"966167\"}},{\"attributeHeader\":{\"labelValue\":\"966168\",\"primaryLabelValue\":\"966168\"}},{\"attributeHeader\":{\"labelValue\":\"966169\",\"primaryLabelValue\":\"966169\"}},{\"attributeHeader\":{\"labelValue\":\"966170\",\"primaryLabelValue\":\"966170\"}},{\"attributeHeader\":{\"labelValue\":\"966171\",\"primaryLabelValue\":\"966171\"}},{\"attributeHeader\":{\"labelValue\":\"966173\",\"primaryLabelValue\":\"966173\"}},{\"attributeHeader\":{\"labelValue\":\"966174\",\"primaryLabelValue\":\"966174\"}},{\"attributeHeader\":{\"labelValue\":\"966176\",\"primaryLabelValue\":\"966176\"}},{\"attributeHeader\":{\"labelValue\":\"966177\",\"primaryLabelValue\":\"966177\"}},{\"attributeHeader\":{\"labelValue\":\"966178\",\"primaryLabelValue\":\"966178\"}},{\"attributeHeader\":{\"labelValue\":\"966179\",\"primaryLabelValue\":\"966179\"}},{\"attributeHeader\":{\"labelValue\":\"966181\",\"primaryLabelValue\":\"966181\"}},{\"attributeHeader\":{\"labelValue\":\"966182\",\"primaryLabelValue\":\"966182\"}},{\"attributeHeader\":{\"labelValue\":\"966183\",\"primaryLabelValue\":\"966183\"}},{\"attributeHeader\":{\"labelValue\":\"966184\",\"primaryLabelValue\":\"966184\"}},{\"attributeHeader\":{\"labelValue\":\"966185\",\"primaryLabelValue\":\"966185\"}},{\"attributeHeader\":{\"labelValue\":\"966187\",\"primaryLabelValue\":\"966187\"}},{\"attributeHeader\":{\"labelValue\":\"966188\",\"primaryLabelValue\":\"966188\"}},{\"attributeHeader\":{\"labelValue\":\"966189\",\"primaryLabelValue\":\"966189\"}},{\"attributeHeader\":{\"labelValue\":\"966190\",\"primaryLabelValue\":\"966190\"}},{\"attributeHeader\":{\"labelValue\":\"966191\",\"primaryLabelValue\":\"966191\"}},{\"attributeHeader\":{\"labelValue\":\"966193\",\"primaryLabelValue\":\"966193\"}},{\"attributeHeader\":{\"labelValue\":\"966194\",\"primaryLabelValue\":\"966194\"}},{\"attributeHeader\":{\"labelValue\":\"966195\",\"primaryLabelValue\":\"966195\"}},{\"attributeHeader\":{\"labelValue\":\"966196\",\"primaryLabelValue\":\"966196\"}},{\"attributeHeader\":{\"labelValue\":\"966198\",\"primaryLabelValue\":\"966198\"}},{\"attributeHeader\":{\"labelValue\":\"966199\",\"primaryLabelValue\":\"966199\"}},{\"attributeHeader\":{\"labelValue\":\"966200\",\"primaryLabelValue\":\"966200\"}},{\"attributeHeader\":{\"labelValue\":\"966201\",\"primaryLabelValue\":\"966201\"}},{\"attributeHeader\":{\"labelValue\":\"966203\",\"primaryLabelValue\":\"966203\"}},{\"attributeHeader\":{\"labelValue\":\"966204\",\"primaryLabelValue\":\"966204\"}},{\"attributeHeader\":{\"labelValue\":\"966206\",\"primaryLabelValue\":\"966206\"}},{\"attributeHeader\":{\"labelValue\":\"966207\",\"primaryLabelValue\":\"966207\"}},{\"attributeHeader\":{\"labelValue\":\"966209\",\"primaryLabelValue\":\"966209\"}},{\"attributeHeader\":{\"labelValue\":\"966211\",\"primaryLabelValue\":\"966211\"}},{\"attributeHeader\":{\"labelValue\":\"966212\",\"primaryLabelValue\":\"966212\"}},{\"attributeHeader\":{\"labelValue\":\"966214\",\"primaryLabelValue\":\"966214\"}},{\"attributeHeader\":{\"labelValue\":\"966215\",\"primaryLabelValue\":\"966215\"}},{\"attributeHeader\":{\"labelValue\":\"966217\",\"primaryLabelValue\":\"966217\"}},{\"attributeHeader\":{\"labelValue\":\"966222\",\"primaryLabelValue\":\"966222\"}},{\"attributeHeader\":{\"labelValue\":\"966223\",\"primaryLabelValue\":\"966223\"}},{\"attributeHeader\":{\"labelValue\":\"966224\",\"primaryLabelValue\":\"966224\"}},{\"attributeHeader\":{\"labelValue\":\"966225\",\"primaryLabelValue\":\"966225\"}},{\"attributeHeader\":{\"labelValue\":\"966226\",\"primaryLabelValue\":\"966226\"}},{\"attributeHeader\":{\"labelValue\":\"966227\",\"primaryLabelValue\":\"966227\"}},{\"attributeHeader\":{\"labelValue\":\"966229\",\"primaryLabelValue\":\"966229\"}},{\"attributeHeader\":{\"labelValue\":\"966230\",\"primaryLabelValue\":\"966230\"}},{\"attributeHeader\":{\"labelValue\":\"966231\",\"primaryLabelValue\":\"966231\"}},{\"attributeHeader\":{\"labelValue\":\"966233\",\"primaryLabelValue\":\"966233\"}},{\"attributeHeader\":{\"labelValue\":\"966234\",\"primaryLabelValue\":\"966234\"}},{\"attributeHeader\":{\"labelValue\":\"966235\",\"primaryLabelValue\":\"966235\"}},{\"attributeHeader\":{\"labelValue\":\"966237\",\"primaryLabelValue\":\"966237\"}},{\"attributeHeader\":{\"labelValue\":\"966239\",\"primaryLabelValue\":\"966239\"}},{\"attributeHeader\":{\"labelValue\":\"966242\",\"primaryLabelValue\":\"966242\"}},{\"attributeHeader\":{\"labelValue\":\"966243\",\"primaryLabelValue\":\"966243\"}},{\"attributeHeader\":{\"labelValue\":\"966244\",\"primaryLabelValue\":\"966244\"}},{\"attributeHeader\":{\"labelValue\":\"966245\",\"primaryLabelValue\":\"966245\"}},{\"attributeHeader\":{\"labelValue\":\"966246\",\"primaryLabelValue\":\"966246\"}},{\"attributeHeader\":{\"labelValue\":\"966247\",\"primaryLabelValue\":\"966247\"}},{\"attributeHeader\":{\"labelValue\":\"966248\",\"primaryLabelValue\":\"966248\"}},{\"attributeHeader\":{\"labelValue\":\"966249\",\"primaryLabelValue\":\"966249\"}},{\"attributeHeader\":{\"labelValue\":\"966250\",\"primaryLabelValue\":\"966250\"}},{\"attributeHeader\":{\"labelValue\":\"966251\",\"primaryLabelValue\":\"966251\"}},{\"attributeHeader\":{\"labelValue\":\"966253\",\"primaryLabelValue\":\"966253\"}},{\"attributeHeader\":{\"labelValue\":\"966255\",\"primaryLabelValue\":\"966255\"}},{\"attributeHeader\":{\"labelValue\":\"966256\",\"primaryLabelValue\":\"966256\"}},{\"attributeHeader\":{\"labelValue\":\"966257\",\"primaryLabelValue\":\"966257\"}},{\"attributeHeader\":{\"labelValue\":\"966258\",\"primaryLabelValue\":\"966258\"}},{\"attributeHeader\":{\"labelValue\":\"966259\",\"primaryLabelValue\":\"966259\"}},{\"attributeHeader\":{\"labelValue\":\"966261\",\"primaryLabelValue\":\"966261\"}},{\"attributeHeader\":{\"labelValue\":\"966262\",\"primaryLabelValue\":\"966262\"}},{\"attributeHeader\":{\"labelValue\":\"966263\",\"primaryLabelValue\":\"966263\"}},{\"attributeHeader\":{\"labelValue\":\"966264\",\"primaryLabelValue\":\"966264\"}},{\"attributeHeader\":{\"labelValue\":\"966265\",\"primaryLabelValue\":\"966265\"}},{\"attributeHeader\":{\"labelValue\":\"966266\",\"primaryLabelValue\":\"966266\"}},{\"attributeHeader\":{\"labelValue\":\"966267\",\"primaryLabelValue\":\"966267\"}},{\"attributeHeader\":{\"labelValue\":\"966268\",\"primaryLabelValue\":\"966268\"}},{\"attributeHeader\":{\"labelValue\":\"966269\",\"primaryLabelValue\":\"966269\"}},{\"attributeHeader\":{\"labelValue\":\"966270\",\"primaryLabelValue\":\"966270\"}},{\"attributeHeader\":{\"labelValue\":\"966271\",\"primaryLabelValue\":\"966271\"}},{\"attributeHeader\":{\"labelValue\":\"966272\",\"primaryLabelValue\":\"966272\"}},{\"attributeHeader\":{\"labelValue\":\"966273\",\"primaryLabelValue\":\"966273\"}},{\"attributeHeader\":{\"labelValue\":\"966275\",\"primaryLabelValue\":\"966275\"}},{\"attributeHeader\":{\"labelValue\":\"966276\",\"primaryLabelValue\":\"966276\"}},{\"attributeHeader\":{\"labelValue\":\"966278\",\"primaryLabelValue\":\"966278\"}},{\"attributeHeader\":{\"labelValue\":\"966279\",\"primaryLabelValue\":\"966279\"}},{\"attributeHeader\":{\"labelValue\":\"966280\",\"primaryLabelValue\":\"966280\"}},{\"attributeHeader\":{\"labelValue\":\"966281\",\"primaryLabelValue\":\"966281\"}},{\"attributeHeader\":{\"labelValue\":\"966282\",\"primaryLabelValue\":\"966282\"}},{\"attributeHeader\":{\"labelValue\":\"966283\",\"primaryLabelValue\":\"966283\"}},{\"attributeHeader\":{\"labelValue\":\"966284\",\"primaryLabelValue\":\"966284\"}},{\"attributeHeader\":{\"labelValue\":\"966285\",\"primaryLabelValue\":\"966285\"}},{\"attributeHeader\":{\"labelValue\":\"966286\",\"primaryLabelValue\":\"966286\"}},{\"attributeHeader\":{\"labelValue\":\"966287\",\"primaryLabelValue\":\"966287\"}},{\"attributeHeader\":{\"labelValue\":\"966288\",\"primaryLabelValue\":\"966288\"}},{\"attributeHeader\":{\"labelValue\":\"966289\",\"primaryLabelValue\":\"966289\"}},{\"attributeHeader\":{\"labelValue\":\"966290\",\"primaryLabelValue\":\"966290\"}},{\"attributeHeader\":{\"labelValue\":\"966291\",\"primaryLabelValue\":\"966291\"}},{\"attributeHeader\":{\"labelValue\":\"966293\",\"primaryLabelValue\":\"966293\"}},{\"attributeHeader\":{\"labelValue\":\"966295\",\"primaryLabelValue\":\"966295\"}},{\"attributeHeader\":{\"labelValue\":\"966297\",\"primaryLabelValue\":\"966297\"}},{\"attributeHeader\":{\"labelValue\":\"966298\",\"primaryLabelValue\":\"966298\"}},{\"attributeHeader\":{\"labelValue\":\"966299\",\"primaryLabelValue\":\"966299\"}},{\"attributeHeader\":{\"labelValue\":\"966300\",\"primaryLabelValue\":\"966300\"}},{\"attributeHeader\":{\"labelValue\":\"966302\",\"primaryLabelValue\":\"966302\"}},{\"attributeHeader\":{\"labelValue\":\"966303\",\"primaryLabelValue\":\"966303\"}},{\"attributeHeader\":{\"labelValue\":\"966305\",\"primaryLabelValue\":\"966305\"}},{\"attributeHeader\":{\"labelValue\":\"966307\",\"primaryLabelValue\":\"966307\"}},{\"attributeHeader\":{\"labelValue\":\"966308\",\"primaryLabelValue\":\"966308\"}},{\"attributeHeader\":{\"labelValue\":\"966309\",\"primaryLabelValue\":\"966309\"}},{\"attributeHeader\":{\"labelValue\":\"966310\",\"primaryLabelValue\":\"966310\"}},{\"attributeHeader\":{\"labelValue\":\"966311\",\"primaryLabelValue\":\"966311\"}},{\"attributeHeader\":{\"labelValue\":\"966312\",\"primaryLabelValue\":\"966312\"}},{\"attributeHeader\":{\"labelValue\":\"966313\",\"primaryLabelValue\":\"966313\"}},{\"attributeHeader\":{\"labelValue\":\"966314\",\"primaryLabelValue\":\"966314\"}},{\"attributeHeader\":{\"labelValue\":\"966315\",\"primaryLabelValue\":\"966315\"}},{\"attributeHeader\":{\"labelValue\":\"966316\",\"primaryLabelValue\":\"966316\"}},{\"attributeHeader\":{\"labelValue\":\"966317\",\"primaryLabelValue\":\"966317\"}},{\"attributeHeader\":{\"labelValue\":\"966318\",\"primaryLabelValue\":\"966318\"}},{\"attributeHeader\":{\"labelValue\":\"966319\",\"primaryLabelValue\":\"966319\"}},{\"attributeHeader\":{\"labelValue\":\"966320\",\"primaryLabelValue\":\"966320\"}},{\"attributeHeader\":{\"labelValue\":\"966321\",\"primaryLabelValue\":\"966321\"}},{\"attributeHeader\":{\"labelValue\":\"966322\",\"primaryLabelValue\":\"966322\"}},{\"attributeHeader\":{\"labelValue\":\"966323\",\"primaryLabelValue\":\"966323\"}},{\"attributeHeader\":{\"labelValue\":\"966324\",\"primaryLabelValue\":\"966324\"}},{\"attributeHeader\":{\"labelValue\":\"966325\",\"primaryLabelValue\":\"966325\"}},{\"attributeHeader\":{\"labelValue\":\"966326\",\"primaryLabelValue\":\"966326\"}},{\"attributeHeader\":{\"labelValue\":\"966327\",\"primaryLabelValue\":\"966327\"}},{\"attributeHeader\":{\"labelValue\":\"966328\",\"primaryLabelValue\":\"966328\"}},{\"attributeHeader\":{\"labelValue\":\"966329\",\"primaryLabelValue\":\"966329\"}},{\"attributeHeader\":{\"labelValue\":\"966330\",\"primaryLabelValue\":\"966330\"}},{\"attributeHeader\":{\"labelValue\":\"966331\",\"primaryLabelValue\":\"966331\"}},{\"attributeHeader\":{\"labelValue\":\"966332\",\"primaryLabelValue\":\"966332\"}},{\"attributeHeader\":{\"labelValue\":\"966333\",\"primaryLabelValue\":\"966333\"}},{\"attributeHeader\":{\"labelValue\":\"966335\",\"primaryLabelValue\":\"966335\"}},{\"attributeHeader\":{\"labelValue\":\"966336\",\"primaryLabelValue\":\"966336\"}},{\"attributeHeader\":{\"labelValue\":\"966337\",\"primaryLabelValue\":\"966337\"}},{\"attributeHeader\":{\"labelValue\":\"966339\",\"primaryLabelValue\":\"966339\"}},{\"attributeHeader\":{\"labelValue\":\"966340\",\"primaryLabelValue\":\"966340\"}},{\"attributeHeader\":{\"labelValue\":\"966341\",\"primaryLabelValue\":\"966341\"}},{\"attributeHeader\":{\"labelValue\":\"966342\",\"primaryLabelValue\":\"966342\"}},{\"attributeHeader\":{\"labelValue\":\"966343\",\"primaryLabelValue\":\"966343\"}},{\"attributeHeader\":{\"labelValue\":\"966344\",\"primaryLabelValue\":\"966344\"}},{\"attributeHeader\":{\"labelValue\":\"966346\",\"primaryLabelValue\":\"966346\"}},{\"attributeHeader\":{\"labelValue\":\"966348\",\"primaryLabelValue\":\"966348\"}},{\"attributeHeader\":{\"labelValue\":\"966349\",\"primaryLabelValue\":\"966349\"}},{\"attributeHeader\":{\"labelValue\":\"966350\",\"primaryLabelValue\":\"966350\"}},{\"attributeHeader\":{\"labelValue\":\"966351\",\"primaryLabelValue\":\"966351\"}},{\"attributeHeader\":{\"labelValue\":\"966352\",\"primaryLabelValue\":\"966352\"}},{\"attributeHeader\":{\"labelValue\":\"966353\",\"primaryLabelValue\":\"966353\"}},{\"attributeHeader\":{\"labelValue\":\"966354\",\"primaryLabelValue\":\"966354\"}},{\"attributeHeader\":{\"labelValue\":\"966355\",\"primaryLabelValue\":\"966355\"}},{\"attributeHeader\":{\"labelValue\":\"966356\",\"primaryLabelValue\":\"966356\"}},{\"attributeHeader\":{\"labelValue\":\"966359\",\"primaryLabelValue\":\"966359\"}},{\"attributeHeader\":{\"labelValue\":\"966360\",\"primaryLabelValue\":\"966360\"}},{\"attributeHeader\":{\"labelValue\":\"966361\",\"primaryLabelValue\":\"966361\"}},{\"attributeHeader\":{\"labelValue\":\"966362\",\"primaryLabelValue\":\"966362\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Hyland Software\",\"primaryLabelValue\":\"Hyland Software\"}},{\"attributeHeader\":{\"labelValue\":\"AMC Entertainment\",\"primaryLabelValue\":\"AMC Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"AC Lens\",\"primaryLabelValue\":\"AC Lens\"}},{\"attributeHeader\":{\"labelValue\":\"(add)ventures\",\"primaryLabelValue\":\"(add)ventures\"}},{\"attributeHeader\":{\"labelValue\":\"(mt) Media Temple\",\"primaryLabelValue\":\"(mt) Media Temple\"}},{\"attributeHeader\":{\"labelValue\":\"@properties\",\"primaryLabelValue\":\"@properties\"}},{\"attributeHeader\":{\"labelValue\":\"7 Medical Systems\",\"primaryLabelValue\":\"7 Medical Systems\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A White Orchid Wedding\",\"primaryLabelValue\":\"A White Orchid Wedding\"}},{\"attributeHeader\":{\"labelValue\":\"A&P Consulting Transportation Engineers\",\"primaryLabelValue\":\"A&P Consulting Transportation Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"A-1 Textiles\",\"primaryLabelValue\":\"A-1 Textiles\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron Oil Company\",\"primaryLabelValue\":\"Aaron Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease\",\"primaryLabelValue\":\"Aaron's Sales and Lease\"}},{\"attributeHeader\":{\"labelValue\":\"Abstract Displays\",\"primaryLabelValue\":\"Abstract Displays\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaris\",\"primaryLabelValue\":\"Acclaris\"}},{\"attributeHeader\":{\"labelValue\":\"Accounting Management Solutions\",\"primaryLabelValue\":\"Accounting Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ACFN Franchised\",\"primaryLabelValue\":\"ACFN Franchised\"}},{\"attributeHeader\":{\"labelValue\":\"Achatz Handmade Pie\",\"primaryLabelValue\":\"Achatz Handmade Pie\"}},{\"attributeHeader\":{\"labelValue\":\"Active Website\",\"primaryLabelValue\":\"Active Website\"}},{\"attributeHeader\":{\"labelValue\":\"Acumen Building Enterprise\",\"primaryLabelValue\":\"Acumen Building Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptik\",\"primaryLabelValue\":\"Adaptik\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Solutions\",\"primaryLabelValue\":\"Adaptive Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ADC Integrated Systems\",\"primaryLabelValue\":\"ADC Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"ADEX Manufacturing Technologies\",\"primaryLabelValue\":\"ADEX Manufacturing Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Adoresoft\",\"primaryLabelValue\":\"Adoresoft\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Brain Monitoring\",\"primaryLabelValue\":\"Advanced Brain Monitoring\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Educational Products\",\"primaryLabelValue\":\"Advanced Educational Products\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Global Communications\",\"primaryLabelValue\":\"Advanced Global Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Systems Engineering\",\"primaryLabelValue\":\"Advanced Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"AdvancedMD Software\",\"primaryLabelValue\":\"AdvancedMD Software\"}},{\"attributeHeader\":{\"labelValue\":\"AdvantageBridal.com\",\"primaryLabelValue\":\"AdvantageBridal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advent Global Solutions\",\"primaryLabelValue\":\"Advent Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Adventure Life\",\"primaryLabelValue\":\"Adventure Life\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Media\",\"primaryLabelValue\":\"Advocate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Networks\",\"primaryLabelValue\":\"Advocate Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aerial Services\",\"primaryLabelValue\":\"Aerial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aero Solutions\",\"primaryLabelValue\":\"Aero Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"agencyQ\",\"primaryLabelValue\":\"agencyQ\"}},{\"attributeHeader\":{\"labelValue\":\"Agile\",\"primaryLabelValue\":\"Agile\"}},{\"attributeHeader\":{\"labelValue\":\"AIMS Power\",\"primaryLabelValue\":\"AIMS Power\"}},{\"attributeHeader\":{\"labelValue\":\"Air Innovations\",\"primaryLabelValue\":\"Air Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Airgun Depot\",\"primaryLabelValue\":\"Airgun Depot\"}},{\"attributeHeader\":{\"labelValue\":\"AKASHA-US\",\"primaryLabelValue\":\"AKASHA-US\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Alexa's Angels\",\"primaryLabelValue\":\"Alexa's Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"A-Life Medical\",\"primaryLabelValue\":\"A-Life Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Alinean\",\"primaryLabelValue\":\"Alinean\"}},{\"attributeHeader\":{\"labelValue\":\"All Access Staging & Productions\",\"primaryLabelValue\":\"All Access Staging & Productions\"}},{\"attributeHeader\":{\"labelValue\":\"All Action Architectural Metal & Glass\",\"primaryLabelValue\":\"All Action Architectural Metal & Glass\"}},{\"attributeHeader\":{\"labelValue\":\"All American Rentals\",\"primaryLabelValue\":\"All American Rentals\"}},{\"attributeHeader\":{\"labelValue\":\"All Covered\",\"primaryLabelValue\":\"All Covered\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"allConnex\",\"primaryLabelValue\":\"allConnex\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryLabelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Benefit Group of Illinois\",\"primaryLabelValue\":\"Alliance Benefit Group of Illinois\"}},{\"attributeHeader\":{\"labelValue\":\"Allmenus.com\",\"primaryLabelValue\":\"Allmenus.com\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Alternate Solutions Homecare\",\"primaryLabelValue\":\"Alternate Solutions Homecare\"}},{\"attributeHeader\":{\"labelValue\":\"Altour\",\"primaryLabelValue\":\"Altour\"}},{\"attributeHeader\":{\"labelValue\":\"Ameresco\",\"primaryLabelValue\":\"Ameresco\"}},{\"attributeHeader\":{\"labelValue\":\"American Bancard\",\"primaryLabelValue\":\"American Bancard\"}},{\"attributeHeader\":{\"labelValue\":\"American Communications\",\"primaryLabelValue\":\"American Communications\"}},{\"attributeHeader\":{\"labelValue\":\"American Fire Restoration\",\"primaryLabelValue\":\"American Fire Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Reporting\",\"primaryLabelValue\":\"American Reporting\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"American Technologies\",\"primaryLabelValue\":\"American Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"American Tire Distributors\",\"primaryLabelValue\":\"American Tire Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"American Unit\",\"primaryLabelValue\":\"American Unit\"}},{\"attributeHeader\":{\"labelValue\":\"America's Window\",\"primaryLabelValue\":\"America's Window\"}},{\"attributeHeader\":{\"labelValue\":\"Amigo Mobility International\",\"primaryLabelValue\":\"Amigo Mobility International\"}},{\"attributeHeader\":{\"labelValue\":\"Amnet Technology Solutions\",\"primaryLabelValue\":\"Amnet Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Anago Cleaning Systems\",\"primaryLabelValue\":\"Anago Cleaning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ANDA Networks\",\"primaryLabelValue\":\"ANDA Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Annie's\",\"primaryLabelValue\":\"Annie's\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Answer Center America\",\"primaryLabelValue\":\"Answer Center America\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerLab\",\"primaryLabelValue\":\"AnswerLab\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerNet\",\"primaryLabelValue\":\"AnswerNet\"}},{\"attributeHeader\":{\"labelValue\":\"Anu Resources Unlimited\",\"primaryLabelValue\":\"Anu Resources Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Instruments\",\"primaryLabelValue\":\"Apex Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"APG\",\"primaryLabelValue\":\"APG\"}},{\"attributeHeader\":{\"labelValue\":\"Appia Communications\",\"primaryLabelValue\":\"Appia Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Trust\",\"primaryLabelValue\":\"Applied Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Apptis\",\"primaryLabelValue\":\"Apptis\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"AQIWO\",\"primaryLabelValue\":\"AQIWO\"}},{\"attributeHeader\":{\"labelValue\":\"Arbor-Nomics Turf\",\"primaryLabelValue\":\"Arbor-Nomics Turf\"}},{\"attributeHeader\":{\"labelValue\":\"Arborwell\",\"primaryLabelValue\":\"Arborwell\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaTech Systems\",\"primaryLabelValue\":\"ArcaTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Arent Fox\",\"primaryLabelValue\":\"Arent Fox\"}},{\"attributeHeader\":{\"labelValue\":\"ARES\",\"primaryLabelValue\":\"ARES\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Capital Management\",\"primaryLabelValue\":\"Argent Capital Management\"}},{\"attributeHeader\":{\"labelValue\":\"ARHD\",\"primaryLabelValue\":\"ARHD\"}},{\"attributeHeader\":{\"labelValue\":\"Aribex\",\"primaryLabelValue\":\"Aribex\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arnold & Porter\",\"primaryLabelValue\":\"Arnold & Porter\"}},{\"attributeHeader\":{\"labelValue\":\"ARRC Technology\",\"primaryLabelValue\":\"ARRC Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Art & Logic\",\"primaryLabelValue\":\"Art & Logic\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP\",\"primaryLabelValue\":\"ASAP\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP Towing & Storage\",\"primaryLabelValue\":\"ASAP Towing & Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend HR\",\"primaryLabelValue\":\"Ascend HR\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Technology\",\"primaryLabelValue\":\"Ascendant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ASI System Integration\",\"primaryLabelValue\":\"ASI System Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Exteriors\",\"primaryLabelValue\":\"Aspen Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"AspireHR\",\"primaryLabelValue\":\"AspireHR\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Atkinson-Baker\",\"primaryLabelValue\":\"Atkinson-Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"Attack!\",\"primaryLabelValue\":\"Attack!\"}},{\"attributeHeader\":{\"labelValue\":\"Audigy Group\",\"primaryLabelValue\":\"Audigy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Audio Messaging Solutions\",\"primaryLabelValue\":\"Audio Messaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Consulting\",\"primaryLabelValue\":\"Avalon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Document Services\",\"primaryLabelValue\":\"Avalon Document Services\"}},{\"attributeHeader\":{\"labelValue\":\"AvcomEast\",\"primaryLabelValue\":\"AvcomEast\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Technical Resources\",\"primaryLabelValue\":\"AVID Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"BackOffice Associates\",\"primaryLabelValue\":\"BackOffice Associates\"}},{\"attributeHeader\":{\"labelValue\":\"BACtrack Breathalyzers\",\"primaryLabelValue\":\"BACtrack Breathalyzers\"}},{\"attributeHeader\":{\"labelValue\":\"Baggallini\",\"primaryLabelValue\":\"Baggallini\"}},{\"attributeHeader\":{\"labelValue\":\"Bain Medina Bain\",\"primaryLabelValue\":\"Bain Medina Bain\"}},{\"attributeHeader\":{\"labelValue\":\"Baker & McKenzie\",\"primaryLabelValue\":\"Baker & McKenzie\"}},{\"attributeHeader\":{\"labelValue\":\"BakerRisk\",\"primaryLabelValue\":\"BakerRisk\"}},{\"attributeHeader\":{\"labelValue\":\"BalancePoint\",\"primaryLabelValue\":\"BalancePoint\"}},{\"attributeHeader\":{\"labelValue\":\"Bamco\",\"primaryLabelValue\":\"Bamco\"}},{\"attributeHeader\":{\"labelValue\":\"BandCon\",\"primaryLabelValue\":\"BandCon\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Barbara Lynch Gruppo\",\"primaryLabelValue\":\"Barbara Lynch Gruppo\"}},{\"attributeHeader\":{\"labelValue\":\"Barnes & Thornburg\",\"primaryLabelValue\":\"Barnes & Thornburg\"}},{\"attributeHeader\":{\"labelValue\":\"Bars + Tone\",\"primaryLabelValue\":\"Bars + Tone\"}},{\"attributeHeader\":{\"labelValue\":\"Bay Bridge Decision Technologies\",\"primaryLabelValue\":\"Bay Bridge Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Baystate Financial Services\",\"primaryLabelValue\":\"Baystate Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"BB&E \",\"primaryLabelValue\":\"BB&E \"}},{\"attributeHeader\":{\"labelValue\":\"BBH Solutions\",\"primaryLabelValue\":\"BBH Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BBS Technologies\",\"primaryLabelValue\":\"BBS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Application Services\",\"primaryLabelValue\":\"Beacon Application Services\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beau-coup Wedding Favors\",\"primaryLabelValue\":\"Beau-coup Wedding Favors\"}},{\"attributeHeader\":{\"labelValue\":\"BeavEx\",\"primaryLabelValue\":\"BeavEx\"}},{\"attributeHeader\":{\"labelValue\":\"Bell ATM Service\",\"primaryLabelValue\":\"Bell ATM Service\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Express Services\",\"primaryLabelValue\":\"Benefit Express Services\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bennett Landscape\",\"primaryLabelValue\":\"Bennett Landscape\"}},{\"attributeHeader\":{\"labelValue\":\"Berk Wiper Converting\",\"primaryLabelValue\":\"Berk Wiper Converting\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Beverly Prior Architects\",\"primaryLabelValue\":\"Beverly Prior Architects\"}},{\"attributeHeader\":{\"labelValue\":\"BeyondTrust\",\"primaryLabelValue\":\"BeyondTrust\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Billtrust\",\"primaryLabelValue\":\"Billtrust\"}},{\"attributeHeader\":{\"labelValue\":\"Binary Tree\",\"primaryLabelValue\":\"Binary Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Biocare Medical\",\"primaryLabelValue\":\"Biocare Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BirdDog Solutions\",\"primaryLabelValue\":\"BirdDog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"Blank Rome\",\"primaryLabelValue\":\"Blank Rome\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blu SKY Restoration Contractors\",\"primaryLabelValue\":\"Blu SKY Restoration Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Exhibits\",\"primaryLabelValue\":\"Blue Sky Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Factory\",\"primaryLabelValue\":\"Blue Sky Factory\"}},{\"attributeHeader\":{\"labelValue\":\"BlueCotton\",\"primaryLabelValue\":\"BlueCotton\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"BlueWave Computing\",\"primaryLabelValue\":\"BlueWave Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluewolf\",\"primaryLabelValue\":\"Bluewolf\"}},{\"attributeHeader\":{\"labelValue\":\"BOC International\",\"primaryLabelValue\":\"BOC International\"}},{\"attributeHeader\":{\"labelValue\":\"Body Central\",\"primaryLabelValue\":\"Body Central\"}},{\"attributeHeader\":{\"labelValue\":\"Bogota Latin Bistro\",\"primaryLabelValue\":\"Bogota Latin Bistro\"}},{\"attributeHeader\":{\"labelValue\":\"Boice.net\",\"primaryLabelValue\":\"Boice.net\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Health Economics\",\"primaryLabelValue\":\"Boston Health Economics\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BPA International\",\"primaryLabelValue\":\"BPA International\"}},{\"attributeHeader\":{\"labelValue\":\"Bradley Arant Boult Cummings\",\"primaryLabelValue\":\"Bradley Arant Boult Cummings\"}},{\"attributeHeader\":{\"labelValue\":\"Branco Enterprises\",\"primaryLabelValue\":\"Branco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Brandwise\",\"primaryLabelValue\":\"Brandwise\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Cork Human Capital\",\"primaryLabelValue\":\"Brian Cork Human Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Briteskies\",\"primaryLabelValue\":\"Briteskies\"}},{\"attributeHeader\":{\"labelValue\":\"BroadRiver\",\"primaryLabelValue\":\"BroadRiver\"}},{\"attributeHeader\":{\"labelValue\":\"BroadSoft\",\"primaryLabelValue\":\"BroadSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Bronto Software\",\"primaryLabelValue\":\"Bronto Software\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Brewery\",\"primaryLabelValue\":\"Brooklyn Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Medical Industries\",\"primaryLabelValue\":\"Brown Medical Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Exchange\",\"primaryLabelValue\":\"Buffalo Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Filter\",\"primaryLabelValue\":\"Buffalo Filter\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bullhorn\",\"primaryLabelValue\":\"Bullhorn\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Burwood Group\",\"primaryLabelValue\":\"Burwood Group\"}},{\"attributeHeader\":{\"labelValue\":\"Busey Group\",\"primaryLabelValue\":\"Busey Group\"}},{\"attributeHeader\":{\"labelValue\":\"BusinessOnLine\",\"primaryLabelValue\":\"BusinessOnLine\"}},{\"attributeHeader\":{\"labelValue\":\"C&G Technologies\",\"primaryLabelValue\":\"C&G Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C&S Companies\",\"primaryLabelValue\":\"C&S Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Manufacturing Business\",\"primaryLabelValue\":\"Cable Manufacturing Business\"}},{\"attributeHeader\":{\"labelValue\":\"Cahill Gordon & Reindel\",\"primaryLabelValue\":\"Cahill Gordon & Reindel\"}},{\"attributeHeader\":{\"labelValue\":\"Cali Bamboo\",\"primaryLabelValue\":\"Cali Bamboo\"}},{\"attributeHeader\":{\"labelValue\":\"Callis Communications\",\"primaryLabelValue\":\"Callis Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Cameta Camera\",\"primaryLabelValue\":\"Cameta Camera\"}},{\"attributeHeader\":{\"labelValue\":\"Candle Warmers Etc.\",\"primaryLabelValue\":\"Candle Warmers Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"CandyWarehouse.com\",\"primaryLabelValue\":\"CandyWarehouse.com\"}},{\"attributeHeader\":{\"labelValue\":\"Canyon Manufacturing Services\",\"primaryLabelValue\":\"Canyon Manufacturing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Hill Exxon\",\"primaryLabelValue\":\"Capitol Hill Exxon\"}},{\"attributeHeader\":{\"labelValue\":\"Capps Manufacturing\",\"primaryLabelValue\":\"Capps Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone Brokerage\",\"primaryLabelValue\":\"Capstone Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Caribbean Food Delights\",\"primaryLabelValue\":\"Caribbean Food Delights\"}},{\"attributeHeader\":{\"labelValue\":\"Carlson Timber Products\",\"primaryLabelValue\":\"Carlson Timber Products\"}},{\"attributeHeader\":{\"labelValue\":\"Carousel Industries\",\"primaryLabelValue\":\"Carousel Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Carrillo Business Technologies\",\"primaryLabelValue\":\"Carrillo Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CaseTech\",\"primaryLabelValue\":\"CaseTech\"}},{\"attributeHeader\":{\"labelValue\":\"Cash Cycle Solutions\",\"primaryLabelValue\":\"Cash Cycle Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Marketing\",\"primaryLabelValue\":\"Catapult Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Cayenne Creative Group\",\"primaryLabelValue\":\"Cayenne Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"CBT Nuggets\",\"primaryLabelValue\":\"CBT Nuggets\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Presentation Systems\",\"primaryLabelValue\":\"CCS Presentation Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CD+M Lighting Design Group\",\"primaryLabelValue\":\"CD+M Lighting Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Celerant Technology\",\"primaryLabelValue\":\"Celerant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Cellu Tissue Holdings\",\"primaryLabelValue\":\"Cellu Tissue Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy International Services\",\"primaryLabelValue\":\"Cenergy International Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cen-Med Enterprises\",\"primaryLabelValue\":\"Cen-Med Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Centerpoint Builders\",\"primaryLabelValue\":\"Centerpoint Builders\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"CentraComm Communications\",\"primaryLabelValue\":\"CentraComm Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Central Packaging\",\"primaryLabelValue\":\"Central Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Centric Consulting\",\"primaryLabelValue\":\"Centric Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"CenturyNovelty.com\",\"primaryLabelValue\":\"CenturyNovelty.com\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Aviation Services\",\"primaryLabelValue\":\"Certified Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Languages International\",\"primaryLabelValue\":\"Certified Languages International\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Restoration Drycleaning Network\",\"primaryLabelValue\":\"Certified Restoration Drycleaning Network\"}},{\"attributeHeader\":{\"labelValue\":\"CETRA Language Solutions\",\"primaryLabelValue\":\"CETRA Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman Kelly\",\"primaryLabelValue\":\"Chapman Kelly\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chen and Associates\",\"primaryLabelValue\":\"Chen and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Chicago Apartment Finders\",\"primaryLabelValue\":\"Chicago Apartment Finders\"}},{\"attributeHeader\":{\"labelValue\":\"Chocolate Maven Bakery & Cafe\",\"primaryLabelValue\":\"Chocolate Maven Bakery & Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"CHR Solutions\",\"primaryLabelValue\":\"CHR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chutes International\",\"primaryLabelValue\":\"Chutes International\"}},{\"attributeHeader\":{\"labelValue\":\"Citrin Cooperman\",\"primaryLabelValue\":\"Citrin Cooperman\"}},{\"attributeHeader\":{\"labelValue\":\"City Wide Maintenance of Colorado\",\"primaryLabelValue\":\"City Wide Maintenance of Colorado\"}},{\"attributeHeader\":{\"labelValue\":\"CKR Interactive\",\"primaryLabelValue\":\"CKR Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Resource Group\",\"primaryLabelValue\":\"Clarity Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Classified Ventures\",\"primaryLabelValue\":\"Classified Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clean Air Gardening\",\"primaryLabelValue\":\"Clean Air Gardening\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"Clearstar.net\",\"primaryLabelValue\":\"Clearstar.net\"}},{\"attributeHeader\":{\"labelValue\":\"Cleveland Medical Devices\",\"primaryLabelValue\":\"Cleveland Medical Devices\"}},{\"attributeHeader\":{\"labelValue\":\"ClickAway Computers & Networking\",\"primaryLabelValue\":\"ClickAway Computers & Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Clima-Tech\",\"primaryLabelValue\":\"Clima-Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Research Management\",\"primaryLabelValue\":\"Clinical Research Management\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resource Network\",\"primaryLabelValue\":\"Clinical Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"Clover Technologies Group\",\"primaryLabelValue\":\"Clover Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"CME Associates\",\"primaryLabelValue\":\"CME Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CMS Forex\",\"primaryLabelValue\":\"CMS Forex\"}},{\"attributeHeader\":{\"labelValue\":\"COCC\",\"primaryLabelValue\":\"COCC\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"CoffeeForLess.com\",\"primaryLabelValue\":\"CoffeeForLess.com\"}},{\"attributeHeader\":{\"labelValue\":\"CognitiveData\",\"primaryLabelValue\":\"CognitiveData\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen & Company\",\"primaryLabelValue\":\"Cohen & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cohn Marketing\",\"primaryLabelValue\":\"Cohn Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Keepers\",\"primaryLabelValue\":\"Comfort Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"Communication Company of South Bend\",\"primaryLabelValue\":\"Communication Company of South Bend\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Community Waste Disposal\",\"primaryLabelValue\":\"Community Waste Disposal\"}},{\"attributeHeader\":{\"labelValue\":\"Comm-Works\",\"primaryLabelValue\":\"Comm-Works\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Book & Media Supply\",\"primaryLabelValue\":\"Complete Book & Media Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Resources\",\"primaryLabelValue\":\"Complete Pharmacy Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"CompSource\",\"primaryLabelValue\":\"CompSource\"}},{\"attributeHeader\":{\"labelValue\":\"CompuTech Systems\",\"primaryLabelValue\":\"CompuTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Aided Technology\",\"primaryLabelValue\":\"Computer Aided Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Computing System Innovations\",\"primaryLabelValue\":\"Computing System Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"ConceptSolutions\",\"primaryLabelValue\":\"ConceptSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Engineering Group\",\"primaryLabelValue\":\"Concord Engineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"ConnectWise\",\"primaryLabelValue\":\"ConnectWise\"}},{\"attributeHeader\":{\"labelValue\":\"Connextions\",\"primaryLabelValue\":\"Connextions\"}},{\"attributeHeader\":{\"labelValue\":\"Connolly\",\"primaryLabelValue\":\"Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Conservice\",\"primaryLabelValue\":\"Conservice\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Container\",\"primaryLabelValue\":\"Consolidated Container\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Office Systems\",\"primaryLabelValue\":\"Consolidated Office Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Consona\",\"primaryLabelValue\":\"Consona\"}},{\"attributeHeader\":{\"labelValue\":\"Constellation Software Engineering\",\"primaryLabelValue\":\"Constellation Software Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Construction Coordinators\",\"primaryLabelValue\":\"Construction Coordinators\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Cellular\",\"primaryLabelValue\":\"Consumer Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Contingent Network Services\",\"primaryLabelValue\":\"Contingent Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Continuant\",\"primaryLabelValue\":\"Continuant\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Consulting Group\",\"primaryLabelValue\":\"Convergence Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Marketing\",\"primaryLabelValue\":\"Convergence Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corgan Associates\",\"primaryLabelValue\":\"Corgan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Appraisal Services\",\"primaryLabelValue\":\"Cornerstone Appraisal Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Detention Products\",\"primaryLabelValue\":\"Cornerstone Detention Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Information Technologies\",\"primaryLabelValue\":\"Cornerstone Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Staffing Solutions\",\"primaryLabelValue\":\"CornerStone Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate IT Solutions\",\"primaryLabelValue\":\"Corporate IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Network Services\",\"primaryLabelValue\":\"Corporate Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Results\",\"primaryLabelValue\":\"Corporate Results\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covington & Burling\",\"primaryLabelValue\":\"Covington & Burling\"}},{\"attributeHeader\":{\"labelValue\":\"Cozen O'Connor\",\"primaryLabelValue\":\"Cozen O'Connor\"}},{\"attributeHeader\":{\"labelValue\":\"CPI Solutions\",\"primaryLabelValue\":\"CPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"CR Software\",\"primaryLabelValue\":\"CR Software\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Criterion Systems\",\"primaryLabelValue\":\"Criterion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Crowley Marine\",\"primaryLabelValue\":\"Crowley Marine\"}},{\"attributeHeader\":{\"labelValue\":\"CS Technology\",\"primaryLabelValue\":\"CS Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CSI Electrical Contractors\",\"primaryLabelValue\":\"CSI Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"cSubs\",\"primaryLabelValue\":\"cSubs\"}},{\"attributeHeader\":{\"labelValue\":\"CTI Resource Management Services\",\"primaryLabelValue\":\"CTI Resource Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cufflinks.com\",\"primaryLabelValue\":\"Cufflinks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cuisine Unlimited Catering & Special Events\",\"primaryLabelValue\":\"Cuisine Unlimited Catering & Special Events\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Culmen International\",\"primaryLabelValue\":\"Culmen International\"}},{\"attributeHeader\":{\"labelValue\":\"Culpepper & Associates Security Services\",\"primaryLabelValue\":\"Culpepper & Associates Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Customized Energy Solutions\",\"primaryLabelValue\":\"Customized Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cyber Switching\",\"primaryLabelValue\":\"Cyber Switching\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cyrus Innovation\",\"primaryLabelValue\":\"Cyrus Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"D. Honore\",\"primaryLabelValue\":\"D. Honore\"}},{\"attributeHeader\":{\"labelValue\":\"Dancing Deer Baking Company\",\"primaryLabelValue\":\"Dancing Deer Baking Company\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Innovations\",\"primaryLabelValue\":\"Data Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"DataArt\",\"primaryLabelValue\":\"DataArt\"}},{\"attributeHeader\":{\"labelValue\":\"DataPipe\",\"primaryLabelValue\":\"DataPipe\"}},{\"attributeHeader\":{\"labelValue\":\"DataServ\",\"primaryLabelValue\":\"DataServ\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Polk & Wardwell\",\"primaryLabelValue\":\"Davis Polk & Wardwell\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Trucking\",\"primaryLabelValue\":\"Davis Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean & Draper Insurance Agency\",\"primaryLabelValue\":\"Dean & Draper Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DeSantis Breindel\",\"primaryLabelValue\":\"DeSantis Breindel\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dickstein Shapiro\",\"primaryLabelValue\":\"Dickstein Shapiro\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Blue Global\",\"primaryLabelValue\":\"Digital Blue Global\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Intelligence Systems\",\"primaryLabelValue\":\"Digital Intelligence Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Incorporation\",\"primaryLabelValue\":\"Direct Incorporation\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Two-Way Radio\",\"primaryLabelValue\":\"Discount Two-Way Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Discountmugs.com\",\"primaryLabelValue\":\"Discountmugs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Industrial Staffing\",\"primaryLabelValue\":\"Diversified Industrial Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"DMD Data Systems\",\"primaryLabelValue\":\"DMD Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Doctor Diabetic Supply\",\"primaryLabelValue\":\"Doctor Diabetic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Docutrend Imaging Solutions\",\"primaryLabelValue\":\"Docutrend Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dodge Communications\",\"primaryLabelValue\":\"Dodge Communications\"}},{\"attributeHeader\":{\"labelValue\":\"D'Onofrio & Son\",\"primaryLabelValue\":\"D'Onofrio & Son\"}},{\"attributeHeader\":{\"labelValue\":\"DOOR3 Business Applications\",\"primaryLabelValue\":\"DOOR3 Business Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Doormation\",\"primaryLabelValue\":\"Doormation\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Consulting & Computer Services\",\"primaryLabelValue\":\"Douglas Consulting & Computer Services\"}},{\"attributeHeader\":{\"labelValue\":\"dreamGEAR\",\"primaryLabelValue\":\"dreamGEAR\"}},{\"attributeHeader\":{\"labelValue\":\"Drilling Info\",\"primaryLabelValue\":\"Drilling Info\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Duo Consulting\",\"primaryLabelValue\":\"Duo Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"E.C. Ortiz & Co.\",\"primaryLabelValue\":\"E.C. Ortiz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eastbiz.com\",\"primaryLabelValue\":\"Eastbiz.com\"}},{\"attributeHeader\":{\"labelValue\":\"e-BI International\",\"primaryLabelValue\":\"e-BI International\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eClinicalWorks\",\"primaryLabelValue\":\"eClinicalWorks\"}},{\"attributeHeader\":{\"labelValue\":\"eCoast Sales Solutions\",\"primaryLabelValue\":\"eCoast Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Economic Modeling Specialists\",\"primaryLabelValue\":\"Economic Modeling Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"EdgeRock Technology Partners\",\"primaryLabelValue\":\"EdgeRock Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Edgetech I.G.\",\"primaryLabelValue\":\"Edgetech I.G.\"}},{\"attributeHeader\":{\"labelValue\":\"Edify Technologies\",\"primaryLabelValue\":\"Edify Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"eDimensional\",\"primaryLabelValue\":\"eDimensional\"}},{\"attributeHeader\":{\"labelValue\":\"EDTS\",\"primaryLabelValue\":\"EDTS\"}},{\"attributeHeader\":{\"labelValue\":\"Education Management Solutions\",\"primaryLabelValue\":\"Education Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Services of America\",\"primaryLabelValue\":\"Educational Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"Edwards Project Solutions\",\"primaryLabelValue\":\"Edwards Project Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eeBoo\",\"primaryLabelValue\":\"eeBoo\"}},{\"attributeHeader\":{\"labelValue\":\"eFashionSolutions\",\"primaryLabelValue\":\"eFashionSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobal\",\"primaryLabelValue\":\"eGlobal\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"EIS Office Solutions\",\"primaryLabelValue\":\"EIS Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ektron\",\"primaryLabelValue\":\"Ektron\"}},{\"attributeHeader\":{\"labelValue\":\"El Camino Charter Lines\",\"primaryLabelValue\":\"El Camino Charter Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Elastec\",\"primaryLabelValue\":\"Elastec\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Element Fusion\",\"primaryLabelValue\":\"Element Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Elite CME\",\"primaryLabelValue\":\"Elite CME\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eloqua\",\"primaryLabelValue\":\"Eloqua\"}},{\"attributeHeader\":{\"labelValue\":\"EMI - Online Research Solutions\",\"primaryLabelValue\":\"EMI - Online Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emmi Solutions\",\"primaryLabelValue\":\"Emmi Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Central\",\"primaryLabelValue\":\"Energy Central\"}},{\"attributeHeader\":{\"labelValue\":\"EnerSys\",\"primaryLabelValue\":\"EnerSys\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy Life Foods\",\"primaryLabelValue\":\"Enjoy Life Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy The City North\",\"primaryLabelValue\":\"Enjoy The City North\"}},{\"attributeHeader\":{\"labelValue\":\"Enroute Computer Solutions\",\"primaryLabelValue\":\"Enroute Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Entec Services\",\"primaryLabelValue\":\"Entec Services\"}},{\"attributeHeader\":{\"labelValue\":\"Entellects\",\"primaryLabelValue\":\"Entellects\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Management Specialists\",\"primaryLabelValue\":\"Environmental Management Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Products & Services of Vermont\",\"primaryLabelValue\":\"Environmental Products & Services of Vermont\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Standards\",\"primaryLabelValue\":\"Environmental Standards\"}},{\"attributeHeader\":{\"labelValue\":\"ePath Learning\",\"primaryLabelValue\":\"ePath Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Ephox\",\"primaryLabelValue\":\"Ephox\"}},{\"attributeHeader\":{\"labelValue\":\"ePlan Services\",\"primaryLabelValue\":\"ePlan Services\"}},{\"attributeHeader\":{\"labelValue\":\"Equilar\",\"primaryLabelValue\":\"Equilar\"}},{\"attributeHeader\":{\"labelValue\":\"eSolutions\",\"primaryLabelValue\":\"eSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"E-Solutions\",\"primaryLabelValue\":\"E-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Euclid Technology\",\"primaryLabelValue\":\"Euclid Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Event Architects\",\"primaryLabelValue\":\"Event Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Everglades Technologies\",\"primaryLabelValue\":\"Everglades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EverStaff\",\"primaryLabelValue\":\"EverStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Evocative\",\"primaryLabelValue\":\"Evocative\"}},{\"attributeHeader\":{\"labelValue\":\"Evoke Technologies\",\"primaryLabelValue\":\"Evoke Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Exhibits, A Swords Company\",\"primaryLabelValue\":\"Excalibur Exhibits, A Swords Company\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Technology\",\"primaryLabelValue\":\"Excalibur Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Excelsior Defense\",\"primaryLabelValue\":\"Excelsior Defense\"}},{\"attributeHeader\":{\"labelValue\":\"Exigen Services\",\"primaryLabelValue\":\"Exigen Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Express Travel\",\"primaryLabelValue\":\"Express Travel\"}},{\"attributeHeader\":{\"labelValue\":\"Extreme Pizza\",\"primaryLabelValue\":\"Extreme Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"eXude Benefits Group\",\"primaryLabelValue\":\"eXude Benefits Group\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Faegre & Benson\",\"primaryLabelValue\":\"Faegre & Benson\"}},{\"attributeHeader\":{\"labelValue\":\"Fairway Market\",\"primaryLabelValue\":\"Fairway Market\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Farwest Sports\",\"primaryLabelValue\":\"Farwest Sports\"}},{\"attributeHeader\":{\"labelValue\":\"fassforward consulting group\",\"primaryLabelValue\":\"fassforward consulting group\"}},{\"attributeHeader\":{\"labelValue\":\"Faultless Laundry Company\",\"primaryLabelValue\":\"Faultless Laundry Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Information Technologies\",\"primaryLabelValue\":\"Federated Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fedtech\",\"primaryLabelValue\":\"Fedtech\"}},{\"attributeHeader\":{\"labelValue\":\"Fenwick & West\",\"primaryLabelValue\":\"Fenwick & West\"}},{\"attributeHeader\":{\"labelValue\":\"Ferris Coffee & Nut\",\"primaryLabelValue\":\"Ferris Coffee & Nut\"}},{\"attributeHeader\":{\"labelValue\":\"FI Consulting\",\"primaryLabelValue\":\"FI Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelitone Logistics\",\"primaryLabelValue\":\"Fidelitone Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Fifth Avenue Restaurant Group\",\"primaryLabelValue\":\"Fifth Avenue Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Investments\",\"primaryLabelValue\":\"Financial Investments\"}},{\"attributeHeader\":{\"labelValue\":\"Find Great People\",\"primaryLabelValue\":\"Find Great People\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Finger Lakes Business Services\",\"primaryLabelValue\":\"Finger Lakes Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Firespring\",\"primaryLabelValue\":\"Firespring\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"First In Service Travel\",\"primaryLabelValue\":\"First In Service Travel\"}},{\"attributeHeader\":{\"labelValue\":\"First Interstate BancSystem\",\"primaryLabelValue\":\"First Interstate BancSystem\"}},{\"attributeHeader\":{\"labelValue\":\"First Tech Direct\",\"primaryLabelValue\":\"First Tech Direct\"}},{\"attributeHeader\":{\"labelValue\":\"First Western Financial\",\"primaryLabelValue\":\"First Western Financial\"}},{\"attributeHeader\":{\"labelValue\":\"firstPRO Inc.\",\"primaryLabelValue\":\"firstPRO Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher Tank Company\",\"primaryLabelValue\":\"Fisher Tank Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher/Unitech\",\"primaryLabelValue\":\"Fisher/Unitech\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Together Holdings\",\"primaryLabelValue\":\"Fitness Together Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Feet\",\"primaryLabelValue\":\"Fleet Feet\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Food Group\",\"primaryLabelValue\":\"Flying Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Foodguys\",\"primaryLabelValue\":\"Foodguys\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Fox Rothschild\",\"primaryLabelValue\":\"Fox Rothschild\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"Friedman\",\"primaryLabelValue\":\"Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"Frontline International\",\"primaryLabelValue\":\"Frontline International\"}},{\"attributeHeader\":{\"labelValue\":\"Frost Brown Todd\",\"primaryLabelValue\":\"Frost Brown Todd\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"Fusco Personnel\",\"primaryLabelValue\":\"Fusco Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Services\",\"primaryLabelValue\":\"Futura Services\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"FXFOWLE Architects\",\"primaryLabelValue\":\"FXFOWLE Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gaithersburg Air Conditioning & Heating\",\"primaryLabelValue\":\"Gaithersburg Air Conditioning & Heating\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Galison Mudpuppy\",\"primaryLabelValue\":\"Galison Mudpuppy\"}},{\"attributeHeader\":{\"labelValue\":\"GAP Solutions\",\"primaryLabelValue\":\"GAP Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Garner Holt Productions\",\"primaryLabelValue\":\"Garner Holt Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Gas Depot Oil\",\"primaryLabelValue\":\"Gas Depot Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Gatski Commercial Real Estate Services\",\"primaryLabelValue\":\"Gatski Commercial Real Estate Services\"}},{\"attributeHeader\":{\"labelValue\":\"GB Investments\",\"primaryLabelValue\":\"GB Investments\"}},{\"attributeHeader\":{\"labelValue\":\"GDB International\",\"primaryLabelValue\":\"GDB International\"}},{\"attributeHeader\":{\"labelValue\":\"Geary Interactive\",\"primaryLabelValue\":\"Geary Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GelScrubs\",\"primaryLabelValue\":\"GelScrubs\"}},{\"attributeHeader\":{\"labelValue\":\"Geneca\",\"primaryLabelValue\":\"Geneca\"}},{\"attributeHeader\":{\"labelValue\":\"General Oil\",\"primaryLabelValue\":\"General Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GeoLearning\",\"primaryLabelValue\":\"GeoLearning\"}},{\"attributeHeader\":{\"labelValue\":\"Geonetric\",\"primaryLabelValue\":\"Geonetric\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GH2 Architects\",\"primaryLabelValue\":\"GH2 Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gibbons\",\"primaryLabelValue\":\"Gibbons\"}},{\"attributeHeader\":{\"labelValue\":\"Gibson, Dunn & Crutcher\",\"primaryLabelValue\":\"Gibson, Dunn & Crutcher\"}},{\"attributeHeader\":{\"labelValue\":\"Gilsbar\",\"primaryLabelValue\":\"Gilsbar\"}},{\"attributeHeader\":{\"labelValue\":\"Ginter Electrical Contractors\",\"primaryLabelValue\":\"Ginter Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Systems\",\"primaryLabelValue\":\"Gold Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"GolfTEC Enterprises\",\"primaryLabelValue\":\"GolfTEC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwin Procter\",\"primaryLabelValue\":\"Goodwin Procter\"}},{\"attributeHeader\":{\"labelValue\":\"Gordon & Rees\",\"primaryLabelValue\":\"Gordon & Rees\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Governor's Distributors\",\"primaryLabelValue\":\"Governor's Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"Graham Behavioral Services\",\"primaryLabelValue\":\"Graham Behavioral Services\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Harvest Franchising\",\"primaryLabelValue\":\"Great Harvest Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Home Health & Hospice\",\"primaryLabelValue\":\"Great Lakes Home Health & Hospice\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Wire & Cable\",\"primaryLabelValue\":\"Great Lakes Wire & Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Green Dot\",\"primaryLabelValue\":\"Green Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Brand Strategy\",\"primaryLabelValue\":\"Greenberg Brand Strategy\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Traurig\",\"primaryLabelValue\":\"Greenberg Traurig\"}},{\"attributeHeader\":{\"labelValue\":\"Greene Resources\",\"primaryLabelValue\":\"Greene Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Greenstein, Rogoff, Olsen & Co.\",\"primaryLabelValue\":\"Greenstein, Rogoff, Olsen & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Medical Technologies\",\"primaryLabelValue\":\"Greenway Medical Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Transportation Services\",\"primaryLabelValue\":\"Greenway Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Group DCA\",\"primaryLabelValue\":\"Group DCA\"}},{\"attributeHeader\":{\"labelValue\":\"Group Health Solutions\",\"primaryLabelValue\":\"Group Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Group Mobile\",\"primaryLabelValue\":\"Group Mobile\"}},{\"attributeHeader\":{\"labelValue\":\"Grove City Dental\",\"primaryLabelValue\":\"Grove City Dental\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GStek\",\"primaryLabelValue\":\"GStek\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"GTN Technical Staffing\",\"primaryLabelValue\":\"GTN Technical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Guaranteed Rate\",\"primaryLabelValue\":\"Guaranteed Rate\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Financial Group\",\"primaryLabelValue\":\"Guidant Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Partners\",\"primaryLabelValue\":\"Guidant Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"GWI\",\"primaryLabelValue\":\"GWI\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Steel Fabricators\",\"primaryLabelValue\":\"H&H Steel Fabricators\"}},{\"attributeHeader\":{\"labelValue\":\"Haig Service\",\"primaryLabelValue\":\"Haig Service\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Construction\",\"primaryLabelValue\":\"Hanson Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harmony Healthcare International\",\"primaryLabelValue\":\"Harmony Healthcare International\"}},{\"attributeHeader\":{\"labelValue\":\"Harpoon Brewery\",\"primaryLabelValue\":\"Harpoon Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Hawkeye\",\"primaryLabelValue\":\"Hawkeye\"}},{\"attributeHeader\":{\"labelValue\":\"HCA\",\"primaryLabelValue\":\"HCA\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"HealthPort Technologies\",\"primaryLabelValue\":\"HealthPort Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HealthTrans\",\"primaryLabelValue\":\"HealthTrans\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"Hellerman Baretz Communications\",\"primaryLabelValue\":\"Hellerman Baretz Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Henderson Engineers\",\"primaryLabelValue\":\"Henderson Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hershey Systems\",\"primaryLabelValue\":\"Hershey Systems\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hinshaw & Culbertson\",\"primaryLabelValue\":\"Hinshaw & Culbertson\"}},{\"attributeHeader\":{\"labelValue\":\"Home Warranty of America\",\"primaryLabelValue\":\"Home Warranty of America\"}},{\"attributeHeader\":{\"labelValue\":\"Honest Tea\",\"primaryLabelValue\":\"Honest Tea\"}},{\"attributeHeader\":{\"labelValue\":\"Honigman Miller Schwartz and Cohn\",\"primaryLabelValue\":\"Honigman Miller Schwartz and Cohn\"}},{\"attributeHeader\":{\"labelValue\":\"Hooven-Dayton\",\"primaryLabelValue\":\"Hooven-Dayton\"}},{\"attributeHeader\":{\"labelValue\":\"Hornblower Marine Services\",\"primaryLabelValue\":\"Hornblower Marine Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hospital Solutions\",\"primaryLabelValue\":\"Hospital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Housing Helpers\",\"primaryLabelValue\":\"Housing Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"HRsmart\",\"primaryLabelValue\":\"HRsmart\"}},{\"attributeHeader\":{\"labelValue\":\"Huberty & Associates\",\"primaryLabelValue\":\"Huberty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hughes Hubbard & Reed\",\"primaryLabelValue\":\"Hughes Hubbard & Reed\"}},{\"attributeHeader\":{\"labelValue\":\"I.O. Metro\",\"primaryLabelValue\":\"I.O. Metro\"}},{\"attributeHeader\":{\"labelValue\":\"IBBS\",\"primaryLabelValue\":\"IBBS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Specialized Transport\",\"primaryLabelValue\":\"ICON Specialized Transport\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ICR\",\"primaryLabelValue\":\"ICR\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"ICSN\",\"primaryLabelValue\":\"ICSN\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Integrations\",\"primaryLabelValue\":\"Ideal Integrations\"}},{\"attributeHeader\":{\"labelValue\":\"Identity Marketing & Public Relations\",\"primaryLabelValue\":\"Identity Marketing & Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"ImageTrend\",\"primaryLabelValue\":\"ImageTrend\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Imavex\",\"primaryLabelValue\":\"Imavex\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"immixGroup\",\"primaryLabelValue\":\"immixGroup\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Group\",\"primaryLabelValue\":\"Impact Group\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Management Services\",\"primaryLabelValue\":\"Impact Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"inBusiness Services\",\"primaryLabelValue\":\"inBusiness Services\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"Infosurv\",\"primaryLabelValue\":\"Infosurv\"}},{\"attributeHeader\":{\"labelValue\":\"InfoZen\",\"primaryLabelValue\":\"InfoZen\"}},{\"attributeHeader\":{\"labelValue\":\"InkHead\",\"primaryLabelValue\":\"InkHead\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Wireless Technologies\",\"primaryLabelValue\":\"Innovative Wireless Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inphi Corporation\",\"primaryLabelValue\":\"Inphi Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Insala\",\"primaryLabelValue\":\"Insala\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"Inspec Tech\",\"primaryLabelValue\":\"Inspec Tech\"}},{\"attributeHeader\":{\"labelValue\":\"INT Technologies\",\"primaryLabelValue\":\"INT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Integrant\",\"primaryLabelValue\":\"Integrant\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Pro Services\",\"primaryLabelValue\":\"Integrated Pro Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Project Management\",\"primaryLabelValue\":\"Integrated Project Management\"}},{\"attributeHeader\":{\"labelValue\":\"Integrative Logic Marketing Group\",\"primaryLabelValue\":\"Integrative Logic Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Staffing Solutions\",\"primaryLabelValue\":\"Integrity Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Access Systems of NC\",\"primaryLabelValue\":\"Intelligent Access Systems of NC\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Decisions\",\"primaryLabelValue\":\"Intelligent Decisions\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Logistics\",\"primaryLabelValue\":\"Intelligent Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligentsia Coffee\",\"primaryLabelValue\":\"Intelligentsia Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"Inter Technologies\",\"primaryLabelValue\":\"Inter Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Interbank FX\",\"primaryLabelValue\":\"Interbank FX\"}},{\"attributeHeader\":{\"labelValue\":\"Interbit Data\",\"primaryLabelValue\":\"Interbit Data\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim HealthCare\",\"primaryLabelValue\":\"Interim HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Physicians\",\"primaryLabelValue\":\"Interim Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"International Education\",\"primaryLabelValue\":\"International Education\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorks\",\"primaryLabelValue\":\"InterWorks\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorld Highway\",\"primaryLabelValue\":\"InterWorld Highway\"}},{\"attributeHeader\":{\"labelValue\":\"Invision\",\"primaryLabelValue\":\"Invision\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"Iostudio\",\"primaryLabelValue\":\"Iostudio\"}},{\"attributeHeader\":{\"labelValue\":\"iPipeline\",\"primaryLabelValue\":\"iPipeline\"}},{\"attributeHeader\":{\"labelValue\":\"IQ Pipeline\",\"primaryLabelValue\":\"IQ Pipeline\"}},{\"attributeHeader\":{\"labelValue\":\"Iron Data Solutions\",\"primaryLabelValue\":\"Iron Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Isamax Snacks\",\"primaryLabelValue\":\"Isamax Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"IssueTrak\",\"primaryLabelValue\":\"IssueTrak\"}},{\"attributeHeader\":{\"labelValue\":\"ISWest\",\"primaryLabelValue\":\"ISWest\"}},{\"attributeHeader\":{\"labelValue\":\"iSys\",\"primaryLabelValue\":\"iSys\"}},{\"attributeHeader\":{\"labelValue\":\"iTalent\",\"primaryLabelValue\":\"iTalent\"}},{\"attributeHeader\":{\"labelValue\":\"ITSolutions\",\"primaryLabelValue\":\"ITSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"J&S Tool\",\"primaryLabelValue\":\"J&S Tool\"}},{\"attributeHeader\":{\"labelValue\":\"J&T Coins\",\"primaryLabelValue\":\"J&T Coins\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Jacquette Consulting\",\"primaryLabelValue\":\"Jacquette Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Jarrett Logistics Systems\",\"primaryLabelValue\":\"Jarrett Logistics Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Jaster-Quintanilla\",\"primaryLabelValue\":\"Jaster-Quintanilla\"}},{\"attributeHeader\":{\"labelValue\":\"Jawood\",\"primaryLabelValue\":\"Jawood\"}},{\"attributeHeader\":{\"labelValue\":\"Jensen Audio Visual\",\"primaryLabelValue\":\"Jensen Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jiffy Lube\",\"primaryLabelValue\":\"Jiffy Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Jimenez Custom Painting\",\"primaryLabelValue\":\"Jimenez Custom Painting\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Jones Day\",\"primaryLabelValue\":\"Jones Day\"}},{\"attributeHeader\":{\"labelValue\":\"Journey Mexico\",\"primaryLabelValue\":\"Journey Mexico\"}},{\"attributeHeader\":{\"labelValue\":\"Juice Pharma Worldwide\",\"primaryLabelValue\":\"Juice Pharma Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Jump2 Group\",\"primaryLabelValue\":\"Jump2 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jung's Trucking\",\"primaryLabelValue\":\"Jung's Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"Just Marketing International\",\"primaryLabelValue\":\"Just Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Kansas City Home Care\",\"primaryLabelValue\":\"Kansas City Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Kapnick Insurance Group\",\"primaryLabelValue\":\"Kapnick Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"KAYA Associates\",\"primaryLabelValue\":\"KAYA Associates\"}},{\"attributeHeader\":{\"labelValue\":\"KaZaK Composites\",\"primaryLabelValue\":\"KaZaK Composites\"}},{\"attributeHeader\":{\"labelValue\":\"KBK Technologies\",\"primaryLabelValue\":\"KBK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Keating Magee Marketing Communications\",\"primaryLabelValue\":\"Keating Magee Marketing Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Capital Properties\",\"primaryLabelValue\":\"Keller Williams Capital Properties\"}},{\"attributeHeader\":{\"labelValue\":\"Kenosia Construction\",\"primaryLabelValue\":\"Kenosia Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Kerusso\",\"primaryLabelValue\":\"Kerusso\"}},{\"attributeHeader\":{\"labelValue\":\"Keste\",\"primaryLabelValue\":\"Keste\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kim and Scott's Gourmet Pretzels\",\"primaryLabelValue\":\"Kim and Scott's Gourmet Pretzels\"}},{\"attributeHeader\":{\"labelValue\":\"King & Spalding\",\"primaryLabelValue\":\"King & Spalding\"}},{\"attributeHeader\":{\"labelValue\":\"KleenMark\",\"primaryLabelValue\":\"KleenMark\"}},{\"attributeHeader\":{\"labelValue\":\"kmG Hauling\",\"primaryLabelValue\":\"kmG Hauling\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Technologies\",\"primaryLabelValue\":\"Knight Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Knock Knock\",\"primaryLabelValue\":\"Knock Knock\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Infusion\",\"primaryLabelValue\":\"Knowledge Infusion\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge United\",\"primaryLabelValue\":\"Knowledge United\"}},{\"attributeHeader\":{\"labelValue\":\"Kobie Marketing\",\"primaryLabelValue\":\"Kobie Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kraus Commercial Roofing\",\"primaryLabelValue\":\"Kraus Commercial Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Kum & Go\",\"primaryLabelValue\":\"Kum & Go\"}},{\"attributeHeader\":{\"labelValue\":\"LabConnect\",\"primaryLabelValue\":\"LabConnect\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert Vet Supply\",\"primaryLabelValue\":\"Lambert Vet Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert, Edwards & Associates\",\"primaryLabelValue\":\"Lambert, Edwards & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Language Line Services\",\"primaryLabelValue\":\"Language Line Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laritech\",\"primaryLabelValue\":\"Laritech\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Spine Institute\",\"primaryLabelValue\":\"Laser Spine Institute\"}},{\"attributeHeader\":{\"labelValue\":\"LaserGifts\",\"primaryLabelValue\":\"LaserGifts\"}},{\"attributeHeader\":{\"labelValue\":\"LasX Industries\",\"primaryLabelValue\":\"LasX Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Latisys\",\"primaryLabelValue\":\"Latisys\"}},{\"attributeHeader\":{\"labelValue\":\"Latshaw Drilling & Exploration\",\"primaryLabelValue\":\"Latshaw Drilling & Exploration\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"Lawyer Trane\",\"primaryLabelValue\":\"Lawyer Trane\"}},{\"attributeHeader\":{\"labelValue\":\"Layla Grayce\",\"primaryLabelValue\":\"Layla Grayce\"}},{\"attributeHeader\":{\"labelValue\":\"LeadDog Marketing Group\",\"primaryLabelValue\":\"LeadDog Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Leader Bank\",\"primaryLabelValue\":\"Leader Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Interactive\",\"primaryLabelValue\":\"LeapFrog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Learning Evolution\",\"primaryLabelValue\":\"Learning Evolution\"}},{\"attributeHeader\":{\"labelValue\":\"LearningRx\",\"primaryLabelValue\":\"LearningRx\"}},{\"attributeHeader\":{\"labelValue\":\"LearnSomething\",\"primaryLabelValue\":\"LearnSomething\"}},{\"attributeHeader\":{\"labelValue\":\"LetterLogic\",\"primaryLabelValue\":\"LetterLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Tree Service\",\"primaryLabelValue\":\"Lewis Tree Service\"}},{\"attributeHeader\":{\"labelValue\":\"Lexco Cable\",\"primaryLabelValue\":\"Lexco Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Lexington Design + Fabrication\",\"primaryLabelValue\":\"Lexington Design + Fabrication\"}},{\"attributeHeader\":{\"labelValue\":\"LibreDigital\",\"primaryLabelValue\":\"LibreDigital\"}},{\"attributeHeader\":{\"labelValue\":\"Libsys\",\"primaryLabelValue\":\"Libsys\"}},{\"attributeHeader\":{\"labelValue\":\"LifeScript\",\"primaryLabelValue\":\"LifeScript\"}},{\"attributeHeader\":{\"labelValue\":\"LightEdge Solutions\",\"primaryLabelValue\":\"LightEdge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lightspeed Systems\",\"primaryLabelValue\":\"Lightspeed Systems\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidAgents Healthcare\",\"primaryLabelValue\":\"LiquidAgents Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidHub\",\"primaryLabelValue\":\"LiquidHub\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidSpoke\",\"primaryLabelValue\":\"LiquidSpoke\"}},{\"attributeHeader\":{\"labelValue\":\"Littler Mendelson\",\"primaryLabelValue\":\"Littler Mendelson\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"LMR Solutions\",\"primaryLabelValue\":\"LMR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Locke Lord Bissell & Liddell\",\"primaryLabelValue\":\"Locke Lord Bissell & Liddell\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"Lokion\",\"primaryLabelValue\":\"Lokion\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Glass Technologies\",\"primaryLabelValue\":\"M3 Glass Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magazines.com\",\"primaryLabelValue\":\"Magazines.com\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"MAIC\",\"primaryLabelValue\":\"MAIC\"}},{\"attributeHeader\":{\"labelValue\":\"Management Solutions\",\"primaryLabelValue\":\"Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Manatt, Phelps & Phillips\",\"primaryLabelValue\":\"Manatt, Phelps & Phillips\"}},{\"attributeHeader\":{\"labelValue\":\"Manifest Digital\",\"primaryLabelValue\":\"Manifest Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Man-Machine Systems Assessment\",\"primaryLabelValue\":\"Man-Machine Systems Assessment\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Maple Systems\",\"primaryLabelValue\":\"Maple Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Maritime International\",\"primaryLabelValue\":\"Maritime International\"}},{\"attributeHeader\":{\"labelValue\":\"Market Force Information\",\"primaryLabelValue\":\"Market Force Information\"}},{\"attributeHeader\":{\"labelValue\":\"Market Probe\",\"primaryLabelValue\":\"Market Probe\"}},{\"attributeHeader\":{\"labelValue\":\"MarketLeverage Interactive Advertising\",\"primaryLabelValue\":\"MarketLeverage Interactive Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Marstel-Day\",\"primaryLabelValue\":\"Marstel-Day\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Dawes Analytics\",\"primaryLabelValue\":\"Martin Dawes Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MAS Medical Staffing\",\"primaryLabelValue\":\"MAS Medical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Masterfit Medical Supply\",\"primaryLabelValue\":\"Masterfit Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"MaxEmail\",\"primaryLabelValue\":\"MaxEmail\"}},{\"attributeHeader\":{\"labelValue\":\"MaxVision\",\"primaryLabelValue\":\"MaxVision\"}},{\"attributeHeader\":{\"labelValue\":\"Mazzone Management Group\",\"primaryLabelValue\":\"Mazzone Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"MC Sign\",\"primaryLabelValue\":\"MC Sign\"}},{\"attributeHeader\":{\"labelValue\":\"MCAD Technologies\",\"primaryLabelValue\":\"MCAD Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"McElvain Oil & Gas Properties\",\"primaryLabelValue\":\"McElvain Oil & Gas Properties\"}},{\"attributeHeader\":{\"labelValue\":\"McGovern Physical Therapy Associates\",\"primaryLabelValue\":\"McGovern Physical Therapy Associates\"}},{\"attributeHeader\":{\"labelValue\":\"McGuireWoods\",\"primaryLabelValue\":\"McGuireWoods\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Group\",\"primaryLabelValue\":\"McKinley Group\"}},{\"attributeHeader\":{\"labelValue\":\"McMurry\",\"primaryLabelValue\":\"McMurry\"}},{\"attributeHeader\":{\"labelValue\":\"MCR\",\"primaryLabelValue\":\"MCR\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MED3000\",\"primaryLabelValue\":\"MED3000\"}},{\"attributeHeader\":{\"labelValue\":\"MedExpress Pharmacy\",\"primaryLabelValue\":\"MedExpress Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"MediaMind\",\"primaryLabelValue\":\"MediaMind\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Packaging\",\"primaryLabelValue\":\"Medical Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Present Value\",\"primaryLabelValue\":\"Medical Present Value\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"Medrec\",\"primaryLabelValue\":\"Medrec\"}},{\"attributeHeader\":{\"labelValue\":\"MedThink Communications\",\"primaryLabelValue\":\"MedThink Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Meeting Alliance\",\"primaryLabelValue\":\"Meeting Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Mellace Family Brands\",\"primaryLabelValue\":\"Mellace Family Brands\"}},{\"attributeHeader\":{\"labelValue\":\"Member Solutions\",\"primaryLabelValue\":\"Member Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Menlo Innovations\",\"primaryLabelValue\":\"Menlo Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Imaging Solutions\",\"primaryLabelValue\":\"Meridian Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"meridianEMR\",\"primaryLabelValue\":\"meridianEMR\"}},{\"attributeHeader\":{\"labelValue\":\"Metastorm\",\"primaryLabelValue\":\"Metastorm\"}},{\"attributeHeader\":{\"labelValue\":\"MetroStar Systems\",\"primaryLabelValue\":\"MetroStar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Microcom Technologies\",\"primaryLabelValue\":\"Microcom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIG\",\"primaryLabelValue\":\"MIG\"}},{\"attributeHeader\":{\"labelValue\":\"Miles-McClellan Construction\",\"primaryLabelValue\":\"Miles-McClellan Construction\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"mindSHIFT Technologies\",\"primaryLabelValue\":\"mindSHIFT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner Houston\",\"primaryLabelValue\":\"Miner Houston\"}},{\"attributeHeader\":{\"labelValue\":\"Miron Construction\",\"primaryLabelValue\":\"Miron Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Monin\",\"primaryLabelValue\":\"Monin\"}},{\"attributeHeader\":{\"labelValue\":\"Moochie\",\"primaryLabelValue\":\"Moochie\"}},{\"attributeHeader\":{\"labelValue\":\"Moody Nolan\",\"primaryLabelValue\":\"Moody Nolan\"}},{\"attributeHeader\":{\"labelValue\":\"Moore & Van Allen\",\"primaryLabelValue\":\"Moore & Van Allen\"}},{\"attributeHeader\":{\"labelValue\":\"MoreVisibility\",\"primaryLabelValue\":\"MoreVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Mosaica Education\",\"primaryLabelValue\":\"Mosaica Education\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MResult\",\"primaryLabelValue\":\"MResult\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"MTCI\",\"primaryLabelValue\":\"MTCI\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Namaste Solar Electric\",\"primaryLabelValue\":\"Namaste Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Narragansett Brewing\",\"primaryLabelValue\":\"Narragansett Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"National Asset Recovery Services\",\"primaryLabelValue\":\"National Asset Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"National Electronic Attachment\",\"primaryLabelValue\":\"National Electronic Attachment\"}},{\"attributeHeader\":{\"labelValue\":\"National Energy Control\",\"primaryLabelValue\":\"National Energy Control\"}},{\"attributeHeader\":{\"labelValue\":\"National Link\",\"primaryLabelValue\":\"National Link\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Nationwide Payment Solutions\",\"primaryLabelValue\":\"Nationwide Payment Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Natural Way Lawn and Tree\",\"primaryLabelValue\":\"Natural Way Lawn and Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Navarro Research and Engineering\",\"primaryLabelValue\":\"Navarro Research and Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Navicus\",\"primaryLabelValue\":\"Navicus\"}},{\"attributeHeader\":{\"labelValue\":\"nCircle\",\"primaryLabelValue\":\"nCircle\"}},{\"attributeHeader\":{\"labelValue\":\"Neibauer Dental\",\"primaryLabelValue\":\"Neibauer Dental\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Mullins Riley & Scarborough\",\"primaryLabelValue\":\"Nelson Mullins Riley & Scarborough\"}},{\"attributeHeader\":{\"labelValue\":\"Net Optics\",\"primaryLabelValue\":\"Net Optics\"}},{\"attributeHeader\":{\"labelValue\":\"NET Systems\",\"primaryLabelValue\":\"NET Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"NETE\",\"primaryLabelValue\":\"NETE\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetPlanner Systems\",\"primaryLabelValue\":\"NetPlanner Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NetSpend\",\"primaryLabelValue\":\"NetSpend\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NetVision Resources\",\"primaryLabelValue\":\"NetVision Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Network Infrastructure Technologies\",\"primaryLabelValue\":\"Network Infrastructure Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Networking for Future\",\"primaryLabelValue\":\"Networking for Future\"}},{\"attributeHeader\":{\"labelValue\":\"Neudesic\",\"primaryLabelValue\":\"Neudesic\"}},{\"attributeHeader\":{\"labelValue\":\"Neumann Systems Group\",\"primaryLabelValue\":\"Neumann Systems Group\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Belgium Brewing\",\"primaryLabelValue\":\"New Belgium Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New England Medical Transcription\",\"primaryLabelValue\":\"New England Medical Transcription\"}},{\"attributeHeader\":{\"labelValue\":\"New England Natural Bakers\",\"primaryLabelValue\":\"New England Natural Bakers\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Gateway\",\"primaryLabelValue\":\"New Media Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"NewAgeSys\",\"primaryLabelValue\":\"NewAgeSys\"}},{\"attributeHeader\":{\"labelValue\":\"NewsGator\",\"primaryLabelValue\":\"NewsGator\"}},{\"attributeHeader\":{\"labelValue\":\"Newsways Services\",\"primaryLabelValue\":\"Newsways Services\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nexcess.net\",\"primaryLabelValue\":\"Nexcess.net\"}},{\"attributeHeader\":{\"labelValue\":\"NikSoft Systems\",\"primaryLabelValue\":\"NikSoft Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NimbleUser\",\"primaryLabelValue\":\"NimbleUser\"}},{\"attributeHeader\":{\"labelValue\":\"Niner Bikes\",\"primaryLabelValue\":\"Niner Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"nLight\",\"primaryLabelValue\":\"nLight\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NMR Consulting\",\"primaryLabelValue\":\"NMR Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Non-Public Educational Services\",\"primaryLabelValue\":\"Non-Public Educational Services\"}},{\"attributeHeader\":{\"labelValue\":\"Norman's Gift Shops\",\"primaryLabelValue\":\"Norman's Gift Shops\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"North Wind\",\"primaryLabelValue\":\"North Wind\"}},{\"attributeHeader\":{\"labelValue\":\"Northern Building Products\",\"primaryLabelValue\":\"Northern Building Products\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Logistics\",\"primaryLabelValue\":\"Northwest Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"NouvEON\",\"primaryLabelValue\":\"NouvEON\"}},{\"attributeHeader\":{\"labelValue\":\"Nova USA Wood Products\",\"primaryLabelValue\":\"Nova USA Wood Products\"}},{\"attributeHeader\":{\"labelValue\":\"NPI Solutions\",\"primaryLabelValue\":\"NPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NSK\",\"primaryLabelValue\":\"NSK\"}},{\"attributeHeader\":{\"labelValue\":\"NSTAR Global Services\",\"primaryLabelValue\":\"NSTAR Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutiva\",\"primaryLabelValue\":\"Nutiva\"}},{\"attributeHeader\":{\"labelValue\":\"NWN\",\"primaryLabelValue\":\"NWN\"}},{\"attributeHeader\":{\"labelValue\":\"O2 Fitness Clubs\",\"primaryLabelValue\":\"O2 Fitness Clubs\"}},{\"attributeHeader\":{\"labelValue\":\"Obtiva\",\"primaryLabelValue\":\"Obtiva\"}},{\"attributeHeader\":{\"labelValue\":\"Octagon Research Solutions\",\"primaryLabelValue\":\"Octagon Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Beacon\",\"primaryLabelValue\":\"Office Beacon\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"OFS Solutions\",\"primaryLabelValue\":\"OFS Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"OMG National\",\"primaryLabelValue\":\"OMG National\"}},{\"attributeHeader\":{\"labelValue\":\"One Source Talent\",\"primaryLabelValue\":\"One Source Talent\"}},{\"attributeHeader\":{\"labelValue\":\"O'Neil & Associates\",\"primaryLabelValue\":\"O'Neil & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"ONLC Training Centers\",\"primaryLabelValue\":\"ONLC Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems Technologies\",\"primaryLabelValue\":\"Open Systems Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Synthesis\",\"primaryLabelValue\":\"Optimal Synthesis\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMech\",\"primaryLabelValue\":\"OptiMech\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OSAM Document Solutions\",\"primaryLabelValue\":\"OSAM Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outdoor Motor Sports\",\"primaryLabelValue\":\"Outdoor Motor Sports\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Ovations Food Services\",\"primaryLabelValue\":\"Ovations Food Services\"}},{\"attributeHeader\":{\"labelValue\":\"Overture Partners\",\"primaryLabelValue\":\"Overture Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pace Computer Solutions\",\"primaryLabelValue\":\"Pace Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Software Publishing\",\"primaryLabelValue\":\"Pacific Software Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Padilla Construction Services\",\"primaryLabelValue\":\"Padilla Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pallet Central Enterprises\",\"primaryLabelValue\":\"Pallet Central Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Palm Beach Tan\",\"primaryLabelValue\":\"Palm Beach Tan\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Corporate Housing\",\"primaryLabelValue\":\"Paragon Corporate Housing\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paramount Technologies\",\"primaryLabelValue\":\"Paramount Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health\",\"primaryLabelValue\":\"Passport Health\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Patel Consultants\",\"primaryLabelValue\":\"Patel Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Pathmark Transportation\",\"primaryLabelValue\":\"Pathmark Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"PatioShoppers.com\",\"primaryLabelValue\":\"PatioShoppers.com\"}},{\"attributeHeader\":{\"labelValue\":\"Patrick Henry Creative Promotions\",\"primaryLabelValue\":\"Patrick Henry Creative Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Patterson Belknap Webb & Tyler\",\"primaryLabelValue\":\"Patterson Belknap Webb & Tyler\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Hastings, Janofsky & Walker\",\"primaryLabelValue\":\"Paul, Hastings, Janofsky & Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\",\"primaryLabelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"Paylocity\",\"primaryLabelValue\":\"Paylocity\"}},{\"attributeHeader\":{\"labelValue\":\"PCD Group\",\"primaryLabelValue\":\"PCD Group\"}},{\"attributeHeader\":{\"labelValue\":\"PCN Network\",\"primaryLabelValue\":\"PCN Network\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Auto Racing Supplies\",\"primaryLabelValue\":\"Pegasus Auto Racing Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"Pelican Products\",\"primaryLabelValue\":\"Pelican Products\"}},{\"attributeHeader\":{\"labelValue\":\"Peloton Advantage\",\"primaryLabelValue\":\"Peloton Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Pensco Trust\",\"primaryLabelValue\":\"Pensco Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Pentec Health\",\"primaryLabelValue\":\"Pentec Health\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleAdmin\",\"primaryLabelValue\":\"PeopleAdmin\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleTec\",\"primaryLabelValue\":\"PeopleTec\"}},{\"attributeHeader\":{\"labelValue\":\"PepperDash Technology\",\"primaryLabelValue\":\"PepperDash Technology\"}},{\"attributeHeader\":{\"labelValue\":\"PERI\",\"primaryLabelValue\":\"PERI\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter E-Security\",\"primaryLabelValue\":\"Perimeter E-Security\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter Technology\",\"primaryLabelValue\":\"Perimeter Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Peritus\",\"primaryLabelValue\":\"Peritus\"}},{\"attributeHeader\":{\"labelValue\":\"Petrus Brands\",\"primaryLabelValue\":\"Petrus Brands\"}},{\"attributeHeader\":{\"labelValue\":\"PetSafe\",\"primaryLabelValue\":\"PetSafe\"}},{\"attributeHeader\":{\"labelValue\":\"Pfister Energy\",\"primaryLabelValue\":\"Pfister Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Phillips Painting\",\"primaryLabelValue\":\"Phillips Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Integration\",\"primaryLabelValue\":\"Phoenix Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Photon Infotech\",\"primaryLabelValue\":\"Photon Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Picis\",\"primaryLabelValue\":\"Picis\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Technical Resources\",\"primaryLabelValue\":\"Pinnacle Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Piston Group\",\"primaryLabelValue\":\"Piston Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Technologies\",\"primaryLabelValue\":\"Plan B Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Plano-Coudon\",\"primaryLabelValue\":\"Plano-Coudon\"}},{\"attributeHeader\":{\"labelValue\":\"PLCs Plus International\",\"primaryLabelValue\":\"PLCs Plus International\"}},{\"attributeHeader\":{\"labelValue\":\"Plenus Group\",\"primaryLabelValue\":\"Plenus Group\"}},{\"attributeHeader\":{\"labelValue\":\"Plus One Health Management\",\"primaryLabelValue\":\"Plus One Health Management\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Direct\",\"primaryLabelValue\":\"Polaris Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Portable Church Industries\",\"primaryLabelValue\":\"Portable Church Industries\"}},{\"attributeHeader\":{\"labelValue\":\"PostcardMania\",\"primaryLabelValue\":\"PostcardMania\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Power Equipment Direct\",\"primaryLabelValue\":\"Power Equipment Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Power Home Technologies\",\"primaryLabelValue\":\"Power Home Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PowerON Services\",\"primaryLabelValue\":\"PowerON Services\"}},{\"attributeHeader\":{\"labelValue\":\"Practical Computer Applications\",\"primaryLabelValue\":\"Practical Computer Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Practice Management Center\",\"primaryLabelValue\":\"Practice Management Center\"}},{\"attributeHeader\":{\"labelValue\":\"PreCash\",\"primaryLabelValue\":\"PreCash\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Flow Technologies\",\"primaryLabelValue\":\"Precision Flow Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Solutions\",\"primaryLabelValue\":\"Preferred Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preludesys\",\"primaryLabelValue\":\"Preludesys\"}},{\"attributeHeader\":{\"labelValue\":\"Premier BPO\",\"primaryLabelValue\":\"Premier BPO\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"PrintFlex Graphics\",\"primaryLabelValue\":\"PrintFlex Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prisma Graphic\",\"primaryLabelValue\":\"Prisma Graphic\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Processes Unlimited International\",\"primaryLabelValue\":\"Processes Unlimited International\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Builders Supply\",\"primaryLabelValue\":\"Professional Builders Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Contractors Services\",\"primaryLabelValue\":\"Professional Contractors Services\"}},{\"attributeHeader\":{\"labelValue\":\"Project Development Services\",\"primaryLabelValue\":\"Project Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Projility\",\"primaryLabelValue\":\"Projility\"}},{\"attributeHeader\":{\"labelValue\":\"Prometheus Laboratories\",\"primaryLabelValue\":\"Prometheus Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"ProSites\",\"primaryLabelValue\":\"ProSites\"}},{\"attributeHeader\":{\"labelValue\":\"Proto Labs\",\"primaryLabelValue\":\"Proto Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Providea Conferencing\",\"primaryLabelValue\":\"Providea Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"PSP & Digital\",\"primaryLabelValue\":\"PSP & Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Purchasing Power\",\"primaryLabelValue\":\"Purchasing Power\"}},{\"attributeHeader\":{\"labelValue\":\"PureSafety\",\"primaryLabelValue\":\"PureSafety\"}},{\"attributeHeader\":{\"labelValue\":\"Puritan Products\",\"primaryLabelValue\":\"Puritan Products\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Consulting\",\"primaryLabelValue\":\"Pyramid Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Services\",\"primaryLabelValue\":\"Pyramid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramyd Air\",\"primaryLabelValue\":\"Pyramyd Air\"}},{\"attributeHeader\":{\"labelValue\":\"QED National\",\"primaryLabelValue\":\"QED National\"}},{\"attributeHeader\":{\"labelValue\":\"Qortex\",\"primaryLabelValue\":\"Qortex\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Qualys\",\"primaryLabelValue\":\"Qualys\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quarles & Brady\",\"primaryLabelValue\":\"Quarles & Brady\"}},{\"attributeHeader\":{\"labelValue\":\"Quickcomm Software Solutions\",\"primaryLabelValue\":\"Quickcomm Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R Square\",\"primaryLabelValue\":\"R Square\"}},{\"attributeHeader\":{\"labelValue\":\"R.W. Garcia\",\"primaryLabelValue\":\"R.W. Garcia\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"RailComm\",\"primaryLabelValue\":\"RailComm\"}},{\"attributeHeader\":{\"labelValue\":\"Raising Cane's Chicken Fingers\",\"primaryLabelValue\":\"Raising Cane's Chicken Fingers\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Product Development Group\",\"primaryLabelValue\":\"Rapid Product Development Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"RDG Planning & Design\",\"primaryLabelValue\":\"RDG Planning & Design\"}},{\"attributeHeader\":{\"labelValue\":\"RDK Engineers\",\"primaryLabelValue\":\"RDK Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"Red Book Solutions\",\"primaryLabelValue\":\"Red Book Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Redemption Plus\",\"primaryLabelValue\":\"Redemption Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Redpepper\",\"primaryLabelValue\":\"Redpepper\"}},{\"attributeHeader\":{\"labelValue\":\"Regenesis Biomedical\",\"primaryLabelValue\":\"Regenesis Biomedical\"}},{\"attributeHeader\":{\"labelValue\":\"RehabAbilities\",\"primaryLabelValue\":\"RehabAbilities\"}},{\"attributeHeader\":{\"labelValue\":\"Reichard Staffing\",\"primaryLabelValue\":\"Reichard Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Comfort\",\"primaryLabelValue\":\"Reliable Comfort\"}},{\"attributeHeader\":{\"labelValue\":\"Relocation.com\",\"primaryLabelValue\":\"Relocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Renters Warehouse\",\"primaryLabelValue\":\"Renters Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Return Path\",\"primaryLabelValue\":\"Return Path\"}},{\"attributeHeader\":{\"labelValue\":\"RevereIT\",\"primaryLabelValue\":\"RevereIT\"}},{\"attributeHeader\":{\"labelValue\":\"Revolution Prep\",\"primaryLabelValue\":\"Revolution Prep\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RHG Group\",\"primaryLabelValue\":\"RHG Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rhythmlink International\",\"primaryLabelValue\":\"Rhythmlink International\"}},{\"attributeHeader\":{\"labelValue\":\"RightStar\",\"primaryLabelValue\":\"RightStar\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"RigPower\",\"primaryLabelValue\":\"RigPower\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun Farms\",\"primaryLabelValue\":\"Rising Sun Farms\"}},{\"attributeHeader\":{\"labelValue\":\"RMI\",\"primaryLabelValue\":\"RMI\"}},{\"attributeHeader\":{\"labelValue\":\"Robanda International\",\"primaryLabelValue\":\"Robanda International\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"RockCorps\",\"primaryLabelValue\":\"RockCorps\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rockhouse Bar\",\"primaryLabelValue\":\"Rockhouse Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Rocky Mountain Sanitation\",\"primaryLabelValue\":\"Rocky Mountain Sanitation\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ropes & Gray\",\"primaryLabelValue\":\"Ropes & Gray\"}},{\"attributeHeader\":{\"labelValue\":\"Ross Mortgage\",\"primaryLabelValue\":\"Ross Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"Rowpar Pharmaceuticals\",\"primaryLabelValue\":\"Rowpar Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Electric\",\"primaryLabelValue\":\"Rumsey Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Engineers\",\"primaryLabelValue\":\"Rumsey Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"S and Y Industries\",\"primaryLabelValue\":\"S and Y Industries\"}},{\"attributeHeader\":{\"labelValue\":\"S3\",\"primaryLabelValue\":\"S3\"}},{\"attributeHeader\":{\"labelValue\":\"Safeguard Properties\",\"primaryLabelValue\":\"Safeguard Properties\"}},{\"attributeHeader\":{\"labelValue\":\"SafeNet\",\"primaryLabelValue\":\"SafeNet\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Technology International\",\"primaryLabelValue\":\"Safety Technology International\"}},{\"attributeHeader\":{\"labelValue\":\"Sanger & Eby\",\"primaryLabelValue\":\"Sanger & Eby\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Savannah Bee\",\"primaryLabelValue\":\"Savannah Bee\"}},{\"attributeHeader\":{\"labelValue\":\"SB&B Foods\",\"primaryLabelValue\":\"SB&B Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SC&H Group\",\"primaryLabelValue\":\"SC&H Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schermer Kuehl\",\"primaryLabelValue\":\"Schermer Kuehl\"}},{\"attributeHeader\":{\"labelValue\":\"Schiff Hardin\",\"primaryLabelValue\":\"Schiff Hardin\"}},{\"attributeHeader\":{\"labelValue\":\"Schipul\",\"primaryLabelValue\":\"Schipul\"}},{\"attributeHeader\":{\"labelValue\":\"Schultz and Summers Engineering\",\"primaryLabelValue\":\"Schultz and Summers Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ScripNet\",\"primaryLabelValue\":\"ScripNet\"}},{\"attributeHeader\":{\"labelValue\":\"SDLC Partners\",\"primaryLabelValue\":\"SDLC Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeaSpine\",\"primaryLabelValue\":\"SeaSpine\"}},{\"attributeHeader\":{\"labelValue\":\"Seaway Printing\",\"primaryLabelValue\":\"Seaway Printing\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security Card Services\",\"primaryLabelValue\":\"Security Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Security Management Consulting\",\"primaryLabelValue\":\"Security Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Sedgwick, Detert, Moran & Arnold\",\"primaryLabelValue\":\"Sedgwick, Detert, Moran & Arnold\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"SEI Boston\",\"primaryLabelValue\":\"SEI Boston\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Selerant\",\"primaryLabelValue\":\"Selerant\"}},{\"attributeHeader\":{\"labelValue\":\"Semper Home Loans\",\"primaryLabelValue\":\"Semper Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Senn Dunn Insurance\",\"primaryLabelValue\":\"Senn Dunn Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Senovva\",\"primaryLabelValue\":\"Senovva\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"Serpa Packaging Solutions\",\"primaryLabelValue\":\"Serpa Packaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Service Express\",\"primaryLabelValue\":\"Service Express\"}},{\"attributeHeader\":{\"labelValue\":\"ServiceForce\",\"primaryLabelValue\":\"ServiceForce\"}},{\"attributeHeader\":{\"labelValue\":\"Servigistics\",\"primaryLabelValue\":\"Servigistics\"}},{\"attributeHeader\":{\"labelValue\":\"SES Advisors\",\"primaryLabelValue\":\"SES Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Sewell Direct\",\"primaryLabelValue\":\"Sewell Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Seyfarth Shaw\",\"primaryLabelValue\":\"Seyfarth Shaw\"}},{\"attributeHeader\":{\"labelValue\":\"SGA Group\",\"primaryLabelValue\":\"SGA Group\"}},{\"attributeHeader\":{\"labelValue\":\"SGIS\",\"primaryLabelValue\":\"SGIS\"}},{\"attributeHeader\":{\"labelValue\":\"Shannon & Wilson\",\"primaryLabelValue\":\"Shannon & Wilson\"}},{\"attributeHeader\":{\"labelValue\":\"Sharper Impressions Painting\",\"primaryLabelValue\":\"Sharper Impressions Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Sheppard, Mullin, Richter & Hampton\",\"primaryLabelValue\":\"Sheppard, Mullin, Richter & Hampton\"}},{\"attributeHeader\":{\"labelValue\":\"Shoptech Industrial Software\",\"primaryLabelValue\":\"Shoptech Industrial Software\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"ShuBee\",\"primaryLabelValue\":\"ShuBee\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Nevada\",\"primaryLabelValue\":\"Sierra Nevada\"}},{\"attributeHeader\":{\"labelValue\":\"Silicon Forest Electronics\",\"primaryLabelValue\":\"Silicon Forest Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SilverTech\",\"primaryLabelValue\":\"SilverTech\"}},{\"attributeHeader\":{\"labelValue\":\"simpleview\",\"primaryLabelValue\":\"simpleview\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Siren Interactive\",\"primaryLabelValue\":\"Siren Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Sitewire\",\"primaryLabelValue\":\"Sitewire\"}},{\"attributeHeader\":{\"labelValue\":\"Skadden, Arps, Slate, Meagher & Flom\",\"primaryLabelValue\":\"Skadden, Arps, Slate, Meagher & Flom\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"SLM - Facility Solutions Nationwide\",\"primaryLabelValue\":\"SLM - Facility Solutions Nationwide\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Destinations\",\"primaryLabelValue\":\"Smart Destinations\"}},{\"attributeHeader\":{\"labelValue\":\"Smart IMS\",\"primaryLabelValue\":\"Smart IMS\"}},{\"attributeHeader\":{\"labelValue\":\"Smarter Security Systems\",\"primaryLabelValue\":\"Smarter Security Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Brands Group\",\"primaryLabelValue\":\"Smile Brands Group\"}},{\"attributeHeader\":{\"labelValue\":\"Smith-Dahmer Associates\",\"primaryLabelValue\":\"Smith-Dahmer Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Smith's Machine\",\"primaryLabelValue\":\"Smith's Machine\"}},{\"attributeHeader\":{\"labelValue\":\"Snack Factory\",\"primaryLabelValue\":\"Snack Factory\"}},{\"attributeHeader\":{\"labelValue\":\"Snapcab By Bostock\",\"primaryLabelValue\":\"Snapcab By Bostock\"}},{\"attributeHeader\":{\"labelValue\":\"SNL Financial\",\"primaryLabelValue\":\"SNL Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Software Transformations\",\"primaryLabelValue\":\"Software Transformations\"}},{\"attributeHeader\":{\"labelValue\":\"SoftWriters\",\"primaryLabelValue\":\"SoftWriters\"}},{\"attributeHeader\":{\"labelValue\":\"Sole Supports\",\"primaryLabelValue\":\"Sole Supports\"}},{\"attributeHeader\":{\"labelValue\":\"Solid Earth\",\"primaryLabelValue\":\"Solid Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Solution Design Group\",\"primaryLabelValue\":\"Solution Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Southeast Media\",\"primaryLabelValue\":\"Southeast Media\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Prestige Industries\",\"primaryLabelValue\":\"Southern Prestige Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spark Public Relations\",\"primaryLabelValue\":\"Spark Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"SpectorSoft\",\"primaryLabelValue\":\"SpectorSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Human Resource Systems\",\"primaryLabelValue\":\"Spectrum Human Resource Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SpeechCycle\",\"primaryLabelValue\":\"SpeechCycle\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Sphere of Influence\",\"primaryLabelValue\":\"Sphere of Influence\"}},{\"attributeHeader\":{\"labelValue\":\"Spillman Technologies\",\"primaryLabelValue\":\"Spillman Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Splice Communications\",\"primaryLabelValue\":\"Splice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"SRSsoft\",\"primaryLabelValue\":\"SRSsoft\"}},{\"attributeHeader\":{\"labelValue\":\"SS&C Technologies Holdings\",\"primaryLabelValue\":\"SS&C Technologies Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"SSD Technology Partners\",\"primaryLabelValue\":\"SSD Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"SSi Furnishings\",\"primaryLabelValue\":\"SSi Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Staffing Plus\",\"primaryLabelValue\":\"Staffing Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Standing Dog Interactive\",\"primaryLabelValue\":\"Standing Dog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Stanek Holdco\",\"primaryLabelValue\":\"Stanek Holdco\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"SteelCell of North America\",\"primaryLabelValue\":\"SteelCell of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Stellar Solutions\",\"primaryLabelValue\":\"Stellar Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"STG International\",\"primaryLabelValue\":\"STG International\"}},{\"attributeHeader\":{\"labelValue\":\"Stoltenberg Consulting\",\"primaryLabelValue\":\"Stoltenberg Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Stone Brewing\",\"primaryLabelValue\":\"Stone Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Storreytime\",\"primaryLabelValue\":\"Storreytime\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Staffing Solutions (Detroit, MI)\",\"primaryLabelValue\":\"Strategic Staffing Solutions (Detroit, MI)\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Structured Communication Systems\",\"primaryLabelValue\":\"Structured Communication Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Technology\",\"primaryLabelValue\":\"Summit Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Sunbelt Software\",\"primaryLabelValue\":\"Sunbelt Software\"}},{\"attributeHeader\":{\"labelValue\":\"Sundance Vacations\",\"primaryLabelValue\":\"Sundance Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Sundt Construction\",\"primaryLabelValue\":\"Sundt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Minting\",\"primaryLabelValue\":\"Sunshine Minting\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Press\",\"primaryLabelValue\":\"Superior Press\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Support Resources\",\"primaryLabelValue\":\"Superior Support Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sustainable Harvest Coffee Importers\",\"primaryLabelValue\":\"Sustainable Harvest Coffee Importers\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Swiger Coil Systems\",\"primaryLabelValue\":\"Swiger Coil Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Swiss Watch International\",\"primaryLabelValue\":\"Swiss Watch International\"}},{\"attributeHeader\":{\"labelValue\":\"Sygnetics\",\"primaryLabelValue\":\"Sygnetics\"}},{\"attributeHeader\":{\"labelValue\":\"SymbolArts\",\"primaryLabelValue\":\"SymbolArts\"}},{\"attributeHeader\":{\"labelValue\":\"Symetra Financial\",\"primaryLabelValue\":\"Symetra Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Synacor\",\"primaryLabelValue\":\"Synacor\"}},{\"attributeHeader\":{\"labelValue\":\"Synch-Solutions\",\"primaryLabelValue\":\"Synch-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&T Solutions\",\"primaryLabelValue\":\"T&T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T.B. Penick & Sons\",\"primaryLabelValue\":\"T.B. Penick & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"T2 Systems\",\"primaryLabelValue\":\"T2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TAJ Technologies\",\"primaryLabelValue\":\"TAJ Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Talyst\",\"primaryLabelValue\":\"Talyst\"}},{\"attributeHeader\":{\"labelValue\":\"TargetCast tcm\",\"primaryLabelValue\":\"TargetCast tcm\"}},{\"attributeHeader\":{\"labelValue\":\"Tastefully Simple\",\"primaryLabelValue\":\"Tastefully Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Tasty Catering\",\"primaryLabelValue\":\"Tasty Catering\"}},{\"attributeHeader\":{\"labelValue\":\"Tax Resolution Services\",\"primaryLabelValue\":\"Tax Resolution Services\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"Techead\",\"primaryLabelValue\":\"Techead\"}},{\"attributeHeader\":{\"labelValue\":\"Technatomy\",\"primaryLabelValue\":\"Technatomy\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Resource Group\",\"primaryLabelValue\":\"Technical Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Technosoft\",\"primaryLabelValue\":\"Technosoft\"}},{\"attributeHeader\":{\"labelValue\":\"TechSmith\",\"primaryLabelValue\":\"TechSmith\"}},{\"attributeHeader\":{\"labelValue\":\"TechSource\",\"primaryLabelValue\":\"TechSource\"}},{\"attributeHeader\":{\"labelValue\":\"TEK Microsystems\",\"primaryLabelValue\":\"TEK Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"Teksavers\",\"primaryLabelValue\":\"Teksavers\"}},{\"attributeHeader\":{\"labelValue\":\"Temporary Housing Directory\",\"primaryLabelValue\":\"Temporary Housing Directory\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Texsun Pools\",\"primaryLabelValue\":\"Texsun Pools\"}},{\"attributeHeader\":{\"labelValue\":\"That's Good HR\",\"primaryLabelValue\":\"That's Good HR\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Alternative Board\",\"primaryLabelValue\":\"The Alternative Board\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Coffee Bean & Tea Leaf\",\"primaryLabelValue\":\"The Coffee Bean & Tea Leaf\"}},{\"attributeHeader\":{\"labelValue\":\"The EMMES Corporation\",\"primaryLabelValue\":\"The EMMES Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Experts\",\"primaryLabelValue\":\"The Experts\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Market\",\"primaryLabelValue\":\"The Fresh Market\"}},{\"attributeHeader\":{\"labelValue\":\"The Glenture Group\",\"primaryLabelValue\":\"The Glenture Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Inspection Group\",\"primaryLabelValue\":\"The Inspection Group\"}},{\"attributeHeader\":{\"labelValue\":\"The James Group\",\"primaryLabelValue\":\"The James Group\"}},{\"attributeHeader\":{\"labelValue\":\"The LaSalle Network\",\"primaryLabelValue\":\"The LaSalle Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Lavidge Company\",\"primaryLabelValue\":\"The Lavidge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Leads Network\",\"primaryLabelValue\":\"The Leads Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Legacy Network\",\"primaryLabelValue\":\"The Legacy Network\"}},{\"attributeHeader\":{\"labelValue\":\"The List\",\"primaryLabelValue\":\"The List\"}},{\"attributeHeader\":{\"labelValue\":\"The Logic Group\",\"primaryLabelValue\":\"The Logic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Logistics Company\",\"primaryLabelValue\":\"The Logistics Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Macomb Group\",\"primaryLabelValue\":\"The Macomb Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Maslow Media Group\",\"primaryLabelValue\":\"The Maslow Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Matrix Companies\",\"primaryLabelValue\":\"The Matrix Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Maven Group\",\"primaryLabelValue\":\"The Maven Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Millennium Group\",\"primaryLabelValue\":\"The Millennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Newtron Group\",\"primaryLabelValue\":\"The Newtron Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Presidio Group\",\"primaryLabelValue\":\"The Presidio Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PTR Group\",\"primaryLabelValue\":\"The PTR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Royalty Network\",\"primaryLabelValue\":\"The Royalty Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Saxon Group\",\"primaryLabelValue\":\"The Saxon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Shams Group\",\"primaryLabelValue\":\"The Shams Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Wentwood Companies\",\"primaryLabelValue\":\"The Wentwood Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Tier 1 Performance Solutions\",\"primaryLabelValue\":\"Tier 1 Performance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Timbercon\",\"primaryLabelValue\":\"Timbercon\"}},{\"attributeHeader\":{\"labelValue\":\"Timeshare Relief\",\"primaryLabelValue\":\"Timeshare Relief\"}},{\"attributeHeader\":{\"labelValue\":\"Tire Group International\",\"primaryLabelValue\":\"Tire Group International\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"TitleVest\",\"primaryLabelValue\":\"TitleVest\"}},{\"attributeHeader\":{\"labelValue\":\"tmg-e*media\",\"primaryLabelValue\":\"tmg-e*media\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"TMW Systems\",\"primaryLabelValue\":\"TMW Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TOD\",\"primaryLabelValue\":\"TOD\"}},{\"attributeHeader\":{\"labelValue\":\"Today's Business Solutions\",\"primaryLabelValue\":\"Today's Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Tolunay-Wong Engineers\",\"primaryLabelValue\":\"Tolunay-Wong Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Topaz Systems\",\"primaryLabelValue\":\"Topaz Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TopSpot Internet Marketing\",\"primaryLabelValue\":\"TopSpot Internet Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Total Medical Solutions\",\"primaryLabelValue\":\"Total Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Total Quality Logistics\",\"primaryLabelValue\":\"Total Quality Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Totally Tickets\",\"primaryLabelValue\":\"Totally Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"TransExpress\",\"primaryLabelValue\":\"TransExpress\"}},{\"attributeHeader\":{\"labelValue\":\"Transfinder\",\"primaryLabelValue\":\"Transfinder\"}},{\"attributeHeader\":{\"labelValue\":\"TransPerfect\",\"primaryLabelValue\":\"TransPerfect\"}},{\"attributeHeader\":{\"labelValue\":\"Transportation Insight\",\"primaryLabelValue\":\"Transportation Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Transtyle\",\"primaryLabelValue\":\"Transtyle\"}},{\"attributeHeader\":{\"labelValue\":\"Tree of Life Bookstores\",\"primaryLabelValue\":\"Tree of Life Bookstores\"}},{\"attributeHeader\":{\"labelValue\":\"Treo Solutions\",\"primaryLabelValue\":\"Treo Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Resources\",\"primaryLabelValue\":\"Triad Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Contract Management\",\"primaryLabelValue\":\"Trident Contract Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trilibis\",\"primaryLabelValue\":\"Trilibis\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Creek\",\"primaryLabelValue\":\"Triple Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Tristar Products\",\"primaryLabelValue\":\"Tristar Products\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TruPay\",\"primaryLabelValue\":\"TruPay\"}},{\"attributeHeader\":{\"labelValue\":\"Trusant Technologies\",\"primaryLabelValue\":\"Trusant Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tully Rinckey\",\"primaryLabelValue\":\"Tully Rinckey\"}},{\"attributeHeader\":{\"labelValue\":\"Turbocam\",\"primaryLabelValue\":\"Turbocam\"}},{\"attributeHeader\":{\"labelValue\":\"Turner Industries\",\"primaryLabelValue\":\"Turner Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Turning Technologies\",\"primaryLabelValue\":\"Turning Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Island Foods\",\"primaryLabelValue\":\"Turtle Island Foods\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Tax Advantage\",\"primaryLabelValue\":\"U.S. Tax Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Unidine\",\"primaryLabelValue\":\"Unidine\"}},{\"attributeHeader\":{\"labelValue\":\"United Data Technologies\",\"primaryLabelValue\":\"United Data Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"US Tech Solutions\",\"primaryLabelValue\":\"US Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US21\",\"primaryLabelValue\":\"US21\"}},{\"attributeHeader\":{\"labelValue\":\"USA Mortgage\",\"primaryLabelValue\":\"USA Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"User Insight\",\"primaryLabelValue\":\"User Insight\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Valir Health\",\"primaryLabelValue\":\"Valir Health\"}},{\"attributeHeader\":{\"labelValue\":\"VanderHouwen\",\"primaryLabelValue\":\"VanderHouwen\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"Vedicsoft\",\"primaryLabelValue\":\"Vedicsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Venable\",\"primaryLabelValue\":\"Venable\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vera Bradley\",\"primaryLabelValue\":\"Vera Bradley\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Engineering\",\"primaryLabelValue\":\"Veracity Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"VeriStor Systems\",\"primaryLabelValue\":\"VeriStor Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Verndale\",\"primaryLabelValue\":\"Verndale\"}},{\"attributeHeader\":{\"labelValue\":\"Verst Group\",\"primaryLabelValue\":\"Verst Group\"}},{\"attributeHeader\":{\"labelValue\":\"Verti-Crete\",\"primaryLabelValue\":\"Verti-Crete\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilan\",\"primaryLabelValue\":\"Vigilan\"}},{\"attributeHeader\":{\"labelValue\":\"Villa Fresh Italian Kitchen\",\"primaryLabelValue\":\"Villa Fresh Italian Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Graffiti\",\"primaryLabelValue\":\"Virtual Graffiti\"}},{\"attributeHeader\":{\"labelValue\":\"Visionet Systems\",\"primaryLabelValue\":\"Visionet Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Visp.net\",\"primaryLabelValue\":\"Visp.net\"}},{\"attributeHeader\":{\"labelValue\":\"Vista Window\",\"primaryLabelValue\":\"Vista Window\"}},{\"attributeHeader\":{\"labelValue\":\"VitaDigest.com\",\"primaryLabelValue\":\"VitaDigest.com\"}},{\"attributeHeader\":{\"labelValue\":\"Vitalize Consulting Solutions\",\"primaryLabelValue\":\"Vitalize Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Vladimir Jones\",\"primaryLabelValue\":\"Vladimir Jones\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Vosges Haut Chocolat\",\"primaryLabelValue\":\"Vosges Haut Chocolat\"}},{\"attributeHeader\":{\"labelValue\":\"Vozzcom\",\"primaryLabelValue\":\"Vozzcom\"}},{\"attributeHeader\":{\"labelValue\":\"VSoft\",\"primaryLabelValue\":\"VSoft\"}},{\"attributeHeader\":{\"labelValue\":\"VST Consulting\",\"primaryLabelValue\":\"VST Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"VXI Global Solutions\",\"primaryLabelValue\":\"VXI Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"WahlcoMetroflex\",\"primaryLabelValue\":\"WahlcoMetroflex\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wallace\",\"primaryLabelValue\":\"Wallace\"}},{\"attributeHeader\":{\"labelValue\":\"Wasatch Software\",\"primaryLabelValue\":\"Wasatch Software\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Direct\",\"primaryLabelValue\":\"Wave Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Form Systems\",\"primaryLabelValue\":\"Wave Form Systems\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"Weather Decision Technologies\",\"primaryLabelValue\":\"Weather Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WebsiteBiz\",\"primaryLabelValue\":\"WebsiteBiz\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"West\",\"primaryLabelValue\":\"West\"}},{\"attributeHeader\":{\"labelValue\":\"Western Dovetail\",\"primaryLabelValue\":\"Western Dovetail\"}},{\"attributeHeader\":{\"labelValue\":\"Western Petroleum\",\"primaryLabelValue\":\"Western Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"WFN Strategies\",\"primaryLabelValue\":\"WFN Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"WhatSheBuys\",\"primaryLabelValue\":\"WhatSheBuys\"}},{\"attributeHeader\":{\"labelValue\":\"White & Case\",\"primaryLabelValue\":\"White & Case\"}},{\"attributeHeader\":{\"labelValue\":\"White Horse\",\"primaryLabelValue\":\"White Horse\"}},{\"attributeHeader\":{\"labelValue\":\"Whiteriver Construction\",\"primaryLabelValue\":\"Whiteriver Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Williams & Connolly\",\"primaryLabelValue\":\"Williams & Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Distribution\",\"primaryLabelValue\":\"Windy City Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless City\",\"primaryLabelValue\":\"Wireless City\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wiss, Janney, Elstner Associates\",\"primaryLabelValue\":\"Wiss, Janney, Elstner Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wittenberg Weiner Consulting\",\"primaryLabelValue\":\"Wittenberg Weiner Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WolfePak\",\"primaryLabelValue\":\"WolfePak\"}},{\"attributeHeader\":{\"labelValue\":\"Wonderland Enchanted Bakery\",\"primaryLabelValue\":\"Wonderland Enchanted Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"WorkSmart\",\"primaryLabelValue\":\"WorkSmart\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Travel Staffing\",\"primaryLabelValue\":\"Worldwide Travel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Wpromote\",\"primaryLabelValue\":\"Wpromote\"}},{\"attributeHeader\":{\"labelValue\":\"XCEND Group\",\"primaryLabelValue\":\"XCEND Group\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"XPO\",\"primaryLabelValue\":\"XPO\"}},{\"attributeHeader\":{\"labelValue\":\"Yellow Cab Company of Dallas Fort Worth\",\"primaryLabelValue\":\"Yellow Cab Company of Dallas Fort Worth\"}},{\"attributeHeader\":{\"labelValue\":\"Yerba Buena Engineering & Construction\",\"primaryLabelValue\":\"Yerba Buena Engineering & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zekiah Technologies\",\"primaryLabelValue\":\"Zekiah Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zillion Technologies\",\"primaryLabelValue\":\"Zillion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zooom Printing\",\"primaryLabelValue\":\"Zooom Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Zoup! Fresh Soup\",\"primaryLabelValue\":\"Zoup! Fresh Soup\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 Postcards\",\"primaryLabelValue\":\"1-800 Postcards\"}},{\"attributeHeader\":{\"labelValue\":\"2HB Software Designs\",\"primaryLabelValue\":\"2HB Software Designs\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"4th Source\",\"primaryLabelValue\":\"4th Source\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"90octane\",\"primaryLabelValue\":\"90octane\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"A Squared Group\",\"primaryLabelValue\":\"A Squared Group\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"ABBTech Staffing Services\",\"primaryLabelValue\":\"ABBTech Staffing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Able Patrol and Guard\",\"primaryLabelValue\":\"Able Patrol and Guard\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Absolute Concrete Construction\",\"primaryLabelValue\":\"Absolute Concrete Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accelera Solutions\",\"primaryLabelValue\":\"Accelera Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Display Group\",\"primaryLabelValue\":\"Access Display Group\"}},{\"attributeHeader\":{\"labelValue\":\"Action Envelope\",\"primaryLabelValue\":\"Action Envelope\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Materials\",\"primaryLabelValue\":\"Adaptive Materials\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage PressurePro\",\"primaryLabelValue\":\"Advantage PressurePro\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Radiology Billing\",\"primaryLabelValue\":\"Advocate Radiology Billing\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aeneas Internet and Telephone\",\"primaryLabelValue\":\"Aeneas Internet and Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Air Serv\",\"primaryLabelValue\":\"Air Serv\"}},{\"attributeHeader\":{\"labelValue\":\"Airnet Group\",\"primaryLabelValue\":\"Airnet Group\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"Akerman Senterfitt\",\"primaryLabelValue\":\"Akerman Senterfitt\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Alcorn McBride\",\"primaryLabelValue\":\"Alcorn McBride\"}},{\"attributeHeader\":{\"labelValue\":\"Alexander Open Systems\",\"primaryLabelValue\":\"Alexander Open Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Copy Products\",\"primaryLabelValue\":\"All Copy Products\"}},{\"attributeHeader\":{\"labelValue\":\"All4\",\"primaryLabelValue\":\"All4\"}},{\"attributeHeader\":{\"labelValue\":\"Allconnect\",\"primaryLabelValue\":\"Allconnect\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Technologies\",\"primaryLabelValue\":\"Alliance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Allied 100\",\"primaryLabelValue\":\"Allied 100\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Source\",\"primaryLabelValue\":\"Alpha Source\"}},{\"attributeHeader\":{\"labelValue\":\"Alston & Bird\",\"primaryLabelValue\":\"Alston & Bird\"}},{\"attributeHeader\":{\"labelValue\":\"altE\",\"primaryLabelValue\":\"altE\"}},{\"attributeHeader\":{\"labelValue\":\"Altec Solutions Group\",\"primaryLabelValue\":\"Altec Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Always Best Care Senior Services\",\"primaryLabelValue\":\"Always Best Care Senior Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"American Broadband\",\"primaryLabelValue\":\"American Broadband\"}},{\"attributeHeader\":{\"labelValue\":\"American Business Solutions\",\"primaryLabelValue\":\"American Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Home Companions\",\"primaryLabelValue\":\"American Home Companions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"American Swiss Products\",\"primaryLabelValue\":\"American Swiss Products\"}},{\"attributeHeader\":{\"labelValue\":\"AmeriQuest Transportation Services\",\"primaryLabelValue\":\"AmeriQuest Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amherst Partners\",\"primaryLabelValue\":\"Amherst Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Amotec\",\"primaryLabelValue\":\"Amotec\"}},{\"attributeHeader\":{\"labelValue\":\"Amyx\",\"primaryLabelValue\":\"Amyx\"}},{\"attributeHeader\":{\"labelValue\":\"Anadarko Industries\",\"primaryLabelValue\":\"Anadarko Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Andera\",\"primaryLabelValue\":\"Andera\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews Kurth\",\"primaryLabelValue\":\"Andrews Kurth\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"AngelVision\",\"primaryLabelValue\":\"AngelVision\"}},{\"attributeHeader\":{\"labelValue\":\"Anthem Media Group\",\"primaryLabelValue\":\"Anthem Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"AnythingIT\",\"primaryLabelValue\":\"AnythingIT\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"AnytimeCostumes.com\",\"primaryLabelValue\":\"AnytimeCostumes.com\"}},{\"attributeHeader\":{\"labelValue\":\"AOD Software\",\"primaryLabelValue\":\"AOD Software\"}},{\"attributeHeader\":{\"labelValue\":\"APCO Worldwide\",\"primaryLabelValue\":\"APCO Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Print Technologies\",\"primaryLabelValue\":\"Apex Print Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Technology Group\",\"primaryLabelValue\":\"Apex Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Apple-Metro\",\"primaryLabelValue\":\"Apple-Metro\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Data\",\"primaryLabelValue\":\"Applied Data\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Scientific Instrumentation\",\"primaryLabelValue\":\"Applied Scientific Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"APT Research\",\"primaryLabelValue\":\"APT Research\"}},{\"attributeHeader\":{\"labelValue\":\"Aqua Superstore\",\"primaryLabelValue\":\"Aqua Superstore\"}},{\"attributeHeader\":{\"labelValue\":\"Aquifer Solutions\",\"primaryLabelValue\":\"Aquifer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Arizon Companies\",\"primaryLabelValue\":\"Arizon Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Arizona Blinds\",\"primaryLabelValue\":\"Arizona Blinds\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arketi Group\",\"primaryLabelValue\":\"Arketi Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Partnership\",\"primaryLabelValue\":\"Arrow Partnership\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Arrowhead Advertising\",\"primaryLabelValue\":\"Arrowhead Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Artech Information Systems\",\"primaryLabelValue\":\"Artech Information Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend One\",\"primaryLabelValue\":\"Ascend One\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ASE Technology\",\"primaryLabelValue\":\"ASE Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ashland Technologies\",\"primaryLabelValue\":\"Ashland Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Transportation\",\"primaryLabelValue\":\"Aspen Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Aspire Systems\",\"primaryLabelValue\":\"Aspire Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Asset Protection and Security Services\",\"primaryLabelValue\":\"Asset Protection and Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Astir IT Solutions\",\"primaryLabelValue\":\"Astir IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A-T Solutions\",\"primaryLabelValue\":\"A-T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Oil Company\",\"primaryLabelValue\":\"Atlas Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"Auction Systems Auctioneers & Appraisers\",\"primaryLabelValue\":\"Auction Systems Auctioneers & Appraisers\"}},{\"attributeHeader\":{\"labelValue\":\"Autohaus Arizona\",\"primaryLabelValue\":\"Autohaus Arizona\"}},{\"attributeHeader\":{\"labelValue\":\"Automated Voice & Data Solutions\",\"primaryLabelValue\":\"Automated Voice & Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Global Solutions\",\"primaryLabelValue\":\"Avalon Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avenue You Beauty Store\",\"primaryLabelValue\":\"Avenue You Beauty Store\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Ink\",\"primaryLabelValue\":\"AVID Ink\"}},{\"attributeHeader\":{\"labelValue\":\"Avisena\",\"primaryLabelValue\":\"Avisena\"}},{\"attributeHeader\":{\"labelValue\":\"Avondale Partners\",\"primaryLabelValue\":\"Avondale Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Aware Web Solutions\",\"primaryLabelValue\":\"Aware Web Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AWSI\",\"primaryLabelValue\":\"AWSI\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Aztec Systems\",\"primaryLabelValue\":\"Aztec Systems\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"BackgroundChecks.com\",\"primaryLabelValue\":\"BackgroundChecks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryLabelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"}},{\"attributeHeader\":{\"labelValue\":\"BankServ\",\"primaryLabelValue\":\"BankServ\"}},{\"attributeHeader\":{\"labelValue\":\"Barhorst Insurance Group\",\"primaryLabelValue\":\"Barhorst Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"Battle Resource Management\",\"primaryLabelValue\":\"Battle Resource Management\"}},{\"attributeHeader\":{\"labelValue\":\"Batzner Pest Management\",\"primaryLabelValue\":\"Batzner Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"BBE\",\"primaryLabelValue\":\"BBE\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Belmont Labs\",\"primaryLabelValue\":\"Belmont Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Benjamin Franklin Plumbing\",\"primaryLabelValue\":\"Benjamin Franklin Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Best Upon Request\",\"primaryLabelValue\":\"Best Upon Request\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"Bevilacqua Research Corporation\",\"primaryLabelValue\":\"Bevilacqua Research Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"BI Consulting Group\",\"primaryLabelValue\":\"BI Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Big Red Fasteners\",\"primaryLabelValue\":\"Big Red Fasteners\"}},{\"attributeHeader\":{\"labelValue\":\"BioPharm Systems\",\"primaryLabelValue\":\"BioPharm Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blair Companies\",\"primaryLabelValue\":\"Blair Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Blinc\",\"primaryLabelValue\":\"Blinc\"}},{\"attributeHeader\":{\"labelValue\":\"Blitz\",\"primaryLabelValue\":\"Blitz\"}},{\"attributeHeader\":{\"labelValue\":\"Blount Fine Foods\",\"primaryLabelValue\":\"Blount Fine Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Baker\",\"primaryLabelValue\":\"Blue Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Blue C Advertising\",\"primaryLabelValue\":\"Blue C Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Moon Works\",\"primaryLabelValue\":\"Blue Moon Works\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Star Partners\",\"primaryLabelValue\":\"Blue Star Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"Bodybuilding.com\",\"primaryLabelValue\":\"Bodybuilding.com\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Brand Up\",\"primaryLabelValue\":\"Brand Up\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"Business Network Consulting\",\"primaryLabelValue\":\"Business Network Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"BusinesSuites\",\"primaryLabelValue\":\"BusinesSuites\"}},{\"attributeHeader\":{\"labelValue\":\"BuyATimeshare.com\",\"primaryLabelValue\":\"BuyATimeshare.com\"}},{\"attributeHeader\":{\"labelValue\":\"Byrum Heating & A/C\",\"primaryLabelValue\":\"Byrum Heating & A/C\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"CableOrganizer.com\",\"primaryLabelValue\":\"CableOrganizer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Rio\",\"primaryLabelValue\":\"Cafe Rio\"}},{\"attributeHeader\":{\"labelValue\":\"Calhoun International\",\"primaryLabelValue\":\"Calhoun International\"}},{\"attributeHeader\":{\"labelValue\":\"Call Experts\",\"primaryLabelValue\":\"Call Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"CalPOP.com\",\"primaryLabelValue\":\"CalPOP.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cambria Solutions\",\"primaryLabelValue\":\"Cambria Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campfire Interactive\",\"primaryLabelValue\":\"Campfire Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Capital Investment Advisors\",\"primaryLabelValue\":\"Capital Investment Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Capital TechSearch\",\"primaryLabelValue\":\"Capital TechSearch\"}},{\"attributeHeader\":{\"labelValue\":\"CapRock Communications\",\"primaryLabelValue\":\"CapRock Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"CapTech Ventures\",\"primaryLabelValue\":\"CapTech Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Culinary Services\",\"primaryLabelValue\":\"Cardinal Culinary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carolina Tree Care\",\"primaryLabelValue\":\"Carolina Tree Care\"}},{\"attributeHeader\":{\"labelValue\":\"Carter Brothers\",\"primaryLabelValue\":\"Carter Brothers\"}},{\"attributeHeader\":{\"labelValue\":\"Cascades Technologies\",\"primaryLabelValue\":\"Cascades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cases By Source\",\"primaryLabelValue\":\"Cases By Source\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Cassaday & Company\",\"primaryLabelValue\":\"Cassaday & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cat5 Commerce\",\"primaryLabelValue\":\"Cat5 Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"Catacel\",\"primaryLabelValue\":\"Catacel\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst\",\"primaryLabelValue\":\"Catalyst\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Repository Systems\",\"primaryLabelValue\":\"Catalyst Repository Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Technology\",\"primaryLabelValue\":\"Catapult Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Centare Group\",\"primaryLabelValue\":\"Centare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Central Welding Supply\",\"primaryLabelValue\":\"Central Welding Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Centrinex\",\"primaryLabelValue\":\"Centrinex\"}},{\"attributeHeader\":{\"labelValue\":\"Centro\",\"primaryLabelValue\":\"Centro\"}},{\"attributeHeader\":{\"labelValue\":\"Century Service Affiliates\",\"primaryLabelValue\":\"Century Service Affiliates\"}},{\"attributeHeader\":{\"labelValue\":\"CH Mack\",\"primaryLabelValue\":\"CH Mack\"}},{\"attributeHeader\":{\"labelValue\":\"Chacon Autos\",\"primaryLabelValue\":\"Chacon Autos\"}},{\"attributeHeader\":{\"labelValue\":\"Chansen Publishing\",\"primaryLabelValue\":\"Chansen Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman and Cutler\",\"primaryLabelValue\":\"Chapman and Cutler\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cherry Optical\",\"primaryLabelValue\":\"Cherry Optical\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Choctaw Professional Resources Enterprise\",\"primaryLabelValue\":\"Choctaw Professional Resources Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Circle Computer Resources\",\"primaryLabelValue\":\"Circle Computer Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CityTwist\",\"primaryLabelValue\":\"CityTwist\"}},{\"attributeHeader\":{\"labelValue\":\"CK Environmental\",\"primaryLabelValue\":\"CK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Consulting\",\"primaryLabelValue\":\"Clarity Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clary Business Machines\",\"primaryLabelValue\":\"Clary Business Machines\"}},{\"attributeHeader\":{\"labelValue\":\"ClassBook.com\",\"primaryLabelValue\":\"ClassBook.com\"}},{\"attributeHeader\":{\"labelValue\":\"Classic Instruments\",\"primaryLabelValue\":\"Classic Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Cleary Gottlieb Steen & Hamilton\",\"primaryLabelValue\":\"Cleary Gottlieb Steen & Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"clevermethod\",\"primaryLabelValue\":\"clevermethod\"}},{\"attributeHeader\":{\"labelValue\":\"Clickstop\",\"primaryLabelValue\":\"Clickstop\"}},{\"attributeHeader\":{\"labelValue\":\"Clockwork Home Services\",\"primaryLabelValue\":\"Clockwork Home Services\"}},{\"attributeHeader\":{\"labelValue\":\"CloseOutStore.net\",\"primaryLabelValue\":\"CloseOutStore.net\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"CMA Consulting Services\",\"primaryLabelValue\":\"CMA Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CMI\",\"primaryLabelValue\":\"CMI\"}},{\"attributeHeader\":{\"labelValue\":\"CMIT Solutions\",\"primaryLabelValue\":\"CMIT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Logistics Group\",\"primaryLabelValue\":\"Coastal Logistics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobb Pediatric Therapy Services\",\"primaryLabelValue\":\"Cobb Pediatric Therapy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cobble Hill Trailer Sales\",\"primaryLabelValue\":\"Cobble Hill Trailer Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Code Shred\",\"primaryLabelValue\":\"Code Shred\"}},{\"attributeHeader\":{\"labelValue\":\"Codeworks\",\"primaryLabelValue\":\"Codeworks\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Solutions\",\"primaryLabelValue\":\"Cogent Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ColdCypress\",\"primaryLabelValue\":\"ColdCypress\"}},{\"attributeHeader\":{\"labelValue\":\"Colo4Dallas\",\"primaryLabelValue\":\"Colo4Dallas\"}},{\"attributeHeader\":{\"labelValue\":\"Color-Ad\",\"primaryLabelValue\":\"Color-Ad\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Comm3\",\"primaryLabelValue\":\"Comm3\"}},{\"attributeHeader\":{\"labelValue\":\"Comp Consults\",\"primaryLabelValue\":\"Comp Consults\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Healthcare Communications\",\"primaryLabelValue\":\"Compass Healthcare Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Compendium\",\"primaryLabelValue\":\"Compendium\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Payroll Processing\",\"primaryLabelValue\":\"Complete Payroll Processing\"}},{\"attributeHeader\":{\"labelValue\":\"CompNation\",\"primaryLabelValue\":\"CompNation\"}},{\"attributeHeader\":{\"labelValue\":\"Compusoft Integrated Solutions\",\"primaryLabelValue\":\"Compusoft Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Solutions and Software International\",\"primaryLabelValue\":\"Computer Solutions and Software International\"}},{\"attributeHeader\":{\"labelValue\":\"Computerized Facility Integration\",\"primaryLabelValue\":\"Computerized Facility Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Concentric Healthcare Solutions\",\"primaryLabelValue\":\"Concentric Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Professional Services\",\"primaryLabelValue\":\"Concord Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Cable Solutions\",\"primaryLabelValue\":\"Consolidated Cable Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Consultedge\",\"primaryLabelValue\":\"Consultedge\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Sales Solutions\",\"primaryLabelValue\":\"Consumer Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contemporary Staffing Solutions\",\"primaryLabelValue\":\"Contemporary Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Data Services\",\"primaryLabelValue\":\"Convention Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Models & Talent\",\"primaryLabelValue\":\"Convention Models & Talent\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Cooley Godward Kronish\",\"primaryLabelValue\":\"Cooley Godward Kronish\"}},{\"attributeHeader\":{\"labelValue\":\"Corbin\",\"primaryLabelValue\":\"Corbin\"}},{\"attributeHeader\":{\"labelValue\":\"CoreMedical Group\",\"primaryLabelValue\":\"CoreMedical Group\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Allocation Services\",\"primaryLabelValue\":\"Corporate Allocation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Safe Specialists\",\"primaryLabelValue\":\"Corporate Safe Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Technologies\",\"primaryLabelValue\":\"Corporate Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate United\",\"primaryLabelValue\":\"Corporate United\"}},{\"attributeHeader\":{\"labelValue\":\"Cotter Consulting\",\"primaryLabelValue\":\"Cotter Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cottonwood Financial\",\"primaryLabelValue\":\"Cottonwood Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CRAssociates\",\"primaryLabelValue\":\"CRAssociates\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Lodging Solutions\",\"primaryLabelValue\":\"Creative Lodging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Presentations\",\"primaryLabelValue\":\"Creative Presentations\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Tent International\",\"primaryLabelValue\":\"Creative Tent International\"}},{\"attributeHeader\":{\"labelValue\":\"Crescent City Packaging\",\"primaryLabelValue\":\"Crescent City Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis\",\"primaryLabelValue\":\"Crowe Paradis\"}},{\"attributeHeader\":{\"labelValue\":\"Crowell & Moring\",\"primaryLabelValue\":\"Crowell & Moring\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Finishing Systems\",\"primaryLabelValue\":\"Crystal Finishing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\",\"primaryLabelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Effective Solutions\",\"primaryLabelValue\":\"Customer Effective Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cutter & Company\",\"primaryLabelValue\":\"Cutter & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cvision Technologies\",\"primaryLabelValue\":\"Cvision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CyDex Pharmaceuticals\",\"primaryLabelValue\":\"CyDex Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Cyquent\",\"primaryLabelValue\":\"Cyquent\"}},{\"attributeHeader\":{\"labelValue\":\"D&K Engineering\",\"primaryLabelValue\":\"D&K Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Dagher Engineering\",\"primaryLabelValue\":\"Dagher Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Data Center Resources\",\"primaryLabelValue\":\"Data Center Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Data Processing Services\",\"primaryLabelValue\":\"Data Processing Services\"}},{\"attributeHeader\":{\"labelValue\":\"DataCert\",\"primaryLabelValue\":\"DataCert\"}},{\"attributeHeader\":{\"labelValue\":\"DataDirect Networks\",\"primaryLabelValue\":\"DataDirect Networks\"}},{\"attributeHeader\":{\"labelValue\":\"DataMart Direct\",\"primaryLabelValue\":\"DataMart Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datotel\",\"primaryLabelValue\":\"Datotel\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Wright Tremaine\",\"primaryLabelValue\":\"Davis Wright Tremaine\"}},{\"attributeHeader\":{\"labelValue\":\"Dawson Logistics\",\"primaryLabelValue\":\"Dawson Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Daymark Solutions\",\"primaryLabelValue\":\"Daymark Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dayspring Restoration\",\"primaryLabelValue\":\"Dayspring Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Evans & Associates\",\"primaryLabelValue\":\"Dean Evans & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dean's Professional Service\",\"primaryLabelValue\":\"Dean's Professional Service\"}},{\"attributeHeader\":{\"labelValue\":\"deciBel Research\",\"primaryLabelValue\":\"deciBel Research\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Resources, Inc.\",\"primaryLabelValue\":\"Decision Resources, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Technologies\",\"primaryLabelValue\":\"Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Defran Systems\",\"primaryLabelValue\":\"Defran Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Del Sol\",\"primaryLabelValue\":\"Del Sol\"}},{\"attributeHeader\":{\"labelValue\":\"Delta T Equipment\",\"primaryLabelValue\":\"Delta T Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Dexclusive.com\",\"primaryLabelValue\":\"Dexclusive.com\"}},{\"attributeHeader\":{\"labelValue\":\"DGE\",\"primaryLabelValue\":\"DGE\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Pharmacy Services\",\"primaryLabelValue\":\"Diamond Pharmacy Services\"}},{\"attributeHeader\":{\"labelValue\":\"DiaTri\",\"primaryLabelValue\":\"DiaTri\"}},{\"attributeHeader\":{\"labelValue\":\"DICE\",\"primaryLabelValue\":\"DICE\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Prospectors\",\"primaryLabelValue\":\"Digital Prospectors\"}},{\"attributeHeader\":{\"labelValue\":\"Digitek Computer Products\",\"primaryLabelValue\":\"Digitek Computer Products\"}},{\"attributeHeader\":{\"labelValue\":\"Dinsmore & Shohl\",\"primaryLabelValue\":\"Dinsmore & Shohl\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomaframe.com\",\"primaryLabelValue\":\"Diplomaframe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Dimensions\",\"primaryLabelValue\":\"Direct Dimensions\"}},{\"attributeHeader\":{\"labelValue\":\"directFX Solutions\",\"primaryLabelValue\":\"directFX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Ramps.com\",\"primaryLabelValue\":\"Discount Ramps.com\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Lynx\",\"primaryLabelValue\":\"Diverse Lynx\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Marketing Group\",\"primaryLabelValue\":\"Diversified Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"DKI Services\",\"primaryLabelValue\":\"DKI Services\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DLT Solutions\",\"primaryLabelValue\":\"DLT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DMG Federal\",\"primaryLabelValue\":\"DMG Federal\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Document Solutions\",\"primaryLabelValue\":\"Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Doherty Enterprises\",\"primaryLabelValue\":\"Doherty Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Dougherty & Associates\",\"primaryLabelValue\":\"Dougherty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DRE\",\"primaryLabelValue\":\"DRE\"}},{\"attributeHeader\":{\"labelValue\":\"Drinker Biddle & Reath\",\"primaryLabelValue\":\"Drinker Biddle & Reath\"}},{\"attributeHeader\":{\"labelValue\":\"DSCI\",\"primaryLabelValue\":\"DSCI\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Dutch Valley Auto Works\",\"primaryLabelValue\":\"Dutch Valley Auto Works\"}},{\"attributeHeader\":{\"labelValue\":\"DyKnow\",\"primaryLabelValue\":\"DyKnow\"}},{\"attributeHeader\":{\"labelValue\":\"DynaFire\",\"primaryLabelValue\":\"DynaFire\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Language Center\",\"primaryLabelValue\":\"Dynamic Language Center\"}},{\"attributeHeader\":{\"labelValue\":\"DynaVox\",\"primaryLabelValue\":\"DynaVox\"}},{\"attributeHeader\":{\"labelValue\":\"E & B Natural Resources Management\",\"primaryLabelValue\":\"E & B Natural Resources Management\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Eagan Insurance Agency\",\"primaryLabelValue\":\"Eagan Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Armored Services\",\"primaryLabelValue\":\"Eastern Armored Services\"}},{\"attributeHeader\":{\"labelValue\":\"Easy-Turf\",\"primaryLabelValue\":\"Easy-Turf\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eckenhoff Saunders Architects\",\"primaryLabelValue\":\"Eckenhoff Saunders Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Chic Consignments\",\"primaryLabelValue\":\"Eco-Chic Consignments\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Edifecs\",\"primaryLabelValue\":\"Edifecs\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Data Systems\",\"primaryLabelValue\":\"Educational Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Efficient Lighting\",\"primaryLabelValue\":\"Efficient Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"eFulfillment Service\",\"primaryLabelValue\":\"eFulfillment Service\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobalTech\",\"primaryLabelValue\":\"eGlobalTech\"}},{\"attributeHeader\":{\"labelValue\":\"El Clasificado\",\"primaryLabelValue\":\"El Clasificado\"}},{\"attributeHeader\":{\"labelValue\":\"El Paseo Limousine\",\"primaryLabelValue\":\"El Paseo Limousine\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Data Payment Systems\",\"primaryLabelValue\":\"Electronic Data Payment Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Elite SEM\",\"primaryLabelValue\":\"Elite SEM\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Storage Solutions\",\"primaryLabelValue\":\"Elite Storage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Management\",\"primaryLabelValue\":\"e-Management\"}},{\"attributeHeader\":{\"labelValue\":\"eMazzanti Technologies\",\"primaryLabelValue\":\"eMazzanti Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"EMC Advertising\",\"primaryLabelValue\":\"EMC Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Emergtech Business Solutions\",\"primaryLabelValue\":\"Emergtech Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emkat\",\"primaryLabelValue\":\"Emkat\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eMortgage Logic\",\"primaryLabelValue\":\"eMortgage Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Emplicity\",\"primaryLabelValue\":\"Emplicity\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Plus\",\"primaryLabelValue\":\"Employment Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Screening Services\",\"primaryLabelValue\":\"Employment Screening Services\"}},{\"attributeHeader\":{\"labelValue\":\"EMS\",\"primaryLabelValue\":\"EMS\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Endsight\",\"primaryLabelValue\":\"Endsight\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Kitchen\",\"primaryLabelValue\":\"Energy Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyFirst\",\"primaryLabelValue\":\"EnergyFirst\"}},{\"attributeHeader\":{\"labelValue\":\"EnerNex\",\"primaryLabelValue\":\"EnerNex\"}},{\"attributeHeader\":{\"labelValue\":\"Enmon Enterprises\",\"primaryLabelValue\":\"Enmon Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Enovate\",\"primaryLabelValue\":\"Enovate\"}},{\"attributeHeader\":{\"labelValue\":\"Entrance Software\",\"primaryLabelValue\":\"Entrance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Envestnet\",\"primaryLabelValue\":\"Envestnet\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro Clean Services\",\"primaryLabelValue\":\"Enviro Clean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro-Safe Consulting\",\"primaryLabelValue\":\"Enviro-Safe Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Equus Software\",\"primaryLabelValue\":\"Equus Software\"}},{\"attributeHeader\":{\"labelValue\":\"eROI\",\"primaryLabelValue\":\"eROI\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"eScreen\",\"primaryLabelValue\":\"eScreen\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSilo\",\"primaryLabelValue\":\"eSilo\"}},{\"attributeHeader\":{\"labelValue\":\"ESP Technologies\",\"primaryLabelValue\":\"ESP Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"E-Technologies Group\",\"primaryLabelValue\":\"E-Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Eureka Holdings\",\"primaryLabelValue\":\"Eureka Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Euro-Pro\",\"primaryLabelValue\":\"Euro-Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Evergreen Lumber & Truss\",\"primaryLabelValue\":\"Evergreen Lumber & Truss\"}},{\"attributeHeader\":{\"labelValue\":\"Everon Technology Services\",\"primaryLabelValue\":\"Everon Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"EverySport.net\",\"primaryLabelValue\":\"EverySport.net\"}},{\"attributeHeader\":{\"labelValue\":\"eVestment Alliance\",\"primaryLabelValue\":\"eVestment Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Evolv Solutions\",\"primaryLabelValue\":\"Evolv Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"eWinWin\",\"primaryLabelValue\":\"eWinWin\"}},{\"attributeHeader\":{\"labelValue\":\"Exclusive Concepts\",\"primaryLabelValue\":\"Exclusive Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"ExecuTeam Staffing\",\"primaryLabelValue\":\"ExecuTeam Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Executive Clothiers\",\"primaryLabelValue\":\"Executive Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"Exploring.com\",\"primaryLabelValue\":\"Exploring.com\"}},{\"attributeHeader\":{\"labelValue\":\"Express Air Freight Unlimited\",\"primaryLabelValue\":\"Express Air Freight Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Extrakare\",\"primaryLabelValue\":\"Extrakare\"}},{\"attributeHeader\":{\"labelValue\":\"Exxel Outdoors\",\"primaryLabelValue\":\"Exxel Outdoors\"}},{\"attributeHeader\":{\"labelValue\":\"Fabrique\",\"primaryLabelValue\":\"Fabrique\"}},{\"attributeHeader\":{\"labelValue\":\"FairCode Associates\",\"primaryLabelValue\":\"FairCode Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Containers\",\"primaryLabelValue\":\"Falcon Containers\"}},{\"attributeHeader\":{\"labelValue\":\"Family Heritage Life Insurance Company of America\",\"primaryLabelValue\":\"Family Heritage Life Insurance Company of America\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fantastic Sams Hair Salons\",\"primaryLabelValue\":\"Fantastic Sams Hair Salons\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Trac Transportation\",\"primaryLabelValue\":\"Fast Trac Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"FastMac\",\"primaryLabelValue\":\"FastMac\"}},{\"attributeHeader\":{\"labelValue\":\"Fathom SEO\",\"primaryLabelValue\":\"Fathom SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Wholesale\",\"primaryLabelValue\":\"Federated Wholesale\"}},{\"attributeHeader\":{\"labelValue\":\"Fellowship Technologies\",\"primaryLabelValue\":\"Fellowship Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"FGM Architects\",\"primaryLabelValue\":\"FGM Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Designs\",\"primaryLabelValue\":\"Fine Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Promotions\",\"primaryLabelValue\":\"Fine Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\",\"primaryLabelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\"}},{\"attributeHeader\":{\"labelValue\":\"Fire & Flavor\",\"primaryLabelValue\":\"Fire & Flavor\"}},{\"attributeHeader\":{\"labelValue\":\"FireStream WorldWide\",\"primaryLabelValue\":\"FireStream WorldWide\"}},{\"attributeHeader\":{\"labelValue\":\"First Dental Health\",\"primaryLabelValue\":\"First Dental Health\"}},{\"attributeHeader\":{\"labelValue\":\"First Hospitality Group\",\"primaryLabelValue\":\"First Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fish & Richardson\",\"primaryLabelValue\":\"Fish & Richardson\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Five Star Restoration & Construction\",\"primaryLabelValue\":\"Five Star Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Management Solutions\",\"primaryLabelValue\":\"Fleet Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FleetCor Technologies\",\"primaryLabelValue\":\"FleetCor Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fluent Language Solutions\",\"primaryLabelValue\":\"Fluent Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Forensics Consulting Solutions\",\"primaryLabelValue\":\"Forensics Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Riders\",\"primaryLabelValue\":\"Fortis Riders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Title\",\"primaryLabelValue\":\"Foundation Title\"}},{\"attributeHeader\":{\"labelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\",\"primaryLabelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\"}},{\"attributeHeader\":{\"labelValue\":\"Fraser Communications\",\"primaryLabelValue\":\"Fraser Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Fredon\",\"primaryLabelValue\":\"Fredon\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Consulting Group\",\"primaryLabelValue\":\"Freedom Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Healthcare Staffing\",\"primaryLabelValue\":\"Freedom Healthcare Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Metals\",\"primaryLabelValue\":\"Freedom Metals\"}},{\"attributeHeader\":{\"labelValue\":\"FreightCenter\",\"primaryLabelValue\":\"FreightCenter\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"Front Gate Tickets\",\"primaryLabelValue\":\"Front Gate Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Fuellgraf Electric\",\"primaryLabelValue\":\"Fuellgraf Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum IT Services\",\"primaryLabelValue\":\"Fulcrum IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"Fulfillment Strategies International\",\"primaryLabelValue\":\"Fulfillment Strategies International\"}},{\"attributeHeader\":{\"labelValue\":\"Full Circle Wireless\",\"primaryLabelValue\":\"Full Circle Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Fullhouse\",\"primaryLabelValue\":\"Fullhouse\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"Future Media Concepts\",\"primaryLabelValue\":\"Future Media Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"G&A Partners\",\"primaryLabelValue\":\"G&A Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Gafcon\",\"primaryLabelValue\":\"Gafcon\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Galaxy Desserts\",\"primaryLabelValue\":\"Galaxy Desserts\"}},{\"attributeHeader\":{\"labelValue\":\"Gallaher & Associates\",\"primaryLabelValue\":\"Gallaher & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"GAME - Great American Merchandise & Events\",\"primaryLabelValue\":\"GAME - Great American Merchandise & Events\"}},{\"attributeHeader\":{\"labelValue\":\"Game Quest & Game Quest International\",\"primaryLabelValue\":\"Game Quest & Game Quest International\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Garcia Research\",\"primaryLabelValue\":\"Garcia Research\"}},{\"attributeHeader\":{\"labelValue\":\"Gardere Wynne Sewell\",\"primaryLabelValue\":\"Gardere Wynne Sewell\"}},{\"attributeHeader\":{\"labelValue\":\"Garland Industries\",\"primaryLabelValue\":\"Garland Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Garvey's Office Products\",\"primaryLabelValue\":\"Garvey's Office Products\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GBCblue\",\"primaryLabelValue\":\"GBCblue\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genica\",\"primaryLabelValue\":\"Genica\"}},{\"attributeHeader\":{\"labelValue\":\"GEO Consultants\",\"primaryLabelValue\":\"GEO Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Gerimedix\",\"primaryLabelValue\":\"Gerimedix\"}},{\"attributeHeader\":{\"labelValue\":\"Gersh Academy\",\"primaryLabelValue\":\"Gersh Academy\"}},{\"attributeHeader\":{\"labelValue\":\"GetWellNetwork\",\"primaryLabelValue\":\"GetWellNetwork\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Gibraltar Construction\",\"primaryLabelValue\":\"Gibraltar Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Gilero\",\"primaryLabelValue\":\"Gilero\"}},{\"attributeHeader\":{\"labelValue\":\"GlassHouse Technologies\",\"primaryLabelValue\":\"GlassHouse Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Aviation Holdings\",\"primaryLabelValue\":\"Global Aviation Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Global Futures & Forex\",\"primaryLabelValue\":\"Global Futures & Forex\"}},{\"attributeHeader\":{\"labelValue\":\"Global Medical Imaging\",\"primaryLabelValue\":\"Global Medical Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Globoforce\",\"primaryLabelValue\":\"Globoforce\"}},{\"attributeHeader\":{\"labelValue\":\"Glory Days Grill\",\"primaryLabelValue\":\"Glory Days Grill\"}},{\"attributeHeader\":{\"labelValue\":\"Glow Networks\",\"primaryLabelValue\":\"Glow Networks\"}},{\"attributeHeader\":{\"labelValue\":\"GMI\",\"primaryLabelValue\":\"GMI\"}},{\"attributeHeader\":{\"labelValue\":\"GNet Group\",\"primaryLabelValue\":\"GNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goddard Systems\",\"primaryLabelValue\":\"Goddard Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gongos Research\",\"primaryLabelValue\":\"Gongos Research\"}},{\"attributeHeader\":{\"labelValue\":\"goodmortgage.com\",\"primaryLabelValue\":\"goodmortgage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Gotham Technology Group\",\"primaryLabelValue\":\"Gotham Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goulston & Storrs\",\"primaryLabelValue\":\"Goulston & Storrs\"}},{\"attributeHeader\":{\"labelValue\":\"Gramercy Insurance\",\"primaryLabelValue\":\"Gramercy Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Greenleaf Environmental Group\",\"primaryLabelValue\":\"Greenleaf Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Greenwood Industries\",\"primaryLabelValue\":\"Greenwood Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Group Insurance Solutions\",\"primaryLabelValue\":\"Group Insurance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Gruskin Group\",\"primaryLabelValue\":\"Gruskin Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gryphon Technologies\",\"primaryLabelValue\":\"Gryphon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Guzov Ofsink\",\"primaryLabelValue\":\"Guzov Ofsink\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Gun Range Shooting Sports Outlet\",\"primaryLabelValue\":\"H&H Gun Range Shooting Sports Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Halperns' Purveyors of Steak & Seafood\",\"primaryLabelValue\":\"Halperns' Purveyors of Steak & Seafood\"}},{\"attributeHeader\":{\"labelValue\":\"Handi-Ramp\",\"primaryLabelValue\":\"Handi-Ramp\"}},{\"attributeHeader\":{\"labelValue\":\"Hanover Fire & Casualty Insurance\",\"primaryLabelValue\":\"Hanover Fire & Casualty Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Hargrove Engineers + Constructors\",\"primaryLabelValue\":\"Hargrove Engineers + Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Hawk Consultants\",\"primaryLabelValue\":\"Hawk Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Hayes Management Consulting\",\"primaryLabelValue\":\"Hayes Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"Health Integrated\",\"primaryLabelValue\":\"Health Integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Health Market Science\",\"primaryLabelValue\":\"Health Market Science\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Strategy Group\",\"primaryLabelValue\":\"Healthcare Strategy Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCareSeeker.com\",\"primaryLabelValue\":\"HealthCareSeeker.com\"}},{\"attributeHeader\":{\"labelValue\":\"Healthwise\",\"primaryLabelValue\":\"Healthwise\"}},{\"attributeHeader\":{\"labelValue\":\"Heartland Business Systems\",\"primaryLabelValue\":\"Heartland Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heartline Fitness Systems\",\"primaryLabelValue\":\"Heartline Fitness Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heath Ceramics\",\"primaryLabelValue\":\"Heath Ceramics\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hendrick Construction\",\"primaryLabelValue\":\"Hendrick Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Herbspro.com\",\"primaryLabelValue\":\"Herbspro.com\"}},{\"attributeHeader\":{\"labelValue\":\"Heschong Mahone Group\",\"primaryLabelValue\":\"Heschong Mahone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hewett-Kier Construction\",\"primaryLabelValue\":\"Hewett-Kier Construction\"}},{\"attributeHeader\":{\"labelValue\":\"HGA Architects and Engineers\",\"primaryLabelValue\":\"HGA Architects and Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Highland Products Group\",\"primaryLabelValue\":\"Highland Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hiller Plumbing, Heating & Cooling\",\"primaryLabelValue\":\"Hiller Plumbing, Heating & Cooling\"}},{\"attributeHeader\":{\"labelValue\":\"Hinda\",\"primaryLabelValue\":\"Hinda\"}},{\"attributeHeader\":{\"labelValue\":\"Hire Methods\",\"primaryLabelValue\":\"Hire Methods\"}},{\"attributeHeader\":{\"labelValue\":\"Hirease\",\"primaryLabelValue\":\"Hirease\"}},{\"attributeHeader\":{\"labelValue\":\"Hi-Speed\",\"primaryLabelValue\":\"Hi-Speed\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Hoffman Media\",\"primaryLabelValue\":\"Hoffman Media\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"Holland & Hart\",\"primaryLabelValue\":\"Holland & Hart\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (AL)\",\"primaryLabelValue\":\"Home Instead Senior Care (AL)\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Technology\",\"primaryLabelValue\":\"Horizon Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Horsemen Investigations\",\"primaryLabelValue\":\"Horsemen Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"Hosted Solutions Acquisitions\",\"primaryLabelValue\":\"Hosted Solutions Acquisitions\"}},{\"attributeHeader\":{\"labelValue\":\"House of Antique Hardware\",\"primaryLabelValue\":\"House of Antique Hardware\"}},{\"attributeHeader\":{\"labelValue\":\"HSP Direct\",\"primaryLabelValue\":\"HSP Direct\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Hudson Baylor\",\"primaryLabelValue\":\"Hudson Baylor\"}},{\"attributeHeader\":{\"labelValue\":\"Human Technologies\",\"primaryLabelValue\":\"Human Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Humble Abode\",\"primaryLabelValue\":\"Humble Abode\"}},{\"attributeHeader\":{\"labelValue\":\"Hunt & Sons\",\"primaryLabelValue\":\"Hunt & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Hunton & Williams\",\"primaryLabelValue\":\"Hunton & Williams\"}},{\"attributeHeader\":{\"labelValue\":\"HVR Advanced Power Components\",\"primaryLabelValue\":\"HVR Advanced Power Components\"}},{\"attributeHeader\":{\"labelValue\":\"I&I Software\",\"primaryLabelValue\":\"I&I Software\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"Iatric Systems\",\"primaryLabelValue\":\"Iatric Systems\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Holdings\",\"primaryLabelValue\":\"IBT Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"ICE Technologies\",\"primaryLabelValue\":\"ICE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Information Consultants\",\"primaryLabelValue\":\"ICON Information Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"iCore Networks\",\"primaryLabelValue\":\"iCore Networks\"}},{\"attributeHeader\":{\"labelValue\":\"iCruise.com\",\"primaryLabelValue\":\"iCruise.com\"}},{\"attributeHeader\":{\"labelValue\":\"ICS Marketing Support Services\",\"primaryLabelValue\":\"ICS Marketing Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"IDC Technologies\",\"primaryLabelValue\":\"IDC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Innovations\",\"primaryLabelValue\":\"Ideal Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"iFreedom Direct\",\"primaryLabelValue\":\"iFreedom Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ikaria\",\"primaryLabelValue\":\"Ikaria\"}},{\"attributeHeader\":{\"labelValue\":\"iLink Systems\",\"primaryLabelValue\":\"iLink Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Image One\",\"primaryLabelValue\":\"Image One\"}},{\"attributeHeader\":{\"labelValue\":\"ImageFIRST Healthcare Laundry Specialists\",\"primaryLabelValue\":\"ImageFIRST Healthcare Laundry Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"ImageSoft\",\"primaryLabelValue\":\"ImageSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging On Call\",\"primaryLabelValue\":\"Imaging On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Networking\",\"primaryLabelValue\":\"Impact Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Technologies\",\"primaryLabelValue\":\"Impact Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Impressions In Print\",\"primaryLabelValue\":\"Impressions In Print\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"InCircuit Development\",\"primaryLabelValue\":\"InCircuit Development\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"InfiniEdge Software\",\"primaryLabelValue\":\"InfiniEdge Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Network Solutions\",\"primaryLabelValue\":\"Infinity Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Info Directions\",\"primaryLabelValue\":\"Info Directions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Access Systems\",\"primaryLabelValue\":\"Information Access Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Inno Pak\",\"primaryLabelValue\":\"Inno Pak\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Analytics\",\"primaryLabelValue\":\"Innovative Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Integration\",\"primaryLabelValue\":\"Innovative Integration\"}},{\"attributeHeader\":{\"labelValue\":\"InsightsNow\",\"primaryLabelValue\":\"InsightsNow\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Office of America\",\"primaryLabelValue\":\"Insurance Office of America\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Revolution\",\"primaryLabelValue\":\"Insurance Revolution\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Enclosures\",\"primaryLabelValue\":\"Integra Enclosures\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Technologies\",\"primaryLabelValue\":\"Integration Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligrated\",\"primaryLabelValue\":\"Intelligrated\"}},{\"attributeHeader\":{\"labelValue\":\"IntePros Federal\",\"primaryLabelValue\":\"IntePros Federal\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterMed Biomedical Services\",\"primaryLabelValue\":\"InterMed Biomedical Services\"}},{\"attributeHeader\":{\"labelValue\":\"International Medical Resources\",\"primaryLabelValue\":\"International Medical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"International Sourcing\",\"primaryLabelValue\":\"International Sourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"IntraLinks Holdings\",\"primaryLabelValue\":\"IntraLinks Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InVue Security Products\",\"primaryLabelValue\":\"InVue Security Products\"}},{\"attributeHeader\":{\"labelValue\":\"iPay Technologies\",\"primaryLabelValue\":\"iPay Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IPiphany\",\"primaryLabelValue\":\"IPiphany\"}},{\"attributeHeader\":{\"labelValue\":\"IPLogic\",\"primaryLabelValue\":\"IPLogic\"}},{\"attributeHeader\":{\"labelValue\":\"iQor\",\"primaryLabelValue\":\"iQor\"}},{\"attributeHeader\":{\"labelValue\":\"IronTraffic\",\"primaryLabelValue\":\"IronTraffic\"}},{\"attributeHeader\":{\"labelValue\":\"Isagenix International\",\"primaryLabelValue\":\"Isagenix International\"}},{\"attributeHeader\":{\"labelValue\":\"iSi Environmental Services\",\"primaryLabelValue\":\"iSi Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"ISITE Design\",\"primaryLabelValue\":\"ISITE Design\"}},{\"attributeHeader\":{\"labelValue\":\"Isokinetics\",\"primaryLabelValue\":\"Isokinetics\"}},{\"attributeHeader\":{\"labelValue\":\"iSpace\",\"primaryLabelValue\":\"iSpace\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"IT Partners\",\"primaryLabelValue\":\"IT Partners\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"ITS\",\"primaryLabelValue\":\"ITS\"}},{\"attributeHeader\":{\"labelValue\":\"IVCi\",\"primaryLabelValue\":\"IVCi\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"ivgStores\",\"primaryLabelValue\":\"ivgStores\"}},{\"attributeHeader\":{\"labelValue\":\"Jack and Adam's Bicycles\",\"primaryLabelValue\":\"Jack and Adam's Bicycles\"}},{\"attributeHeader\":{\"labelValue\":\"Jack's Small Engine & Generator Service\",\"primaryLabelValue\":\"Jack's Small Engine & Generator Service\"}},{\"attributeHeader\":{\"labelValue\":\"Jacksonville Beach Pediatric Care Center\",\"primaryLabelValue\":\"Jacksonville Beach Pediatric Care Center\"}},{\"attributeHeader\":{\"labelValue\":\"Jacobs Agency\",\"primaryLabelValue\":\"Jacobs Agency\"}},{\"attributeHeader\":{\"labelValue\":\"James Engle Custom Homes\",\"primaryLabelValue\":\"James Engle Custom Homes\"}},{\"attributeHeader\":{\"labelValue\":\"JAT Software\",\"primaryLabelValue\":\"JAT Software\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Jazzercise\",\"primaryLabelValue\":\"Jazzercise\"}},{\"attributeHeader\":{\"labelValue\":\"JB Management\",\"primaryLabelValue\":\"JB Management\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"Jeffer, Mangels, Butler & Marmaro\",\"primaryLabelValue\":\"Jeffer, Mangels, Butler & Marmaro\"}},{\"attributeHeader\":{\"labelValue\":\"Jelec USA\",\"primaryLabelValue\":\"Jelec USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jenkins Security Consultants\",\"primaryLabelValue\":\"Jenkins Security Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Jimmy Beans Wool\",\"primaryLabelValue\":\"Jimmy Beans Wool\"}},{\"attributeHeader\":{\"labelValue\":\"Jordan Health Services\",\"primaryLabelValue\":\"Jordan Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"JPL\",\"primaryLabelValue\":\"JPL\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"KaMedData\",\"primaryLabelValue\":\"KaMedData\"}},{\"attributeHeader\":{\"labelValue\":\"Kasowitz, Benson, Torres & Friedman\",\"primaryLabelValue\":\"Kasowitz, Benson, Torres & Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"KaTom Restaurant Supply\",\"primaryLabelValue\":\"KaTom Restaurant Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Kazoo & Company Toys\",\"primaryLabelValue\":\"Kazoo & Company Toys\"}},{\"attributeHeader\":{\"labelValue\":\"KBW Financial Staffing & Recruiting\",\"primaryLabelValue\":\"KBW Financial Staffing & Recruiting\"}},{\"attributeHeader\":{\"labelValue\":\"Kee Safety\",\"primaryLabelValue\":\"Kee Safety\"}},{\"attributeHeader\":{\"labelValue\":\"Keeprs\",\"primaryLabelValue\":\"Keeprs\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Advantage\",\"primaryLabelValue\":\"Keller Williams Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"KeySource Medical\",\"primaryLabelValue\":\"KeySource Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Kimpton Hotels and Restaurants\",\"primaryLabelValue\":\"Kimpton Hotels and Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Knobbe, Martens, Olson & Bear\",\"primaryLabelValue\":\"Knobbe, Martens, Olson & Bear\"}},{\"attributeHeader\":{\"labelValue\":\"Kramer Levin Naftalis & Frankel\",\"primaryLabelValue\":\"Kramer Levin Naftalis & Frankel\"}},{\"attributeHeader\":{\"labelValue\":\"Kutak Rock\",\"primaryLabelValue\":\"Kutak Rock\"}},{\"attributeHeader\":{\"labelValue\":\"Kutir\",\"primaryLabelValue\":\"Kutir\"}},{\"attributeHeader\":{\"labelValue\":\"L & S Retail Ventures\",\"primaryLabelValue\":\"L & S Retail Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"L.A. Burdick Chocolate\",\"primaryLabelValue\":\"L.A. Burdick Chocolate\"}},{\"attributeHeader\":{\"labelValue\":\"LAgraphico\",\"primaryLabelValue\":\"LAgraphico\"}},{\"attributeHeader\":{\"labelValue\":\"LAI International\",\"primaryLabelValue\":\"LAI International\"}},{\"attributeHeader\":{\"labelValue\":\"Lakeshore Engineering Services\",\"primaryLabelValue\":\"Lakeshore Engineering Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lapre Scali & Company Insurance Services\",\"primaryLabelValue\":\"Lapre Scali & Company Insurance Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laptec\",\"primaryLabelValue\":\"Laptec\"}},{\"attributeHeader\":{\"labelValue\":\"Lasertec\",\"primaryLabelValue\":\"Lasertec\"}},{\"attributeHeader\":{\"labelValue\":\"Late July Organic Snacks\",\"primaryLabelValue\":\"Late July Organic Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"Latham & Watkins\",\"primaryLabelValue\":\"Latham & Watkins\"}},{\"attributeHeader\":{\"labelValue\":\"Latitude Software\",\"primaryLabelValue\":\"Latitude Software\"}},{\"attributeHeader\":{\"labelValue\":\"LawLogix Group\",\"primaryLabelValue\":\"LawLogix Group\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Le Chaperone Rouge Schools\",\"primaryLabelValue\":\"Le Chaperone Rouge Schools\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Solutions\",\"primaryLabelValue\":\"LeapFrog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lebakkens of Wisconsin\",\"primaryLabelValue\":\"Lebakkens of Wisconsin\"}},{\"attributeHeader\":{\"labelValue\":\"Lectrus\",\"primaryLabelValue\":\"Lectrus\"}},{\"attributeHeader\":{\"labelValue\":\"Lee Mathews Equipment\",\"primaryLabelValue\":\"Lee Mathews Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"LeGacy Resource\",\"primaryLabelValue\":\"LeGacy Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Lewellyn Technology\",\"primaryLabelValue\":\"Lewellyn Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Pumps\",\"primaryLabelValue\":\"Liberty Pumps\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tax Service\",\"primaryLabelValue\":\"Liberty Tax Service\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeCare Medical Services\",\"primaryLabelValue\":\"LifeCare Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"LimoRes.net\",\"primaryLabelValue\":\"LimoRes.net\"}},{\"attributeHeader\":{\"labelValue\":\"Link Construction Group\",\"primaryLabelValue\":\"Link Construction Group\"}},{\"attributeHeader\":{\"labelValue\":\"Linx\",\"primaryLabelValue\":\"Linx\"}},{\"attributeHeader\":{\"labelValue\":\"Lionfish Creative\",\"primaryLabelValue\":\"Lionfish Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"List Innovative Solutions\",\"primaryLabelValue\":\"List Innovative Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Litigation Services\",\"primaryLabelValue\":\"Litigation Services\"}},{\"attributeHeader\":{\"labelValue\":\"liveBooks\",\"primaryLabelValue\":\"liveBooks\"}},{\"attributeHeader\":{\"labelValue\":\"LiveOffice\",\"primaryLabelValue\":\"LiveOffice\"}},{\"attributeHeader\":{\"labelValue\":\"LivHOME\",\"primaryLabelValue\":\"LivHOME\"}},{\"attributeHeader\":{\"labelValue\":\"LoadSpring Solutions\",\"primaryLabelValue\":\"LoadSpring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Loeb & Loeb\",\"primaryLabelValue\":\"Loeb & Loeb\"}},{\"attributeHeader\":{\"labelValue\":\"Loeffler Randall\",\"primaryLabelValue\":\"Loeffler Randall\"}},{\"attributeHeader\":{\"labelValue\":\"Logan's Roadhouse\",\"primaryLabelValue\":\"Logan's Roadhouse\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"Look's Gourmet Food\",\"primaryLabelValue\":\"Look's Gourmet Food\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lowe Engineers\",\"primaryLabelValue\":\"Lowe Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"LPL Investment Holdings\",\"primaryLabelValue\":\"LPL Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"LTC Financial Partners\",\"primaryLabelValue\":\"LTC Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Lumenate\",\"primaryLabelValue\":\"Lumenate\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Luminit\",\"primaryLabelValue\":\"Luminit\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lyon Roofing\",\"primaryLabelValue\":\"Lyon Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"M S International\",\"primaryLabelValue\":\"M S International\"}},{\"attributeHeader\":{\"labelValue\":\"M Space Holdings\",\"primaryLabelValue\":\"M Space Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"M2M Communications\",\"primaryLabelValue\":\"M2M Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mailings Unlimited\",\"primaryLabelValue\":\"Mailings Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Makovsky + Company\",\"primaryLabelValue\":\"Makovsky + Company\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Management Services Northwest\",\"primaryLabelValue\":\"Management Services Northwest\"}},{\"attributeHeader\":{\"labelValue\":\"Mankin Media Systems\",\"primaryLabelValue\":\"Mankin Media Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Maranda Enterprises\",\"primaryLabelValue\":\"Maranda Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Marco's Franchising\",\"primaryLabelValue\":\"Marco's Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"Market America\",\"primaryLabelValue\":\"Market America\"}},{\"attributeHeader\":{\"labelValue\":\"Market Street Solutions\",\"primaryLabelValue\":\"Market Street Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MarketCounsel\",\"primaryLabelValue\":\"MarketCounsel\"}},{\"attributeHeader\":{\"labelValue\":\"MarketSphere Consulting\",\"primaryLabelValue\":\"MarketSphere Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MarketWave\",\"primaryLabelValue\":\"MarketWave\"}},{\"attributeHeader\":{\"labelValue\":\"Marlin Network\",\"primaryLabelValue\":\"Marlin Network\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Massage Envy\",\"primaryLabelValue\":\"Massage Envy\"}},{\"attributeHeader\":{\"labelValue\":\"MasterGardening.com\",\"primaryLabelValue\":\"MasterGardening.com\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Communications\",\"primaryLabelValue\":\"Maverick Communications\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaximumASP\",\"primaryLabelValue\":\"MaximumASP\"}},{\"attributeHeader\":{\"labelValue\":\"maxIT Healthcare\",\"primaryLabelValue\":\"maxIT Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Mayday Industries\",\"primaryLabelValue\":\"Mayday Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Mayer Brown\",\"primaryLabelValue\":\"Mayer Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Mayorga Coffee\",\"primaryLabelValue\":\"Mayorga Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCFA\",\"primaryLabelValue\":\"MCFA\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Wentworth\",\"primaryLabelValue\":\"McGraw Wentworth\"}},{\"attributeHeader\":{\"labelValue\":\"McMahon Associates\",\"primaryLabelValue\":\"McMahon Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MedAllocators\",\"primaryLabelValue\":\"MedAllocators\"}},{\"attributeHeader\":{\"labelValue\":\"Media Brokers International\",\"primaryLabelValue\":\"Media Brokers International\"}},{\"attributeHeader\":{\"labelValue\":\"MediConnect Global\",\"primaryLabelValue\":\"MediConnect Global\"}},{\"attributeHeader\":{\"labelValue\":\"MediGain\",\"primaryLabelValue\":\"MediGain\"}},{\"attributeHeader\":{\"labelValue\":\"Medistar\",\"primaryLabelValue\":\"Medistar\"}},{\"attributeHeader\":{\"labelValue\":\"MedNet Solutions\",\"primaryLabelValue\":\"MedNet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MedRisk\",\"primaryLabelValue\":\"MedRisk\"}},{\"attributeHeader\":{\"labelValue\":\"MedSeek\",\"primaryLabelValue\":\"MedSeek\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"Medwing.com\",\"primaryLabelValue\":\"Medwing.com\"}},{\"attributeHeader\":{\"labelValue\":\"MegaPath\",\"primaryLabelValue\":\"MegaPath\"}},{\"attributeHeader\":{\"labelValue\":\"Meier Architecture - Engineering\",\"primaryLabelValue\":\"Meier Architecture - Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"MemoryTen\",\"primaryLabelValue\":\"MemoryTen\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Merz Apothecary\",\"primaryLabelValue\":\"Merz Apothecary\"}},{\"attributeHeader\":{\"labelValue\":\"Metal Resource Solutions\",\"primaryLabelValue\":\"Metal Resource Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Metrofuser\",\"primaryLabelValue\":\"Metrofuser\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Michigan Custom Machines\",\"primaryLabelValue\":\"Michigan Custom Machines\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microfluidic Systems\",\"primaryLabelValue\":\"Microfluidic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Micromedics\",\"primaryLabelValue\":\"Micromedics\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTrain Technologies\",\"primaryLabelValue\":\"MicroTrain Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Underground Technology\",\"primaryLabelValue\":\"Midwest Underground Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Systems\",\"primaryLabelValue\":\"Milestone Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Military Products Group\",\"primaryLabelValue\":\"Military Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"MilitaryByOwner Advertising\",\"primaryLabelValue\":\"MilitaryByOwner Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Milsoft Utility Solutions\",\"primaryLabelValue\":\"Milsoft Utility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MindLeaf Technologies\",\"primaryLabelValue\":\"MindLeaf Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner El Paso\",\"primaryLabelValue\":\"Miner El Paso\"}},{\"attributeHeader\":{\"labelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\",\"primaryLabelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\"}},{\"attributeHeader\":{\"labelValue\":\"MIPRO Consulting\",\"primaryLabelValue\":\"MIPRO Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MiresBall\",\"primaryLabelValue\":\"MiresBall\"}},{\"attributeHeader\":{\"labelValue\":\"Mirion Technologies\",\"primaryLabelValue\":\"Mirion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miro Consulting\",\"primaryLabelValue\":\"Miro Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MISource\",\"primaryLabelValue\":\"MISource\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Support\",\"primaryLabelValue\":\"Mission Support\"}},{\"attributeHeader\":{\"labelValue\":\"Modern Technology Solutions\",\"primaryLabelValue\":\"Modern Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Modo\",\"primaryLabelValue\":\"Modo\"}},{\"attributeHeader\":{\"labelValue\":\"Monitoring Solutions\",\"primaryLabelValue\":\"Monitoring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Monitronics International\",\"primaryLabelValue\":\"Monitronics International\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan, Lewis & Bockius\",\"primaryLabelValue\":\"Morgan, Lewis & Bockius\"}},{\"attributeHeader\":{\"labelValue\":\"Morpheus Media\",\"primaryLabelValue\":\"Morpheus Media\"}},{\"attributeHeader\":{\"labelValue\":\"Mortgagebot\",\"primaryLabelValue\":\"Mortgagebot\"}},{\"attributeHeader\":{\"labelValue\":\"MOSAK Advertising & Insights\",\"primaryLabelValue\":\"MOSAK Advertising & Insights\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"Motive Interactive\",\"primaryLabelValue\":\"Motive Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mountainside Fitness Centers\",\"primaryLabelValue\":\"Mountainside Fitness Centers\"}},{\"attributeHeader\":{\"labelValue\":\"MPAY\",\"primaryLabelValue\":\"MPAY\"}},{\"attributeHeader\":{\"labelValue\":\"mPower Software Services\",\"primaryLabelValue\":\"mPower Software Services\"}},{\"attributeHeader\":{\"labelValue\":\"MRM Construction Services\",\"primaryLabelValue\":\"MRM Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"MTCSC\",\"primaryLabelValue\":\"MTCSC\"}},{\"attributeHeader\":{\"labelValue\":\"Multi Business Systems\",\"primaryLabelValue\":\"Multi Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Bank Services\",\"primaryLabelValue\":\"Multi-Bank Services\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Media Masters\",\"primaryLabelValue\":\"Multi-Media Masters\"}},{\"attributeHeader\":{\"labelValue\":\"Munger, Tolles & Olson\",\"primaryLabelValue\":\"Munger, Tolles & Olson\"}},{\"attributeHeader\":{\"labelValue\":\"Murdoch Security & Investigations\",\"primaryLabelValue\":\"Murdoch Security & Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Mutex Systems\",\"primaryLabelValue\":\"Mutex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MVS\",\"primaryLabelValue\":\"MVS\"}},{\"attributeHeader\":{\"labelValue\":\"Myriad Supply\",\"primaryLabelValue\":\"Myriad Supply\"}},{\"attributeHeader\":{\"labelValue\":\"N.P. Construction of North Florida\",\"primaryLabelValue\":\"N.P. Construction of North Florida\"}},{\"attributeHeader\":{\"labelValue\":\"Naplia\",\"primaryLabelValue\":\"Naplia\"}},{\"attributeHeader\":{\"labelValue\":\"Nascent Systems\",\"primaryLabelValue\":\"Nascent Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Food Group\",\"primaryLabelValue\":\"National Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National Recovery Agency\",\"primaryLabelValue\":\"National Recovery Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Navicure\",\"primaryLabelValue\":\"Navicure\"}},{\"attributeHeader\":{\"labelValue\":\"NavigationArts\",\"primaryLabelValue\":\"NavigationArts\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Near Infinity\",\"primaryLabelValue\":\"Near Infinity\"}},{\"attributeHeader\":{\"labelValue\":\"NeoCom Solutions\",\"primaryLabelValue\":\"NeoCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NeoSystems\",\"primaryLabelValue\":\"NeoSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Nerds On Call\",\"primaryLabelValue\":\"Nerds On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net Transcripts\",\"primaryLabelValue\":\"Net Transcripts\"}},{\"attributeHeader\":{\"labelValue\":\"Net@Work\",\"primaryLabelValue\":\"Net@Work\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"Neteon Technologies\",\"primaryLabelValue\":\"Neteon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NetGain\",\"primaryLabelValue\":\"NetGain\"}},{\"attributeHeader\":{\"labelValue\":\"NETtime Solutions\",\"primaryLabelValue\":\"NETtime Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Network International\",\"primaryLabelValue\":\"Network International\"}},{\"attributeHeader\":{\"labelValue\":\"Network9\",\"primaryLabelValue\":\"Network9\"}},{\"attributeHeader\":{\"labelValue\":\"Nevada State Corporate Network\",\"primaryLabelValue\":\"Nevada State Corporate Network\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Flight Charters\",\"primaryLabelValue\":\"New Flight Charters\"}},{\"attributeHeader\":{\"labelValue\":\"New Holland Brewing\",\"primaryLabelValue\":\"New Holland Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Learning\",\"primaryLabelValue\":\"New Media Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Newegg\",\"primaryLabelValue\":\"Newegg\"}},{\"attributeHeader\":{\"labelValue\":\"Newgen Technologies\",\"primaryLabelValue\":\"Newgen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NEXT Financial Holdings\",\"primaryLabelValue\":\"NEXT Financial Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Nextrials\",\"primaryLabelValue\":\"Nextrials\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Nital Trading\",\"primaryLabelValue\":\"Nital Trading\"}},{\"attributeHeader\":{\"labelValue\":\"No Limit Motorsport\",\"primaryLabelValue\":\"No Limit Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Moving\",\"primaryLabelValue\":\"NorthStar Moving\"}},{\"attributeHeader\":{\"labelValue\":\"NovaCopy\",\"primaryLabelValue\":\"NovaCopy\"}},{\"attributeHeader\":{\"labelValue\":\"NOVO 1\",\"primaryLabelValue\":\"NOVO 1\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelicor\",\"primaryLabelValue\":\"Ntelicor\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Safety Associates\",\"primaryLabelValue\":\"Nuclear Safety Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"NuView Systems\",\"primaryLabelValue\":\"NuView Systems\"}},{\"attributeHeader\":{\"labelValue\":\"O2B Kids\",\"primaryLabelValue\":\"O2B Kids\"}},{\"attributeHeader\":{\"labelValue\":\"Oak Grove Technologies\",\"primaryLabelValue\":\"Oak Grove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Systems\",\"primaryLabelValue\":\"Oasis Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Object Technology Solutions\",\"primaryLabelValue\":\"Object Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ObjectNet Technologies\",\"primaryLabelValue\":\"ObjectNet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OmniVue\",\"primaryLabelValue\":\"OmniVue\"}},{\"attributeHeader\":{\"labelValue\":\"OnDemand Resources\",\"primaryLabelValue\":\"OnDemand Resources\"}},{\"attributeHeader\":{\"labelValue\":\"One Call Now\",\"primaryLabelValue\":\"One Call Now\"}},{\"attributeHeader\":{\"labelValue\":\"One Source\",\"primaryLabelValue\":\"One Source\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Environmental\",\"primaryLabelValue\":\"One Stop Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OneMD\",\"primaryLabelValue\":\"OneMD\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"OpenLink Financial\",\"primaryLabelValue\":\"OpenLink Financial\"}},{\"attributeHeader\":{\"labelValue\":\"OpenSpirit\",\"primaryLabelValue\":\"OpenSpirit\"}},{\"attributeHeader\":{\"labelValue\":\"Operative\",\"primaryLabelValue\":\"Operative\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMA\",\"primaryLabelValue\":\"OptiMA\"}},{\"attributeHeader\":{\"labelValue\":\"Optimum Technology Solutions\",\"primaryLabelValue\":\"Optimum Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oracle Diagnostic Laboratories\",\"primaryLabelValue\":\"Oracle Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Logic\",\"primaryLabelValue\":\"Orbit Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Organize.com\",\"primaryLabelValue\":\"Organize.com\"}},{\"attributeHeader\":{\"labelValue\":\"OriGene Technologies\",\"primaryLabelValue\":\"OriGene Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Orrick, Herrington & Sutcliffe\",\"primaryLabelValue\":\"Orrick, Herrington & Sutcliffe\"}},{\"attributeHeader\":{\"labelValue\":\"Otto Environmental Systems\",\"primaryLabelValue\":\"Otto Environmental Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outreach Telecom and Energy\",\"primaryLabelValue\":\"Outreach Telecom and Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Outsource Partners International\",\"primaryLabelValue\":\"Outsource Partners International\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Payroll\",\"primaryLabelValue\":\"Ovation Payroll\"}},{\"attributeHeader\":{\"labelValue\":\"overstockArt.com\",\"primaryLabelValue\":\"overstockArt.com\"}},{\"attributeHeader\":{\"labelValue\":\"P.W. Grosser Consulting\",\"primaryLabelValue\":\"P.W. Grosser Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Market International\",\"primaryLabelValue\":\"Pacific Market International\"}},{\"attributeHeader\":{\"labelValue\":\"Para-Plus Translations\",\"primaryLabelValue\":\"Para-Plus Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Park\",\"primaryLabelValue\":\"Park\"}},{\"attributeHeader\":{\"labelValue\":\"Parks Associates\",\"primaryLabelValue\":\"Parks Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partners + Napier\",\"primaryLabelValue\":\"Partners + Napier\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Electrical Services\",\"primaryLabelValue\":\"Partners Electrical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Parts Town\",\"primaryLabelValue\":\"Parts Town\"}},{\"attributeHeader\":{\"labelValue\":\"Partsearch Technologies\",\"primaryLabelValue\":\"Partsearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PayLock\",\"primaryLabelValue\":\"PayLock\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Processing\",\"primaryLabelValue\":\"Payment Processing\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"PC Parts\",\"primaryLabelValue\":\"PC Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Peach New Media\",\"primaryLabelValue\":\"Peach New Media\"}},{\"attributeHeader\":{\"labelValue\":\"Peak Health Solutions\",\"primaryLabelValue\":\"Peak Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pediatric Therapeutic Services\",\"primaryLabelValue\":\"Pediatric Therapeutic Services\"}},{\"attributeHeader\":{\"labelValue\":\"PEI\",\"primaryLabelValue\":\"PEI\"}},{\"attributeHeader\":{\"labelValue\":\"Pennoni Associates\",\"primaryLabelValue\":\"Pennoni Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Pentagroup Financial\",\"primaryLabelValue\":\"Pentagroup Financial\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleFinders.com\",\"primaryLabelValue\":\"PeopleFinders.com\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"Peppercom\",\"primaryLabelValue\":\"Peppercom\"}},{\"attributeHeader\":{\"labelValue\":\"PerfectPower\",\"primaryLabelValue\":\"PerfectPower\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Results\",\"primaryLabelValue\":\"Performance Results\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Software\",\"primaryLabelValue\":\"Performance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins+Will\",\"primaryLabelValue\":\"Perkins+Will\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Doctors of America\",\"primaryLabelValue\":\"Pet Doctors of America\"}},{\"attributeHeader\":{\"labelValue\":\"Petersen\",\"primaryLabelValue\":\"Petersen\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharma-Care\",\"primaryLabelValue\":\"Pharma-Care\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaSmart\",\"primaryLabelValue\":\"PharmaSmart\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaStrat\",\"primaryLabelValue\":\"PharmaStrat\"}},{\"attributeHeader\":{\"labelValue\":\"Photo Science\",\"primaryLabelValue\":\"Photo Science\"}},{\"attributeHeader\":{\"labelValue\":\"Phydeaux\",\"primaryLabelValue\":\"Phydeaux\"}},{\"attributeHeader\":{\"labelValue\":\"PicScout\",\"primaryLabelValue\":\"PicScout\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Publishing Group\",\"primaryLabelValue\":\"Pinnacle Publishing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Pita Pit USA\",\"primaryLabelValue\":\"Pita Pit USA\"}},{\"attributeHeader\":{\"labelValue\":\"PJA Advertising + Marketing\",\"primaryLabelValue\":\"PJA Advertising + Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"PlainsCapital\",\"primaryLabelValue\":\"PlainsCapital\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Fitness\",\"primaryLabelValue\":\"Planet Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Plant Fantasies\",\"primaryLabelValue\":\"Plant Fantasies\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"PLS Financial Services\",\"primaryLabelValue\":\"PLS Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"PMOLink\",\"primaryLabelValue\":\"PMOLink\"}},{\"attributeHeader\":{\"labelValue\":\"PolicyTech\",\"primaryLabelValue\":\"PolicyTech\"}},{\"attributeHeader\":{\"labelValue\":\"PolySource\",\"primaryLabelValue\":\"PolySource\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portal Solutions\",\"primaryLabelValue\":\"Portal Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Power Pro-Tech Services\",\"primaryLabelValue\":\"Power Pro-Tech Services\"}},{\"attributeHeader\":{\"labelValue\":\"PowerDirect Marketing\",\"primaryLabelValue\":\"PowerDirect Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Laser Services\",\"primaryLabelValue\":\"Precision Laser Services\"}},{\"attributeHeader\":{\"labelValue\":\"Predictive Service\",\"primaryLabelValue\":\"Predictive Service\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Medical Marketing\",\"primaryLabelValue\":\"Preferred Medical Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Graphics\",\"primaryLabelValue\":\"Premier Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prestige Employee Administrators\",\"primaryLabelValue\":\"Prestige Employee Administrators\"}},{\"attributeHeader\":{\"labelValue\":\"Preval\",\"primaryLabelValue\":\"Preval\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PrintRunner\",\"primaryLabelValue\":\"PrintRunner\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pro-Air Services\",\"primaryLabelValue\":\"Pro-Air Services\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Promotion Consultants\",\"primaryLabelValue\":\"Proforma Promotion Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Spectrum Print Graphics\",\"primaryLabelValue\":\"Proforma Spectrum Print Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Progressive Medical\",\"primaryLabelValue\":\"Progressive Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Project Leadership Associates\",\"primaryLabelValue\":\"Project Leadership Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Projections\",\"primaryLabelValue\":\"Projections\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Promedica\",\"primaryLabelValue\":\"Promedica\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prosoft Technology Group\",\"primaryLabelValue\":\"Prosoft Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"ProtoType Industries\",\"primaryLabelValue\":\"ProtoType Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Providus\",\"primaryLabelValue\":\"Providus\"}},{\"attributeHeader\":{\"labelValue\":\"PSS-Product Support Solutions\",\"primaryLabelValue\":\"PSS-Product Support Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Puente Construction Enterprises\",\"primaryLabelValue\":\"Puente Construction Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse 360\",\"primaryLabelValue\":\"Pulse 360\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse Systems\",\"primaryLabelValue\":\"Pulse Systems\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Qosina\",\"primaryLabelValue\":\"Qosina\"}},{\"attributeHeader\":{\"labelValue\":\"Quagga\",\"primaryLabelValue\":\"Quagga\"}},{\"attributeHeader\":{\"labelValue\":\"Quaker Steak & Lube\",\"primaryLabelValue\":\"Quaker Steak & Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Wine & Spirits\",\"primaryLabelValue\":\"Quality Wine & Spirits\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Research International\",\"primaryLabelValue\":\"Quantum Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"QueBIT\",\"primaryLabelValue\":\"QueBIT\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quorum Business Solutions\",\"primaryLabelValue\":\"Quorum Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R2C Group\",\"primaryLabelValue\":\"R2C Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radical Support\",\"primaryLabelValue\":\"Radical Support\"}},{\"attributeHeader\":{\"labelValue\":\"Radio Flyer\",\"primaryLabelValue\":\"Radio Flyer\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"Radius Financial Group\",\"primaryLabelValue\":\"Radius Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"RAM Technologies\",\"primaryLabelValue\":\"RAM Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Learning Deployment\",\"primaryLabelValue\":\"Rapid Learning Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Raven Rock Workwear\",\"primaryLabelValue\":\"Raven Rock Workwear\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reality Check Network\",\"primaryLabelValue\":\"Reality Check Network\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recurrent Technologies\",\"primaryLabelValue\":\"Recurrent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Red Arrow Logistics\",\"primaryLabelValue\":\"Red Arrow Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Red Cloud Promotions\",\"primaryLabelValue\":\"Red Cloud Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Red Restaurant Group\",\"primaryLabelValue\":\"Red Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"Reliant Transportation\",\"primaryLabelValue\":\"Reliant Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Renewal Design-Build\",\"primaryLabelValue\":\"Renewal Design-Build\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"Rescue Social Change Group\",\"primaryLabelValue\":\"Rescue Social Change Group\"}},{\"attributeHeader\":{\"labelValue\":\"Respira Medical\",\"primaryLabelValue\":\"Respira Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Responsys\",\"primaryLabelValue\":\"Responsys\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Maintenance Service\",\"primaryLabelValue\":\"Retail Maintenance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"RevenueMed\",\"primaryLabelValue\":\"RevenueMed\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Richland\",\"primaryLabelValue\":\"Richland\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RightAnswers\",\"primaryLabelValue\":\"RightAnswers\"}},{\"attributeHeader\":{\"labelValue\":\"RightStaff\",\"primaryLabelValue\":\"RightStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Rinkya\",\"primaryLabelValue\":\"Rinkya\"}},{\"attributeHeader\":{\"labelValue\":\"Road Ranger\",\"primaryLabelValue\":\"Road Ranger\"}},{\"attributeHeader\":{\"labelValue\":\"Roadrunner Transportation Services\",\"primaryLabelValue\":\"Roadrunner Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Rocket Direct Communications\",\"primaryLabelValue\":\"Rocket Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Rokkan\",\"primaryLabelValue\":\"Rokkan\"}},{\"attributeHeader\":{\"labelValue\":\"Rothstein Kass\",\"primaryLabelValue\":\"Rothstein Kass\"}},{\"attributeHeader\":{\"labelValue\":\"Roy Englebrecht Promotions\",\"primaryLabelValue\":\"Roy Englebrecht Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"RPA Engineering\",\"primaryLabelValue\":\"RPA Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"RPI\",\"primaryLabelValue\":\"RPI\"}},{\"attributeHeader\":{\"labelValue\":\"Rumors Salon and Spa\",\"primaryLabelValue\":\"Rumors Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Rustic Crust\",\"primaryLabelValue\":\"Rustic Crust\"}},{\"attributeHeader\":{\"labelValue\":\"RW Armstrong\",\"primaryLabelValue\":\"RW Armstrong\"}},{\"attributeHeader\":{\"labelValue\":\"S&A Cherokee\",\"primaryLabelValue\":\"S&A Cherokee\"}},{\"attributeHeader\":{\"labelValue\":\"S.A. Technology\",\"primaryLabelValue\":\"S.A. Technology\"}},{\"attributeHeader\":{\"labelValue\":\"S4\",\"primaryLabelValue\":\"S4\"}},{\"attributeHeader\":{\"labelValue\":\"Saddleback Plumbing\",\"primaryLabelValue\":\"Saddleback Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"Safe Systems\",\"primaryLabelValue\":\"Safe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Safespan Platform Systems\",\"primaryLabelValue\":\"Safespan Platform Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Environmental Consulting\",\"primaryLabelValue\":\"Sage Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Saladworks\",\"primaryLabelValue\":\"Saladworks\"}},{\"attributeHeader\":{\"labelValue\":\"Sales Partnerships\",\"primaryLabelValue\":\"Sales Partnerships\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Sansay\",\"primaryLabelValue\":\"Sansay\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Saratoga Technologies\",\"primaryLabelValue\":\"Saratoga Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Schill Landscaping and Lawn Care Services\",\"primaryLabelValue\":\"Schill Landscaping and Lawn Care Services\"}},{\"attributeHeader\":{\"labelValue\":\"School House Learning Communities\",\"primaryLabelValue\":\"School House Learning Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Schoolwires\",\"primaryLabelValue\":\"Schoolwires\"}},{\"attributeHeader\":{\"labelValue\":\"Schulte Roth & Zabel\",\"primaryLabelValue\":\"Schulte Roth & Zabel\"}},{\"attributeHeader\":{\"labelValue\":\"Schumacher Group\",\"primaryLabelValue\":\"Schumacher Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schweitzer Engineering Laboratories\",\"primaryLabelValue\":\"Schweitzer Engineering Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Your Trip\",\"primaryLabelValue\":\"Scrap Your Trip\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"SDG\",\"primaryLabelValue\":\"SDG\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Second Wind\",\"primaryLabelValue\":\"Second Wind\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Securicon\",\"primaryLabelValue\":\"Securicon\"}},{\"attributeHeader\":{\"labelValue\":\"Select Communications\",\"primaryLabelValue\":\"Select Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Select Transportation\",\"primaryLabelValue\":\"Select Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Whole Health\",\"primaryLabelValue\":\"Senior Whole Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sense Corp\",\"primaryLabelValue\":\"Sense Corp\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Sentient\",\"primaryLabelValue\":\"Sentient\"}},{\"attributeHeader\":{\"labelValue\":\"Sentry Communications & Security\",\"primaryLabelValue\":\"Sentry Communications & Security\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeriousShops.com\",\"primaryLabelValue\":\"SeriousShops.com\"}},{\"attributeHeader\":{\"labelValue\":\"ServerCentral\",\"primaryLabelValue\":\"ServerCentral\"}},{\"attributeHeader\":{\"labelValue\":\"Service By Medallion\",\"primaryLabelValue\":\"Service By Medallion\"}},{\"attributeHeader\":{\"labelValue\":\"Servi-Tek\",\"primaryLabelValue\":\"Servi-Tek\"}},{\"attributeHeader\":{\"labelValue\":\"SetFocus\",\"primaryLabelValue\":\"SetFocus\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"Shook, Hardy & Bacon\",\"primaryLabelValue\":\"Shook, Hardy & Bacon\"}},{\"attributeHeader\":{\"labelValue\":\"Showdown Displays\",\"primaryLabelValue\":\"Showdown Displays\"}},{\"attributeHeader\":{\"labelValue\":\"SIA Group\",\"primaryLabelValue\":\"SIA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sideman & Bancroft\",\"primaryLabelValue\":\"Sideman & Bancroft\"}},{\"attributeHeader\":{\"labelValue\":\"Sidley Austin\",\"primaryLabelValue\":\"Sidley Austin\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Fencing & Flooring Systems\",\"primaryLabelValue\":\"Signature Fencing & Flooring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Gumpertz & Heger\",\"primaryLabelValue\":\"Simpson Gumpertz & Heger\"}},{\"attributeHeader\":{\"labelValue\":\"SkillStorm\",\"primaryLabelValue\":\"SkillStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skoda Minotti\",\"primaryLabelValue\":\"Skoda Minotti\"}},{\"attributeHeader\":{\"labelValue\":\"SkyBitz\",\"primaryLabelValue\":\"SkyBitz\"}},{\"attributeHeader\":{\"labelValue\":\"SmartCEO Media\",\"primaryLabelValue\":\"SmartCEO Media\"}},{\"attributeHeader\":{\"labelValue\":\"SmartLinx Solutions\",\"primaryLabelValue\":\"SmartLinx Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPak Equine\",\"primaryLabelValue\":\"SmartPak Equine\"}},{\"attributeHeader\":{\"labelValue\":\"SmartRevenue\",\"primaryLabelValue\":\"SmartRevenue\"}},{\"attributeHeader\":{\"labelValue\":\"Smartronix\",\"primaryLabelValue\":\"Smartronix\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SofterWare\",\"primaryLabelValue\":\"SofterWare\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorg Architects\",\"primaryLabelValue\":\"Sorg Architects\"}},{\"attributeHeader\":{\"labelValue\":\"SoundSense\",\"primaryLabelValue\":\"SoundSense\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diagnostic Laboratories\",\"primaryLabelValue\":\"Southern Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diversified Technologies\",\"primaryLabelValue\":\"Southern Diversified Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Southwest Solutions Group\",\"primaryLabelValue\":\"Southwest Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sovereign Consulting\",\"primaryLabelValue\":\"Sovereign Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"space150\",\"primaryLabelValue\":\"space150\"}},{\"attributeHeader\":{\"labelValue\":\"SpaceBound\",\"primaryLabelValue\":\"SpaceBound\"}},{\"attributeHeader\":{\"labelValue\":\"SPADAC\",\"primaryLabelValue\":\"SPADAC\"}},{\"attributeHeader\":{\"labelValue\":\"SPEAR Physical Therapy\",\"primaryLabelValue\":\"SPEAR Physical Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"SpectraSensors\",\"primaryLabelValue\":\"SpectraSensors\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Controls\",\"primaryLabelValue\":\"Spectrum Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Industries\",\"primaryLabelValue\":\"Spectrum Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Technologies\",\"primaryLabelValue\":\"Spectrum Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Squire, Sanders & Dempsey\",\"primaryLabelValue\":\"Squire, Sanders & Dempsey\"}},{\"attributeHeader\":{\"labelValue\":\"SRI Telecom\",\"primaryLabelValue\":\"SRI Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stafflogix\",\"primaryLabelValue\":\"Stafflogix\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Stalwart\",\"primaryLabelValue\":\"Stalwart\"}},{\"attributeHeader\":{\"labelValue\":\"StarTech.com\",\"primaryLabelValue\":\"StarTech.com\"}},{\"attributeHeader\":{\"labelValue\":\"Stefan Sydor Optics\",\"primaryLabelValue\":\"Stefan Sydor Optics\"}},{\"attributeHeader\":{\"labelValue\":\"STI Electronics\",\"primaryLabelValue\":\"STI Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Stinson Morrison Hecker\",\"primaryLabelValue\":\"Stinson Morrison Hecker\"}},{\"attributeHeader\":{\"labelValue\":\"Stoel Rives\",\"primaryLabelValue\":\"Stoel Rives\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Fundraising\",\"primaryLabelValue\":\"Strategic Fundraising\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Strike Construction\",\"primaryLabelValue\":\"Strike Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Struxture Architects\",\"primaryLabelValue\":\"Struxture Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Studio 921 Salon & Day Spa\",\"primaryLabelValue\":\"Studio 921 Salon & Day Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sun Light & Power\",\"primaryLabelValue\":\"Sun Light & Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunrise Hitek\",\"primaryLabelValue\":\"Sunrise Hitek\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Kids Juvenile Products\",\"primaryLabelValue\":\"Sunshine Kids Juvenile Products\"}},{\"attributeHeader\":{\"labelValue\":\"SunStar\",\"primaryLabelValue\":\"SunStar\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Linen Service\",\"primaryLabelValue\":\"Superior Linen Service\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Petroleum\",\"primaryLabelValue\":\"Superior Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Supermarket Source\",\"primaryLabelValue\":\"Supermarket Source\"}},{\"attributeHeader\":{\"labelValue\":\"SuperTech\",\"primaryLabelValue\":\"SuperTech\"}},{\"attributeHeader\":{\"labelValue\":\"Supremesoft\",\"primaryLabelValue\":\"Supremesoft\"}},{\"attributeHeader\":{\"labelValue\":\"SureScore\",\"primaryLabelValue\":\"SureScore\"}},{\"attributeHeader\":{\"labelValue\":\"Surf Cowboy\",\"primaryLabelValue\":\"Surf Cowboy\"}},{\"attributeHeader\":{\"labelValue\":\"Surmotech\",\"primaryLabelValue\":\"Surmotech\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Asbill & Brennan\",\"primaryLabelValue\":\"Sutherland Asbill & Brennan\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Global Services\",\"primaryLabelValue\":\"Sutherland Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Suzannes Specialties\",\"primaryLabelValue\":\"Suzannes Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"SWS Re-Distribution\",\"primaryLabelValue\":\"SWS Re-Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Syncroness\",\"primaryLabelValue\":\"Syncroness\"}},{\"attributeHeader\":{\"labelValue\":\"Synergy Solutions\",\"primaryLabelValue\":\"Synergy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&W Operations\",\"primaryLabelValue\":\"T&W Operations\"}},{\"attributeHeader\":{\"labelValue\":\"Tabar\",\"primaryLabelValue\":\"Tabar\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Tailored Label Products\",\"primaryLabelValue\":\"Tailored Label Products\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Talon Professional Services\",\"primaryLabelValue\":\"Talon Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Talon/LPE\",\"primaryLabelValue\":\"Talon/LPE\"}},{\"attributeHeader\":{\"labelValue\":\"Tanager\",\"primaryLabelValue\":\"Tanager\"}},{\"attributeHeader\":{\"labelValue\":\"Tandem HR\",\"primaryLabelValue\":\"Tandem HR\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"Taphandles\",\"primaryLabelValue\":\"Taphandles\"}},{\"attributeHeader\":{\"labelValue\":\"Taras Techniques\",\"primaryLabelValue\":\"Taras Techniques\"}},{\"attributeHeader\":{\"labelValue\":\"TargetX\",\"primaryLabelValue\":\"TargetX\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"TC3 Telecom\",\"primaryLabelValue\":\"TC3 Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"TCG\",\"primaryLabelValue\":\"TCG\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"TDK Technologies\",\"primaryLabelValue\":\"TDK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Manufacturing\",\"primaryLabelValue\":\"Tech Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Techbarn.com\",\"primaryLabelValue\":\"Techbarn.com\"}},{\"attributeHeader\":{\"labelValue\":\"TechniPak\",\"primaryLabelValue\":\"TechniPak\"}},{\"attributeHeader\":{\"labelValue\":\"TechnoDyne\",\"primaryLabelValue\":\"TechnoDyne\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Tekpros\",\"primaryLabelValue\":\"Tekpros\"}},{\"attributeHeader\":{\"labelValue\":\"TeleProviders\",\"primaryLabelValue\":\"TeleProviders\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TGA Solutions\",\"primaryLabelValue\":\"TGA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"TharpeRobbins\",\"primaryLabelValue\":\"TharpeRobbins\"}},{\"attributeHeader\":{\"labelValue\":\"The Allied Power Group\",\"primaryLabelValue\":\"The Allied Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aspen Brands Company\",\"primaryLabelValue\":\"The Aspen Brands Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Barbour Group\",\"primaryLabelValue\":\"The Barbour Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Benecon Group\",\"primaryLabelValue\":\"The Benecon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Design People\",\"primaryLabelValue\":\"The Design People\"}},{\"attributeHeader\":{\"labelValue\":\"The Exit Light Company\",\"primaryLabelValue\":\"The Exit Light Company\"}},{\"attributeHeader\":{\"labelValue\":\"The FruitGuys\",\"primaryLabelValue\":\"The FruitGuys\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Go Daddy Group\",\"primaryLabelValue\":\"The Go Daddy Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Hamister Group\",\"primaryLabelValue\":\"The Hamister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Intermarket Group\",\"primaryLabelValue\":\"The Intermarket Group\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Linc Group\",\"primaryLabelValue\":\"The Linc Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Lobster Place\",\"primaryLabelValue\":\"The Lobster Place\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Online 401(k)\",\"primaryLabelValue\":\"The Online 401(k)\"}},{\"attributeHeader\":{\"labelValue\":\"The Onyx Group\",\"primaryLabelValue\":\"The Onyx Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Phia Group\",\"primaryLabelValue\":\"The Phia Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Planet\",\"primaryLabelValue\":\"The Planet\"}},{\"attributeHeader\":{\"labelValue\":\"The Portaro Group\",\"primaryLabelValue\":\"The Portaro Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PSP Group\",\"primaryLabelValue\":\"The PSP Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Tellennium Group\",\"primaryLabelValue\":\"The Tellennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The TM Group\",\"primaryLabelValue\":\"The TM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Transtec Group\",\"primaryLabelValue\":\"The Transtec Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Velez Corporation\",\"primaryLabelValue\":\"The Velez Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Thinkwell Group\",\"primaryLabelValue\":\"Thinkwell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Third Sun Solar & Wind Power\",\"primaryLabelValue\":\"Third Sun Solar & Wind Power\"}},{\"attributeHeader\":{\"labelValue\":\"Third Wave Systems\",\"primaryLabelValue\":\"Third Wave Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ThomasArts\",\"primaryLabelValue\":\"ThomasArts\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson & Knight\",\"primaryLabelValue\":\"Thompson & Knight\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Creek\",\"primaryLabelValue\":\"Thompson Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Ticket Alternative\",\"primaryLabelValue\":\"Ticket Alternative\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TIG Global\",\"primaryLabelValue\":\"TIG Global\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Claw\",\"primaryLabelValue\":\"Tiger Claw\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Commissary Services\",\"primaryLabelValue\":\"Tiger Commissary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Time Timer\",\"primaryLabelValue\":\"Time Timer\"}},{\"attributeHeader\":{\"labelValue\":\"TIPS Consulting\",\"primaryLabelValue\":\"TIPS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"TireMax of North America\",\"primaryLabelValue\":\"TireMax of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Total Beverage Solution\",\"primaryLabelValue\":\"Total Beverage Solution\"}},{\"attributeHeader\":{\"labelValue\":\"Touchtown\",\"primaryLabelValue\":\"Touchtown\"}},{\"attributeHeader\":{\"labelValue\":\"Town Money Saver\",\"primaryLabelValue\":\"Town Money Saver\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Trade the Markets\",\"primaryLabelValue\":\"Trade the Markets\"}},{\"attributeHeader\":{\"labelValue\":\"Traf-Tex\",\"primaryLabelValue\":\"Traf-Tex\"}},{\"attributeHeader\":{\"labelValue\":\"Trans Atlantic Systems\",\"primaryLabelValue\":\"Trans Atlantic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Traube Tent\",\"primaryLabelValue\":\"Traube Tent\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Digital Media\",\"primaryLabelValue\":\"Triad Digital Media\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Tribeca Technology Solutons\",\"primaryLabelValue\":\"Tribeca Technology Solutons\"}},{\"attributeHeader\":{\"labelValue\":\"Trideum\",\"primaryLabelValue\":\"Trideum\"}},{\"attributeHeader\":{\"labelValue\":\"Trinet Internet Solutions\",\"primaryLabelValue\":\"Trinet Internet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trisonics\",\"primaryLabelValue\":\"Trisonics\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"Tri-Win Digital Print and Mail Services\",\"primaryLabelValue\":\"Tri-Win Digital Print and Mail Services\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TrollAndToad.com\",\"primaryLabelValue\":\"TrollAndToad.com\"}},{\"attributeHeader\":{\"labelValue\":\"Tropical Smoothie Cafe\",\"primaryLabelValue\":\"Tropical Smoothie Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"TrueNorth\",\"primaryLabelValue\":\"TrueNorth\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"T-Scan\",\"primaryLabelValue\":\"T-Scan\"}},{\"attributeHeader\":{\"labelValue\":\"TTS\",\"primaryLabelValue\":\"TTS\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Tundra Specialties\",\"primaryLabelValue\":\"Tundra Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"Two West\",\"primaryLabelValue\":\"Two West\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"U-GRO Learning Centres\",\"primaryLabelValue\":\"U-GRO Learning Centres\"}},{\"attributeHeader\":{\"labelValue\":\"Ultimate Nursing Services\",\"primaryLabelValue\":\"Ultimate Nursing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Unishippers\",\"primaryLabelValue\":\"Unishippers\"}},{\"attributeHeader\":{\"labelValue\":\"United Bank of El Paso del Norte\",\"primaryLabelValue\":\"United Bank of El Paso del Norte\"}},{\"attributeHeader\":{\"labelValue\":\"United Global Logistics\",\"primaryLabelValue\":\"United Global Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"United Source One\",\"primaryLabelValue\":\"United Source One\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Univar\",\"primaryLabelValue\":\"Univar\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Accounting Center\",\"primaryLabelValue\":\"Universal Accounting Center\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Services of America\",\"primaryLabelValue\":\"Universal Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uno Alla Volta\",\"primaryLabelValue\":\"Uno Alla Volta\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Pharmacy\",\"primaryLabelValue\":\"Upstate Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"US LED\",\"primaryLabelValue\":\"US LED\"}},{\"attributeHeader\":{\"labelValue\":\"US Markerboard\",\"primaryLabelValue\":\"US Markerboard\"}},{\"attributeHeader\":{\"labelValue\":\"USGC\",\"primaryLabelValue\":\"USGC\"}},{\"attributeHeader\":{\"labelValue\":\"V12 Group\",\"primaryLabelValue\":\"V12 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Valador\",\"primaryLabelValue\":\"Valador\"}},{\"attributeHeader\":{\"labelValue\":\"Validity Screening Solutions\",\"primaryLabelValue\":\"Validity Screening Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Valley Recycling\",\"primaryLabelValue\":\"Valley Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"VarData\",\"primaryLabelValue\":\"VarData\"}},{\"attributeHeader\":{\"labelValue\":\"VarsityPlaza\",\"primaryLabelValue\":\"VarsityPlaza\"}},{\"attributeHeader\":{\"labelValue\":\"Venda\",\"primaryLabelValue\":\"Venda\"}},{\"attributeHeader\":{\"labelValue\":\"VentureNet\",\"primaryLabelValue\":\"VentureNet\"}},{\"attributeHeader\":{\"labelValue\":\"Venturity Financial Partners\",\"primaryLabelValue\":\"Venturity Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Veritis Group\",\"primaryLabelValue\":\"Veritis Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vernier Software & Technology\",\"primaryLabelValue\":\"Vernier Software & Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Vertafore\",\"primaryLabelValue\":\"Vertafore\"}},{\"attributeHeader\":{\"labelValue\":\"Vertical Marketing Network\",\"primaryLabelValue\":\"Vertical Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"VerticalResponse\",\"primaryLabelValue\":\"VerticalResponse\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vindicia\",\"primaryLabelValue\":\"Vindicia\"}},{\"attributeHeader\":{\"labelValue\":\"Vinson & Elkins\",\"primaryLabelValue\":\"Vinson & Elkins\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual\",\"primaryLabelValue\":\"Virtual\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Hold Technology\",\"primaryLabelValue\":\"Virtual Hold Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Virtustream\",\"primaryLabelValue\":\"Virtustream\"}},{\"attributeHeader\":{\"labelValue\":\"VisionOne\",\"primaryLabelValue\":\"VisionOne\"}},{\"attributeHeader\":{\"labelValue\":\"Visual Concepts\",\"primaryLabelValue\":\"Visual Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Vizio\",\"primaryLabelValue\":\"Vizio\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vocera Communications\",\"primaryLabelValue\":\"Vocera Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Vocon\",\"primaryLabelValue\":\"Vocon\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Vormittag Associates\",\"primaryLabelValue\":\"Vormittag Associates\"}},{\"attributeHeader\":{\"labelValue\":\"V-Soft Consulting Group\",\"primaryLabelValue\":\"V-Soft Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WAGIC\",\"primaryLabelValue\":\"WAGIC\"}},{\"attributeHeader\":{\"labelValue\":\"Walling Data\",\"primaryLabelValue\":\"Walling Data\"}},{\"attributeHeader\":{\"labelValue\":\"Water Associates\",\"primaryLabelValue\":\"Water Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Watermark\",\"primaryLabelValue\":\"Watermark\"}},{\"attributeHeader\":{\"labelValue\":\"WCS Lending\",\"primaryLabelValue\":\"WCS Lending\"}},{\"attributeHeader\":{\"labelValue\":\"WebVisible\",\"primaryLabelValue\":\"WebVisible\"}},{\"attributeHeader\":{\"labelValue\":\"Weed Man\",\"primaryLabelValue\":\"Weed Man\"}},{\"attributeHeader\":{\"labelValue\":\"Weil, Gotshal & Manges\",\"primaryLabelValue\":\"Weil, Gotshal & Manges\"}},{\"attributeHeader\":{\"labelValue\":\"Welocalize\",\"primaryLabelValue\":\"Welocalize\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Western International Securities\",\"primaryLabelValue\":\"Western International Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wheat Systems Integration\",\"primaryLabelValue\":\"Wheat Systems Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Machine & Tool\",\"primaryLabelValue\":\"Whelan Machine & Tool\"}},{\"attributeHeader\":{\"labelValue\":\"White Glove Technologies\",\"primaryLabelValue\":\"White Glove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WideOrbit\",\"primaryLabelValue\":\"WideOrbit\"}},{\"attributeHeader\":{\"labelValue\":\"Wier & Associates\",\"primaryLabelValue\":\"Wier & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wildtree\",\"primaryLabelValue\":\"Wildtree\"}},{\"attributeHeader\":{\"labelValue\":\"Wilshire Connection\",\"primaryLabelValue\":\"Wilshire Connection\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\",\"primaryLabelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Sonsini Goodrich & Rosati\",\"primaryLabelValue\":\"Wilson Sonsini Goodrich & Rosati\"}},{\"attributeHeader\":{\"labelValue\":\"Wimmer Solutions\",\"primaryLabelValue\":\"Wimmer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Winder Farms\",\"primaryLabelValue\":\"Winder Farms\"}},{\"attributeHeader\":{\"labelValue\":\"WineCommune\",\"primaryLabelValue\":\"WineCommune\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Zone\",\"primaryLabelValue\":\"Wireless Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Wiser Company\",\"primaryLabelValue\":\"Wiser Company\"}},{\"attributeHeader\":{\"labelValue\":\"Wojan Window & Door\",\"primaryLabelValue\":\"Wojan Window & Door\"}},{\"attributeHeader\":{\"labelValue\":\"Woodward Design+Build\",\"primaryLabelValue\":\"Woodward Design+Build\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WorldLink\",\"primaryLabelValue\":\"WorldLink\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Supply\",\"primaryLabelValue\":\"Worldwide Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Wound Care Advantage\",\"primaryLabelValue\":\"Wound Care Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Xantrion\",\"primaryLabelValue\":\"Xantrion\"}},{\"attributeHeader\":{\"labelValue\":\"Xchange Telecom\",\"primaryLabelValue\":\"Xchange Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"XeteX\",\"primaryLabelValue\":\"XeteX\"}},{\"attributeHeader\":{\"labelValue\":\"XIFIN\",\"primaryLabelValue\":\"XIFIN\"}},{\"attributeHeader\":{\"labelValue\":\"Xplane\",\"primaryLabelValue\":\"Xplane\"}},{\"attributeHeader\":{\"labelValue\":\"Xterprise\",\"primaryLabelValue\":\"Xterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ZGF Architects\",\"primaryLabelValue\":\"ZGF Architects\"}},{\"attributeHeader\":{\"labelValue\":\"ZirMed\",\"primaryLabelValue\":\"ZirMed\"}},{\"attributeHeader\":{\"labelValue\":\"Zobmondo!! Entertainment\",\"primaryLabelValue\":\"Zobmondo!! Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"123 Exteriors\",\"primaryLabelValue\":\"123 Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"1-888-OhioComp\",\"primaryLabelValue\":\"1-888-OhioComp\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"3E\",\"primaryLabelValue\":\"3E\"}},{\"attributeHeader\":{\"labelValue\":\"4Wall Entertainment\",\"primaryLabelValue\":\"4Wall Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"5LINX Enterprises\",\"primaryLabelValue\":\"5LINX Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"7 Simple Machines\",\"primaryLabelValue\":\"7 Simple Machines\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"A&R Tarpaulins\",\"primaryLabelValue\":\"A&R Tarpaulins\"}},{\"attributeHeader\":{\"labelValue\":\"A. Pomerantz & Co.\",\"primaryLabelValue\":\"A. Pomerantz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Tutor U\",\"primaryLabelValue\":\"A+ Tutor U\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Plumbing\",\"primaryLabelValue\":\"Abacus Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"ABCOMRents.com\",\"primaryLabelValue\":\"ABCOMRents.com\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"ACAI Associates\",\"primaryLabelValue\":\"ACAI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access Worldwide\",\"primaryLabelValue\":\"Access Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaim Technical Services\",\"primaryLabelValue\":\"Acclaim Technical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Account Control Technology\",\"primaryLabelValue\":\"Account Control Technology\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Achieve3000\",\"primaryLabelValue\":\"Achieve3000\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Acquity Group\",\"primaryLabelValue\":\"Acquity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"Actio\",\"primaryLabelValue\":\"Actio\"}},{\"attributeHeader\":{\"labelValue\":\"Action Target\",\"primaryLabelValue\":\"Action Target\"}},{\"attributeHeader\":{\"labelValue\":\"Acxius Strategic Consulting\",\"primaryLabelValue\":\"Acxius Strategic Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Facial Plastic Surgery Center\",\"primaryLabelValue\":\"Advanced Facial Plastic Surgery Center\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Network Solutions\",\"primaryLabelValue\":\"Advanced Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technical Solutions\",\"primaryLabelValue\":\"Advanced Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Vision Research\",\"primaryLabelValue\":\"Advanced Vision Research\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AdvertiseDoorToDoor.com\",\"primaryLabelValue\":\"AdvertiseDoorToDoor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aerodyn Engineering\",\"primaryLabelValue\":\"Aerodyn Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Affinion Group Holdings\",\"primaryLabelValue\":\"Affinion Group Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"AGM Container Controls\",\"primaryLabelValue\":\"AGM Container Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Agosto\",\"primaryLabelValue\":\"Agosto\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"AIReS\",\"primaryLabelValue\":\"AIReS\"}},{\"attributeHeader\":{\"labelValue\":\"AIRSIS\",\"primaryLabelValue\":\"AIRSIS\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"AKA Media\",\"primaryLabelValue\":\"AKA Media\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Albrecht & Co.\",\"primaryLabelValue\":\"Albrecht & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Phase Security\",\"primaryLabelValue\":\"All Phase Security\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Sensors Corporation\",\"primaryLabelValue\":\"All Sensors Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Corporation of America\",\"primaryLabelValue\":\"Allen Corporation of America\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Solutions Group\",\"primaryLabelValue\":\"Alliance Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Allied Industries\",\"primaryLabelValue\":\"Allied Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Alltrust Insurance\",\"primaryLabelValue\":\"Alltrust Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Access\",\"primaryLabelValue\":\"Alpine Access\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Waste & Recycling\",\"primaryLabelValue\":\"Alpine Waste & Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Alps Controls\",\"primaryLabelValue\":\"Alps Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Amadeus Consulting\",\"primaryLabelValue\":\"Amadeus Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amelia's\",\"primaryLabelValue\":\"Amelia's\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American Exteriors\",\"primaryLabelValue\":\"American Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"American Paper Optics\",\"primaryLabelValue\":\"American Paper Optics\"}},{\"attributeHeader\":{\"labelValue\":\"American Portfolios Financial Services\",\"primaryLabelValue\":\"American Portfolios Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"American Specialty Health\",\"primaryLabelValue\":\"American Specialty Health\"}},{\"attributeHeader\":{\"labelValue\":\"AmericaRx.com\",\"primaryLabelValue\":\"AmericaRx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Americollect\",\"primaryLabelValue\":\"Americollect\"}},{\"attributeHeader\":{\"labelValue\":\"Ameri-Kleen\",\"primaryLabelValue\":\"Ameri-Kleen\"}},{\"attributeHeader\":{\"labelValue\":\"Amtek Consulting\",\"primaryLabelValue\":\"Amtek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews & Company\",\"primaryLabelValue\":\"Andrews & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annapolis Micro Systems\",\"primaryLabelValue\":\"Annapolis Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annese & Associates\",\"primaryLabelValue\":\"Annese & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AnthroTronix\",\"primaryLabelValue\":\"AnthroTronix\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Systems\",\"primaryLabelValue\":\"Apex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"Aprimo\",\"primaryLabelValue\":\"Aprimo\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptela\",\"primaryLabelValue\":\"Aptela\"}},{\"attributeHeader\":{\"labelValue\":\"Aquire\",\"primaryLabelValue\":\"Aquire\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Marketing Services\",\"primaryLabelValue\":\"Archway Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Arcus\",\"primaryLabelValue\":\"Arcus\"}},{\"attributeHeader\":{\"labelValue\":\"Area51-ESG\",\"primaryLabelValue\":\"Area51-ESG\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadium\",\"primaryLabelValue\":\"Arkadium\"}},{\"attributeHeader\":{\"labelValue\":\"Armedia\",\"primaryLabelValue\":\"Armedia\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"Arora Engineers\",\"primaryLabelValue\":\"Arora Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Arroyo Process Equipment\",\"primaryLabelValue\":\"Arroyo Process Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASD\",\"primaryLabelValue\":\"ASD\"}},{\"attributeHeader\":{\"labelValue\":\"ASK Staffing\",\"primaryLabelValue\":\"ASK Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"Astek Wallcovering\",\"primaryLabelValue\":\"Astek Wallcovering\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT Conference\",\"primaryLabelValue\":\"AT Conference\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Business Technologies\",\"primaryLabelValue\":\"Atlantic Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Travel International\",\"primaryLabelValue\":\"Atlas Travel International\"}},{\"attributeHeader\":{\"labelValue\":\"AtNetPlus\",\"primaryLabelValue\":\"AtNetPlus\"}},{\"attributeHeader\":{\"labelValue\":\"Atomic Tattoos\",\"primaryLabelValue\":\"Atomic Tattoos\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"Austin Ribbon & Computer\",\"primaryLabelValue\":\"Austin Ribbon & Computer\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Events\",\"primaryLabelValue\":\"Automotive Events\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Product Consultants\",\"primaryLabelValue\":\"Automotive Product Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"AutoTec\",\"primaryLabelValue\":\"AutoTec\"}},{\"attributeHeader\":{\"labelValue\":\"Avalanche Creative Services\",\"primaryLabelValue\":\"Avalanche Creative Services\"}},{\"attributeHeader\":{\"labelValue\":\"Avalex Technologies Corporation\",\"primaryLabelValue\":\"Avalex Technologies Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Avidian Technologies\",\"primaryLabelValue\":\"Avidian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Avineon\",\"primaryLabelValue\":\"Avineon\"}},{\"attributeHeader\":{\"labelValue\":\"AVT Simulation\",\"primaryLabelValue\":\"AVT Simulation\"}},{\"attributeHeader\":{\"labelValue\":\"Axeda\",\"primaryLabelValue\":\"Axeda\"}},{\"attributeHeader\":{\"labelValue\":\"Axis Teknologies\",\"primaryLabelValue\":\"Axis Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axispoint\",\"primaryLabelValue\":\"Axispoint\"}},{\"attributeHeader\":{\"labelValue\":\"Azavea\",\"primaryLabelValue\":\"Azavea\"}},{\"attributeHeader\":{\"labelValue\":\"B Resource\",\"primaryLabelValue\":\"B Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Bailey Kennedy\",\"primaryLabelValue\":\"Bailey Kennedy\"}},{\"attributeHeader\":{\"labelValue\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryLabelValue\":\"Ballard Spahr Andrews & Ingersoll\"}},{\"attributeHeader\":{\"labelValue\":\"Bamko\",\"primaryLabelValue\":\"Bamko\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Barrack's Cater Inn\",\"primaryLabelValue\":\"Barrack's Cater Inn\"}},{\"attributeHeader\":{\"labelValue\":\"Barrister Global Services Network\",\"primaryLabelValue\":\"Barrister Global Services Network\"}},{\"attributeHeader\":{\"labelValue\":\"Basic\",\"primaryLabelValue\":\"Basic\"}},{\"attributeHeader\":{\"labelValue\":\"Basic Commerce and Industries\",\"primaryLabelValue\":\"Basic Commerce and Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Batteries Plus\",\"primaryLabelValue\":\"Batteries Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Baxa\",\"primaryLabelValue\":\"Baxa\"}},{\"attributeHeader\":{\"labelValue\":\"Bay State Computers\",\"primaryLabelValue\":\"Bay State Computers\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Partners\",\"primaryLabelValue\":\"Beacon Partners\"}},{\"attributeHeader\":{\"labelValue\":\"BEAR Data Systems\",\"primaryLabelValue\":\"BEAR Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Bearse Manufacturing\",\"primaryLabelValue\":\"Bearse Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Beauty Supply Warehouse\",\"primaryLabelValue\":\"Beauty Supply Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Benchworks\",\"primaryLabelValue\":\"Benchworks\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Strategies\",\"primaryLabelValue\":\"Benefit Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Best Items International\",\"primaryLabelValue\":\"Best Items International\"}},{\"attributeHeader\":{\"labelValue\":\"BG Medicine\",\"primaryLabelValue\":\"BG Medicine\"}},{\"attributeHeader\":{\"labelValue\":\"BHI Advanced Internet\",\"primaryLabelValue\":\"BHI Advanced Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Big Ass Fan Company\",\"primaryLabelValue\":\"Big Ass Fan Company\"}},{\"attributeHeader\":{\"labelValue\":\"BIGresearch\",\"primaryLabelValue\":\"BIGresearch\"}},{\"attributeHeader\":{\"labelValue\":\"Bingham McCutchen\",\"primaryLabelValue\":\"Bingham McCutchen\"}},{\"attributeHeader\":{\"labelValue\":\"BioHorizons\",\"primaryLabelValue\":\"BioHorizons\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birch Communications\",\"primaryLabelValue\":\"Birch Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Bit-Wizards Custom Software Solutions\",\"primaryLabelValue\":\"Bit-Wizards Custom Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BizXchange\",\"primaryLabelValue\":\"BizXchange\"}},{\"attributeHeader\":{\"labelValue\":\"Blacklist\",\"primaryLabelValue\":\"Blacklist\"}},{\"attributeHeader\":{\"labelValue\":\"Blink Consulting\",\"primaryLabelValue\":\"Blink Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Gecko\",\"primaryLabelValue\":\"Blue Gecko\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bluefish Wireless Management\",\"primaryLabelValue\":\"Bluefish Wireless Management\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"Booz Allen Hamilton\",\"primaryLabelValue\":\"Booz Allen Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"BrakeQuip\",\"primaryLabelValue\":\"BrakeQuip\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Breaking Ground Contracting\",\"primaryLabelValue\":\"Breaking Ground Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Burt Hill\",\"primaryLabelValue\":\"Burt Hill\"}},{\"attributeHeader\":{\"labelValue\":\"Butler/Till Media Services\",\"primaryLabelValue\":\"Butler/Till Media Services\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"Cables Plus\",\"primaryLabelValue\":\"Cables Plus\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Calix Networks\",\"primaryLabelValue\":\"Calix Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Call One\",\"primaryLabelValue\":\"Call One\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"CAM Services\",\"primaryLabelValue\":\"CAM Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge Home Health Care\",\"primaryLabelValue\":\"Cambridge Home Health Care\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"CandyRific\",\"primaryLabelValue\":\"CandyRific\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cape Medical Supply\",\"primaryLabelValue\":\"Cape Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Capinc\",\"primaryLabelValue\":\"Capinc\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Concierge\",\"primaryLabelValue\":\"Capitol Concierge\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Captiva Marketing\",\"primaryLabelValue\":\"Captiva Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Carbon Resources\",\"primaryLabelValue\":\"Carbon Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Cardenas Marketing Network\",\"primaryLabelValue\":\"Cardenas Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"Career Step\",\"primaryLabelValue\":\"Career Step\"}},{\"attributeHeader\":{\"labelValue\":\"Cargo Transportation Services\",\"primaryLabelValue\":\"Cargo Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carlisle Staffing\",\"primaryLabelValue\":\"Carlisle Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Carlton Fields\",\"primaryLabelValue\":\"Carlton Fields\"}},{\"attributeHeader\":{\"labelValue\":\"Cascade Asset Management\",\"primaryLabelValue\":\"Cascade Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Casco Contractors\",\"primaryLabelValue\":\"Casco Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Casey Research\",\"primaryLabelValue\":\"Casey Research\"}},{\"attributeHeader\":{\"labelValue\":\"Castle Rock Innovations\",\"primaryLabelValue\":\"Castle Rock Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Search\",\"primaryLabelValue\":\"Catalyst Search\"}},{\"attributeHeader\":{\"labelValue\":\"Catch the Moment\",\"primaryLabelValue\":\"Catch the Moment\"}},{\"attributeHeader\":{\"labelValue\":\"CBOE Holdings\",\"primaryLabelValue\":\"CBOE Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Marketing Solutions\",\"primaryLabelValue\":\"CCG Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cell Business Equipment\",\"primaryLabelValue\":\"Cell Business Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Centerstance\",\"primaryLabelValue\":\"Centerstance\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Century Bankcard Services\",\"primaryLabelValue\":\"Century Bankcard Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ceteris\",\"primaryLabelValue\":\"Ceteris\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chadbourne & Parke\",\"primaryLabelValue\":\"Chadbourne & Parke\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Charley's Grilled Subs\",\"primaryLabelValue\":\"Charley's Grilled Subs\"}},{\"attributeHeader\":{\"labelValue\":\"Chemco Products\",\"primaryLabelValue\":\"Chemco Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Child Enterprises\",\"primaryLabelValue\":\"Child Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Chop't Creative Salad\",\"primaryLabelValue\":\"Chop't Creative Salad\"}},{\"attributeHeader\":{\"labelValue\":\"ChristianCinema.com\",\"primaryLabelValue\":\"ChristianCinema.com\"}},{\"attributeHeader\":{\"labelValue\":\"Chroma Technology\",\"primaryLabelValue\":\"Chroma Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CiCi's Pizza\",\"primaryLabelValue\":\"CiCi's Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"CJ Pony Parts\",\"primaryLabelValue\":\"CJ Pony Parts\"}},{\"attributeHeader\":{\"labelValue\":\"CJP Communications\",\"primaryLabelValue\":\"CJP Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clinix Medical Information Services\",\"primaryLabelValue\":\"Clinix Medical Information Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CNSI\",\"primaryLabelValue\":\"CNSI\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Environmental Group\",\"primaryLabelValue\":\"Coastal Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobalt\",\"primaryLabelValue\":\"Cobalt\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen, Eric and Associates\",\"primaryLabelValue\":\"Cohen, Eric and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coins For Anything\",\"primaryLabelValue\":\"Coins For Anything\"}},{\"attributeHeader\":{\"labelValue\":\"Coin-Tainer\",\"primaryLabelValue\":\"Coin-Tainer\"}},{\"attributeHeader\":{\"labelValue\":\"Coler & Colantonio\",\"primaryLabelValue\":\"Coler & Colantonio\"}},{\"attributeHeader\":{\"labelValue\":\"Collabera\",\"primaryLabelValue\":\"Collabera\"}},{\"attributeHeader\":{\"labelValue\":\"CollaborateMD\",\"primaryLabelValue\":\"CollaborateMD\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ColorInc\",\"primaryLabelValue\":\"ColorInc\"}},{\"attributeHeader\":{\"labelValue\":\"Combined Public Communications\",\"primaryLabelValue\":\"Combined Public Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Command Decisions Systems & Solutions\",\"primaryLabelValue\":\"Command Decisions Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Commcare Pharmacy\",\"primaryLabelValue\":\"Commcare Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Common Sense Office Furniture\",\"primaryLabelValue\":\"Common Sense Office Furniture\"}},{\"attributeHeader\":{\"labelValue\":\"Commonground\",\"primaryLabelValue\":\"Commonground\"}},{\"attributeHeader\":{\"labelValue\":\"Communique Conferencing\",\"primaryLabelValue\":\"Communique Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"Community Care College\",\"primaryLabelValue\":\"Community Care College\"}},{\"attributeHeader\":{\"labelValue\":\"Company 20\",\"primaryLabelValue\":\"Company 20\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Nutrition\",\"primaryLabelValue\":\"Complete Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Care\",\"primaryLabelValue\":\"Complete Pharmacy Care\"}},{\"attributeHeader\":{\"labelValue\":\"CompleteRx\",\"primaryLabelValue\":\"CompleteRx\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Computer System Designers\",\"primaryLabelValue\":\"Computer System Designers\"}},{\"attributeHeader\":{\"labelValue\":\"ComRent International\",\"primaryLabelValue\":\"ComRent International\"}},{\"attributeHeader\":{\"labelValue\":\"Concerro\",\"primaryLabelValue\":\"Concerro\"}},{\"attributeHeader\":{\"labelValue\":\"ConEst Software Systems\",\"primaryLabelValue\":\"ConEst Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Connectria\",\"primaryLabelValue\":\"Connectria\"}},{\"attributeHeader\":{\"labelValue\":\"Control Cable\",\"primaryLabelValue\":\"Control Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Technology Consulting\",\"primaryLabelValue\":\"Convergence Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cooking Enthusiast\",\"primaryLabelValue\":\"Cooking Enthusiast\"}},{\"attributeHeader\":{\"labelValue\":\"Copier Fax Business Technologies\",\"primaryLabelValue\":\"Copier Fax Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CorePartners\",\"primaryLabelValue\":\"CorePartners\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Research Group\",\"primaryLabelValue\":\"Cornerstone Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Telephone\",\"primaryLabelValue\":\"CornerStone Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"CorpComm\",\"primaryLabelValue\":\"CorpComm\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Family Network\",\"primaryLabelValue\":\"Corporate Family Network\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Floors\",\"primaryLabelValue\":\"Corporate Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Office Centers\",\"primaryLabelValue\":\"Corporate Office Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Research International\",\"primaryLabelValue\":\"Corporate Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Cortech Solutions\",\"primaryLabelValue\":\"Cortech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Costume Craze\",\"primaryLabelValue\":\"Costume Craze\"}},{\"attributeHeader\":{\"labelValue\":\"Coverall Mountain & Pacific\",\"primaryLabelValue\":\"Coverall Mountain & Pacific\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CraigMichaels\",\"primaryLabelValue\":\"CraigMichaels\"}},{\"attributeHeader\":{\"labelValue\":\"Cravath, Swaine & Moore\",\"primaryLabelValue\":\"Cravath, Swaine & Moore\"}},{\"attributeHeader\":{\"labelValue\":\"Credico\",\"primaryLabelValue\":\"Credico\"}},{\"attributeHeader\":{\"labelValue\":\"Crimson Consulting Group\",\"primaryLabelValue\":\"Crimson Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"CriticalTool\",\"primaryLabelValue\":\"CriticalTool\"}},{\"attributeHeader\":{\"labelValue\":\"Crown Partners\",\"primaryLabelValue\":\"Crown Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"CTL Engineering\",\"primaryLabelValue\":\"CTL Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cue Data Services\",\"primaryLabelValue\":\"Cue Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cumberland Consulting Group\",\"primaryLabelValue\":\"Cumberland Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"CurrentMarketing\",\"primaryLabelValue\":\"CurrentMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Curry's Auto Service\",\"primaryLabelValue\":\"Curry's Auto Service\"}},{\"attributeHeader\":{\"labelValue\":\"CustomInk\",\"primaryLabelValue\":\"CustomInk\"}},{\"attributeHeader\":{\"labelValue\":\"Cybera\",\"primaryLabelValue\":\"Cybera\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"CyraCom International\",\"primaryLabelValue\":\"CyraCom International\"}},{\"attributeHeader\":{\"labelValue\":\"Daddies Board Shop\",\"primaryLabelValue\":\"Daddies Board Shop\"}},{\"attributeHeader\":{\"labelValue\":\"Data Systems Analysts\",\"primaryLabelValue\":\"Data Systems Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Dataprise\",\"primaryLabelValue\":\"Dataprise\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"DCO Distribution\",\"primaryLabelValue\":\"DCO Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"DDS Companies\",\"primaryLabelValue\":\"DDS Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debevoise & Plimpton\",\"primaryLabelValue\":\"Debevoise & Plimpton\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Solutions & Strategies\",\"primaryLabelValue\":\"Delta Solutions & Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denihan Hospitality Group\",\"primaryLabelValue\":\"Denihan Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denim Group\",\"primaryLabelValue\":\"Denim Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Derstine's Foodservice Distributor\",\"primaryLabelValue\":\"Derstine's Foodservice Distributor\"}},{\"attributeHeader\":{\"labelValue\":\"Diaspark\",\"primaryLabelValue\":\"Diaspark\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Financial Group\",\"primaryLabelValue\":\"Digital Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Gateway\",\"primaryLabelValue\":\"Digital Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Insurance\",\"primaryLabelValue\":\"Digital Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"Discovery Outsourcing\",\"primaryLabelValue\":\"Discovery Outsourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Dish One Satellite\",\"primaryLabelValue\":\"Dish One Satellite\"}},{\"attributeHeader\":{\"labelValue\":\"Diversant\",\"primaryLabelValue\":\"Diversant\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Computer Supplies\",\"primaryLabelValue\":\"Diversified Computer Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"DNT Environmental Services\",\"primaryLabelValue\":\"DNT Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"Document Technologies\",\"primaryLabelValue\":\"Document Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Docusource Print Management\",\"primaryLabelValue\":\"Docusource Print Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dogtopia\",\"primaryLabelValue\":\"Dogtopia\"}},{\"attributeHeader\":{\"labelValue\":\"Doig Corporation\",\"primaryLabelValue\":\"Doig Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dorsey & Whitney\",\"primaryLabelValue\":\"Dorsey & Whitney\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Dynamics\",\"primaryLabelValue\":\"Douglas Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Dr. Fresh\",\"primaryLabelValue\":\"Dr. Fresh\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"DSP Clinical Research\",\"primaryLabelValue\":\"DSP Clinical Research\"}},{\"attributeHeader\":{\"labelValue\":\"DSR Management\",\"primaryLabelValue\":\"DSR Management\"}},{\"attributeHeader\":{\"labelValue\":\"Duane Morris\",\"primaryLabelValue\":\"Duane Morris\"}},{\"attributeHeader\":{\"labelValue\":\"Ductz\",\"primaryLabelValue\":\"Ductz\"}},{\"attributeHeader\":{\"labelValue\":\"Duffey Petrosky\",\"primaryLabelValue\":\"Duffey Petrosky\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"Dykema Gossett\",\"primaryLabelValue\":\"Dykema Gossett\"}},{\"attributeHeader\":{\"labelValue\":\"Dymax\",\"primaryLabelValue\":\"Dymax\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Systems\",\"primaryLabelValue\":\"Dynamic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Exhibits\",\"primaryLabelValue\":\"E&E Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"EAC Product Development Solutions\",\"primaryLabelValue\":\"EAC Product Development Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Productivity Solutions\",\"primaryLabelValue\":\"Eagle Productivity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Promotions\",\"primaryLabelValue\":\"Eagle Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Earl & Brown\",\"primaryLabelValue\":\"Earl & Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Earth Supplied Products\",\"primaryLabelValue\":\"Earth Supplied Products\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Land Management\",\"primaryLabelValue\":\"Eastern Land Management\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"e-brilliance\",\"primaryLabelValue\":\"e-brilliance\"}},{\"attributeHeader\":{\"labelValue\":\"ECI\",\"primaryLabelValue\":\"ECI\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eclaro International\",\"primaryLabelValue\":\"Eclaro International\"}},{\"attributeHeader\":{\"labelValue\":\"ECSI\",\"primaryLabelValue\":\"ECSI\"}},{\"attributeHeader\":{\"labelValue\":\"EDI\",\"primaryLabelValue\":\"EDI\"}},{\"attributeHeader\":{\"labelValue\":\"Edible Arrangements International\",\"primaryLabelValue\":\"Edible Arrangements International\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Options\",\"primaryLabelValue\":\"Educational Options\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Tools\",\"primaryLabelValue\":\"Educational Tools\"}},{\"attributeHeader\":{\"labelValue\":\"EFI Polymers\",\"primaryLabelValue\":\"EFI Polymers\"}},{\"attributeHeader\":{\"labelValue\":\"Eliassen Group\",\"primaryLabelValue\":\"Eliassen Group\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Food Company\",\"primaryLabelValue\":\"Elite Food Company\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"EM-Assist\",\"primaryLabelValue\":\"EM-Assist\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Embrace Home Loans\",\"primaryLabelValue\":\"Embrace Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empirix\",\"primaryLabelValue\":\"Empirix\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Curtailment Specialists\",\"primaryLabelValue\":\"Energy Curtailment Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Enginuity\",\"primaryLabelValue\":\"Enginuity\"}},{\"attributeHeader\":{\"labelValue\":\"English + Associates Architects\",\"primaryLabelValue\":\"English + Associates Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy the City\",\"primaryLabelValue\":\"Enjoy the City\"}},{\"attributeHeader\":{\"labelValue\":\"Enlighten\",\"primaryLabelValue\":\"Enlighten\"}},{\"attributeHeader\":{\"labelValue\":\"Enrich IT\",\"primaryLabelValue\":\"Enrich IT\"}},{\"attributeHeader\":{\"labelValue\":\"Enseo\",\"primaryLabelValue\":\"Enseo\"}},{\"attributeHeader\":{\"labelValue\":\"Entaire\",\"primaryLabelValue\":\"Entaire\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Entertainment Earth\",\"primaryLabelValue\":\"Entertainment Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Entisys Solutions\",\"primaryLabelValue\":\"Entisys Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EnTitle Insurance\",\"primaryLabelValue\":\"EnTitle Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Envirocon Technologies\",\"primaryLabelValue\":\"Envirocon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"EPE\",\"primaryLabelValue\":\"EPE\"}},{\"attributeHeader\":{\"labelValue\":\"EPIC Insurance Brokers\",\"primaryLabelValue\":\"EPIC Insurance Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"Epocrates\",\"primaryLabelValue\":\"Epocrates\"}},{\"attributeHeader\":{\"labelValue\":\"ePrize\",\"primaryLabelValue\":\"ePrize\"}},{\"attributeHeader\":{\"labelValue\":\"Equator Estate Coffees & Teas\",\"primaryLabelValue\":\"Equator Estate Coffees & Teas\"}},{\"attributeHeader\":{\"labelValue\":\"ERC\",\"primaryLabelValue\":\"ERC\"}},{\"attributeHeader\":{\"labelValue\":\"e-Rewards Market Research\",\"primaryLabelValue\":\"e-Rewards Market Research\"}},{\"attributeHeader\":{\"labelValue\":\"Ergotron\",\"primaryLabelValue\":\"Ergotron\"}},{\"attributeHeader\":{\"labelValue\":\"Eriksen Translations\",\"primaryLabelValue\":\"Eriksen Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Errand Solutions\",\"primaryLabelValue\":\"Errand Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Escalate Media\",\"primaryLabelValue\":\"Escalate Media\"}},{\"attributeHeader\":{\"labelValue\":\"ESi Acquisition\",\"primaryLabelValue\":\"ESi Acquisition\"}},{\"attributeHeader\":{\"labelValue\":\"ESN\",\"primaryLabelValue\":\"ESN\"}},{\"attributeHeader\":{\"labelValue\":\"Essai\",\"primaryLabelValue\":\"Essai\"}},{\"attributeHeader\":{\"labelValue\":\"e-Storm International\",\"primaryLabelValue\":\"e-Storm International\"}},{\"attributeHeader\":{\"labelValue\":\"ESW Partners\",\"primaryLabelValue\":\"ESW Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ETC Institute\",\"primaryLabelValue\":\"ETC Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Europa Sports Products\",\"primaryLabelValue\":\"Europa Sports Products\"}},{\"attributeHeader\":{\"labelValue\":\"EventPro Strategies\",\"primaryLabelValue\":\"EventPro Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Eview 360\",\"primaryLabelValue\":\"Eview 360\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve Media\",\"primaryLabelValue\":\"Evolve Media\"}},{\"attributeHeader\":{\"labelValue\":\"ExactTarget\",\"primaryLabelValue\":\"ExactTarget\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Integrated Systems\",\"primaryLabelValue\":\"Excalibur Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Excella Consulting\",\"primaryLabelValue\":\"Excella Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Exhibit Edge\",\"primaryLabelValue\":\"Exhibit Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Expedited Logistics and Freight Services\",\"primaryLabelValue\":\"Expedited Logistics and Freight Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Expesite\",\"primaryLabelValue\":\"Expesite\"}},{\"attributeHeader\":{\"labelValue\":\"Explore Consulting\",\"primaryLabelValue\":\"Explore Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"ExtensionEngine\",\"primaryLabelValue\":\"ExtensionEngine\"}},{\"attributeHeader\":{\"labelValue\":\"eZanga.com\",\"primaryLabelValue\":\"eZanga.com\"}},{\"attributeHeader\":{\"labelValue\":\"F1 Computer Solutions\",\"primaryLabelValue\":\"F1 Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Facility Wizard Software\",\"primaryLabelValue\":\"Facility Wizard Software\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon International Bank\",\"primaryLabelValue\":\"Falcon International Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Farylrobin\",\"primaryLabelValue\":\"Farylrobin\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Switch\",\"primaryLabelValue\":\"Fast Switch\"}},{\"attributeHeader\":{\"labelValue\":\"Fast-Fix Jewelry\",\"primaryLabelValue\":\"Fast-Fix Jewelry\"}},{\"attributeHeader\":{\"labelValue\":\"FasTracKids International\",\"primaryLabelValue\":\"FasTracKids International\"}},{\"attributeHeader\":{\"labelValue\":\"FeatureTel\",\"primaryLabelValue\":\"FeatureTel\"}},{\"attributeHeader\":{\"labelValue\":\"FedConcepts\",\"primaryLabelValue\":\"FedConcepts\"}},{\"attributeHeader\":{\"labelValue\":\"Fetch Technologies\",\"primaryLabelValue\":\"Fetch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiberall\",\"primaryLabelValue\":\"Fiberall\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertech Networks\",\"primaryLabelValue\":\"Fibertech Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fieldtex Products\",\"primaryLabelValue\":\"Fieldtex Products\"}},{\"attributeHeader\":{\"labelValue\":\"Filmtools\",\"primaryLabelValue\":\"Filmtools\"}},{\"attributeHeader\":{\"labelValue\":\"Finale Desserterie & Bakery\",\"primaryLabelValue\":\"Finale Desserterie & Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Engines\",\"primaryLabelValue\":\"Financial Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fire-Dex\",\"primaryLabelValue\":\"Fire-Dex\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"First American Equipment Finance\",\"primaryLabelValue\":\"First American Equipment Finance\"}},{\"attributeHeader\":{\"labelValue\":\"FirsTrust Mortgage\",\"primaryLabelValue\":\"FirsTrust Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Fish Window Cleaning Services\",\"primaryLabelValue\":\"Fish Window Cleaning Services\"}},{\"attributeHeader\":{\"labelValue\":\"FishNet Security\",\"primaryLabelValue\":\"FishNet Security\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzgerald Analytics\",\"primaryLabelValue\":\"Fitzgerald Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzpatrick, Cella, Harper & Scinto\",\"primaryLabelValue\":\"Fitzpatrick, Cella, Harper & Scinto\"}},{\"attributeHeader\":{\"labelValue\":\"Five9\",\"primaryLabelValue\":\"Five9\"}},{\"attributeHeader\":{\"labelValue\":\"Flatirons Solutions\",\"primaryLabelValue\":\"Flatirons Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Pie Pizzaria\",\"primaryLabelValue\":\"Flying Pie Pizzaria\"}},{\"attributeHeader\":{\"labelValue\":\"Foley Hoag\",\"primaryLabelValue\":\"Foley Hoag\"}},{\"attributeHeader\":{\"labelValue\":\"FONA International\",\"primaryLabelValue\":\"FONA International\"}},{\"attributeHeader\":{\"labelValue\":\"Foot Petals\",\"primaryLabelValue\":\"Foot Petals\"}},{\"attributeHeader\":{\"labelValue\":\"Force Marketing\",\"primaryLabelValue\":\"Force Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forman Motorsport\",\"primaryLabelValue\":\"Forman Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Construction\",\"primaryLabelValue\":\"Fortis Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Fortune-Johnson\",\"primaryLabelValue\":\"Fortune-Johnson\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Fuel Belt\",\"primaryLabelValue\":\"Fuel Belt\"}},{\"attributeHeader\":{\"labelValue\":\"Fulbright & Jaworski\",\"primaryLabelValue\":\"Fulbright & Jaworski\"}},{\"attributeHeader\":{\"labelValue\":\"Fuse\",\"primaryLabelValue\":\"Fuse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Solutions\",\"primaryLabelValue\":\"Fusion Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Systems\",\"primaryLabelValue\":\"Fusion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"FusionStorm\",\"primaryLabelValue\":\"FusionStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Builders Group\",\"primaryLabelValue\":\"Futura Builders Group\"}},{\"attributeHeader\":{\"labelValue\":\"Future Force Personnel\",\"primaryLabelValue\":\"Future Force Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Future Research\",\"primaryLabelValue\":\"Future Research\"}},{\"attributeHeader\":{\"labelValue\":\"FXCM\",\"primaryLabelValue\":\"FXCM\"}},{\"attributeHeader\":{\"labelValue\":\"GaN Corporation\",\"primaryLabelValue\":\"GaN Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Gateway Ticketing Systems\",\"primaryLabelValue\":\"Gateway Ticketing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gateworks\",\"primaryLabelValue\":\"Gateworks\"}},{\"attributeHeader\":{\"labelValue\":\"GB Collects\",\"primaryLabelValue\":\"GB Collects\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"generationE Technologies\",\"primaryLabelValue\":\"generationE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Geocent\",\"primaryLabelValue\":\"Geocent\"}},{\"attributeHeader\":{\"labelValue\":\"geographIT\",\"primaryLabelValue\":\"geographIT\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Logical\",\"primaryLabelValue\":\"Geo-Logical\"}},{\"attributeHeader\":{\"labelValue\":\"GeoStructures\",\"primaryLabelValue\":\"GeoStructures\"}},{\"attributeHeader\":{\"labelValue\":\"Gila\",\"primaryLabelValue\":\"Gila\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Giovanni Food\",\"primaryLabelValue\":\"Giovanni Food\"}},{\"attributeHeader\":{\"labelValue\":\"Giroux Glass\",\"primaryLabelValue\":\"Giroux Glass\"}},{\"attributeHeader\":{\"labelValue\":\"GIS Planning\",\"primaryLabelValue\":\"GIS Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Technology Resources\",\"primaryLabelValue\":\"Global Technology Resources\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalLogic\",\"primaryLabelValue\":\"GlobalLogic\"}},{\"attributeHeader\":{\"labelValue\":\"GNS\",\"primaryLabelValue\":\"GNS\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Goble & Associates\",\"primaryLabelValue\":\"Goble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Star Mortgage Financial Group\",\"primaryLabelValue\":\"Gold Star Mortgage Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Golfballs.com\",\"primaryLabelValue\":\"Golfballs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwives Hors d'oeuvres\",\"primaryLabelValue\":\"Goodwives Hors d'oeuvres\"}},{\"attributeHeader\":{\"labelValue\":\"Gordmans Stores\",\"primaryLabelValue\":\"Gordmans Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GRA\",\"primaryLabelValue\":\"GRA\"}},{\"attributeHeader\":{\"labelValue\":\"Grandstream Networks\",\"primaryLabelValue\":\"Grandstream Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Granicus\",\"primaryLabelValue\":\"Granicus\"}},{\"attributeHeader\":{\"labelValue\":\"Granite Telecommunications\",\"primaryLabelValue\":\"Granite Telecommunications\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GreenSoft Solutions\",\"primaryLabelValue\":\"GreenSoft Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Greentarget Global Group\",\"primaryLabelValue\":\"Greentarget Global Group\"}},{\"attributeHeader\":{\"labelValue\":\"Griswold International\",\"primaryLabelValue\":\"Griswold International\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"Group O\",\"primaryLabelValue\":\"Group O\"}},{\"attributeHeader\":{\"labelValue\":\"Groupware Technology\",\"primaryLabelValue\":\"Groupware Technology\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Payroll Services\",\"primaryLabelValue\":\"GTM Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guardian Power Protection Services\",\"primaryLabelValue\":\"Guardian Power Protection Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guident Technologies\",\"primaryLabelValue\":\"Guident Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HaloSource\",\"primaryLabelValue\":\"HaloSource\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Communications\",\"primaryLabelValue\":\"Hanson Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Harbinger Partners\",\"primaryLabelValue\":\"Harbinger Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Harbor Financial Services\",\"primaryLabelValue\":\"Harbor Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hardy Diagnostics\",\"primaryLabelValue\":\"Hardy Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"Harmonia\",\"primaryLabelValue\":\"Harmonia\"}},{\"attributeHeader\":{\"labelValue\":\"Haynes and Boone\",\"primaryLabelValue\":\"Haynes and Boone\"}},{\"attributeHeader\":{\"labelValue\":\"HDR\",\"primaryLabelValue\":\"HDR\"}},{\"attributeHeader\":{\"labelValue\":\"Health Designs\",\"primaryLabelValue\":\"Health Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Communications Group\",\"primaryLabelValue\":\"Healthcare Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthHelp\",\"primaryLabelValue\":\"HealthHelp\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Healthx\",\"primaryLabelValue\":\"Healthx\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"High Performance Technologies\",\"primaryLabelValue\":\"High Performance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"High Tech Innovations\",\"primaryLabelValue\":\"High Tech Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"Hired Hands\",\"primaryLabelValue\":\"Hired Hands\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"Hissho Sushi\",\"primaryLabelValue\":\"Hissho Sushi\"}},{\"attributeHeader\":{\"labelValue\":\"HMC Architects\",\"primaryLabelValue\":\"HMC Architects\"}},{\"attributeHeader\":{\"labelValue\":\"HMT Associates\",\"primaryLabelValue\":\"HMT Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (TX)\",\"primaryLabelValue\":\"Home Instead Senior Care (TX)\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Consulting\",\"primaryLabelValue\":\"Horizon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Hot Studio\",\"primaryLabelValue\":\"Hot Studio\"}},{\"attributeHeader\":{\"labelValue\":\"Howrey\",\"primaryLabelValue\":\"Howrey\"}},{\"attributeHeader\":{\"labelValue\":\"HSA Engineers & Scientists\",\"primaryLabelValue\":\"HSA Engineers & Scientists\"}},{\"attributeHeader\":{\"labelValue\":\"HTC Global Services\",\"primaryLabelValue\":\"HTC Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Hunter Technical Resources\",\"primaryLabelValue\":\"Hunter Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Hybrid Transit Systems\",\"primaryLabelValue\":\"Hybrid Transit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"I Play\",\"primaryLabelValue\":\"I Play\"}},{\"attributeHeader\":{\"labelValue\":\"i9 Sports\",\"primaryLabelValue\":\"i9 Sports\"}},{\"attributeHeader\":{\"labelValue\":\"IASIS Healthcare\",\"primaryLabelValue\":\"IASIS Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ice Miller\",\"primaryLabelValue\":\"Ice Miller\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"iFAX Solutions\",\"primaryLabelValue\":\"iFAX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iFixit\",\"primaryLabelValue\":\"iFixit\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Image Locations\",\"primaryLabelValue\":\"Image Locations\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging Alliance Group\",\"primaryLabelValue\":\"Imaging Alliance Group\"}},{\"attributeHeader\":{\"labelValue\":\"iMarc\",\"primaryLabelValue\":\"iMarc\"}},{\"attributeHeader\":{\"labelValue\":\"Impex Group\",\"primaryLabelValue\":\"Impex Group\"}},{\"attributeHeader\":{\"labelValue\":\"Incisive Surgical\",\"primaryLabelValue\":\"Incisive Surgical\"}},{\"attributeHeader\":{\"labelValue\":\"Independent Financial Group\",\"primaryLabelValue\":\"Independent Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Industrial Solutions\",\"primaryLabelValue\":\"Industrial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iNET Interactive\",\"primaryLabelValue\":\"iNET Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Infinit Technology Solutions\",\"primaryLabelValue\":\"Infinit Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Consulting Solutions\",\"primaryLabelValue\":\"Infinity Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Systems Engineering\",\"primaryLabelValue\":\"Infinity Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Info Retail\",\"primaryLabelValue\":\"Info Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Information Innovators\",\"primaryLabelValue\":\"Information Innovators\"}},{\"attributeHeader\":{\"labelValue\":\"Information Systems Solutions\",\"primaryLabelValue\":\"Information Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Infoyogi\",\"primaryLabelValue\":\"Infoyogi\"}},{\"attributeHeader\":{\"labelValue\":\"Inkgrabber.com\",\"primaryLabelValue\":\"Inkgrabber.com\"}},{\"attributeHeader\":{\"labelValue\":\"Inland Pipe Rehabilitation\",\"primaryLabelValue\":\"Inland Pipe Rehabilitation\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Computing Systems\",\"primaryLabelValue\":\"Innovative Computing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Office Solutions\",\"primaryLabelValue\":\"Innovative Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Staffing\",\"primaryLabelValue\":\"Innovative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Global\",\"primaryLabelValue\":\"Insight Global\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Sourcing Group\",\"primaryLabelValue\":\"Insight Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Biotechnical\",\"primaryLabelValue\":\"Integra Biotechnical\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Realty Resources\",\"primaryLabelValue\":\"Integra Realty Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integral Senior Living\",\"primaryLabelValue\":\"Integral Senior Living\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Control\",\"primaryLabelValue\":\"Integrated Control\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design\",\"primaryLabelValue\":\"Integrated Design\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design Group\",\"primaryLabelValue\":\"Integrated Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Resources\",\"primaryLabelValue\":\"Integrated Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Partners\",\"primaryLabelValue\":\"Integration Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Applications\",\"primaryLabelValue\":\"Integrity Applications\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"Intelius\",\"primaryLabelValue\":\"Intelius\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Software Solutions\",\"primaryLabelValue\":\"Intelligent Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (TN)\",\"primaryLabelValue\":\"Interactive Solutions (TN)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Foods\",\"primaryLabelValue\":\"Intermark Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Intermarkets\",\"primaryLabelValue\":\"Intermarkets\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"International Software Systems\",\"primaryLabelValue\":\"International Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate International\",\"primaryLabelValue\":\"Interstate International\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate Transport\",\"primaryLabelValue\":\"Interstate Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Intetics\",\"primaryLabelValue\":\"Intetics\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"Irell & Manella\",\"primaryLabelValue\":\"Irell & Manella\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Isis Parenting\",\"primaryLabelValue\":\"Isis Parenting\"}},{\"attributeHeader\":{\"labelValue\":\"Island\",\"primaryLabelValue\":\"Island\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Laboratories\",\"primaryLabelValue\":\"Isotech Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"Issue Media Group\",\"primaryLabelValue\":\"Issue Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"IST Management Services\",\"primaryLabelValue\":\"IST Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"iStrategy Solutions\",\"primaryLabelValue\":\"iStrategy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ISYS Technologies\",\"primaryLabelValue\":\"ISYS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IT First Source\",\"primaryLabelValue\":\"IT First Source\"}},{\"attributeHeader\":{\"labelValue\":\"IT Solutions Consulting\",\"primaryLabelValue\":\"IT Solutions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iTech US\",\"primaryLabelValue\":\"iTech US\"}},{\"attributeHeader\":{\"labelValue\":\"IT-Lifeline\",\"primaryLabelValue\":\"IT-Lifeline\"}},{\"attributeHeader\":{\"labelValue\":\"iVenture Solutions\",\"primaryLabelValue\":\"iVenture Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Clancy\",\"primaryLabelValue\":\"J.R. Clancy\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jackson Walker\",\"primaryLabelValue\":\"Jackson Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Jenner & Block\",\"primaryLabelValue\":\"Jenner & Block\"}},{\"attributeHeader\":{\"labelValue\":\"JG Black Book of Travel\",\"primaryLabelValue\":\"JG Black Book of Travel\"}},{\"attributeHeader\":{\"labelValue\":\"JGear\",\"primaryLabelValue\":\"JGear\"}},{\"attributeHeader\":{\"labelValue\":\"JHE Production Group\",\"primaryLabelValue\":\"JHE Production Group\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"JMC Holdings\",\"primaryLabelValue\":\"JMC Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Johnny Cupcakes\",\"primaryLabelValue\":\"Johnny Cupcakes\"}},{\"attributeHeader\":{\"labelValue\":\"Jo-Kell\",\"primaryLabelValue\":\"Jo-Kell\"}},{\"attributeHeader\":{\"labelValue\":\"JSMN International\",\"primaryLabelValue\":\"JSMN International\"}},{\"attributeHeader\":{\"labelValue\":\"Junk my Car\",\"primaryLabelValue\":\"Junk my Car\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Kahler Automation\",\"primaryLabelValue\":\"Kahler Automation\"}},{\"attributeHeader\":{\"labelValue\":\"Kaizen Technologies\",\"primaryLabelValue\":\"Kaizen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kaye Scholer\",\"primaryLabelValue\":\"Kaye Scholer\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Healthcare\",\"primaryLabelValue\":\"Keen Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Kelly's Industrial Services\",\"primaryLabelValue\":\"Kelly's Industrial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Kelton Research\",\"primaryLabelValue\":\"Kelton Research\"}},{\"attributeHeader\":{\"labelValue\":\"KeyLogic Systems\",\"primaryLabelValue\":\"KeyLogic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kickball.com\",\"primaryLabelValue\":\"Kickball.com\"}},{\"attributeHeader\":{\"labelValue\":\"Kids II\",\"primaryLabelValue\":\"Kids II\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Kinetek Consulting\",\"primaryLabelValue\":\"Kinetek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"King Enterprise Group\",\"primaryLabelValue\":\"King Enterprise Group\"}},{\"attributeHeader\":{\"labelValue\":\"Kingfisher Systems\",\"primaryLabelValue\":\"Kingfisher Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kingston Technology\",\"primaryLabelValue\":\"Kingston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"KIRA\",\"primaryLabelValue\":\"KIRA\"}},{\"attributeHeader\":{\"labelValue\":\"Kirkland & Ellis\",\"primaryLabelValue\":\"Kirkland & Ellis\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"KJ Technology Consulting\",\"primaryLabelValue\":\"KJ Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Klein Buendel\",\"primaryLabelValue\":\"Klein Buendel\"}},{\"attributeHeader\":{\"labelValue\":\"KMRD Partners\",\"primaryLabelValue\":\"KMRD Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Knichel Logistics\",\"primaryLabelValue\":\"Knichel Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Marketing\",\"primaryLabelValue\":\"Knowledge Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Mosaic\",\"primaryLabelValue\":\"Knowledge Mosaic\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeCentrix\",\"primaryLabelValue\":\"KnowledgeCentrix\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Krupp Kommunications\",\"primaryLabelValue\":\"Krupp Kommunications\"}},{\"attributeHeader\":{\"labelValue\":\"KTI\",\"primaryLabelValue\":\"KTI\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"Labor Law Center\",\"primaryLabelValue\":\"Labor Law Center\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Technologies\",\"primaryLabelValue\":\"Laser Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lastar\",\"primaryLabelValue\":\"Lastar\"}},{\"attributeHeader\":{\"labelValue\":\"Lathrop & Gage\",\"primaryLabelValue\":\"Lathrop & Gage\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Launch\",\"primaryLabelValue\":\"Launch\"}},{\"attributeHeader\":{\"labelValue\":\"Laurus Technologies\",\"primaryLabelValue\":\"Laurus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lazorpoint\",\"primaryLabelValue\":\"Lazorpoint\"}},{\"attributeHeader\":{\"labelValue\":\"LeadCreations.com\",\"primaryLabelValue\":\"LeadCreations.com\"}},{\"attributeHeader\":{\"labelValue\":\"LeadPile\",\"primaryLabelValue\":\"LeadPile\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lease A Sales Rep\",\"primaryLabelValue\":\"Lease A Sales Rep\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Financial Advisors\",\"primaryLabelValue\":\"Legend Financial Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Healthcare\",\"primaryLabelValue\":\"Legend Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Levick Strategic Communications\",\"primaryLabelValue\":\"Levick Strategic Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Brisbois Bisgaard & Smith\",\"primaryLabelValue\":\"Lewis Brisbois Bisgaard & Smith\"}},{\"attributeHeader\":{\"labelValue\":\"LFA Group\",\"primaryLabelValue\":\"LFA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lifematters\",\"primaryLabelValue\":\"Lifematters\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Lighthouse Placement Services\",\"primaryLabelValue\":\"Lighthouse Placement Services\"}},{\"attributeHeader\":{\"labelValue\":\"LightWorks Optics\",\"primaryLabelValue\":\"LightWorks Optics\"}},{\"attributeHeader\":{\"labelValue\":\"Lime Brokerage\",\"primaryLabelValue\":\"Lime Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Lindy Paving\",\"primaryLabelValue\":\"Lindy Paving\"}},{\"attributeHeader\":{\"labelValue\":\"Line 6\",\"primaryLabelValue\":\"Line 6\"}},{\"attributeHeader\":{\"labelValue\":\"LiqueColor InkJet Group\",\"primaryLabelValue\":\"LiqueColor InkJet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Litle & Co.\",\"primaryLabelValue\":\"Litle & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Living Direct\",\"primaryLabelValue\":\"Living Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location3 Media\",\"primaryLabelValue\":\"Location3 Media\"}},{\"attributeHeader\":{\"labelValue\":\"Loffler Companies\",\"primaryLabelValue\":\"Loffler Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Planet\",\"primaryLabelValue\":\"Logic Planet\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Supply\",\"primaryLabelValue\":\"Logic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Trends\",\"primaryLabelValue\":\"Logic Trends\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Choice Technologies\",\"primaryLabelValue\":\"Logical Choice Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Management Solutions\",\"primaryLabelValue\":\"Logistics Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LogoSportswear.com\",\"primaryLabelValue\":\"LogoSportswear.com\"}},{\"attributeHeader\":{\"labelValue\":\"Long Term Solutions\",\"primaryLabelValue\":\"Long Term Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lopez Negrete Communications\",\"primaryLabelValue\":\"Lopez Negrete Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Lowenstein Sandler\",\"primaryLabelValue\":\"Lowenstein Sandler\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"Lynx Network Group\",\"primaryLabelValue\":\"Lynx Network Group\"}},{\"attributeHeader\":{\"labelValue\":\"Lyons Consulting Group\",\"primaryLabelValue\":\"Lyons Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"M/E Engineering\",\"primaryLabelValue\":\"M/E Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mabbett & Associates\",\"primaryLabelValue\":\"Mabbett & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MacFarlane Pheasants\",\"primaryLabelValue\":\"MacFarlane Pheasants\"}},{\"attributeHeader\":{\"labelValue\":\"Magnani Caruso Dutton\",\"primaryLabelValue\":\"Magnani Caruso Dutton\"}},{\"attributeHeader\":{\"labelValue\":\"Magnetic\",\"primaryLabelValue\":\"Magnetic\"}},{\"attributeHeader\":{\"labelValue\":\"Malcap Mortgage\",\"primaryLabelValue\":\"Malcap Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Maldonado Nursery & Landscaping\",\"primaryLabelValue\":\"Maldonado Nursery & Landscaping\"}},{\"attributeHeader\":{\"labelValue\":\"Malone AirCharter\",\"primaryLabelValue\":\"Malone AirCharter\"}},{\"attributeHeader\":{\"labelValue\":\"Managed Business Solutions\",\"primaryLabelValue\":\"Managed Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mansell Group\",\"primaryLabelValue\":\"Mansell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield Oil\",\"primaryLabelValue\":\"Mansfield Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Mantz Automation\",\"primaryLabelValue\":\"Mantz Automation\"}},{\"attributeHeader\":{\"labelValue\":\"MAQ Software\",\"primaryLabelValue\":\"MAQ Software\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Direct\",\"primaryLabelValue\":\"Marketing Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"MarketResearch.com\",\"primaryLabelValue\":\"MarketResearch.com\"}},{\"attributeHeader\":{\"labelValue\":\"MarkMaster\",\"primaryLabelValue\":\"MarkMaster\"}},{\"attributeHeader\":{\"labelValue\":\"Marlabs\",\"primaryLabelValue\":\"Marlabs\"}},{\"attributeHeader\":{\"labelValue\":\"Mathnasium Learning Centers\",\"primaryLabelValue\":\"Mathnasium Learning Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Networks\",\"primaryLabelValue\":\"Maverick Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Max Borges Agency\",\"primaryLabelValue\":\"Max Borges Agency\"}},{\"attributeHeader\":{\"labelValue\":\"MBS Dev\",\"primaryLabelValue\":\"MBS Dev\"}},{\"attributeHeader\":{\"labelValue\":\"McCarter & English\",\"primaryLabelValue\":\"McCarter & English\"}},{\"attributeHeader\":{\"labelValue\":\"McGrath Systems\",\"primaryLabelValue\":\"McGrath Systems\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Communications\",\"primaryLabelValue\":\"McGraw Communications\"}},{\"attributeHeader\":{\"labelValue\":\"McKenna Long & Aldridge\",\"primaryLabelValue\":\"McKenna Long & Aldridge\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Meadows Urquhart Acree & Cook\",\"primaryLabelValue\":\"Meadows Urquhart Acree & Cook\"}},{\"attributeHeader\":{\"labelValue\":\"Mechanical Reps\",\"primaryLabelValue\":\"Mechanical Reps\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MEDEX Global Solutions\",\"primaryLabelValue\":\"MEDEX Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"Medica HealthCare Plans\",\"primaryLabelValue\":\"Medica HealthCare Plans\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Emergency Professionals\",\"primaryLabelValue\":\"Medical Emergency Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Management Options\",\"primaryLabelValue\":\"Medical Management Options\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Solutions\",\"primaryLabelValue\":\"Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Transaction Billing\",\"primaryLabelValue\":\"Medical Transaction Billing\"}},{\"attributeHeader\":{\"labelValue\":\"MedSource\",\"primaryLabelValue\":\"MedSource\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"MEI Technologies\",\"primaryLabelValue\":\"MEI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Melink\",\"primaryLabelValue\":\"Melink\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Mentoring Minds\",\"primaryLabelValue\":\"Mentoring Minds\"}},{\"attributeHeader\":{\"labelValue\":\"Meras Engineering\",\"primaryLabelValue\":\"Meras Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Merced Systems\",\"primaryLabelValue\":\"Merced Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Services\",\"primaryLabelValue\":\"Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Home Mortgage\",\"primaryLabelValue\":\"Meridian Home Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Technologies\",\"primaryLabelValue\":\"Meridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Merrick Systems\",\"primaryLabelValue\":\"Merrick Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merrimak Capital\",\"primaryLabelValue\":\"Merrimak Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Merritt Group\",\"primaryLabelValue\":\"Merritt Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meta Pharmaceutical Services\",\"primaryLabelValue\":\"Meta Pharmaceutical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Metrokane\",\"primaryLabelValue\":\"Metrokane\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Microwize Technology\",\"primaryLabelValue\":\"Microwize Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Industrial Supply\",\"primaryLabelValue\":\"Midwest Industrial Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Milbank, Tweed, Hadley & McCloy\",\"primaryLabelValue\":\"Milbank, Tweed, Hadley & McCloy\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Communications Group\",\"primaryLabelValue\":\"Millennium Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Miller & Associates\",\"primaryLabelValue\":\"Miller & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Million Dollar Baby\",\"primaryLabelValue\":\"Million Dollar Baby\"}},{\"attributeHeader\":{\"labelValue\":\"Mimeo.com\",\"primaryLabelValue\":\"Mimeo.com\"}},{\"attributeHeader\":{\"labelValue\":\"MindLance\",\"primaryLabelValue\":\"MindLance\"}},{\"attributeHeader\":{\"labelValue\":\"Mindshare Technologies\",\"primaryLabelValue\":\"Mindshare Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"Mitratech\",\"primaryLabelValue\":\"Mitratech\"}},{\"attributeHeader\":{\"labelValue\":\"MNJ Technologies Direct\",\"primaryLabelValue\":\"MNJ Technologies Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Mobile One Courier & Logistics\",\"primaryLabelValue\":\"Mobile One Courier & Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MobilityWorks\",\"primaryLabelValue\":\"MobilityWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Molly Maid of Greater Austin Texas\",\"primaryLabelValue\":\"Molly Maid of Greater Austin Texas\"}},{\"attributeHeader\":{\"labelValue\":\"Momentum\",\"primaryLabelValue\":\"Momentum\"}},{\"attributeHeader\":{\"labelValue\":\"Mone't\",\"primaryLabelValue\":\"Mone't\"}},{\"attributeHeader\":{\"labelValue\":\"Money Clip Magazine\",\"primaryLabelValue\":\"Money Clip Magazine\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Montbleau & Associates\",\"primaryLabelValue\":\"Montbleau & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Moore Freight Service\",\"primaryLabelValue\":\"Moore Freight Service\"}},{\"attributeHeader\":{\"labelValue\":\"Morrison & Foerster\",\"primaryLabelValue\":\"Morrison & Foerster\"}},{\"attributeHeader\":{\"labelValue\":\"MotherNature.com\",\"primaryLabelValue\":\"MotherNature.com\"}},{\"attributeHeader\":{\"labelValue\":\"M-Pak\",\"primaryLabelValue\":\"M-Pak\"}},{\"attributeHeader\":{\"labelValue\":\"MRE Consulting\",\"primaryLabelValue\":\"MRE Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Multivision\",\"primaryLabelValue\":\"Multivision\"}},{\"attributeHeader\":{\"labelValue\":\"Murthy Law Firm\",\"primaryLabelValue\":\"Murthy Law Firm\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"MxSecure\",\"primaryLabelValue\":\"MxSecure\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Namifiers\",\"primaryLabelValue\":\"Namifiers\"}},{\"attributeHeader\":{\"labelValue\":\"Namtra Business Solutions\",\"primaryLabelValue\":\"Namtra Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"National Bankers Trust\",\"primaryLabelValue\":\"National Bankers Trust\"}},{\"attributeHeader\":{\"labelValue\":\"National Collegiate Scouting Association\",\"primaryLabelValue\":\"National Collegiate Scouting Association\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Ultrasound\",\"primaryLabelValue\":\"National Ultrasound\"}},{\"attributeHeader\":{\"labelValue\":\"NationLink Wireless\",\"primaryLabelValue\":\"NationLink Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Native Land Design\",\"primaryLabelValue\":\"Native Land Design\"}},{\"attributeHeader\":{\"labelValue\":\"NaturaLawn of America\",\"primaryLabelValue\":\"NaturaLawn of America\"}},{\"attributeHeader\":{\"labelValue\":\"Nautilus Environmental\",\"primaryLabelValue\":\"Nautilus Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Neace Lukens\",\"primaryLabelValue\":\"Neace Lukens\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Gamble & Associates\",\"primaryLabelValue\":\"Nelson Gamble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"NeoPhotonics\",\"primaryLabelValue\":\"NeoPhotonics\"}},{\"attributeHeader\":{\"labelValue\":\"Netchex\",\"primaryLabelValue\":\"Netchex\"}},{\"attributeHeader\":{\"labelValue\":\"NetConn Solutions\",\"primaryLabelValue\":\"NetConn Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"Network Hardware Resale\",\"primaryLabelValue\":\"Network Hardware Resale\"}},{\"attributeHeader\":{\"labelValue\":\"Network Outsource\",\"primaryLabelValue\":\"Network Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"NetworkIP\",\"primaryLabelValue\":\"NetworkIP\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"New Creature\",\"primaryLabelValue\":\"New Creature\"}},{\"attributeHeader\":{\"labelValue\":\"New Editions Consulting\",\"primaryLabelValue\":\"New Editions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"New Glarus Brewing\",\"primaryLabelValue\":\"New Glarus Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"NewBath\",\"primaryLabelValue\":\"NewBath\"}},{\"attributeHeader\":{\"labelValue\":\"Newmans Valves\",\"primaryLabelValue\":\"Newmans Valves\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexLevel Information Technology\",\"primaryLabelValue\":\"NexLevel Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Next Generation Wireless\",\"primaryLabelValue\":\"Next Generation Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Next Marketing\",\"primaryLabelValue\":\"Next Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Next Step Learning\",\"primaryLabelValue\":\"Next Step Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Nexum\",\"primaryLabelValue\":\"Nexum\"}},{\"attributeHeader\":{\"labelValue\":\"Nexus IS\",\"primaryLabelValue\":\"Nexus IS\"}},{\"attributeHeader\":{\"labelValue\":\"NGP Software\",\"primaryLabelValue\":\"NGP Software\"}},{\"attributeHeader\":{\"labelValue\":\"Nielsen-Kellerman\",\"primaryLabelValue\":\"Nielsen-Kellerman\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nixon Peabody\",\"primaryLabelValue\":\"Nixon Peabody\"}},{\"attributeHeader\":{\"labelValue\":\"n-Link\",\"primaryLabelValue\":\"n-Link\"}},{\"attributeHeader\":{\"labelValue\":\"NogginLabs\",\"primaryLabelValue\":\"NogginLabs\"}},{\"attributeHeader\":{\"labelValue\":\"Noodles & Company\",\"primaryLabelValue\":\"Noodles & Company\"}},{\"attributeHeader\":{\"labelValue\":\"North Shore Pediatric Therapy\",\"primaryLabelValue\":\"North Shore Pediatric Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"Northridge Systems\",\"primaryLabelValue\":\"Northridge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Crane Service\",\"primaryLabelValue\":\"Northwest Crane Service\"}},{\"attributeHeader\":{\"labelValue\":\"Nova Datacom\",\"primaryLabelValue\":\"Nova Datacom\"}},{\"attributeHeader\":{\"labelValue\":\"Novae\",\"primaryLabelValue\":\"Novae\"}},{\"attributeHeader\":{\"labelValue\":\"NovaVision\",\"primaryLabelValue\":\"NovaVision\"}},{\"attributeHeader\":{\"labelValue\":\"Novus Biologicals\",\"primaryLabelValue\":\"Novus Biologicals\"}},{\"attributeHeader\":{\"labelValue\":\"NRS\",\"primaryLabelValue\":\"NRS\"}},{\"attributeHeader\":{\"labelValue\":\"NT Concepts\",\"primaryLabelValue\":\"NT Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Nutrition S'Mart\",\"primaryLabelValue\":\"Nutrition S'Mart\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Nyhus Communications\",\"primaryLabelValue\":\"Nyhus Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OakTree Solutions\",\"primaryLabelValue\":\"OakTree Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Object CTalk\",\"primaryLabelValue\":\"Object CTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Observant\",\"primaryLabelValue\":\"Observant\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Oddcast\",\"primaryLabelValue\":\"Oddcast\"}},{\"attributeHeader\":{\"labelValue\":\"OfficePro\",\"primaryLabelValue\":\"OfficePro\"}},{\"attributeHeader\":{\"labelValue\":\"OfficeSource\",\"primaryLabelValue\":\"OfficeSource\"}},{\"attributeHeader\":{\"labelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\",\"primaryLabelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Ohio Power Tool\",\"primaryLabelValue\":\"Ohio Power Tool\"}},{\"attributeHeader\":{\"labelValue\":\"OmegaBlue\",\"primaryLabelValue\":\"OmegaBlue\"}},{\"attributeHeader\":{\"labelValue\":\"Omni Systems\",\"primaryLabelValue\":\"Omni Systems\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Systems\",\"primaryLabelValue\":\"One Stop Systems\"}},{\"attributeHeader\":{\"labelValue\":\"One to One Interactive\",\"primaryLabelValue\":\"One to One Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"OneCommand\",\"primaryLabelValue\":\"OneCommand\"}},{\"attributeHeader\":{\"labelValue\":\"OneNeck IT Services\",\"primaryLabelValue\":\"OneNeck IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Online Stores\",\"primaryLabelValue\":\"Online Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems International\",\"primaryLabelValue\":\"Open Systems International\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Systems\",\"primaryLabelValue\":\"Orbit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Organic Laboratories\",\"primaryLabelValue\":\"Organic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"OrthoBanc\",\"primaryLabelValue\":\"OrthoBanc\"}},{\"attributeHeader\":{\"labelValue\":\"Oscor\",\"primaryLabelValue\":\"Oscor\"}},{\"attributeHeader\":{\"labelValue\":\"OSi\",\"primaryLabelValue\":\"OSi\"}},{\"attributeHeader\":{\"labelValue\":\"OstermanCron\",\"primaryLabelValue\":\"OstermanCron\"}},{\"attributeHeader\":{\"labelValue\":\"Other World Computing\",\"primaryLabelValue\":\"Other World Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Travel Group\",\"primaryLabelValue\":\"Ovation Travel Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Dental Services\",\"primaryLabelValue\":\"Pacific Dental Services\"}},{\"attributeHeader\":{\"labelValue\":\"Page Southerland Page\",\"primaryLabelValue\":\"Page Southerland Page\"}},{\"attributeHeader\":{\"labelValue\":\"PainReliever.com\",\"primaryLabelValue\":\"PainReliever.com\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Papa Murphy's International\",\"primaryLabelValue\":\"Papa Murphy's International\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Paramore-Redd Online Marketing\",\"primaryLabelValue\":\"Paramore-Redd Online Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Parature\",\"primaryLabelValue\":\"Parature\"}},{\"attributeHeader\":{\"labelValue\":\"Parrish Services\",\"primaryLabelValue\":\"Parrish Services\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Consulting Services\",\"primaryLabelValue\":\"Partners Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Patton Boggs\",\"primaryLabelValue\":\"Patton Boggs\"}},{\"attributeHeader\":{\"labelValue\":\"PayChoice\",\"primaryLabelValue\":\"PayChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Alliance International\",\"primaryLabelValue\":\"Payment Alliance International\"}},{\"attributeHeader\":{\"labelValue\":\"PayReel\",\"primaryLabelValue\":\"PayReel\"}},{\"attributeHeader\":{\"labelValue\":\"Peaksware\",\"primaryLabelValue\":\"Peaksware\"}},{\"attributeHeader\":{\"labelValue\":\"Peek Packaging\",\"primaryLabelValue\":\"Peek Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Alliance\",\"primaryLabelValue\":\"Pegasus Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Pentadyne Power\",\"primaryLabelValue\":\"Pentadyne Power\"}},{\"attributeHeader\":{\"labelValue\":\"Perceptis\",\"primaryLabelValue\":\"Perceptis\"}},{\"attributeHeader\":{\"labelValue\":\"PercipEnz Technologies\",\"primaryLabelValue\":\"PercipEnz Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Media Group\",\"primaryLabelValue\":\"Performance Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins Coie\",\"primaryLabelValue\":\"Perkins Coie\"}},{\"attributeHeader\":{\"labelValue\":\"Personal Computer Systems\",\"primaryLabelValue\":\"Personal Computer Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Law\",\"primaryLabelValue\":\"Phoenix Law\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Manufacturing\",\"primaryLabelValue\":\"Phoenix Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Marketing International\",\"primaryLabelValue\":\"Phoenix Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Pilgrim Software\",\"primaryLabelValue\":\"Pilgrim Software\"}},{\"attributeHeader\":{\"labelValue\":\"Pinckney Hugo Group\",\"primaryLabelValue\":\"Pinckney Hugo Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Services\",\"primaryLabelValue\":\"Pinnacle Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Shoes\",\"primaryLabelValue\":\"Planet Shoes\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pleasant Hill Grain\",\"primaryLabelValue\":\"Pleasant Hill Grain\"}},{\"attributeHeader\":{\"labelValue\":\"PNT Marketing Services\",\"primaryLabelValue\":\"PNT Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Point Lighting\",\"primaryLabelValue\":\"Point Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Laboratories\",\"primaryLabelValue\":\"Polaris Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Popcorn Palace\",\"primaryLabelValue\":\"Popcorn Palace\"}},{\"attributeHeader\":{\"labelValue\":\"Portfolio Creative Staffing\",\"primaryLabelValue\":\"Portfolio Creative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Posh Boutique\",\"primaryLabelValue\":\"Posh Boutique\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Distribution\",\"primaryLabelValue\":\"Power Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Power Group\",\"primaryLabelValue\":\"Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Powertek\",\"primaryLabelValue\":\"Powertek\"}},{\"attributeHeader\":{\"labelValue\":\"Praetorian Group\",\"primaryLabelValue\":\"Praetorian Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie Quest Consulting\",\"primaryLabelValue\":\"Prairie Quest Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Development Services\",\"primaryLabelValue\":\"Precision Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Pipeline Solutions\",\"primaryLabelValue\":\"Precision Pipeline Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Care Partners\",\"primaryLabelValue\":\"Preferred Care Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Freezer Services\",\"primaryLabelValue\":\"Preferred Freezer Services\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Systems Solutions\",\"primaryLabelValue\":\"Preferred Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Healthcare Exchange\",\"primaryLabelValue\":\"Premier Healthcare Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Placement Media\",\"primaryLabelValue\":\"Premier Placement Media\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Presort Solutions\",\"primaryLabelValue\":\"Presort Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Primatics Financial\",\"primaryLabelValue\":\"Primatics Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Graphics\",\"primaryLabelValue\":\"Prime Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintGlobe\",\"primaryLabelValue\":\"PrintGlobe\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"PriveCo\",\"primaryLabelValue\":\"PriveCo\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Food Systems\",\"primaryLabelValue\":\"Pro Food Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ProCPR\",\"primaryLabelValue\":\"ProCPR\"}},{\"attributeHeader\":{\"labelValue\":\"Product Partners\",\"primaryLabelValue\":\"Product Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Production Robotics\",\"primaryLabelValue\":\"Production Robotics\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitFuel\",\"primaryLabelValue\":\"ProfitFuel\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Brand Proformance\",\"primaryLabelValue\":\"Proforma Brand Proformance\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma InPrint\",\"primaryLabelValue\":\"Proforma InPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Printed Images\",\"primaryLabelValue\":\"Proforma Printed Images\"}},{\"attributeHeader\":{\"labelValue\":\"Program Productions\",\"primaryLabelValue\":\"Program Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"ProKarma\",\"primaryLabelValue\":\"ProKarma\"}},{\"attributeHeader\":{\"labelValue\":\"ProMed Molded Products\",\"primaryLabelValue\":\"ProMed Molded Products\"}},{\"attributeHeader\":{\"labelValue\":\"ProPay\",\"primaryLabelValue\":\"ProPay\"}},{\"attributeHeader\":{\"labelValue\":\"Proskauer Rose\",\"primaryLabelValue\":\"Proskauer Rose\"}},{\"attributeHeader\":{\"labelValue\":\"ProSync\",\"primaryLabelValue\":\"ProSync\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ProTranslating\",\"primaryLabelValue\":\"ProTranslating\"}},{\"attributeHeader\":{\"labelValue\":\"PsiNapse Staffing\",\"primaryLabelValue\":\"PsiNapse Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Psyop\",\"primaryLabelValue\":\"Psyop\"}},{\"attributeHeader\":{\"labelValue\":\"Purple Wave Auction\",\"primaryLabelValue\":\"Purple Wave Auction\"}},{\"attributeHeader\":{\"labelValue\":\"PWR\",\"primaryLabelValue\":\"PWR\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSR Steel\",\"primaryLabelValue\":\"QSR Steel\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Health\",\"primaryLabelValue\":\"Quantum Health\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"QuinStreet\",\"primaryLabelValue\":\"QuinStreet\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rackmount Solutions\",\"primaryLabelValue\":\"Rackmount Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RagingWire Enterprise Solutions\",\"primaryLabelValue\":\"RagingWire Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Rainbow Station\",\"primaryLabelValue\":\"Rainbow Station\"}},{\"attributeHeader\":{\"labelValue\":\"Raining Rose\",\"primaryLabelValue\":\"Raining Rose\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Refill\",\"primaryLabelValue\":\"Rapid Refill\"}},{\"attributeHeader\":{\"labelValue\":\"Rauxa Direct\",\"primaryLabelValue\":\"Rauxa Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ravi's Import Warehouse\",\"primaryLabelValue\":\"Ravi's Import Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Razorleaf\",\"primaryLabelValue\":\"Razorleaf\"}},{\"attributeHeader\":{\"labelValue\":\"rbb Public Relations\",\"primaryLabelValue\":\"rbb Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Reaction Audio Visual\",\"primaryLabelValue\":\"Reaction Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Realty ONE Group\",\"primaryLabelValue\":\"Realty ONE Group\"}},{\"attributeHeader\":{\"labelValue\":\"Red F Marketing\",\"primaryLabelValue\":\"Red F Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Reed Smith\",\"primaryLabelValue\":\"Reed Smith\"}},{\"attributeHeader\":{\"labelValue\":\"Regent Bank\",\"primaryLabelValue\":\"Regent Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Regional Contracting Services\",\"primaryLabelValue\":\"Regional Contracting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Relay Express\",\"primaryLabelValue\":\"Relay Express\"}},{\"attributeHeader\":{\"labelValue\":\"Relectric\",\"primaryLabelValue\":\"Relectric\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Jet Maintenance\",\"primaryLabelValue\":\"Reliable Jet Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Respiratory\",\"primaryLabelValue\":\"Reliable Respiratory\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Software Resources\",\"primaryLabelValue\":\"Reliable Software Resources\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Rensselaer Honda\",\"primaryLabelValue\":\"Rensselaer Honda\"}},{\"attributeHeader\":{\"labelValue\":\"Rent a Coder\",\"primaryLabelValue\":\"Rent a Coder\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reply!\",\"primaryLabelValue\":\"Reply!\"}},{\"attributeHeader\":{\"labelValue\":\"Residential Finance\",\"primaryLabelValue\":\"Residential Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Re-Source Partners Asset Management\",\"primaryLabelValue\":\"Re-Source Partners Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Resourcesoft\",\"primaryLabelValue\":\"Resourcesoft\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"ReStockIt.com\",\"primaryLabelValue\":\"ReStockIt.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Media\",\"primaryLabelValue\":\"Restoration Media\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"rEvolution\",\"primaryLabelValue\":\"rEvolution\"}},{\"attributeHeader\":{\"labelValue\":\"Rey's Cleaners\",\"primaryLabelValue\":\"Rey's Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RideSafely.com\",\"primaryLabelValue\":\"RideSafely.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Medical Solutions\",\"primaryLabelValue\":\"Rising Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"River Road Asset Management\",\"primaryLabelValue\":\"River Road Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Riverside Manufacturing\",\"primaryLabelValue\":\"Riverside Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"RKA Petroleum Companies\",\"primaryLabelValue\":\"RKA Petroleum Companies\"}},{\"attributeHeader\":{\"labelValue\":\"RMCN Credit Services\",\"primaryLabelValue\":\"RMCN Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"RNB Technologies\",\"primaryLabelValue\":\"RNB Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Roamware\",\"primaryLabelValue\":\"Roamware\"}},{\"attributeHeader\":{\"labelValue\":\"RockBottomGolf.com\",\"primaryLabelValue\":\"RockBottomGolf.com\"}},{\"attributeHeader\":{\"labelValue\":\"Roman Fountains\",\"primaryLabelValue\":\"Roman Fountains\"}},{\"attributeHeader\":{\"labelValue\":\"Root Design\",\"primaryLabelValue\":\"Root Design\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Rosetta\",\"primaryLabelValue\":\"Rosetta\"}},{\"attributeHeader\":{\"labelValue\":\"Roxbury Technology\",\"primaryLabelValue\":\"Roxbury Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Document Destruction\",\"primaryLabelValue\":\"Royal Document Destruction\"}},{\"attributeHeader\":{\"labelValue\":\"RuffaloCODY\",\"primaryLabelValue\":\"RuffaloCODY\"}},{\"attributeHeader\":{\"labelValue\":\"Ryonet\",\"primaryLabelValue\":\"Ryonet\"}},{\"attributeHeader\":{\"labelValue\":\"Sabot Technologies\",\"primaryLabelValue\":\"Sabot Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sabre Industries\",\"primaryLabelValue\":\"Sabre Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Sacred Power\",\"primaryLabelValue\":\"Sacred Power\"}},{\"attributeHeader\":{\"labelValue\":\"SADA Systems\",\"primaryLabelValue\":\"SADA Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SafeMart\",\"primaryLabelValue\":\"SafeMart\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sagient Research Systems\",\"primaryLabelValue\":\"Sagient Research Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Salem Printing\",\"primaryLabelValue\":\"Salem Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Salesify\",\"primaryLabelValue\":\"Salesify\"}},{\"attributeHeader\":{\"labelValue\":\"SAM Medical Products\",\"primaryLabelValue\":\"SAM Medical Products\"}},{\"attributeHeader\":{\"labelValue\":\"SamsonBrands\",\"primaryLabelValue\":\"SamsonBrands\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Satcom Resources\",\"primaryLabelValue\":\"Satcom Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Satuit Technologies\",\"primaryLabelValue\":\"Satuit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saveology.com\",\"primaryLabelValue\":\"Saveology.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savi Technologies\",\"primaryLabelValue\":\"Savi Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Sawgrass Asset Management\",\"primaryLabelValue\":\"Sawgrass Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Schaeffer Manufacturing\",\"primaryLabelValue\":\"Schaeffer Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Schneider Associates\",\"primaryLabelValue\":\"Schneider Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Schwartz Benefit Services\",\"primaryLabelValue\":\"Schwartz Benefit Services\"}},{\"attributeHeader\":{\"labelValue\":\"SciQuest\",\"primaryLabelValue\":\"SciQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Scivantage\",\"primaryLabelValue\":\"Scivantage\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Metal Services\",\"primaryLabelValue\":\"Scrap Metal Services\"}},{\"attributeHeader\":{\"labelValue\":\"ScriptSave\",\"primaryLabelValue\":\"ScriptSave\"}},{\"attributeHeader\":{\"labelValue\":\"SEA Corp\",\"primaryLabelValue\":\"SEA Corp\"}},{\"attributeHeader\":{\"labelValue\":\"SeatAdvisor\",\"primaryLabelValue\":\"SeatAdvisor\"}},{\"attributeHeader\":{\"labelValue\":\"See Jane Run\",\"primaryLabelValue\":\"See Jane Run\"}},{\"attributeHeader\":{\"labelValue\":\"See Kai Run\",\"primaryLabelValue\":\"See Kai Run\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sena Cases\",\"primaryLabelValue\":\"Sena Cases\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Sensatronics\",\"primaryLabelValue\":\"Sensatronics\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sentinel Fence\",\"primaryLabelValue\":\"Sentinel Fence\"}},{\"attributeHeader\":{\"labelValue\":\"SentriLock\",\"primaryLabelValue\":\"SentriLock\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"Sew What?\",\"primaryLabelValue\":\"Sew What?\"}},{\"attributeHeader\":{\"labelValue\":\"Shearer & Associates\",\"primaryLabelValue\":\"Shearer & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Sherri May & Company\",\"primaryLabelValue\":\"Sherri May & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Shift Global\",\"primaryLabelValue\":\"Shift Global\"}},{\"attributeHeader\":{\"labelValue\":\"ShoppersChoice.com\",\"primaryLabelValue\":\"ShoppersChoice.com\"}},{\"attributeHeader\":{\"labelValue\":\"SHW Group\",\"primaryLabelValue\":\"SHW Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Sign-A-Rama Greensboro\",\"primaryLabelValue\":\"Sign-A-Rama Greensboro\"}},{\"attributeHeader\":{\"labelValue\":\"Signature HealthCARE\",\"primaryLabelValue\":\"Signature HealthCARE\"}},{\"attributeHeader\":{\"labelValue\":\"Silverado\",\"primaryLabelValue\":\"Silverado\"}},{\"attributeHeader\":{\"labelValue\":\"Simplion Technologies\",\"primaryLabelValue\":\"Simplion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Thacher & Bartlett\",\"primaryLabelValue\":\"Simpson Thacher & Bartlett\"}},{\"attributeHeader\":{\"labelValue\":\"Siteworx\",\"primaryLabelValue\":\"Siteworx\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skyline DFW Exhibits & Graphics\",\"primaryLabelValue\":\"Skyline DFW Exhibits & Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"SLR Contracting & Service\",\"primaryLabelValue\":\"SLR Contracting & Service\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Lines\",\"primaryLabelValue\":\"Smart Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SMSi\",\"primaryLabelValue\":\"SMSi\"}},{\"attributeHeader\":{\"labelValue\":\"Smuka Trading\",\"primaryLabelValue\":\"Smuka Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Snell & Wilmer\",\"primaryLabelValue\":\"Snell & Wilmer\"}},{\"attributeHeader\":{\"labelValue\":\"SNtial Technologies\",\"primaryLabelValue\":\"SNtial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SOAProjects\",\"primaryLabelValue\":\"SOAProjects\"}},{\"attributeHeader\":{\"labelValue\":\"SofTec Solutions\",\"primaryLabelValue\":\"SofTec Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SolidSignal.com\",\"primaryLabelValue\":\"SolidSignal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonnenschein Nath & Rosenthal\",\"primaryLabelValue\":\"Sonnenschein Nath & Rosenthal\"}},{\"attributeHeader\":{\"labelValue\":\"Souplantation / Sweet Tomatoes\",\"primaryLabelValue\":\"Souplantation / Sweet Tomatoes\"}},{\"attributeHeader\":{\"labelValue\":\"South Miami Pharmacy\",\"primaryLabelValue\":\"South Miami Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"SouthData\",\"primaryLabelValue\":\"SouthData\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Light\",\"primaryLabelValue\":\"Southern Light\"}},{\"attributeHeader\":{\"labelValue\":\"Southland Technology\",\"primaryLabelValue\":\"Southland Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Special T's\",\"primaryLabelValue\":\"Special T's\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Direct\",\"primaryLabelValue\":\"Spectrum Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spiech Farms\",\"primaryLabelValue\":\"Spiech Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Spohn Ranch\",\"primaryLabelValue\":\"Spohn Ranch\"}},{\"attributeHeader\":{\"labelValue\":\"SQA Services\",\"primaryLabelValue\":\"SQA Services\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Squeaky Wheel Media\",\"primaryLabelValue\":\"Squeaky Wheel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stafford Associates Computer Specialists\",\"primaryLabelValue\":\"Stafford Associates Computer Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"StarchTech\",\"primaryLabelValue\":\"StarchTech\"}},{\"attributeHeader\":{\"labelValue\":\"Stark Excavating\",\"primaryLabelValue\":\"Stark Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Starlite Productions\",\"primaryLabelValue\":\"Starlite Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Starmount Life Insurance\",\"primaryLabelValue\":\"Starmount Life Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StemCyte\",\"primaryLabelValue\":\"StemCyte\"}},{\"attributeHeader\":{\"labelValue\":\"STEMTech International\",\"primaryLabelValue\":\"STEMTech International\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Commerce Group\",\"primaryLabelValue\":\"Sterling Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Communications\",\"primaryLabelValue\":\"Sterling Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Stinger Ghaffarian Technologies\",\"primaryLabelValue\":\"Stinger Ghaffarian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Stop Aging Now\",\"primaryLabelValue\":\"Stop Aging Now\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stream\",\"primaryLabelValue\":\"Stream\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"StudyPoint\",\"primaryLabelValue\":\"StudyPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan & Cromwell\",\"primaryLabelValue\":\"Sullivan & Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SVTronics\",\"primaryLabelValue\":\"SVTronics\"}},{\"attributeHeader\":{\"labelValue\":\"SweeDee\",\"primaryLabelValue\":\"SweeDee\"}},{\"attributeHeader\":{\"labelValue\":\"SwipeClock\",\"primaryLabelValue\":\"SwipeClock\"}},{\"attributeHeader\":{\"labelValue\":\"Sword & Shield Enterprise Security\",\"primaryLabelValue\":\"Sword & Shield Enterprise Security\"}},{\"attributeHeader\":{\"labelValue\":\"Sydor Instruments\",\"primaryLabelValue\":\"Sydor Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Synergistix\",\"primaryLabelValue\":\"Synergistix\"}},{\"attributeHeader\":{\"labelValue\":\"Synoptek\",\"primaryLabelValue\":\"Synoptek\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Integration & Development\",\"primaryLabelValue\":\"Systems Integration & Development\"}},{\"attributeHeader\":{\"labelValue\":\"T2 International\",\"primaryLabelValue\":\"T2 International\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Taradel\",\"primaryLabelValue\":\"Taradel\"}},{\"attributeHeader\":{\"labelValue\":\"Tarte\",\"primaryLabelValue\":\"Tarte\"}},{\"attributeHeader\":{\"labelValue\":\"TBJ\",\"primaryLabelValue\":\"TBJ\"}},{\"attributeHeader\":{\"labelValue\":\"Team Clean\",\"primaryLabelValue\":\"Team Clean\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Resouces\",\"primaryLabelValue\":\"Tech Resouces\"}},{\"attributeHeader\":{\"labelValue\":\"TechFlow\",\"primaryLabelValue\":\"TechFlow\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Communities\",\"primaryLabelValue\":\"Technical Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Resource Center of America\",\"primaryLabelValue\":\"Technology Resource Center of America\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Support\",\"primaryLabelValue\":\"Technology Support\"}},{\"attributeHeader\":{\"labelValue\":\"Techno-Sciences\",\"primaryLabelValue\":\"Techno-Sciences\"}},{\"attributeHeader\":{\"labelValue\":\"Teddy's Transportation System\",\"primaryLabelValue\":\"Teddy's Transportation System\"}},{\"attributeHeader\":{\"labelValue\":\"TeleContact Resource Services\",\"primaryLabelValue\":\"TeleContact Resource Services\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"TelePacific Communications\",\"primaryLabelValue\":\"TelePacific Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Telescope\",\"primaryLabelValue\":\"Telescope\"}},{\"attributeHeader\":{\"labelValue\":\"TeleTracking Technologies\",\"primaryLabelValue\":\"TeleTracking Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tenacity Solutions\",\"primaryLabelValue\":\"Tenacity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TengoInternet\",\"primaryLabelValue\":\"TengoInternet\"}},{\"attributeHeader\":{\"labelValue\":\"Tenmast Software\",\"primaryLabelValue\":\"Tenmast Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tenrox\",\"primaryLabelValue\":\"Tenrox\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Terralever\",\"primaryLabelValue\":\"Terralever\"}},{\"attributeHeader\":{\"labelValue\":\"The Analysis Group\",\"primaryLabelValue\":\"The Analysis Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Beryl Companies\",\"primaryLabelValue\":\"The Beryl Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Booksource\",\"primaryLabelValue\":\"The Booksource\"}},{\"attributeHeader\":{\"labelValue\":\"The Brookeside Group\",\"primaryLabelValue\":\"The Brookeside Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Buckner Company\",\"primaryLabelValue\":\"The Buckner Company\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Cellular Connection\",\"primaryLabelValue\":\"The Cellular Connection\"}},{\"attributeHeader\":{\"labelValue\":\"The Computer Company\",\"primaryLabelValue\":\"The Computer Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Dentist's Choice\",\"primaryLabelValue\":\"The Dentist's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"The Ellison Nursing Group\",\"primaryLabelValue\":\"The Ellison Nursing Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Express Design Group\",\"primaryLabelValue\":\"The Express Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Hub Meeting and Event Centers\",\"primaryLabelValue\":\"The Hub Meeting and Event Centers\"}},{\"attributeHeader\":{\"labelValue\":\"The Human Resource Consulting Group\",\"primaryLabelValue\":\"The Human Resource Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"The I.T. Pros\",\"primaryLabelValue\":\"The I.T. Pros\"}},{\"attributeHeader\":{\"labelValue\":\"The Judge Group\",\"primaryLabelValue\":\"The Judge Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Launch Pad\",\"primaryLabelValue\":\"The Launch Pad\"}},{\"attributeHeader\":{\"labelValue\":\"The Learning House\",\"primaryLabelValue\":\"The Learning House\"}},{\"attributeHeader\":{\"labelValue\":\"The LiRo Group\",\"primaryLabelValue\":\"The LiRo Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Macaluso Group\",\"primaryLabelValue\":\"The Macaluso Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mortgage Group\",\"primaryLabelValue\":\"The Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mosaic Company\",\"primaryLabelValue\":\"The Mosaic Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Mutual Fund Store\",\"primaryLabelValue\":\"The Mutual Fund Store\"}},{\"attributeHeader\":{\"labelValue\":\"The Plaza Group\",\"primaryLabelValue\":\"The Plaza Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pond Guy\",\"primaryLabelValue\":\"The Pond Guy\"}},{\"attributeHeader\":{\"labelValue\":\"The Queensboro Shirt Company\",\"primaryLabelValue\":\"The Queensboro Shirt Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Refuge-A Healing Place\",\"primaryLabelValue\":\"The Refuge-A Healing Place\"}},{\"attributeHeader\":{\"labelValue\":\"The Squires Group\",\"primaryLabelValue\":\"The Squires Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Truland Group\",\"primaryLabelValue\":\"The Truland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Twister Group\",\"primaryLabelValue\":\"The Twister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Watchery\",\"primaryLabelValue\":\"The Watchery\"}},{\"attributeHeader\":{\"labelValue\":\"Think Finance\",\"primaryLabelValue\":\"Think Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Thomas G. Gallagher\",\"primaryLabelValue\":\"Thomas G. Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Coburn\",\"primaryLabelValue\":\"Thompson Coburn\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Hine\",\"primaryLabelValue\":\"Thompson Hine\"}},{\"attributeHeader\":{\"labelValue\":\"Thoroughbred Research Group\",\"primaryLabelValue\":\"Thoroughbred Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TMC Orthopedic\",\"primaryLabelValue\":\"TMC Orthopedic\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"Toolmex\",\"primaryLabelValue\":\"Toolmex\"}},{\"attributeHeader\":{\"labelValue\":\"TOPCON\",\"primaryLabelValue\":\"TOPCON\"}},{\"attributeHeader\":{\"labelValue\":\"Topline Products\",\"primaryLabelValue\":\"Topline Products\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tortuga Rum Cake\",\"primaryLabelValue\":\"Tortuga Rum Cake\"}},{\"attributeHeader\":{\"labelValue\":\"Total Mortgage Services\",\"primaryLabelValue\":\"Total Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Touchstone Wireless\",\"primaryLabelValue\":\"Touchstone Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Toys\\\"R\",\"primaryLabelValue\":\"Toys\\\"R\"}},{\"attributeHeader\":{\"labelValue\":\"Traction\",\"primaryLabelValue\":\"Traction\"}},{\"attributeHeader\":{\"labelValue\":\"Traffic and Parking Control\",\"primaryLabelValue\":\"Traffic and Parking Control\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Transnational Foods\",\"primaryLabelValue\":\"Transnational Foods\"}},{\"attributeHeader\":{\"labelValue\":\"TravelClick\",\"primaryLabelValue\":\"TravelClick\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"TreadmillDoctor.com\",\"primaryLabelValue\":\"TreadmillDoctor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Trend Personnel Services\",\"primaryLabelValue\":\"Trend Personnel Services\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Marketing\",\"primaryLabelValue\":\"Trident Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Trims Unlimited\",\"primaryLabelValue\":\"Trims Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Sterile\",\"primaryLabelValue\":\"Trinity Sterile\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TriTech Software Systems\",\"primaryLabelValue\":\"TriTech Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Triton Pacific Capital Partners\",\"primaryLabelValue\":\"Triton Pacific Capital Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Troutman Sanders\",\"primaryLabelValue\":\"Troutman Sanders\"}},{\"attributeHeader\":{\"labelValue\":\"Truck Lease Services\",\"primaryLabelValue\":\"Truck Lease Services\"}},{\"attributeHeader\":{\"labelValue\":\"True Fabrications\",\"primaryLabelValue\":\"True Fabrications\"}},{\"attributeHeader\":{\"labelValue\":\"Truevance Management\",\"primaryLabelValue\":\"Truevance Management\"}},{\"attributeHeader\":{\"labelValue\":\"TRUSTe\",\"primaryLabelValue\":\"TRUSTe\"}},{\"attributeHeader\":{\"labelValue\":\"TSL Staff Leasing\",\"primaryLabelValue\":\"TSL Staff Leasing\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"TWR Lighting\",\"primaryLabelValue\":\"TWR Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"TyrrellTech\",\"primaryLabelValue\":\"TyrrellTech\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Energy Services\",\"primaryLabelValue\":\"U.S. Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"UberPrints.com\",\"primaryLabelValue\":\"UberPrints.com\"}},{\"attributeHeader\":{\"labelValue\":\"Uckele Health & Nutrition\",\"primaryLabelValue\":\"Uckele Health & Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underground Printing\",\"primaryLabelValue\":\"Underground Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Understand.com\",\"primaryLabelValue\":\"Understand.com\"}},{\"attributeHeader\":{\"labelValue\":\"Unicon International\",\"primaryLabelValue\":\"Unicon International\"}},{\"attributeHeader\":{\"labelValue\":\"Uniflex Church Furnishings\",\"primaryLabelValue\":\"Uniflex Church Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United National Consumer Suppliers\",\"primaryLabelValue\":\"United National Consumer Suppliers\"}},{\"attributeHeader\":{\"labelValue\":\"United States Homeland Investigations\",\"primaryLabelValue\":\"United States Homeland Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"United Technology Group\",\"primaryLabelValue\":\"United Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Environmental Consulting\",\"primaryLabelValue\":\"Universal Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Wiring\",\"primaryLabelValue\":\"Universal Wiring\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"Unlimited Furniture Group\",\"primaryLabelValue\":\"Unlimited Furniture Group\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Shredding\",\"primaryLabelValue\":\"Upstate Shredding\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Science\",\"primaryLabelValue\":\"Urban Science\"}},{\"attributeHeader\":{\"labelValue\":\"UrsaNav\",\"primaryLabelValue\":\"UrsaNav\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"User Centric\",\"primaryLabelValue\":\"User Centric\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"V.L.S Systems\",\"primaryLabelValue\":\"V.L.S Systems\"}},{\"attributeHeader\":{\"labelValue\":\"V2 Systems\",\"primaryLabelValue\":\"V2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaco\",\"primaryLabelValue\":\"Vaco\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ValueCentric Marketing Group\",\"primaryLabelValue\":\"ValueCentric Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vantage Hospitality Group\",\"primaryLabelValue\":\"Vantage Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Vedder, Price, Kaufman & Kammholz\",\"primaryLabelValue\":\"Vedder, Price, Kaufman & Kammholz\"}},{\"attributeHeader\":{\"labelValue\":\"Venator Holdings\",\"primaryLabelValue\":\"Venator Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Venn Strategies\",\"primaryLabelValue\":\"Venn Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Versacom\",\"primaryLabelValue\":\"Versacom\"}},{\"attributeHeader\":{\"labelValue\":\"Verteks Consulting\",\"primaryLabelValue\":\"Verteks Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"VideoLink\",\"primaryLabelValue\":\"VideoLink\"}},{\"attributeHeader\":{\"labelValue\":\"VIPdesk\",\"primaryLabelValue\":\"VIPdesk\"}},{\"attributeHeader\":{\"labelValue\":\"Virtue Group\",\"primaryLabelValue\":\"Virtue Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vision Technologies\",\"primaryLabelValue\":\"Vision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Painting Services\",\"primaryLabelValue\":\"Visionary Painting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visiting Angels\",\"primaryLabelValue\":\"Visiting Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Visix\",\"primaryLabelValue\":\"Visix\"}},{\"attributeHeader\":{\"labelValue\":\"VitalSmarts\",\"primaryLabelValue\":\"VitalSmarts\"}},{\"attributeHeader\":{\"labelValue\":\"VLS Recovery Services\",\"primaryLabelValue\":\"VLS Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"Voce Communications\",\"primaryLabelValue\":\"Voce Communications\"}},{\"attributeHeader\":{\"labelValue\":\"VoIP Logic\",\"primaryLabelValue\":\"VoIP Logic\"}},{\"attributeHeader\":{\"labelValue\":\"W.L. French Excavating\",\"primaryLabelValue\":\"W.L. French Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Wachtell, Lipton, Rosen & Katz\",\"primaryLabelValue\":\"Wachtell, Lipton, Rosen & Katz\"}},{\"attributeHeader\":{\"labelValue\":\"WageWorks\",\"primaryLabelValue\":\"WageWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Warren & Baerg Manufacturing\",\"primaryLabelValue\":\"Warren & Baerg Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"We R Memory Keepers\",\"primaryLabelValue\":\"We R Memory Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"WebCollage\",\"primaryLabelValue\":\"WebCollage\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"Wellington Technologies\",\"primaryLabelValue\":\"Wellington Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Wellpartner\",\"primaryLabelValue\":\"Wellpartner\"}},{\"attributeHeader\":{\"labelValue\":\"Wendoh Media\",\"primaryLabelValue\":\"Wendoh Media\"}},{\"attributeHeader\":{\"labelValue\":\"Western Wats\",\"primaryLabelValue\":\"Western Wats\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Security\",\"primaryLabelValue\":\"Whelan Security\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wholesale Food Equipment\",\"primaryLabelValue\":\"Wholesale Food Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Williams Mullen\",\"primaryLabelValue\":\"Williams Mullen\"}},{\"attributeHeader\":{\"labelValue\":\"Willkie Farr Gallagher\",\"primaryLabelValue\":\"Willkie Farr Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Wilmer Cutler Pickering Hale and Dorr\",\"primaryLabelValue\":\"Wilmer Cutler Pickering Hale and Dorr\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Associates\",\"primaryLabelValue\":\"Wilson Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Winco\",\"primaryLabelValue\":\"Winco\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Wire\",\"primaryLabelValue\":\"Windy City Wire\"}},{\"attributeHeader\":{\"labelValue\":\"Winning Strategies ITS\",\"primaryLabelValue\":\"Winning Strategies ITS\"}},{\"attributeHeader\":{\"labelValue\":\"Winston & Strawn\",\"primaryLabelValue\":\"Winston & Strawn\"}},{\"attributeHeader\":{\"labelValue\":\"Wongdoody\",\"primaryLabelValue\":\"Wongdoody\"}},{\"attributeHeader\":{\"labelValue\":\"WorkForce Software\",\"primaryLabelValue\":\"WorkForce Software\"}},{\"attributeHeader\":{\"labelValue\":\"World Pac Paper\",\"primaryLabelValue\":\"World Pac Paper\"}},{\"attributeHeader\":{\"labelValue\":\"WorldVentures\",\"primaryLabelValue\":\"WorldVentures\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Xcentric\",\"primaryLabelValue\":\"Xcentric\"}},{\"attributeHeader\":{\"labelValue\":\"Xelleration\",\"primaryLabelValue\":\"Xelleration\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"XT Global\",\"primaryLabelValue\":\"XT Global\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YOR Health\",\"primaryLabelValue\":\"YOR Health\"}},{\"attributeHeader\":{\"labelValue\":\"York Telecom\",\"primaryLabelValue\":\"York Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Youngsoft\",\"primaryLabelValue\":\"Youngsoft\"}},{\"attributeHeader\":{\"labelValue\":\"YU & Associates\",\"primaryLabelValue\":\"YU & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Zahava Group\",\"primaryLabelValue\":\"Zahava Group\"}},{\"attributeHeader\":{\"labelValue\":\"ZapTel\",\"primaryLabelValue\":\"ZapTel\"}},{\"attributeHeader\":{\"labelValue\":\"ZeroChaos\",\"primaryLabelValue\":\"ZeroChaos\"}},{\"attributeHeader\":{\"labelValue\":\"Zia Engineering & Environmental Consultants\",\"primaryLabelValue\":\"Zia Engineering & Environmental Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Zipcar\",\"primaryLabelValue\":\"Zipcar\"}},{\"attributeHeader\":{\"labelValue\":\"Zther Interactive\",\"primaryLabelValue\":\"Zther Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"614 Media Group\",\"primaryLabelValue\":\"614 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Planning\",\"primaryLabelValue\":\"Adaptive Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"AIT Laboratories\",\"primaryLabelValue\":\"AIT Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"AK Environmental\",\"primaryLabelValue\":\"AK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambit Energy\",\"primaryLabelValue\":\"Ambit Energy\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"Ampcus\",\"primaryLabelValue\":\"Ampcus\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Animax Entertainment\",\"primaryLabelValue\":\"Animax Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"Anulex Technologies\",\"primaryLabelValue\":\"Anulex Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"APEXteriors\",\"primaryLabelValue\":\"APEXteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Array Information Technology\",\"primaryLabelValue\":\"Array Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"AutoRevo\",\"primaryLabelValue\":\"AutoRevo\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalara\",\"primaryLabelValue\":\"Avalara\"}},{\"attributeHeader\":{\"labelValue\":\"AvantLink.com\",\"primaryLabelValue\":\"AvantLink.com\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Avian Engineering\",\"primaryLabelValue\":\"Avian Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Axom Technologies\",\"primaryLabelValue\":\"Axom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bill Bartmann Enterprises\",\"primaryLabelValue\":\"Bill Bartmann Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birds Barbershop\",\"primaryLabelValue\":\"Birds Barbershop\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Crest Communities\",\"primaryLabelValue\":\"Campus Crest Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Canon Recruiting Group\",\"primaryLabelValue\":\"Canon Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carbonite\",\"primaryLabelValue\":\"Carbonite\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CareNet\",\"primaryLabelValue\":\"CareNet\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Consultants\",\"primaryLabelValue\":\"Catapult Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy\",\"primaryLabelValue\":\"Cenergy\"}},{\"attributeHeader\":{\"labelValue\":\"CFN Services\",\"primaryLabelValue\":\"CFN Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Progress\",\"primaryLabelValue\":\"Children's Progress\"}},{\"attributeHeader\":{\"labelValue\":\"ChiroNET\",\"primaryLabelValue\":\"ChiroNET\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ciplex\",\"primaryLabelValue\":\"Ciplex\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"CleanScapes\",\"primaryLabelValue\":\"CleanScapes\"}},{\"attributeHeader\":{\"labelValue\":\"clearAvenue\",\"primaryLabelValue\":\"clearAvenue\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Construction and Service Solutions\",\"primaryLabelValue\":\"Construction and Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour\",\"primaryLabelValue\":\"Contour\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis Services\",\"primaryLabelValue\":\"Crowe Paradis Services\"}},{\"attributeHeader\":{\"labelValue\":\"CSS Distribution Group\",\"primaryLabelValue\":\"CSS Distribution Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cube 3 Studio\",\"primaryLabelValue\":\"Cube 3 Studio\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debt Free Associates\",\"primaryLabelValue\":\"Debt Free Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Deep Water Point\",\"primaryLabelValue\":\"Deep Water Point\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Disaster Services\",\"primaryLabelValue\":\"Delta Disaster Services\"}},{\"attributeHeader\":{\"labelValue\":\"Deluxe Marketing\",\"primaryLabelValue\":\"Deluxe Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Demandforce\",\"primaryLabelValue\":\"Demandforce\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dialogue Marketing\",\"primaryLabelValue\":\"Dialogue Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Mind\",\"primaryLabelValue\":\"Diamond Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Digispace Solutions\",\"primaryLabelValue\":\"Digispace Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Advertising\",\"primaryLabelValue\":\"Digital Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Communications\",\"primaryLabelValue\":\"Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Exteriors\",\"primaryLabelValue\":\"Direct Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DrillSpot.com\",\"primaryLabelValue\":\"DrillSpot.com\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"EasySeat\",\"primaryLabelValue\":\"EasySeat\"}},{\"attributeHeader\":{\"labelValue\":\"EDC Consulting\",\"primaryLabelValue\":\"EDC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"EffectiveUI\",\"primaryLabelValue\":\"EffectiveUI\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EmoryDay\",\"primaryLabelValue\":\"EmoryDay\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empyrean Services\",\"primaryLabelValue\":\"Empyrean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Ensurity Group\",\"primaryLabelValue\":\"Ensurity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Software Deployment\",\"primaryLabelValue\":\"Enterprise Software Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSolution Architects\",\"primaryLabelValue\":\"eSolution Architects\"}},{\"attributeHeader\":{\"labelValue\":\"eVisibility\",\"primaryLabelValue\":\"eVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"EVO2\",\"primaryLabelValue\":\"EVO2\"}},{\"attributeHeader\":{\"labelValue\":\"Exceptional Risk Advisors\",\"primaryLabelValue\":\"Exceptional Risk Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"FitnessRepairParts.com\",\"primaryLabelValue\":\"FitnessRepairParts.com\"}},{\"attributeHeader\":{\"labelValue\":\"FlexPrint\",\"primaryLabelValue\":\"FlexPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"FM Facility Maintenance\",\"primaryLabelValue\":\"FM Facility Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"FortuneBuilders\",\"primaryLabelValue\":\"FortuneBuilders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"FriendFinder Networks\",\"primaryLabelValue\":\"FriendFinder Networks\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"FundingUniverse\",\"primaryLabelValue\":\"FundingUniverse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Future Ads\",\"primaryLabelValue\":\"Future Ads\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"GlowTouch Technologies\",\"primaryLabelValue\":\"GlowTouch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harkcon\",\"primaryLabelValue\":\"Harkcon\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Resource Network\",\"primaryLabelValue\":\"Healthcare Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"HealthE Goods\",\"primaryLabelValue\":\"HealthE Goods\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS\",\"primaryLabelValue\":\"HMS\"}},{\"attributeHeader\":{\"labelValue\":\"Homeland HealthCare\",\"primaryLabelValue\":\"Homeland HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"IndiSoft\",\"primaryLabelValue\":\"IndiSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"InGenesis Diversified Healthcare Solutions\",\"primaryLabelValue\":\"InGenesis Diversified Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"InMage Systems\",\"primaryLabelValue\":\"InMage Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"InsuranceAgents.com\",\"primaryLabelValue\":\"InsuranceAgents.com\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Medical Solutions\",\"primaryLabelValue\":\"Integrated Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Secure\",\"primaryLabelValue\":\"Integrated Secure\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"InterGroup International\",\"primaryLabelValue\":\"InterGroup International\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"Involta\",\"primaryLabelValue\":\"Involta\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"ISR Group\",\"primaryLabelValue\":\"ISR Group\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"Jacob Tyler Creative Group\",\"primaryLabelValue\":\"Jacob Tyler Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JLab Audio\",\"primaryLabelValue\":\"JLab Audio\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"JVista\",\"primaryLabelValue\":\"JVista\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"Kinnser Software\",\"primaryLabelValue\":\"Kinnser Software\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Point Systems\",\"primaryLabelValue\":\"Knight Point Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"LeadQual\",\"primaryLabelValue\":\"LeadQual\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeStreet Media\",\"primaryLabelValue\":\"LifeStreet Media\"}},{\"attributeHeader\":{\"labelValue\":\"Listen Up Espanol\",\"primaryLabelValue\":\"Listen Up Espanol\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location Labs\",\"primaryLabelValue\":\"Location Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LoyaltyExpress\",\"primaryLabelValue\":\"LoyaltyExpress\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Magic Logix\",\"primaryLabelValue\":\"Magic Logix\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Marathon Consulting\",\"primaryLabelValue\":\"Marathon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaxLinear\",\"primaryLabelValue\":\"MaxLinear\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCG\",\"primaryLabelValue\":\"MCG\"}},{\"attributeHeader\":{\"labelValue\":\"McKean Defense Group\",\"primaryLabelValue\":\"McKean Defense Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"ModCloth\",\"primaryLabelValue\":\"ModCloth\"}},{\"attributeHeader\":{\"labelValue\":\"MonoPrice.com\",\"primaryLabelValue\":\"MonoPrice.com\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Morton Consulting\",\"primaryLabelValue\":\"Morton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mpire\",\"primaryLabelValue\":\"Mpire\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NetSteps\",\"primaryLabelValue\":\"NetSteps\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexAge Technologies USA\",\"primaryLabelValue\":\"NexAge Technologies USA\"}},{\"attributeHeader\":{\"labelValue\":\"NextDocs\",\"primaryLabelValue\":\"NextDocs\"}},{\"attributeHeader\":{\"labelValue\":\"NIKA Technologies\",\"primaryLabelValue\":\"NIKA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NorAm International Partners\",\"primaryLabelValue\":\"NorAm International Partners\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Business and Property Brokers\",\"primaryLabelValue\":\"NorthStar Business and Property Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"NPE\",\"primaryLabelValue\":\"NPE\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Supply & Trade\",\"primaryLabelValue\":\"Oasis Supply & Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Octo Consulting Group\",\"primaryLabelValue\":\"Octo Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Strategix\",\"primaryLabelValue\":\"Optimal Strategix\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OtterBox\",\"primaryLabelValue\":\"OtterBox\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partnership Capital Growth Advisors\",\"primaryLabelValue\":\"Partnership Capital Growth Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"People To My Site\",\"primaryLabelValue\":\"People To My Site\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"PetPlace.com\",\"primaryLabelValue\":\"PetPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Phase One Consulting Group\",\"primaryLabelValue\":\"Phase One Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Physique 57\",\"primaryLabelValue\":\"Physique 57\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"PlumChoice\",\"primaryLabelValue\":\"PlumChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintPlace.com\",\"primaryLabelValue\":\"PrintPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"ProDPI\",\"primaryLabelValue\":\"ProDPI\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Roofing and Exteriors\",\"primaryLabelValue\":\"Professional Roofing and Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"Provideo Management\",\"primaryLabelValue\":\"Provideo Management\"}},{\"attributeHeader\":{\"labelValue\":\"Pukoa Scientific\",\"primaryLabelValue\":\"Pukoa Scientific\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSS International\",\"primaryLabelValue\":\"QSS International\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Electrodynamics\",\"primaryLabelValue\":\"Quality Electrodynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quidsi\",\"primaryLabelValue\":\"Quidsi\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"Reach Sports Marketing Group\",\"primaryLabelValue\":\"Reach Sports Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReachLocal\",\"primaryLabelValue\":\"ReachLocal\"}},{\"attributeHeader\":{\"labelValue\":\"Real Property Management\",\"primaryLabelValue\":\"Real Property Management\"}},{\"attributeHeader\":{\"labelValue\":\"Recurve\",\"primaryLabelValue\":\"Recurve\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Solutions\",\"primaryLabelValue\":\"Retail Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RFIP\",\"primaryLabelValue\":\"RFIP\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"RTL Networks\",\"primaryLabelValue\":\"RTL Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security Credit Services\",\"primaryLabelValue\":\"Security Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Service Foods\",\"primaryLabelValue\":\"Service Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Service-now.com\",\"primaryLabelValue\":\"Service-now.com\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"ShelfGenie\",\"primaryLabelValue\":\"ShelfGenie\"}},{\"attributeHeader\":{\"labelValue\":\"ShopForBags.com\",\"primaryLabelValue\":\"ShopForBags.com\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Show Media\",\"primaryLabelValue\":\"Show Media\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simplex Healthcare\",\"primaryLabelValue\":\"Simplex Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"Smarsh\",\"primaryLabelValue\":\"Smarsh\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPrice Sales & Marketing\",\"primaryLabelValue\":\"SmartPrice Sales & Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Smiley Media\",\"primaryLabelValue\":\"Smiley Media\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Spellbinders Paper Arts\",\"primaryLabelValue\":\"Spellbinders Paper Arts\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SproutLoud Media Networks\",\"primaryLabelValue\":\"SproutLoud Media Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StealthCom Solutions\",\"primaryLabelValue\":\"StealthCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stella & Dot\",\"primaryLabelValue\":\"Stella & Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Sundia\",\"primaryLabelValue\":\"Sundia\"}},{\"attributeHeader\":{\"labelValue\":\"Suntiva Executive Consulting\",\"primaryLabelValue\":\"Suntiva Executive Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Syscom Technologies\",\"primaryLabelValue\":\"Syscom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tableau Software\",\"primaryLabelValue\":\"Tableau Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tagged\",\"primaryLabelValue\":\"Tagged\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"TechRadium\",\"primaryLabelValue\":\"TechRadium\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Telogis\",\"primaryLabelValue\":\"Telogis\"}},{\"attributeHeader\":{\"labelValue\":\"Telx Group\",\"primaryLabelValue\":\"Telx Group\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Diet\",\"primaryLabelValue\":\"The Fresh Diet\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pursuant Group\",\"primaryLabelValue\":\"The Pursuant Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Three Dog Logistics\",\"primaryLabelValue\":\"Three Dog Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Tris3ct\",\"primaryLabelValue\":\"Tris3ct\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Gas & Electric\",\"primaryLabelValue\":\"U.S. Gas & Electric\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Business Solutions\",\"primaryLabelValue\":\"Universal Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Lending Solutions\",\"primaryLabelValue\":\"Urban Lending Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US Media Consulting\",\"primaryLabelValue\":\"US Media Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"vAuto\",\"primaryLabelValue\":\"vAuto\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilant\",\"primaryLabelValue\":\"Vigilant\"}},{\"attributeHeader\":{\"labelValue\":\"Virtualosity Solutions\",\"primaryLabelValue\":\"Virtualosity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Vital Networks\",\"primaryLabelValue\":\"Vital Networks\"}},{\"attributeHeader\":{\"labelValue\":\"VitalWear\",\"primaryLabelValue\":\"VitalWear\"}},{\"attributeHeader\":{\"labelValue\":\"Vivax Pro Painting\",\"primaryLabelValue\":\"Vivax Pro Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Walz Group\",\"primaryLabelValue\":\"Walz Group\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"WDFA Marketing\",\"primaryLabelValue\":\"WDFA Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Wellfount Pharmacy\",\"primaryLabelValue\":\"Wellfount Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WTech\",\"primaryLabelValue\":\"WTech\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YouSendIt\",\"primaryLabelValue\":\"YouSendIt\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"1Source International\",\"primaryLabelValue\":\"1Source International\"}},{\"attributeHeader\":{\"labelValue\":\"1st Choice Staffing & Consulting\",\"primaryLabelValue\":\"1st Choice Staffing & Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Clinical Solutions\",\"primaryLabelValue\":\"A10 Clinical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Networks\",\"primaryLabelValue\":\"A10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aasent Mortgage Corporation\",\"primaryLabelValue\":\"Aasent Mortgage Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"Accuvant\",\"primaryLabelValue\":\"Accuvant\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ageatia Technology Consultancy Services\",\"primaryLabelValue\":\"Ageatia Technology Consultancy Services\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"Alatec\",\"primaryLabelValue\":\"Alatec\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant National Title Insurance\",\"primaryLabelValue\":\"Alliant National Title Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"An Amazing Organization\",\"primaryLabelValue\":\"An Amazing Organization\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Technology Partners\",\"primaryLabelValue\":\"Archway Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Glass & Mirror\",\"primaryLabelValue\":\"Arrow Glass & Mirror\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"AutoAccessoriesGarage.com\",\"primaryLabelValue\":\"AutoAccessoriesGarage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Avtec Homes\",\"primaryLabelValue\":\"Avtec Homes\"}},{\"attributeHeader\":{\"labelValue\":\"AXIA Consulting\",\"primaryLabelValue\":\"AXIA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ayuda Management\",\"primaryLabelValue\":\"Ayuda Management\"}},{\"attributeHeader\":{\"labelValue\":\"BackJoy Orthotics\",\"primaryLabelValue\":\"BackJoy Orthotics\"}},{\"attributeHeader\":{\"labelValue\":\"Balance Staffing\",\"primaryLabelValue\":\"Balance Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"BancVue\",\"primaryLabelValue\":\"BancVue\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beceem Communications\",\"primaryLabelValue\":\"Beceem Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"BidSync\",\"primaryLabelValue\":\"BidSync\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"BlackLine Systems\",\"primaryLabelValue\":\"BlackLine Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"BuildASign.com\",\"primaryLabelValue\":\"BuildASign.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cantaloupe Systems\",\"primaryLabelValue\":\"Cantaloupe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"CareerLink\",\"primaryLabelValue\":\"CareerLink\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Cellit\",\"primaryLabelValue\":\"Cellit\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"CenTauri Solutions\",\"primaryLabelValue\":\"CenTauri Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Central Desktop\",\"primaryLabelValue\":\"Central Desktop\"}},{\"attributeHeader\":{\"labelValue\":\"Central Payment\",\"primaryLabelValue\":\"Central Payment\"}},{\"attributeHeader\":{\"labelValue\":\"Centuria\",\"primaryLabelValue\":\"Centuria\"}},{\"attributeHeader\":{\"labelValue\":\"Century Payments\",\"primaryLabelValue\":\"Century Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CheckOutStore\",\"primaryLabelValue\":\"CheckOutStore\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Ci2i Services\",\"primaryLabelValue\":\"Ci2i Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ciphent\",\"primaryLabelValue\":\"Ciphent\"}},{\"attributeHeader\":{\"labelValue\":\"Clarisonic\",\"primaryLabelValue\":\"Clarisonic\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Align\",\"primaryLabelValue\":\"Clear Align\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"ClearAccess\",\"primaryLabelValue\":\"ClearAccess\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpath Solutions Group\",\"primaryLabelValue\":\"Clearpath Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resources\",\"primaryLabelValue\":\"Clinical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Clinipace Worldwide\",\"primaryLabelValue\":\"Clinipace Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"Collective Intellect\",\"primaryLabelValue\":\"Collective Intellect\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Landscaping Systems\",\"primaryLabelValue\":\"Complete Landscaping Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Confirmation.com\",\"primaryLabelValue\":\"Confirmation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covario\",\"primaryLabelValue\":\"Covario\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coyote Logistics\",\"primaryLabelValue\":\"Coyote Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"cPrime\",\"primaryLabelValue\":\"cPrime\"}},{\"attributeHeader\":{\"labelValue\":\"Crosslake Sales\",\"primaryLabelValue\":\"Crosslake Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Crumbs\",\"primaryLabelValue\":\"Crumbs\"}},{\"attributeHeader\":{\"labelValue\":\"CSI\",\"primaryLabelValue\":\"CSI\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Distribution\",\"primaryLabelValue\":\"Decision Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"DoMyOwnPestControl.com\",\"primaryLabelValue\":\"DoMyOwnPestControl.com\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drakontas\",\"primaryLabelValue\":\"Drakontas\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge (KY)\",\"primaryLabelValue\":\"eBridge (KY)\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Payments\",\"primaryLabelValue\":\"Electronic Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Employer Flexible\",\"primaryLabelValue\":\"Employer Flexible\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Ace\",\"primaryLabelValue\":\"Energy Ace\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions Realized\",\"primaryLabelValue\":\"Enterprise Solutions Realized\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Everything2go.com\",\"primaryLabelValue\":\"Everything2go.com\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Exacq Technologies\",\"primaryLabelValue\":\"Exacq Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Faast Pharmacy\",\"primaryLabelValue\":\"Faast Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Fashionphile\",\"primaryLabelValue\":\"Fashionphile\"}},{\"attributeHeader\":{\"labelValue\":\"FastSpring\",\"primaryLabelValue\":\"FastSpring\"}},{\"attributeHeader\":{\"labelValue\":\"FedStore\",\"primaryLabelValue\":\"FedStore\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiesta Insurance Franchise\",\"primaryLabelValue\":\"Fiesta Insurance Franchise\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Food Should Taste Good\",\"primaryLabelValue\":\"Food Should Taste Good\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forex Club Financial\",\"primaryLabelValue\":\"Forex Club Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTEN\",\"primaryLabelValue\":\"FTEN\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"Geckotech\",\"primaryLabelValue\":\"Geckotech\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genius.com\",\"primaryLabelValue\":\"Genius.com\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Global Wedge\",\"primaryLabelValue\":\"Global Wedge\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Golden Key Group\",\"primaryLabelValue\":\"Golden Key Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"GourmetGiftBaskets.com\",\"primaryLabelValue\":\"GourmetGiftBaskets.com\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Group Z\",\"primaryLabelValue\":\"Group Z\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GSG\",\"primaryLabelValue\":\"GSG\"}},{\"attributeHeader\":{\"labelValue\":\"GyanSys\",\"primaryLabelValue\":\"GyanSys\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"HPC Development\",\"primaryLabelValue\":\"HPC Development\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"iBuyOfficeSupply.com\",\"primaryLabelValue\":\"iBuyOfficeSupply.com\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"iClick\",\"primaryLabelValue\":\"iClick\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"IData\",\"primaryLabelValue\":\"IData\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"Improving Enterprises\",\"primaryLabelValue\":\"Improving Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"InfoSync Services\",\"primaryLabelValue\":\"InfoSync Services\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Resource Group\",\"primaryLabelValue\":\"Insight Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"IntegriChain\",\"primaryLabelValue\":\"IntegriChain\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Management Consulting\",\"primaryLabelValue\":\"Integrity Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Solutions for Government\",\"primaryLabelValue\":\"Interim Solutions for Government\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Invertix\",\"primaryLabelValue\":\"Invertix\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kore Federal\",\"primaryLabelValue\":\"Kore Federal\"}},{\"attributeHeader\":{\"labelValue\":\"KPaul\",\"primaryLabelValue\":\"KPaul\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lattice Engines\",\"primaryLabelValue\":\"Lattice Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lexicon Consulting\",\"primaryLabelValue\":\"Lexicon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"LifeLock\",\"primaryLabelValue\":\"LifeLock\"}},{\"attributeHeader\":{\"labelValue\":\"LimitLess International\",\"primaryLabelValue\":\"LimitLess International\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Livin' Lite Recreational Vehicles\",\"primaryLabelValue\":\"Livin' Lite Recreational Vehicles\"}},{\"attributeHeader\":{\"labelValue\":\"Local Splash\",\"primaryLabelValue\":\"Local Splash\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Luke & Associates\",\"primaryLabelValue\":\"Luke & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lusive Decor\",\"primaryLabelValue\":\"Lusive Decor\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M33 Integrated Solutions\",\"primaryLabelValue\":\"M33 Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mainstreet Property Group\",\"primaryLabelValue\":\"Mainstreet Property Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MD Orthopaedics\",\"primaryLabelValue\":\"MD Orthopaedics\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"MediaTrust\",\"primaryLabelValue\":\"MediaTrust\"}},{\"attributeHeader\":{\"labelValue\":\"merchant one\",\"primaryLabelValue\":\"merchant one\"}},{\"attributeHeader\":{\"labelValue\":\"Mercury Solar Systems\",\"primaryLabelValue\":\"Mercury Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Essential Personnel\",\"primaryLabelValue\":\"Mission Essential Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Modea\",\"primaryLabelValue\":\"Modea\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Most Brand Development + Advertising\",\"primaryLabelValue\":\"Most Brand Development + Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetWitness\",\"primaryLabelValue\":\"NetWitness\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nityo Infotech\",\"primaryLabelValue\":\"Nityo Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Nutricap Labs\",\"primaryLabelValue\":\"Nutricap Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"PaymentMax\",\"primaryLabelValue\":\"PaymentMax\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"PetRays\",\"primaryLabelValue\":\"PetRays\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Realty\",\"primaryLabelValue\":\"Platinum Realty\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PropelMG\",\"primaryLabelValue\":\"PropelMG\"}},{\"attributeHeader\":{\"labelValue\":\"Property Solutions\",\"primaryLabelValue\":\"Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramed Health Services\",\"primaryLabelValue\":\"Pyramed Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Q2ebanking\",\"primaryLabelValue\":\"Q2ebanking\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"RedVision Systems\",\"primaryLabelValue\":\"RedVision Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rennen International\",\"primaryLabelValue\":\"Rennen International\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"ReSource Pro\",\"primaryLabelValue\":\"ReSource Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun\",\"primaryLabelValue\":\"Rising Sun\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"SaveOnResorts.com\",\"primaryLabelValue\":\"SaveOnResorts.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Scentsy\",\"primaryLabelValue\":\"Scentsy\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Secure-24\",\"primaryLabelValue\":\"Secure-24\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security by Design\",\"primaryLabelValue\":\"Security by Design\"}},{\"attributeHeader\":{\"labelValue\":\"SeekingSitters\",\"primaryLabelValue\":\"SeekingSitters\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"SEOmoz\",\"primaryLabelValue\":\"SEOmoz\"}},{\"attributeHeader\":{\"labelValue\":\"ShareFile\",\"primaryLabelValue\":\"ShareFile\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"SightLine Health\",\"primaryLabelValue\":\"SightLine Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Silex Interiors\",\"primaryLabelValue\":\"Silex Interiors\"}},{\"attributeHeader\":{\"labelValue\":\"Single Digits\",\"primaryLabelValue\":\"Single Digits\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skullcandy\",\"primaryLabelValue\":\"Skullcandy\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SmartIT Staffing\",\"primaryLabelValue\":\"SmartIT Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"SnapAV\",\"primaryLabelValue\":\"SnapAV\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"SNS Logistics\",\"primaryLabelValue\":\"SNS Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorrento Capital\",\"primaryLabelValue\":\"Sorrento Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Squarespace\",\"primaryLabelValue\":\"Squarespace\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Made Simple\",\"primaryLabelValue\":\"Systems Made Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Talented IT\",\"primaryLabelValue\":\"Talented IT\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Sales International\",\"primaryLabelValue\":\"Technical Sales International\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"Telovations\",\"primaryLabelValue\":\"Telovations\"}},{\"attributeHeader\":{\"labelValue\":\"Terra Infotech\",\"primaryLabelValue\":\"Terra Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Energy Holdings\",\"primaryLabelValue\":\"Texas Energy Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Intersect Group\",\"primaryLabelValue\":\"The Intersect Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Media Crew\",\"primaryLabelValue\":\"The Media Crew\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Trademark Company\",\"primaryLabelValue\":\"The Trademark Company\"}},{\"attributeHeader\":{\"labelValue\":\"TheFind\",\"primaryLabelValue\":\"TheFind\"}},{\"attributeHeader\":{\"labelValue\":\"Thrillist.com\",\"primaryLabelValue\":\"Thrillist.com\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TicketZoom\",\"primaryLabelValue\":\"TicketZoom\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TowerCo\",\"primaryLabelValue\":\"TowerCo\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Traffiq\",\"primaryLabelValue\":\"Traffiq\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"TrueCar\",\"primaryLabelValue\":\"TrueCar\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Translation\",\"primaryLabelValue\":\"U.S. Translation\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"US Lighting Tech\",\"primaryLabelValue\":\"US Lighting Tech\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"uShip\",\"primaryLabelValue\":\"uShip\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"Varrow\",\"primaryLabelValue\":\"Varrow\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"VinSolutions\",\"primaryLabelValue\":\"VinSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Viverae\",\"primaryLabelValue\":\"Viverae\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vycon\",\"primaryLabelValue\":\"Vycon\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"WebSafe Shield\",\"primaryLabelValue\":\"WebSafe Shield\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Wyngate International\",\"primaryLabelValue\":\"Wyngate International\"}},{\"attributeHeader\":{\"labelValue\":\"Xirrus\",\"primaryLabelValue\":\"Xirrus\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Yodle\",\"primaryLabelValue\":\"Yodle\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zenoss\",\"primaryLabelValue\":\"Zenoss\"}},{\"attributeHeader\":{\"labelValue\":\"Zeon Solutions\",\"primaryLabelValue\":\"Zeon Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"2 Wheel Bikes\",\"primaryLabelValue\":\"2 Wheel Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"A.R.M. Solutions\",\"primaryLabelValue\":\"A.R.M. Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AAC Enterprises\",\"primaryLabelValue\":\"AAC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Addison Search\",\"primaryLabelValue\":\"Addison Search\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advantedge Healthcare Solutions\",\"primaryLabelValue\":\"Advantedge Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Alteris Renewables\",\"primaryLabelValue\":\"Alteris Renewables\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Anakam\",\"primaryLabelValue\":\"Anakam\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Apparatus\",\"primaryLabelValue\":\"Apparatus\"}},{\"attributeHeader\":{\"labelValue\":\"Appliance Zone\",\"primaryLabelValue\":\"Appliance Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"Archimedes Global\",\"primaryLabelValue\":\"Archimedes Global\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Associates\",\"primaryLabelValue\":\"Argent Associates\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aromatic Fusion\",\"primaryLabelValue\":\"Aromatic Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT HOME PERSONAL CARE\",\"primaryLabelValue\":\"AT HOME PERSONAL CARE\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Metro Communications\",\"primaryLabelValue\":\"Atlantic Metro Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"AtTask\",\"primaryLabelValue\":\"AtTask\"}},{\"attributeHeader\":{\"labelValue\":\"Aurora Networks\",\"primaryLabelValue\":\"Aurora Networks\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AvePoint\",\"primaryLabelValue\":\"AvePoint\"}},{\"attributeHeader\":{\"labelValue\":\"BabyEarth\",\"primaryLabelValue\":\"BabyEarth\"}},{\"attributeHeader\":{\"labelValue\":\"Balihoo\",\"primaryLabelValue\":\"Balihoo\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Beal\",\"primaryLabelValue\":\"Beal\"}},{\"attributeHeader\":{\"labelValue\":\"Behavioral Health Group\",\"primaryLabelValue\":\"Behavioral Health Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Links Consulting\",\"primaryLabelValue\":\"Cable Links Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Call-Em-All\",\"primaryLabelValue\":\"Call-Em-All\"}},{\"attributeHeader\":{\"labelValue\":\"CallFire\",\"primaryLabelValue\":\"CallFire\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Partners\",\"primaryLabelValue\":\"CCG Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Charity Dynamics\",\"primaryLabelValue\":\"Charity Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chasing Fireflies\",\"primaryLabelValue\":\"Chasing Fireflies\"}},{\"attributeHeader\":{\"labelValue\":\"Clarabridge\",\"primaryLabelValue\":\"Clarabridge\"}},{\"attributeHeader\":{\"labelValue\":\"CLEAResult Consulting\",\"primaryLabelValue\":\"CLEAResult Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud 9 Living\",\"primaryLabelValue\":\"Cloud 9 Living\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"Codexis\",\"primaryLabelValue\":\"Codexis\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Fibre\",\"primaryLabelValue\":\"Cogent Fibre\"}},{\"attributeHeader\":{\"labelValue\":\"Coleman Research Group\",\"primaryLabelValue\":\"Coleman Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Medical Supply\",\"primaryLabelValue\":\"Comfort Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Commdex Consulting\",\"primaryLabelValue\":\"Commdex Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Conductor\",\"primaryLabelValue\":\"Conductor\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consero\",\"primaryLabelValue\":\"Consero\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"Davinci Virtual Office Solutions\",\"primaryLabelValue\":\"Davinci Virtual Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Media Group\",\"primaryLabelValue\":\"Dean Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Debtmerica\",\"primaryLabelValue\":\"Debtmerica\"}},{\"attributeHeader\":{\"labelValue\":\"Delan Associates\",\"primaryLabelValue\":\"Delan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dexter Field Services\",\"primaryLabelValue\":\"Dexter Field Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dialect Technologies\",\"primaryLabelValue\":\"Dialect Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dice Electronics\",\"primaryLabelValue\":\"Dice Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DMC Construction\",\"primaryLabelValue\":\"DMC Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eCardio Diagnostics\",\"primaryLabelValue\":\"eCardio Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"EcomNets\",\"primaryLabelValue\":\"EcomNets\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Products\",\"primaryLabelValue\":\"Eco-Products\"}},{\"attributeHeader\":{\"labelValue\":\"EcoTech Marine\",\"primaryLabelValue\":\"EcoTech Marine\"}},{\"attributeHeader\":{\"labelValue\":\"ELC Technologies\",\"primaryLabelValue\":\"ELC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"ElJet Aviation Services\",\"primaryLabelValue\":\"ElJet Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"eMason\",\"primaryLabelValue\":\"eMason\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Epicenter Network\",\"primaryLabelValue\":\"Epicenter Network\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ERT\",\"primaryLabelValue\":\"ERT\"}},{\"attributeHeader\":{\"labelValue\":\"eTERA Consulting\",\"primaryLabelValue\":\"eTERA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"Extend Health\",\"primaryLabelValue\":\"Extend Health\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"Fab Fours\",\"primaryLabelValue\":\"Fab Fours\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Findaway World\",\"primaryLabelValue\":\"Findaway World\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Anywhere\",\"primaryLabelValue\":\"Fitness Anywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Foreground Security\",\"primaryLabelValue\":\"Foreground Security\"}},{\"attributeHeader\":{\"labelValue\":\"Forensic Fluids Laboratories\",\"primaryLabelValue\":\"Forensic Fluids Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"FranNet\",\"primaryLabelValue\":\"FranNet\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Group\",\"primaryLabelValue\":\"Freedom Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Health\",\"primaryLabelValue\":\"Freedom Health\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"G5 Search Marketing\",\"primaryLabelValue\":\"G5 Search Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Galen Healthcare Solutions\",\"primaryLabelValue\":\"Galen Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Gazelle\",\"primaryLabelValue\":\"Gazelle\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Glacier Bay\",\"primaryLabelValue\":\"Glacier Bay\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GPS Insight\",\"primaryLabelValue\":\"GPS Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"GreenLogic\",\"primaryLabelValue\":\"GreenLogic\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"GrubHub.com\",\"primaryLabelValue\":\"GrubHub.com\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GSS Gear\",\"primaryLabelValue\":\"GSS Gear\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"H2 Performance Consulting\",\"primaryLabelValue\":\"H2 Performance Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"HoldCube\",\"primaryLabelValue\":\"HoldCube\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Oxygen\",\"primaryLabelValue\":\"Hometown Oxygen\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Telecom\",\"primaryLabelValue\":\"Hometown Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"I.T. Source\",\"primaryLabelValue\":\"I.T. Source\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"iContact\",\"primaryLabelValue\":\"iContact\"}},{\"attributeHeader\":{\"labelValue\":\"Ignify\",\"primaryLabelValue\":\"Ignify\"}},{\"attributeHeader\":{\"labelValue\":\"IguanaMed\",\"primaryLabelValue\":\"IguanaMed\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMVU\",\"primaryLabelValue\":\"IMVU\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Infovision Technologies\",\"primaryLabelValue\":\"Infovision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infoway Software\",\"primaryLabelValue\":\"Infoway Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Insignia Technology Services\",\"primaryLabelValue\":\"Insignia Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Interfacial Solutions\",\"primaryLabelValue\":\"Interfacial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"International Inspirations\",\"primaryLabelValue\":\"International Inspirations\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"ion interactive\",\"primaryLabelValue\":\"ion interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"IP5280 Communications\",\"primaryLabelValue\":\"IP5280 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"IPKeys Technologies\",\"primaryLabelValue\":\"IPKeys Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITG Solutions\",\"primaryLabelValue\":\"ITG Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ItsHot.com\",\"primaryLabelValue\":\"ItsHot.com\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"JeffreyM Consulting\",\"primaryLabelValue\":\"JeffreyM Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Jobs2Web\",\"primaryLabelValue\":\"Jobs2Web\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Infotek\",\"primaryLabelValue\":\"Keen Infotek\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Tracking Solutions\",\"primaryLabelValue\":\"Lead Tracking Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Link America\",\"primaryLabelValue\":\"Link America\"}},{\"attributeHeader\":{\"labelValue\":\"Link Solutions\",\"primaryLabelValue\":\"Link Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Motors\",\"primaryLabelValue\":\"Liquid Motors\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"LPS Integration\",\"primaryLabelValue\":\"LPS Integration\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"MacUpdate\",\"primaryLabelValue\":\"MacUpdate\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"McDonald Hearing Aid Center\",\"primaryLabelValue\":\"McDonald Hearing Aid Center\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meru Networks\",\"primaryLabelValue\":\"Meru Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Micah Group Environmental Contractors\",\"primaryLabelValue\":\"Micah Group Environmental Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTech\",\"primaryLabelValue\":\"MicroTech\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium\",\"primaryLabelValue\":\"Millennium\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Medical\",\"primaryLabelValue\":\"Millennium Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MindSmack.com\",\"primaryLabelValue\":\"MindSmack.com\"}},{\"attributeHeader\":{\"labelValue\":\"MMC Systems\",\"primaryLabelValue\":\"MMC Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Molding Box\",\"primaryLabelValue\":\"Molding Box\"}},{\"attributeHeader\":{\"labelValue\":\"Monster Scooter Parts\",\"primaryLabelValue\":\"Monster Scooter Parts\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Mu Sigma\",\"primaryLabelValue\":\"Mu Sigma\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Positions\",\"primaryLabelValue\":\"National Positions\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nerdery Interactive Labs\",\"primaryLabelValue\":\"Nerdery Interactive Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Neutron Interactive\",\"primaryLabelValue\":\"Neutron Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New West Technologies\",\"primaryLabelValue\":\"New West Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NII Brokerage\",\"primaryLabelValue\":\"NII Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"N-Tech Solutions\",\"primaryLabelValue\":\"N-Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Ocenture\",\"primaryLabelValue\":\"Ocenture\"}},{\"attributeHeader\":{\"labelValue\":\"oDesk\",\"primaryLabelValue\":\"oDesk\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Online Rewards\",\"primaryLabelValue\":\"Online Rewards\"}},{\"attributeHeader\":{\"labelValue\":\"Ookla\",\"primaryLabelValue\":\"Ookla\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"P3S\",\"primaryLabelValue\":\"P3S\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pandora\",\"primaryLabelValue\":\"Pandora\"}},{\"attributeHeader\":{\"labelValue\":\"PanTerra Networks\",\"primaryLabelValue\":\"PanTerra Networks\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"PayLease\",\"primaryLabelValue\":\"PayLease\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Physicians' Pharmaceutical\",\"primaryLabelValue\":\"Physicians' Pharmaceutical\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"Point One Technologies\",\"primaryLabelValue\":\"Point One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pontiflex\",\"primaryLabelValue\":\"Pontiflex\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Principle Solutions Group\",\"primaryLabelValue\":\"Principle Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Prudent Technologies\",\"primaryLabelValue\":\"Prudent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Psychological Software Solutions\",\"primaryLabelValue\":\"Psychological Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pursuit of Excellence\",\"primaryLabelValue\":\"Pursuit of Excellence\"}},{\"attributeHeader\":{\"labelValue\":\"QuoteWizard\",\"primaryLabelValue\":\"QuoteWizard\"}},{\"attributeHeader\":{\"labelValue\":\"Randa Solutions\",\"primaryLabelValue\":\"Randa Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RBA Consulting\",\"primaryLabelValue\":\"RBA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"RealD\",\"primaryLabelValue\":\"RealD\"}},{\"attributeHeader\":{\"labelValue\":\"Reliance\",\"primaryLabelValue\":\"Reliance\"}},{\"attributeHeader\":{\"labelValue\":\"Remedy Roofing\",\"primaryLabelValue\":\"Remedy Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Remote Medical International\",\"primaryLabelValue\":\"Remote Medical International\"}},{\"attributeHeader\":{\"labelValue\":\"rentbits.com\",\"primaryLabelValue\":\"rentbits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"Reveal Imaging Technologies\",\"primaryLabelValue\":\"Reveal Imaging Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"Rise Interactive\",\"primaryLabelValue\":\"Rise Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Rockfish Interactive\",\"primaryLabelValue\":\"Rockfish Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ryla\",\"primaryLabelValue\":\"Ryla\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"SBG Technology Solutions\",\"primaryLabelValue\":\"SBG Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sensys Networks\",\"primaryLabelValue\":\"Sensys Networks\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Foods\",\"primaryLabelValue\":\"Signature Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SingleHop\",\"primaryLabelValue\":\"SingleHop\"}},{\"attributeHeader\":{\"labelValue\":\"SoftLayer Technologies\",\"primaryLabelValue\":\"SoftLayer Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sound Physicians\",\"primaryLabelValue\":\"Sound Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Spine & Sport\",\"primaryLabelValue\":\"Spine & Sport\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Standard Solar\",\"primaryLabelValue\":\"Standard Solar\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"StumbleUpon\",\"primaryLabelValue\":\"StumbleUpon\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SwarmBuilder\",\"primaryLabelValue\":\"SwarmBuilder\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Synteractive\",\"primaryLabelValue\":\"Synteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TAG Employer Services\",\"primaryLabelValue\":\"TAG Employer Services\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Technical and Project Engineering\",\"primaryLabelValue\":\"Technical and Project Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technovant\",\"primaryLabelValue\":\"Technovant\"}},{\"attributeHeader\":{\"labelValue\":\"Tenable Network Security\",\"primaryLabelValue\":\"Tenable Network Security\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Elf on the Shelf\",\"primaryLabelValue\":\"The Elf on the Shelf\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Knowland Group\",\"primaryLabelValue\":\"The Knowland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Penna Group\",\"primaryLabelValue\":\"The Penna Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Retail Outsource\",\"primaryLabelValue\":\"The Retail Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"The Select Group\",\"primaryLabelValue\":\"The Select Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Visionaire Group\",\"primaryLabelValue\":\"The Visionaire Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"The1stMovement\",\"primaryLabelValue\":\"The1stMovement\"}},{\"attributeHeader\":{\"labelValue\":\"Three Pillar Global\",\"primaryLabelValue\":\"Three Pillar Global\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"Travelers Haven\",\"primaryLabelValue\":\"Travelers Haven\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Web Design\",\"primaryLabelValue\":\"Triad Web Design\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Triplefin\",\"primaryLabelValue\":\"Triplefin\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"Uppercase Living\",\"primaryLabelValue\":\"Uppercase Living\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Veloxion\",\"primaryLabelValue\":\"Veloxion\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vendormate\",\"primaryLabelValue\":\"Vendormate\"}},{\"attributeHeader\":{\"labelValue\":\"Ventureforth\",\"primaryLabelValue\":\"Ventureforth\"}},{\"attributeHeader\":{\"labelValue\":\"Veteran Corps of America\",\"primaryLabelValue\":\"Veteran Corps of America\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Enterprise Technology Solutions\",\"primaryLabelValue\":\"Veterans Enterprise Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"Vinitech\",\"primaryLabelValue\":\"Vinitech\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visible Technologies\",\"primaryLabelValue\":\"Visible Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Vivo\",\"primaryLabelValue\":\"Vivo\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Ward Williston Oil\",\"primaryLabelValue\":\"Ward Williston Oil\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"WnR\",\"primaryLabelValue\":\"WnR\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Information Network Systems\",\"primaryLabelValue\":\"Worldwide Information Network Systems\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"Yeti Coolers\",\"primaryLabelValue\":\"Yeti Coolers\"}},{\"attributeHeader\":{\"labelValue\":\"Zempleo\",\"primaryLabelValue\":\"Zempleo\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"1st in Video - Music World\",\"primaryLabelValue\":\"1st in Video - Music World\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"Bonterra Consulting\",\"primaryLabelValue\":\"Bonterra Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's\",\"primaryLabelValue\":\"Aaron's\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus 24-7\",\"primaryLabelValue\":\"Abacus 24-7\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Broadway Electric Service\",\"primaryLabelValue\":\"Broadway Electric Service\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Bross Group\",\"primaryLabelValue\":\"Bross Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Brothers Air & Heat\",\"primaryLabelValue\":\"Brothers Air & Heat\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"BRS Media\",\"primaryLabelValue\":\"BRS Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bryan Cave\",\"primaryLabelValue\":\"Bryan Cave\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Accusoft Pegasus\",\"primaryLabelValue\":\"Accusoft Pegasus\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ace Underwriting Group\",\"primaryLabelValue\":\"Ace Underwriting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bulldog Solutions\",\"primaryLabelValue\":\"Bulldog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,5992],\"offset\":[0,0],\"total\":[1,5992]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/json" } }, - "uuid": "d3140bbe-3050-47d1-a3b5-f9618f225f96" + "uuid": "1195dee5-4b8c-448c-9484-7052f95efdca" }, { - "id": "fa0ecf23-2f6a-4197-a55a-5538e1c18b69", + "id": "53940db5-dd4e-4dfe-971f-a848722ef190", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -45,7 +45,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_fact.f_activity.activitydate_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_opportunity.id\",\"label\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"labelName\":\"Opportunity Id\",\"attribute\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"},\"attributeName\":\"Opportunity Id\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_account.account.name\",\"label\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"},\"labelName\":\"Name\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"bbd5facc10e7d177d9cb487f55c88687452f56f4:eb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_fact.f_activity.activitydate_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_opportunity.id\",\"label\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"labelName\":\"Opportunity Id\",\"attribute\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"},\"attributeName\":\"Opportunity Id\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_account.account.name\",\"label\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"},\"labelName\":\"Name\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"bc23fd3180d82875245d02393f89af1ddb5f8b82:db2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -58,18 +58,18 @@ "Content-Type": "application/json" } }, - "uuid": "fa0ecf23-2f6a-4197-a55a-5538e1c18b69" + "uuid": "53940db5-dd4e-4dfe-971f-a848722ef190" }, { - "id": "b5e4ff2c-d1c5-4e98-9947-ae8746a0afa9", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "e46e27bd-38e3-44d3-81a2-9acd4fa11708", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -79,21 +79,21 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "b5e4ff2c-d1c5-4e98-9947-ae8746a0afa9" + "uuid": "e46e27bd-38e3-44d3-81a2-9acd4fa11708" }, { - "id": "3cd43563-10b9-425e-bacb-ec65687b4558", - "name": "api_v1_entities_notificationchannels", + "id": "c45415a8-8e3b-4259-8c6c-06a5aeca4c1f", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -106,18 +106,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "3cd43563-10b9-425e-bacb-ec65687b4558" + "uuid": "c45415a8-8e3b-4259-8c6c-06a5aeca4c1f" }, { - "id": "11010105-81c4-4c27-8499-93671c8d362f", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "be1f2b27-6a32-4c90-861e-6aed873162b1", + "name": "api_v1_entities_notificationchannels", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -127,13 +127,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "11010105-81c4-4c27-8499-93671c8d362f" + "uuid": "be1f2b27-6a32-4c90-861e-6aed873162b1" }, { - "id": "9fb7bc17-11a2-4271-b1a2-c2c32d684422", + "id": "2430e0a7-454b-4b64-860d-bf9a146b0770", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -154,10 +154,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9fb7bc17-11a2-4271-b1a2-c2c32d684422" + "uuid": "2430e0a7-454b-4b64-860d-bf9a146b0770" }, { - "id": "9d191bb1-454a-4e39-a874-f3dbc3389d2a", + "id": "673fdbd0-a05f-41e1-b35f-0917f8174631", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -178,18 +178,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9d191bb1-454a-4e39-a874-f3dbc3389d2a" + "uuid": "673fdbd0-a05f-41e1-b35f-0917f8174631" }, { - "id": "b63eda20-7ebc-43e7-b73b-66986d3aa368", - "name": "api_v1_entities_workspaces", + "id": "78fce658-620b-4d9a-880c-dd2a940abb17", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -207,69 +207,69 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b63eda20-7ebc-43e7-b73b-66986d3aa368" + "uuid": "78fce658-620b-4d9a-880c-dd2a940abb17" }, { - "id": "314390d6-09d2-451a-88f5-102a62925452", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "c9eb9dc9-3fd6-4945-9d79-050eb7faddda", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3De1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "314390d6-09d2-451a-88f5-102a62925452" + "uuid": "c9eb9dc9-3fd6-4945-9d79-050eb7faddda" }, { - "id": "ab63e9e1-153e-451e-b425-9825af9a7ef5", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", + "id": "ef9528d4-7ebb-47ef-ad0b-487dc64cdc1f", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3De1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], - "Expires": "0", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "ab63e9e1-153e-451e-b425-9825af9a7ef5" + "uuid": "ef9528d4-7ebb-47ef-ad0b-487dc64cdc1f" }, { - "id": "9514c510-0722-482a-bd57-55d71e8f6e80", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "cea59256-e7e5-491f-9112-f21070273293", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -287,10 +287,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9514c510-0722-482a-bd57-55d71e8f6e80" + "uuid": "cea59256-e7e5-491f-9112-f21070273293" }, { - "id": "62afbf18-c269-4e11-a360-f48175e0b3ba", + "id": "efa01617-24eb-4100-a015-90ac84054971", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -298,7 +298,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -316,10 +316,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "62afbf18-c269-4e11-a360-f48175e0b3ba" + "uuid": "efa01617-24eb-4100-a015-90ac84054971" }, { - "id": "cf7f0bba-af18-49cf-ba6c-246ac7b1d1aa", + "id": "b21f758a-d3b4-418b-bbdf-d68f1f57aa57", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -327,7 +327,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\"}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\"}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -345,10 +345,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "cf7f0bba-af18-49cf-ba6c-246ac7b1d1aa" + "uuid": "b21f758a-d3b4-418b-bbdf-d68f1f57aa57" }, { - "id": "ceb81bd6-d2b1-4502-aaf6-35f7c33f3fda", + "id": "5e7af824-0e98-424f-bd64-3f351f5ac530", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -356,7 +356,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -367,10 +367,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ceb81bd6-d2b1-4502-aaf6-35f7c33f3fda" + "uuid": "5e7af824-0e98-424f-bd64-3f351f5ac530" }, { - "id": "556a1379-155d-4aa2-af85-caa67896d33a", + "id": "b719f752-c1b0-4b6a-a088-d0c26e2fa9fa", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "b719f752-c1b0-4b6a-a088-d0c26e2fa9fa" + }, + { + "id": "1466668c-7045-41d4-bdc0-394d72a94c2d", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -378,7 +409,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -394,10 +425,10 @@ "Content-Type": "application/json" } }, - "uuid": "556a1379-155d-4aa2-af85-caa67896d33a" + "uuid": "1466668c-7045-41d4-bdc0-394d72a94c2d" }, { - "id": "741f56c3-7698-42e8-8798-4e268e7da00d", + "id": "da19df58-a7b2-473b-aaa3-d73eb286de55", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -412,7 +443,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"ace65250b8b81aea3d994be463b6d85a\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"7a94806d854f77477e7b5b2dfd7ad8b5\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -425,10 +456,10 @@ "Content-Type": "application/json" } }, - "uuid": "741f56c3-7698-42e8-8798-4e268e7da00d" + "uuid": "da19df58-a7b2-473b-aaa3-d73eb286de55" }, { - "id": "03d9e93a-3381-4872-9a0f-01c8f8b02e02", + "id": "78e940f8-5f8c-4eb3-948b-76a650d1103c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -443,7 +474,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"5040cba279de060018715e619bbf982f\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"43d3148382bbc8b813ae0f8b6570f2be\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -456,10 +487,33 @@ "Content-Type": "application/json" } }, - "uuid": "03d9e93a-3381-4872-9a0f-01c8f8b02e02" + "uuid": "78e940f8-5f8c-4eb3-948b-76a650d1103c" }, { - "id": "36cccf85-d386-4fa3-a0fe-1aa5b9bc1561", + "id": "083016cb-0353-427f-850c-a1758af1f867", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "method": "GET" + }, + "response": { + "status": 401, + "base64Body": "L2FwcExvZ2lu", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "X-Content-Type-Options": "nosniff", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "Pragma": "no-cache", + "X-XSS-Protection": "0" + } + }, + "uuid": "083016cb-0353-427f-850c-a1758af1f867" + }, + { + "id": "85f361fd-33ea-47c7-87c0-195938f84d92", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -474,7 +528,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"3822853b99eecdd9e6f716001e235253\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"54a226be7d14a66d4f7dfcc497712d66\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -492,10 +546,10 @@ "Content-Type": "application/json" } }, - "uuid": "36cccf85-d386-4fa3-a0fe-1aa5b9bc1561" + "uuid": "85f361fd-33ea-47c7-87c0-195938f84d92" }, { - "id": "6f7b144b-5df2-4424-a3c7-4506037b4372", + "id": "1a2cde3f-49cb-4368-adc8-b4cab8112914", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", @@ -510,7 +564,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"b21d0d31f3e995ee404e61353f13a737\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"ae54ec2f594859dc9acfb5463d9e77ef\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -523,10 +577,10 @@ "Content-Type": "application/json" } }, - "uuid": "6f7b144b-5df2-4424-a3c7-4506037b4372" + "uuid": "1a2cde3f-49cb-4368-adc8-b4cab8112914" }, { - "id": "236b1925-ea75-4775-8664-76efd76b2633", + "id": "3ae26e01-62f7-490e-a5f7-cdfe92fbfca3", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_owner.salesrep&include=labels", @@ -534,7 +588,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -552,10 +606,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "236b1925-ea75-4775-8664-76efd76b2633" + "uuid": "3ae26e01-62f7-490e-a5f7-cdfe92fbfca3" }, { - "id": "70fcda4b-ed3e-418f-a7cb-39a4c19be0c5", + "id": "2591f03f-c096-43bb-8d89-9a7c26259ae6", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_stage.iswon_id&include=labels", @@ -581,10 +635,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "70fcda4b-ed3e-418f-a7cb-39a4c19be0c5" + "uuid": "2591f03f-c096-43bb-8d89-9a7c26259ae6" }, { - "id": "b6c76ef3-a35f-4816-86a3-8ea13142c380", + "id": "579556d6-f972-491f-ad39-b309c2be4e1d", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D601c81ae-0582-42f0-9f35-a4ec2a6a8497%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -605,10 +659,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b6c76ef3-a35f-4816-86a3-8ea13142c380" + "uuid": "579556d6-f972-491f-ad39-b309c2be4e1d" }, { - "id": "400e1afd-67a1-4c52-a272-9371fb2aef8b", + "id": "3f5f8e0e-a43e-4a0b-aa66-4ff2b65bb3e3", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_601c81ae-0582-42f0-9f35-a4ec2a6a8497", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -634,10 +688,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "400e1afd-67a1-4c52-a272-9371fb2aef8b" + "uuid": "3f5f8e0e-a43e-4a0b-aa66-4ff2b65bb3e3" }, { - "id": "7e009e8a-cdf7-44cd-9398-48ea9dd45f21", + "id": "bc2628b6-43fa-4e9b-b53e-7ea0c0cbb05b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_activity.status_id&include=labels", @@ -657,30 +711,7 @@ "X-XSS-Protection": "0" } }, - "uuid": "7e009e8a-cdf7-44cd-9398-48ea9dd45f21" - }, - { - "id": "f6024b15-5cd0-4fbe-9c1a-607b13e133f3", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", - "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", - "method": "GET" - }, - "response": { - "status": 401, - "base64Body": "L2FwcExvZ2lu", - "headers": { - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "X-Content-Type-Options": "nosniff", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], - "Expires": "0", - "Pragma": "no-cache", - "X-XSS-Protection": "0" - } - }, - "uuid": "f6024b15-5cd0-4fbe-9c1a-607b13e133f3" + "uuid": "bc2628b6-43fa-4e9b-b53e-7ea0c0cbb05b" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTigerWithCharts.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTigerWithCharts.spec.ts.json index f39c83429ed..dfcad5415cd 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTigerWithCharts.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dashboardTigerWithCharts.spec.ts.json @@ -1,39 +1,44 @@ { "mappings": [ { - "id": "a1cb1f74-9142-4d7c-8186-a259b0b22914", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_faf392f211e7f0aeb9f3c92adb05b7575b100f605ebcce8647b9fc7c5796a35ff3c58eedf34ccbaa79d01fee489b86ab5f77be2a", + "id": "66b56712-e589-41ec-9f42-77f12c0e117c", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_9d99209ce77dfa91066194a08c0327fab5ccd74a6617c9ef2fbf211836edb2d9d341a47b621e4c33fbfb3337bf999b00bcf9d39d", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/faf392f211e7f0aeb9f3c92adb05b7575b100f60%3A5ebcce8647b9fc7c5796a35ff3c58eedf34ccbaa79d01fee489b86ab5f77be2a", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/9d99209ce77dfa91066194a08c0327fab5ccd74a%3A6617c9ef2fbf211836edb2d9d341a47b621e4c33fbfb3337bf999b00bcf9d39d", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[154271,1770,5992]],\"dimensionHeaders\":[{\"headerGroups\":[]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}},{\"measureHeader\":{\"measureIndex\":2}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,3],\"offset\":[0,0],\"total\":[1,3]}}", + "body": "{\"data\":[[5099309.54,2.21235901E7,6614222.47,1.6332673E7,8269682.68,3.032651218E7,2761931.26,5280100.66,2664832.4,6861025.51,2607118.07,7684458.67]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,12],\"offset\":[0,0],\"total\":[1,12]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "a1cb1f74-9142-4d7c-8186-a259b0b22914" + "uuid": "66b56712-e589-41ec-9f42-77f12c0e117c" }, { - "id": "03453521-60f8-4a3e-9a61-94d9b2b84589", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_7b2e6d199c866e8d9c0b2b00b9944c67d496b87ebe766f29c5972fcaf09171397cfc07e0d8dccd93b8fcccb383d285e09bf5cd36", + "id": "7bab6b0b-de89-4a36-b1ab-c230195980a0", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_4f793b34aedc46f95dfb974b0a23c9991ff067f781ce46ebe9be7da2f33bd4fdbbdaebf4fdc59484d7d7469904927fb5eb6ba11d", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/7b2e6d199c866e8d9c0b2b00b9944c67d496b87e%3Abe766f29c5972fcaf09171397cfc07e0d8dccd93b8fcccb383d285e09bf5cd36", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/4f793b34aedc46f95dfb974b0a23c9991ff067f7%3A81ce46ebe9be7da2f33bd4fdbbdaebf4fdc59484d7d7469904927fb5eb6ba11d", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[1.77415952428E9,1.24049376475E9,1.22182844421E9,5.8287075062E8,4.2104577459E8,3.7754100495E8]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,6],\"offset\":[0,0],\"total\":[1,6]}}", + "body": "{\"data\":[[154271,1770,5992]],\"dimensionHeaders\":[{\"headerGroups\":[]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}},{\"measureHeader\":{\"measureIndex\":2}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,3],\"offset\":[0,0],\"total\":[1,3]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -46,39 +51,34 @@ "Content-Type": "application/json" } }, - "uuid": "03453521-60f8-4a3e-9a61-94d9b2b84589" + "uuid": "7bab6b0b-de89-4a36-b1ab-c230195980a0" }, { - "id": "19cce298-39f2-453d-8bb4-fc81255c3001", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_32b18f6ba1f5dc4a5dc9f6eba59efa3eea952d8831c326b2773dfcd1483ddf818d7410db5e627b14a2e6fa1e04bd30256e8d029e", + "id": "99ded681-ccec-40b9-8d41-869ff57cf451", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_ed9925d5b6ca333b467a7c55167dae1006d0748739999516f7c41eaf2e1ae420aca9d1e3840487a8539831815db77c7963617246", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/32b18f6ba1f5dc4a5dc9f6eba59efa3eea952d88%3A31c326b2773dfcd1483ddf818d7410db5e627b14a2e6fa1e04bd30256e8d029e", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/ed9925d5b6ca333b467a7c55167dae1006d07487%3A39999516f7c41eaf2e1ae420aca9d1e3840487a8539831815db77c7963617246", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[5099309.54,2.21235901E7,6614222.47,1.6332673E7,8269682.68,3.032651218E7,2761931.26,5280100.66,2664832.4,6861025.51,2607118.07,7684458.67]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}},{\"attributeHeader\":{\"labelValue\":\"East Coast\",\"primaryLabelValue\":\"East Coast\"}},{\"attributeHeader\":{\"labelValue\":\"West Coast\",\"primaryLabelValue\":\"West Coast\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,12],\"offset\":[0,0],\"total\":[1,12]}}", + "body": "{\"data\":[[50780,35975,33920,33596]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Phone Call\",\"primaryLabelValue\":\"Phone Call\"}},{\"attributeHeader\":{\"labelValue\":\"In Person Meeting\",\"primaryLabelValue\":\"In Person Meeting\"}},{\"attributeHeader\":{\"labelValue\":\"Email\",\"primaryLabelValue\":\"Email\"}},{\"attributeHeader\":{\"labelValue\":\"Web Meeting\",\"primaryLabelValue\":\"Web Meeting\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,4],\"offset\":[0,0],\"total\":[1,4]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "19cce298-39f2-453d-8bb4-fc81255c3001" + "uuid": "99ded681-ccec-40b9-8d41-869ff57cf451" }, { - "id": "24983e22-b1b4-433a-8ebf-dc2b852be8fd", + "id": "7cd6d97d-0209-4a90-9fc4-e63ec9bd8d5d", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -93,7 +93,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"32b18f6ba1f5dc4a5dc9f6eba59efa3eea952d88:31c326b2773dfcd1483ddf818d7410db5e627b14a2e6fa1e04bd30256e8d029e\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"9d99209ce77dfa91066194a08c0327fab5ccd74a:6617c9ef2fbf211836edb2d9d341a47b621e4c33fbfb3337bf999b00bcf9d39d\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -106,18 +106,25 @@ "Content-Type": "application/json" } }, - "uuid": "24983e22-b1b4-433a-8ebf-dc2b852be8fd" + "uuid": "7cd6d97d-0209-4a90-9fc4-e63ec9bd8d5d" }, { - "id": "4462e176-cf9c-4ca4-9c3c-8435320d2704", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_a357a424e55dc59f76535be022e3a6a3329203b4530752f5107f07c2f127dd76963f749945b1b9fab10cfd92307c763be3df61fb", + "id": "078770ed-d926-4999-a147-84065d8149d2", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/a357a424e55dc59f76535be022e3a6a3329203b4%3A530752f5107f07c2f127dd76963f749945b1b9fab10cfd92307c763be3df61fb", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_of_activities\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_of_lost_opps.\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_768414e1_4bbe_4f01_b125_0cdc6305dc76\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":[[50780,35975,33920,33596]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Phone Call\",\"primaryLabelValue\":\"Phone Call\"}},{\"attributeHeader\":{\"labelValue\":\"In Person Meeting\",\"primaryLabelValue\":\"In Person Meeting\"}},{\"attributeHeader\":{\"labelValue\":\"Email\",\"primaryLabelValue\":\"Email\"}},{\"attributeHeader\":{\"labelValue\":\"Web Meeting\",\"primaryLabelValue\":\"Web Meeting\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,4],\"offset\":[0,0],\"total\":[1,4]}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_of_activities\",\"format\":\"#,##0\",\"name\":\"# of Activities\"},{\"localIdentifier\":\"m_of_lost_opps.\",\"format\":\"#,##0\",\"name\":\"# of Lost Opps.\"},{\"localIdentifier\":\"m_768414e1_4bbe_4f01_b125_0cdc6305dc76\",\"format\":\"#,##0.00\",\"name\":\"# Of Opportunities\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"4f793b34aedc46f95dfb974b0a23c9991ff067f7:81ce46ebe9be7da2f33bd4fdbbdaebf4fdc59484d7d7469904927fb5eb6ba11d\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -130,25 +137,18 @@ "Content-Type": "application/json" } }, - "uuid": "4462e176-cf9c-4ca4-9c3c-8435320d2704" + "uuid": "078770ed-d926-4999-a147-84065d8149d2" }, { - "id": "151d6cce-70d0-4a33-9b12-772aeaef79f8", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", + "id": "12eced70-c701-471d-a358-d0e0487422bf", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_ca00663353bb16fc6cf7656509a6bea8226a7ccd9f2490ba6be03aadc660e6ec60d5abbcfca53e4ff30ad49f5324932b98656442", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", - "method": "POST", - "bodyPatterns": [ - { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"a_label.f_product.product.name\"],\"sorting\":[{\"value\":{\"direction\":\"DESC\",\"dataColumnLocators\":{\"dim_0\":{\"measureGroup\":\"m_f_opportunitysnapshot.f_amount_sum\"}}}}]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}},\"aggregation\":\"SUM\"}}}],\"attributes\":[{\"label\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"a_label.f_product.product.name\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", - "ignoreArrayOrder": false, - "ignoreExtraElements": false - } - ] + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/ca00663353bb16fc6cf7656509a6bea8226a7ccd%3A9f2490ba6be03aadc660e6ec60d5abbcfca53e4ff30ad49f5324932b98656442", + "method": "GET" }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"7b2e6d199c866e8d9c0b2b00b9944c67d496b87e:be766f29c5972fcaf09171397cfc07e0d8dccd93b8fcccb383d285e09bf5cd36\"}}}", + "body": "{\"data\":[[1.77415952428E9,1.24049376475E9,1.22182844421E9,5.8287075062E8,4.2104577459E8,3.7754100495E8]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Explorer\",\"primaryLabelValue\":\"Explorer\"}},{\"attributeHeader\":{\"labelValue\":\"Educationly\",\"primaryLabelValue\":\"Educationly\"}},{\"attributeHeader\":{\"labelValue\":\"CompuSci\",\"primaryLabelValue\":\"CompuSci\"}},{\"attributeHeader\":{\"labelValue\":\"WonderKid\",\"primaryLabelValue\":\"WonderKid\"}},{\"attributeHeader\":{\"labelValue\":\"PhoenixSoft\",\"primaryLabelValue\":\"PhoenixSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Grammar Plus\",\"primaryLabelValue\":\"Grammar Plus\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,6],\"offset\":[0,0],\"total\":[1,6]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -161,17 +161,17 @@ "Content-Type": "application/json" } }, - "uuid": "151d6cce-70d0-4a33-9b12-772aeaef79f8" + "uuid": "12eced70-c701-471d-a358-d0e0487422bf" }, { - "id": "ccb707d8-ff7f-4ade-9287-faff404e48bd", + "id": "40e5170d-ba97-4b13-aae0-88d8728eb38f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_of_activities\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_of_lost_opps.\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_768414e1_4bbe_4f01_b125_0cdc6305dc76\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"a_label.f_product.product.name\"],\"sorting\":[{\"value\":{\"direction\":\"DESC\",\"dataColumnLocators\":{\"dim_0\":{\"measureGroup\":\"m_f_opportunitysnapshot.f_amount_sum\"}}}}]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}},\"aggregation\":\"SUM\"}}}],\"attributes\":[{\"label\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"a_label.f_product.product.name\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -179,7 +179,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_of_activities\",\"format\":\"#,##0\",\"name\":\"# of Activities\"},{\"localIdentifier\":\"m_of_lost_opps.\",\"format\":\"#,##0\",\"name\":\"# of Lost Opps.\"},{\"localIdentifier\":\"m_768414e1_4bbe_4f01_b125_0cdc6305dc76\",\"format\":\"#,##0.00\",\"name\":\"# Of Opportunities\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"faf392f211e7f0aeb9f3c92adb05b7575b100f60:5ebcce8647b9fc7c5796a35ff3c58eedf34ccbaa79d01fee489b86ab5f77be2a\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_opportunitysnapshot.f_amount_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_product.product.name\",\"label\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},\"labelName\":\"Product Name\",\"attribute\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\"},\"attributeName\":\"Product\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"ca00663353bb16fc6cf7656509a6bea8226a7ccd:9f2490ba6be03aadc660e6ec60d5abbcfca53e4ff30ad49f5324932b98656442\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -192,10 +192,10 @@ "Content-Type": "application/json" } }, - "uuid": "ccb707d8-ff7f-4ade-9287-faff404e48bd" + "uuid": "40e5170d-ba97-4b13-aae0-88d8728eb38f" }, { - "id": "d7c2c46f-4208-4907-84f8-7ddae9ca81a5", + "id": "b126d7d0-e37e-4847-b6fa-1d3d9278ed78", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -210,7 +210,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_of_activities\",\"format\":\"#,##0\",\"name\":\"# of Activities\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_activity.activitytype_id\",\"label\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"},\"labelName\":\"Activity Type\",\"attribute\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\"},\"attributeName\":\"Activity Type\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"a357a424e55dc59f76535be022e3a6a3329203b4:530752f5107f07c2f127dd76963f749945b1b9fab10cfd92307c763be3df61fb\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_of_activities\",\"format\":\"#,##0\",\"name\":\"# of Activities\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_activity.activitytype_id\",\"label\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"},\"labelName\":\"Activity Type\",\"attribute\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\"},\"attributeName\":\"Activity Type\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"ed9925d5b6ca333b467a7c55167dae1006d07487:39999516f7c41eaf2e1ae420aca9d1e3840487a8539831815db77c7963617246\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -223,10 +223,10 @@ "Content-Type": "application/json" } }, - "uuid": "d7c2c46f-4208-4907-84f8-7ddae9ca81a5" + "uuid": "b126d7d0-e37e-4847-b6fa-1d3d9278ed78" }, { - "id": "f36d7af7-4f4c-4253-88a9-3c6edf201179", + "id": "e04d1291-a3b0-426d-a99a-d242f83c9ec2", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27b5f958b1-0428-41d6-b211-b4dad61d21ff%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -247,18 +247,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f36d7af7-4f4c-4253-88a9-3c6edf201179" + "uuid": "e04d1291-a3b0-426d-a99a-d242f83c9ec2" }, { - "id": "a71eb4c8-9d1a-4329-b54f-dc27510ba7f5", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "99154374-15ad-49c3-ba60-5370fb1509fd", + "name": "api_v1_entities_notificationchannels", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -268,21 +268,21 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a71eb4c8-9d1a-4329-b54f-dc27510ba7f5" + "uuid": "99154374-15ad-49c3-ba60-5370fb1509fd" }, { - "id": "bb55ce32-baf2-48d6-addd-a504e3d61159", - "name": "api_v1_entities_notificationchannels", + "id": "99e68245-da5e-4698-960d-24043a4a723b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -292,13 +292,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "bb55ce32-baf2-48d6-addd-a504e3d61159" + "uuid": "99e68245-da5e-4698-960d-24043a4a723b" }, { - "id": "7b4a5836-59d9-4323-b84a-779bc971db71", + "id": "e4d87e1b-912c-4d42-ab0a-e9ea8b80dd80", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -319,10 +319,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7b4a5836-59d9-4323-b84a-779bc971db71" + "uuid": "e4d87e1b-912c-4d42-ab0a-e9ea8b80dd80" }, { - "id": "b7aeb709-dafc-4dfb-93e8-28c99ab375b6", + "id": "02ae9256-f4f8-48af-a98a-e92d69e62d20", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -343,10 +343,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b7aeb709-dafc-4dfb-93e8-28c99ab375b6" + "uuid": "02ae9256-f4f8-48af-a98a-e92d69e62d20" }, { - "id": "6013c911-fc86-4178-ae30-38a80d486852", + "id": "cb776c29-aad2-4bfc-85d0-fa738106b2f5", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -354,7 +354,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -372,10 +372,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6013c911-fc86-4178-ae30-38a80d486852" + "uuid": "cb776c29-aad2-4bfc-85d0-fa738106b2f5" }, { - "id": "a8e9fd4e-2e73-46e1-8879-21ba9ddb0984", + "id": "5729b781-d81b-4aac-8d87-d5f69a10eeeb", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -383,7 +383,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -401,10 +401,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a8e9fd4e-2e73-46e1-8879-21ba9ddb0984" + "uuid": "5729b781-d81b-4aac-8d87-d5f69a10eeeb" }, { - "id": "249fbbd6-c16c-4662-9ef6-56cadebb6398", + "id": "d8f28f4d-07e2-4b54-bdaa-38f04dbc102f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3Db5f958b1-0428-41d6-b211-b4dad61d21ff%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -425,10 +425,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "249fbbd6-c16c-4662-9ef6-56cadebb6398" + "uuid": "d8f28f4d-07e2-4b54-bdaa-38f04dbc102f" }, { - "id": "a9ae04f2-cc34-402e-b91e-fa6c5821daea", + "id": "ac025f7e-1185-4cbc-84b6-cafa10331ef8", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_b5f958b1-0428-41d6-b211-b4dad61d21ff", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -454,10 +454,37 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a9ae04f2-cc34-402e-b91e-fa6c5821daea" + "uuid": "ac025f7e-1185-4cbc-84b6-cafa10331ef8" }, { - "id": "5e6367b2-3c7f-4fbc-82d5-50005f7b3ff3", + "id": "4cf3b9e1-3f3d-49fb-a9a9-d6cdd3a6d90b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "4cf3b9e1-3f3d-49fb-a9a9-d6cdd3a6d90b" + }, + { + "id": "0ce6b5f6-a532-4ee5-bbbf-2e77d09957d7", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -465,7 +492,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -483,37 +510,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5e6367b2-3c7f-4fbc-82d5-50005f7b3ff3" + "uuid": "0ce6b5f6-a532-4ee5-bbbf-2e77d09957d7" }, { - "id": "77663866-ccd4-4919-8cca-e21ce786cdea", + "id": "c15f1d7a-9c31-4f46-9318-84288857a389", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", - "method": "GET" + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "77663866-ccd4-4919-8cca-e21ce786cdea" + "uuid": "c15f1d7a-9c31-4f46-9318-84288857a389" }, { - "id": "9e739be4-e455-49aa-8142-8ab679a949ba", + "id": "df1e01b4-030e-44e3-ac00-05d59a291ccd", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -521,7 +552,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -532,10 +563,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9e739be4-e455-49aa-8142-8ab679a949ba" + "uuid": "df1e01b4-030e-44e3-ac00-05d59a291ccd" }, { - "id": "488756d3-9229-4131-a8eb-bcfe0ac8c070", + "id": "f9ae1c11-55eb-4054-a782-366ff56c8b5d", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -543,7 +574,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -559,7 +590,7 @@ "Content-Type": "application/json" } }, - "uuid": "488756d3-9229-4131-a8eb-bcfe0ac8c070" + "uuid": "f9ae1c11-55eb-4054-a782-366ff56c8b5d" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dependentFilters.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dependentFilters.spec.ts.json index cae3aebf4f4..75f888706c2 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dependentFilters.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dependentFilters.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "0c80bee9-d953-4f5e-aa70-03b9e1484ff1", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_e0c409be0fc8dab1655fa499b8a0cc3b24ca315ff13cf24f5e19b18af49059453fa3d2ccc8340008c929192f9f8f30b83ad5b2f1", + "id": "8a985a7f-f36a-45da-8ea8-f9080929b787", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_fa8d3fa19e9fd7505e835a2f3490134949c2848ec6f00f70472591673b3bd82d451f6606af8272aacafc0f40831492ed20c00b39", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/e0c409be0fc8dab1655fa499b8a0cc3b24ca315f%3Af13cf24f5e19b18af49059453fa3d2ccc8340008c929192f9f8f30b83ad5b2f1?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/fa8d3fa19e9fd7505e835a2f3490134949c2848e%3Ac6f00f70472591673b3bd82d451f6606af8272aacafc0f40831492ed20c00b39?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -27,10 +27,10 @@ "Content-Type": "application/json" } }, - "uuid": "0c80bee9-d953-4f5e-aa70-03b9e1484ff1" + "uuid": "8a985a7f-f36a-45da-8ea8-f9080929b787" }, { - "id": "27e94f35-11c0-45b3-899f-be31a45e1d2e", + "id": "bbc0e505-3d54-48cd-a6ed-735ce08c0ddd", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -38,7 +38,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -54,10 +54,10 @@ "Content-Type": "application/json" } }, - "uuid": "27e94f35-11c0-45b3-899f-be31a45e1d2e" + "uuid": "bbc0e505-3d54-48cd-a6ed-735ce08c0ddd" }, { - "id": "f99f7c57-5b10-4e41-8221-c3d203882aa2", + "id": "ea9bfd19-7a1e-422b-99fe-e1f7bec345ee", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dstate_id.statename&include=labels", @@ -83,10 +83,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f99f7c57-5b10-4e41-8221-c3d203882aa2" + "uuid": "ea9bfd19-7a1e-422b-99fe-e1f7bec345ee" }, { - "id": "29117784-42a4-4f6f-ab4d-08408393e8d5", + "id": "903ed60d-eb3d-4190-ada1-93ff2a60ed7b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -101,7 +101,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"e0c409be0fc8dab1655fa499b8a0cc3b24ca315f:f13cf24f5e19b18af49059453fa3d2ccc8340008c929192f9f8f30b83ad5b2f1\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"fa8d3fa19e9fd7505e835a2f3490134949c2848e:c6f00f70472591673b3bd82d451f6606af8272aacafc0f40831492ed20c00b39\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -119,10 +119,10 @@ "Content-Type": "application/json" } }, - "uuid": "29117784-42a4-4f6f-ab4d-08408393e8d5" + "uuid": "903ed60d-eb3d-4190-ada1-93ff2a60ed7b" }, { - "id": "e120e684-c3b2-47d8-839b-76eb39dbdde3", + "id": "3818818a-cca7-4e57-b23d-782474e080b8", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -130,7 +130,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -141,10 +141,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e120e684-c3b2-47d8-839b-76eb39dbdde3" + "uuid": "3818818a-cca7-4e57-b23d-782474e080b8" }, { - "id": "049cbb3d-aee9-49b3-b546-7a8aa3aecbf0", + "id": "4e5b063c-b573-465f-a34f-d6488f7bee69", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_city.id.cityname&include=labels", @@ -152,7 +152,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -170,17 +170,17 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "049cbb3d-aee9-49b3-b546-7a8aa3aecbf0" + "uuid": "4e5b063c-b573-465f-a34f-d6488f7bee69" }, { - "id": "11c404d0-8db6-4456-9c9a-5b879ccd829f", + "id": "10381fd7-6ec7-4190-83be-441a77baa3fa", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "equalToJson": "{\"label\":\"state_id.statename\",\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -188,7 +188,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -206,17 +206,17 @@ "Content-Type": "application/json" } }, - "uuid": "11c404d0-8db6-4456-9c9a-5b879ccd829f" + "uuid": "10381fd7-6ec7-4190-83be-441a77baa3fa" }, { - "id": "9c0159b8-8a2a-4f91-a55f-e5617bef9558", + "id": "3b0996ab-900b-4ce3-a0b1-9976e7618f42", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -224,7 +224,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -242,41 +242,10 @@ "Content-Type": "application/json" } }, - "uuid": "9c0159b8-8a2a-4f91-a55f-e5617bef9558" + "uuid": "3b0996ab-900b-4ce3-a0b1-9976e7618f42" }, { - "id": "7f76fc56-78f9-4c9c-90a2-eda843526a72", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", - "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", - "method": "POST", - "bodyPatterns": [ - { - "equalToJson": "{\"label\":\"f_owner.region_id\",\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", - "ignoreArrayOrder": false, - "ignoreExtraElements": false - } - ] - }, - "response": { - "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":null,\"primaryTitle\":null},{\"title\":\"\",\"primaryTitle\":\"\"},{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"},{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", - "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], - "Expires": "0", - "X-XSS-Protection": "0", - "Content-Type": "application/json" - } - }, - "uuid": "7f76fc56-78f9-4c9c-90a2-eda843526a72" - }, - { - "id": "cf862081-5b39-4aa3-8024-4b7d0cae68dc", + "id": "23ffc814-c0cc-4f08-9ee8-0472e5d4561f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", @@ -291,7 +260,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"fdf3ac67bd36fe1809cc7f137546a087\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"a6112624a4fe34942dbd6223f2514701\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -304,10 +273,10 @@ "Content-Type": "application/json" } }, - "uuid": "cf862081-5b39-4aa3-8024-4b7d0cae68dc" + "uuid": "23ffc814-c0cc-4f08-9ee8-0472e5d4561f" }, { - "id": "87cd687c-1fd3-42fe-896d-1ec1ac808216", + "id": "5a477fa7-0c69-4927-8600-8eec25c41af5", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_owner.region_id&include=labels", @@ -333,10 +302,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "87cd687c-1fd3-42fe-896d-1ec1ac808216" + "uuid": "5a477fa7-0c69-4927-8600-8eec25c41af5" }, { - "id": "c8659240-05e4-41d1-85b0-eaadb2387e01", + "id": "ba0b6f6a-14c7-47af-aa4c-c697d3ce52dd", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -360,10 +329,41 @@ "Content-Type": "application/json" } }, - "uuid": "c8659240-05e4-41d1-85b0-eaadb2387e01" + "uuid": "ba0b6f6a-14c7-47af-aa4c-c697d3ce52dd" + }, + { + "id": "b5d38b94-4ea9-49d6-b4e8-9515c6ed599a", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"label\":\"f_owner.region_id\",\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":null,\"primaryTitle\":null},{\"title\":\"\",\"primaryTitle\":\"\"},{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"},{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "b5d38b94-4ea9-49d6-b4e8-9515c6ed599a" }, { - "id": "2d8d793b-3a73-437d-b986-2db1877d3bfb", + "id": "1665c7c5-a8a2-49c6-a09e-0260cd3d9aa1", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dstate_id&include=labels", @@ -371,7 +371,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27state_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27state_id%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27state_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27state_id%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -389,10 +389,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2d8d793b-3a73-437d-b986-2db1877d3bfb" + "uuid": "1665c7c5-a8a2-49c6-a09e-0260cd3d9aa1" }, { - "id": "4ebf5c4a-bce0-4c6e-8778-dcc8eea66992", + "id": "18f7a855-0563-4ed2-a57e-f185f47c031f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -407,7 +407,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"091ecf6f5f99cdd79ce550b03d468a1b\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"726484aed9943019c644f58ef4e0e082\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -420,17 +420,17 @@ "Content-Type": "application/json" } }, - "uuid": "4ebf5c4a-bce0-4c6e-8778-dcc8eea66992" + "uuid": "18f7a855-0563-4ed2-a57e-f185f47c031f" }, { - "id": "fe160d28-a811-4388-9d34-0332ca935d8c", + "id": "add07a32-9dec-437f-84a3-23d5724474cf", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -438,7 +438,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -451,10 +451,10 @@ "Content-Type": "application/json" } }, - "uuid": "fe160d28-a811-4388-9d34-0332ca935d8c" + "uuid": "add07a32-9dec-437f-84a3-23d5724474cf" }, { - "id": "92a0f8a8-340c-47fa-9e20-b7eeb0363e1b", + "id": "b0df1337-c748-4f0c-ac3b-ce2534959b4e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -469,7 +469,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"4069650dd81e89c9f70c7cacc91e7bfa\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"cc326083c185a97b4d758c0ac755fdc2\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -482,17 +482,17 @@ "Content-Type": "application/json" } }, - "uuid": "92a0f8a8-340c-47fa-9e20-b7eeb0363e1b" + "uuid": "b0df1337-c748-4f0c-ac3b-ce2534959b4e" }, { - "id": "222032a8-40f3-4345-8b87-5fb561ded85b", + "id": "0966258d-bd25-445f-8540-89f02678d8cb", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false}],\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false}],\"cacheId\":\"63fed13934958ce405e5422e7c353add\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -500,7 +500,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"}],\"paging\":{\"total\":3,\"count\":3,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"}],\"paging\":{\"total\":3,\"count\":3,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -513,13 +513,13 @@ "Content-Type": "application/json" } }, - "uuid": "222032a8-40f3-4345-8b87-5fb561ded85b" + "uuid": "0966258d-bd25-445f-8540-89f02678d8cb" }, { - "id": "d00a7f19-c180-49fb-a9fc-0afb0debc5d1", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_b10d57c4e528b0c61089942d87867897ec4ee2b06b83d84dad738c4b95350205ef5017152ca953a28494cd0889f16a6a4c43cbac", + "id": "aac13827-aad4-48d5-b76c-82671b51b468", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_6dc943919345752589ae0e9d69827a6beeb6c1b1ba407eda34efa9d7a38fffa1f1b47c1abd0e570872fa7aadb541280f4d92ab60", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/b10d57c4e528b0c61089942d87867897ec4ee2b0%3A6b83d84dad738c4b95350205ef5017152ca953a28494cd0889f16a6a4c43cbac?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/6dc943919345752589ae0e9d69827a6beeb6c1b1%3Aba407eda34efa9d7a38fffa1f1b47c1abd0e570872fa7aadb541280f4d92ab60?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -537,10 +537,10 @@ "Content-Type": "application/json" } }, - "uuid": "d00a7f19-c180-49fb-a9fc-0afb0debc5d1" + "uuid": "aac13827-aad4-48d5-b76c-82671b51b468" }, { - "id": "9109cbdc-95de-44ee-981d-a39e39a19ac0", + "id": "426d5b47-36fb-427e-8295-4f04ef852b48", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -555,7 +555,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"b10d57c4e528b0c61089942d87867897ec4ee2b0:6b83d84dad738c4b95350205ef5017152ca953a28494cd0889f16a6a4c43cbac\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"6dc943919345752589ae0e9d69827a6beeb6c1b1:ba407eda34efa9d7a38fffa1f1b47c1abd0e570872fa7aadb541280f4d92ab60\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -573,17 +573,17 @@ "Content-Type": "application/json" } }, - "uuid": "9109cbdc-95de-44ee-981d-a39e39a19ac0" + "uuid": "426d5b47-36fb-427e-8295-4f04ef852b48" }, { - "id": "cd7a8537-c90d-4bbe-8036-3eb8bfbab4ca", + "id": "1a4c0bff-08e1-498a-a8c2-979172687e87", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_owner.region_id\",\"patternFilter\":\"West Coast\",\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", + "equalToJson": "{\"label\":\"f_owner.region_id\",\"patternFilter\":\"West Coast\",\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -591,7 +591,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -604,10 +604,10 @@ "Content-Type": "application/json" } }, - "uuid": "cd7a8537-c90d-4bbe-8036-3eb8bfbab4ca" + "uuid": "1a4c0bff-08e1-498a-a8c2-979172687e87" }, { - "id": "6a974954-400b-40d4-a086-71b860b44753", + "id": "ff91554e-132d-4ea7-8c1c-4e121b398f79", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -622,7 +622,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"8e0afb0874ba596ec04b57ec0d69c991\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"8c15427a2ffca46e4ebb7a7a89189ec4\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -635,17 +635,17 @@ "Content-Type": "application/json" } }, - "uuid": "6a974954-400b-40d4-a086-71b860b44753" + "uuid": "ff91554e-132d-4ea7-8c1c-4e121b398f79" }, { - "id": "2b434113-d96f-4587-ae8e-3c0faf92eee0", + "id": "9b658c88-4e21-4474-9fce-8773eeaf9a89", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -653,7 +653,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -666,10 +666,10 @@ "Content-Type": "application/json" } }, - "uuid": "2b434113-d96f-4587-ae8e-3c0faf92eee0" + "uuid": "9b658c88-4e21-4474-9fce-8773eeaf9a89" }, { - "id": "fb73e2eb-0e39-41dc-a12e-4cc6549f0f76", + "id": "fa822926-2014-4db7-8f62-323036b02a23", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -684,7 +684,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"82fcf5376120ccf6a054ddb5556a200b\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"55414ab3c10d96c4f52f57089852d8ff\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -697,17 +697,17 @@ "Content-Type": "application/json" } }, - "uuid": "fb73e2eb-0e39-41dc-a12e-4cc6549f0f76" + "uuid": "fa822926-2014-4db7-8f62-323036b02a23" }, { - "id": "e2e0430b-0771-46cf-8702-66252cf3fc49", + "id": "b80fd0d0-2315-49ce-9542-c216bef1d29f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false}],\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false}],\"cacheId\":\"63fed13934958ce405e5422e7c353add\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -715,7 +715,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -728,13 +728,13 @@ "Content-Type": "application/json" } }, - "uuid": "e2e0430b-0771-46cf-8702-66252cf3fc49" + "uuid": "b80fd0d0-2315-49ce-9542-c216bef1d29f" }, { - "id": "0eeca817-fae4-48d3-8461-62da595152c3", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_00169140e0c44ceb62e9a2914facad76f4c46daad7e83eee4faefdb8df8f25113079bc3a6361976652c4d5817ed0cbb934af4ad0", + "id": "ab8ae873-e0db-4d61-a67e-a3b80df1daaf", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_42561f6c51cf6fa881de339960d8c0628fee4ad359feb3338e7d973811b086151edfa75fc28de096f11b98cb985405aa431df20c", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/00169140e0c44ceb62e9a2914facad76f4c46daa%3Ad7e83eee4faefdb8df8f25113079bc3a6361976652c4d5817ed0cbb934af4ad0?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/42561f6c51cf6fa881de339960d8c0628fee4ad3%3A59feb3338e7d973811b086151edfa75fc28de096f11b98cb985405aa431df20c?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -752,10 +752,10 @@ "Content-Type": "application/json" } }, - "uuid": "0eeca817-fae4-48d3-8461-62da595152c3" + "uuid": "ab8ae873-e0db-4d61-a67e-a3b80df1daaf" }, { - "id": "fc4e3831-1da3-4f0f-8b63-864a4b483314", + "id": "1f2bc0ea-a169-44d8-bb4b-f6e4aceb5a1d", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -770,7 +770,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"00169140e0c44ceb62e9a2914facad76f4c46daa:d7e83eee4faefdb8df8f25113079bc3a6361976652c4d5817ed0cbb934af4ad0\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"42561f6c51cf6fa881de339960d8c0628fee4ad3:59feb3338e7d973811b086151edfa75fc28de096f11b98cb985405aa431df20c\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -788,17 +788,17 @@ "Content-Type": "application/json" } }, - "uuid": "fc4e3831-1da3-4f0f-8b63-864a4b483314" + "uuid": "1f2bc0ea-a169-44d8-bb4b-f6e4aceb5a1d" }, { - "id": "b2f469f6-7a65-4357-9999-1586f11f9bdd", + "id": "61ee23ef-3df4-43bb-93da-01a749cdc723", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_owner.region_id\",\"patternFilter\":\"East Coast\",\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", + "equalToJson": "{\"label\":\"f_owner.region_id\",\"patternFilter\":\"East Coast\",\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -806,7 +806,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -819,10 +819,10 @@ "Content-Type": "application/json" } }, - "uuid": "b2f469f6-7a65-4357-9999-1586f11f9bdd" + "uuid": "61ee23ef-3df4-43bb-93da-01a749cdc723" }, { - "id": "5f7ce6f3-ef75-4317-aaa4-07976ebbd0df", + "id": "1d210969-dac9-4f46-b67d-56bfab829dfa", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_city.id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=labels%2CdefaultView", @@ -830,7 +830,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=labels%2CdefaultView\"}}", + "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=labels%2CdefaultView\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -848,17 +848,17 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5f7ce6f3-ef75-4317-aaa4-07976ebbd0df" + "uuid": "1d210969-dac9-4f46-b67d-56bfab829dfa" }, { - "id": "c3671aa5-b62f-4abb-b6fa-ffaa93fcf96b", + "id": "235953ff-9a69-4e28-a446-36aeff903217", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Sacramento\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Sacramento\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -866,7 +866,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -879,17 +879,17 @@ "Content-Type": "application/json" } }, - "uuid": "c3671aa5-b62f-4abb-b6fa-ffaa93fcf96b" + "uuid": "235953ff-9a69-4e28-a446-36aeff903217" }, { - "id": "dcfa227b-7bc0-4d77-9879-9aa646f54587", + "id": "51e34484-a10c-431d-90c0-f642c568e2f1", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false},{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -897,7 +897,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -910,10 +910,10 @@ "Content-Type": "application/json" } }, - "uuid": "dcfa227b-7bc0-4d77-9879-9aa646f54587" + "uuid": "51e34484-a10c-431d-90c0-f642c568e2f1" }, { - "id": "6e35937e-899f-4d6c-b858-149830a3356f", + "id": "8249babb-1dc7-4630-857c-4dfd4c18af95", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=1", @@ -928,7 +928,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"}],\"paging\":{\"total\":300,\"count\":1,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=1&offset=1\"},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"}],\"paging\":{\"total\":300,\"count\":1,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=1&offset=1\"},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -941,10 +941,10 @@ "Content-Type": "application/json" } }, - "uuid": "6e35937e-899f-4d6c-b858-149830a3356f" + "uuid": "8249babb-1dc7-4630-857c-4dfd4c18af95" }, { - "id": "9f88877e-17e4-4ef3-9a02-15e1c04e008c", + "id": "2bdbc4f1-4210-454a-9eeb-40b5cacfcf4b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -977,10 +977,10 @@ "Content-Type": "application/json" } }, - "uuid": "9f88877e-17e4-4ef3-9a02-15e1c04e008c" + "uuid": "2bdbc4f1-4210-454a-9eeb-40b5cacfcf4b" }, { - "id": "88de86d3-4dad-4390-bd4b-dac93de3ddda", + "id": "b5cfbec1-910e-4d1f-b0ca-ddfd650b657b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", @@ -988,7 +988,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1006,10 +1006,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "88de86d3-4dad-4390-bd4b-dac93de3ddda" + "uuid": "b5cfbec1-910e-4d1f-b0ca-ddfd650b657b" }, { - "id": "4b259d74-b15b-47e1-99f2-897af57402e9", + "id": "c18cc3c6-3fcc-4b60-b0bb-84532644f142", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -1017,7 +1017,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1035,10 +1035,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4b259d74-b15b-47e1-99f2-897af57402e9" + "uuid": "c18cc3c6-3fcc-4b60-b0bb-84532644f142" }, { - "id": "b07d8bd0-4afc-4b61-a37b-d9dd5602f748", + "id": "5f3b42ef-ec3c-4ae9-9db0-c14155f7a61e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1071,10 +1071,10 @@ "Content-Type": "application/json" } }, - "uuid": "b07d8bd0-4afc-4b61-a37b-d9dd5602f748" + "uuid": "5f3b42ef-ec3c-4ae9-9db0-c14155f7a61e" }, { - "id": "1351ceb9-1304-44a3-80d3-b4c74b96346d", + "id": "321c3769-af49-42f1-9658-f1d7e485576f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", @@ -1100,17 +1100,17 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1351ceb9-1304-44a3-80d3-b4c74b96346d" + "uuid": "321c3769-af49-42f1-9658-f1d7e485576f" }, { - "id": "95fedc77-dde2-4ce0-8d9e-3eab759cdf14", + "id": "556eb153-9c2c-4c08-9b39-7f5b2043f065", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CA\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -1118,7 +1118,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"}],\"paging\":{\"total\":50,\"count\":50,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"}],\"paging\":{\"total\":50,\"count\":50,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1136,13 +1136,13 @@ "Content-Type": "application/json" } }, - "uuid": "95fedc77-dde2-4ce0-8d9e-3eab759cdf14" + "uuid": "556eb153-9c2c-4c08-9b39-7f5b2043f065" }, { - "id": "3a19f6bf-9b13-45ee-be86-70f404fcd409", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_9e4c33e5745b2dba44858f7c1a53680f90b81c549608ed952ffd2678b479c374f4d86965cbc42dd7eb680f9b418a54c50561ef67", + "id": "6411bd80-d83e-4eb0-bc67-b891604d2b61", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_7b8cd0009983353af0957f9a0f799f7116b235d0a914a9af596350a5df1d7cf276657f61adba47b6cae1310cbef694eb0b3619ee", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/9e4c33e5745b2dba44858f7c1a53680f90b81c54%3A9608ed952ffd2678b479c374f4d86965cbc42dd7eb680f9b418a54c50561ef67?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/7b8cd0009983353af0957f9a0f799f7116b235d0%3Aa914a9af596350a5df1d7cf276657f61adba47b6cae1310cbef694eb0b3619ee?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -1165,10 +1165,10 @@ "Content-Type": "application/json" } }, - "uuid": "3a19f6bf-9b13-45ee-be86-70f404fcd409" + "uuid": "6411bd80-d83e-4eb0-bc67-b891604d2b61" }, { - "id": "97d06414-4164-49df-ad7e-a4eb382e73db", + "id": "8eb04b8a-7949-47e4-96b9-1c20f33c3f60", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -1183,7 +1183,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"9e4c33e5745b2dba44858f7c1a53680f90b81c54:9608ed952ffd2678b479c374f4d86965cbc42dd7eb680f9b418a54c50561ef67\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"7b8cd0009983353af0957f9a0f799f7116b235d0:a914a9af596350a5df1d7cf276657f61adba47b6cae1310cbef694eb0b3619ee\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1201,10 +1201,10 @@ "Content-Type": "application/json" } }, - "uuid": "97d06414-4164-49df-ad7e-a4eb382e73db" + "uuid": "8eb04b8a-7949-47e4-96b9-1c20f33c3f60" }, { - "id": "b6d34e85-78cc-4cc2-a879-69d9d8a9907d", + "id": "d6a3aa57-5fb4-4f3e-9274-3dd38a2c4444", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_state_id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id?include=labels%2CdefaultView", @@ -1230,17 +1230,17 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b6d34e85-78cc-4cc2-a879-69d9d8a9907d" + "uuid": "d6a3aa57-5fb4-4f3e-9274-3dd38a2c4444" }, { - "id": "d6ba3283-b624-466b-9291-c756d2335801", + "id": "40fe6553-bb69-487c-aeec-2463309a71f1", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"California\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false}],\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"California\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"West Coast\"],\"complementFilter\":false}],\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -1248,7 +1248,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"California\",\"primaryTitle\":\"CA\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1261,13 +1261,13 @@ "Content-Type": "application/json" } }, - "uuid": "d6ba3283-b624-466b-9291-c756d2335801" + "uuid": "40fe6553-bb69-487c-aeec-2463309a71f1" }, { - "id": "4e90786b-dbf1-41b0-9725-e2ee3b222555", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_740fa8b23cc736cd7232513e7c2549429fc457b99ac1c6a6ad6147b3ac8d0e1d08bd2f46c3782241b0f7a0103a644b7e344d09be", + "id": "6ccb4613-1822-4c00-835b-2872a7e579d3", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_030ceeffc12a9416ec83f095373dbcf2dc2403f84844f664e6d52be998fd91e05b25ddb1585c361e5b57b5ccd9ec00f90cdcef80", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/740fa8b23cc736cd7232513e7c2549429fc457b9%3A9ac1c6a6ad6147b3ac8d0e1d08bd2f46c3782241b0f7a0103a644b7e344d09be?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/030ceeffc12a9416ec83f095373dbcf2dc2403f8%3A4844f664e6d52be998fd91e05b25ddb1585c361e5b57b5ccd9ec00f90cdcef80?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -1290,10 +1290,10 @@ "Content-Type": "application/json" } }, - "uuid": "4e90786b-dbf1-41b0-9725-e2ee3b222555" + "uuid": "6ccb4613-1822-4c00-835b-2872a7e579d3" }, { - "id": "1aaab42b-6927-4143-96d4-8a1c92179850", + "id": "d7a9a778-6185-48c1-a3d7-fa1bda17ea7b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -1308,7 +1308,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"740fa8b23cc736cd7232513e7c2549429fc457b9:9ac1c6a6ad6147b3ac8d0e1d08bd2f46c3782241b0f7a0103a644b7e344d09be\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"030ceeffc12a9416ec83f095373dbcf2dc2403f8:4844f664e6d52be998fd91e05b25ddb1585c361e5b57b5ccd9ec00f90cdcef80\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1326,17 +1326,17 @@ "Content-Type": "application/json" } }, - "uuid": "1aaab42b-6927-4143-96d4-8a1c92179850" + "uuid": "d7a9a778-6185-48c1-a3d7-fa1bda17ea7b" }, { - "id": "2b59bfab-4bcc-411a-b28b-df50eb369abb", + "id": "b33dc24c-90e7-47e0-a318-a3b3ae531712", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false}],\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "equalToJson": "{\"label\":\"state_id.statename\",\"dependsOn\":[{\"label\":\"f_owner.region_id\",\"values\":[\"East Coast\"],\"complementFilter\":false}],\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -1344,7 +1344,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1357,10 +1357,10 @@ "Content-Type": "application/json" } }, - "uuid": "2b59bfab-4bcc-411a-b28b-df50eb369abb" + "uuid": "b33dc24c-90e7-47e0-a318-a3b3ae531712" }, { - "id": "34b97ae6-307e-44af-8c2c-9efc843888b0", + "id": "fa2c33b4-c69c-4563-9783-024b86da9fdb", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=1", @@ -1375,7 +1375,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"}],\"paging\":{\"total\":48,\"count\":1,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=1&offset=1\"},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"}],\"paging\":{\"total\":48,\"count\":1,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=1&offset=1\"},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1388,10 +1388,10 @@ "Content-Type": "application/json" } }, - "uuid": "34b97ae6-307e-44af-8c2c-9efc843888b0" + "uuid": "fa2c33b4-c69c-4563-9783-024b86da9fdb" }, { - "id": "35fa26d8-0a8a-46c7-9f48-44dbfc973a70", + "id": "bbf98fec-7c61-4302-bb06-7e34fb32a14d", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1424,10 +1424,10 @@ "Content-Type": "application/json" } }, - "uuid": "35fa26d8-0a8a-46c7-9f48-44dbfc973a70" + "uuid": "bbf98fec-7c61-4302-bb06-7e34fb32a14d" }, { - "id": "74085ce6-fc4a-4bfa-9ad2-330bb28fb99e", + "id": "c1d5414f-4a29-4096-8abb-1cc89a9adb90", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1460,10 +1460,10 @@ "Content-Type": "application/json" } }, - "uuid": "74085ce6-fc4a-4bfa-9ad2-330bb28fb99e" + "uuid": "c1d5414f-4a29-4096-8abb-1cc89a9adb90" }, { - "id": "02208de4-53ea-483d-a420-41f2d37c83bb", + "id": "494e5e7d-3dfd-4885-9cc0-372e1df67e31", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_product.product", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product?include=datasets", @@ -1471,7 +1471,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1484,10 +1484,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "02208de4-53ea-483d-a420-41f2d37c83bb" + "uuid": "494e5e7d-3dfd-4885-9cc0-372e1df67e31" }, { - "id": "45efcbae-1f72-4458-93df-b2e2f766d277", + "id": "99b23981-b70c-4edc-9738-ad2d92b04a47", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_state_id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id?include=datasets", @@ -1495,7 +1495,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1508,10 +1508,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "45efcbae-1f72-4458-93df-b2e2f766d277" + "uuid": "99b23981-b70c-4edc-9738-ad2d92b04a47" }, { - "id": "422d9870-0b7f-4bd4-a006-b02fe828c1bd", + "id": "1139029a-1974-4ea3-8d77-06c03b26bac5", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_owner.region_id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id?include=datasets", @@ -1519,7 +1519,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1537,10 +1537,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "422d9870-0b7f-4bd4-a006-b02fe828c1bd" + "uuid": "1139029a-1974-4ea3-8d77-06c03b26bac5" }, { - "id": "aa775ebe-228c-4bac-b7b7-48bb7bd1c5b6", + "id": "d670e240-4e08-416f-bb11-88827d0ea9df", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_stage.stagename", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename?include=datasets", @@ -1548,7 +1548,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1566,63 +1566,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "aa775ebe-228c-4bac-b7b7-48bb7bd1c5b6" + "uuid": "d670e240-4e08-416f-bb11-88827d0ea9df" }, { - "id": "ba085e86-7ee7-4435-a722-a4c3f419c402", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", + "id": "84db53c3-d0c0-4679-945b-55b55ba7f43b", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_city.id", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ba085e86-7ee7-4435-a722-a4c3f419c402" + "uuid": "84db53c3-d0c0-4679-945b-55b55ba7f43b" }, { - "id": "9c574fad-9af5-446c-8c23-aa47037ff839", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_city.id", + "id": "97cf7cee-437c-48be-8ee2-0bcc217be088", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9c574fad-9af5-446c-8c23-aa47037ff839" + "uuid": "97cf7cee-437c-48be-8ee2-0bcc217be088" }, { - "id": "1ba5d8d5-03c8-439d-8a20-67d4ca6297ea", + "id": "a3c7ffa1-0bc9-4385-b958-6b7377bed544", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_product.product.name&include=labels", @@ -1630,7 +1630,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_product.product.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_product.product.name%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_product.product.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_product.product.name%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1648,10 +1648,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1ba5d8d5-03c8-439d-8a20-67d4ca6297ea" + "uuid": "a3c7ffa1-0bc9-4385-b958-6b7377bed544" }, { - "id": "6b34a294-6893-4d0e-9300-2abb4a32fe34", + "id": "66d9d12e-7e09-4cf2-a7f0-94d6796617eb", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -1672,10 +1672,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6b34a294-6893-4d0e-9300-2abb4a32fe34" + "uuid": "66d9d12e-7e09-4cf2-a7f0-94d6796617eb" }, { - "id": "0d8cc8c8-9de7-4894-913f-af9c919a7a65", + "id": "64567620-abce-4b63-a1d6-2e3cac0304cd", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -1696,10 +1696,10 @@ "Content-Type": "application/json" } }, - "uuid": "0d8cc8c8-9de7-4894-913f-af9c919a7a65" + "uuid": "64567620-abce-4b63-a1d6-2e3cac0304cd" }, { - "id": "d8179bf9-4437-45b7-890c-e973900c8ea7", + "id": "7c11c5a6-ee47-45a5-af0b-15c4054a016b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -1720,10 +1720,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d8179bf9-4437-45b7-890c-e973900c8ea7" + "uuid": "7c11c5a6-ee47-45a5-af0b-15c4054a016b" }, { - "id": "fcc6b005-303b-44bb-8f1a-68394439a006", + "id": "cac2087a-0d23-44f6-8581-226cf4a84039", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%276aac31b1-ba6c-40b6-b727-1c412d9e4d25%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -1744,10 +1744,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "fcc6b005-303b-44bb-8f1a-68394439a006" + "uuid": "cac2087a-0d23-44f6-8581-226cf4a84039" }, { - "id": "92722fc3-422c-4a57-b53c-3e4f83c52fd9", + "id": "51ead7df-92f8-4a76-9c96-977ebd6ff7f1", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_stage.stagename&include=labels", @@ -1755,7 +1755,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_stage.stagename%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_stage.stagename%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_stage.stagename%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_stage.stagename%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1773,10 +1773,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "92722fc3-422c-4a57-b53c-3e4f83c52fd9" + "uuid": "51ead7df-92f8-4a76-9c96-977ebd6ff7f1" }, { - "id": "2da4e1e0-83cb-425b-b8b4-0663a813058c", + "id": "bac49fcf-9ee7-4ff3-9f5e-9708ce9fe88e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1791,7 +1791,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"elements\":[{\"title\":\"Interest\",\"primaryTitle\":\"Interest\"},{\"title\":\"Discovery\",\"primaryTitle\":\"Discovery\"},{\"title\":\"Short List\",\"primaryTitle\":\"Short List\"},{\"title\":\"Risk Assessment\",\"primaryTitle\":\"Risk Assessment\"},{\"title\":\"Conviction\",\"primaryTitle\":\"Conviction\"},{\"title\":\"Negotiation\",\"primaryTitle\":\"Negotiation\"},{\"title\":\"Closed Won\",\"primaryTitle\":\"Closed Won\"},{\"title\":\"Closed Lost\",\"primaryTitle\":\"Closed Lost\"}],\"paging\":{\"total\":8,\"count\":8,\"offset\":0,\"next\":null},\"cacheId\":\"0e0b8bbba56b67ee807dac9ee935edd8\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},\"elements\":[{\"title\":\"Interest\",\"primaryTitle\":\"Interest\"},{\"title\":\"Discovery\",\"primaryTitle\":\"Discovery\"},{\"title\":\"Short List\",\"primaryTitle\":\"Short List\"},{\"title\":\"Risk Assessment\",\"primaryTitle\":\"Risk Assessment\"},{\"title\":\"Conviction\",\"primaryTitle\":\"Conviction\"},{\"title\":\"Negotiation\",\"primaryTitle\":\"Negotiation\"},{\"title\":\"Closed Won\",\"primaryTitle\":\"Closed Won\"},{\"title\":\"Closed Lost\",\"primaryTitle\":\"Closed Lost\"}],\"paging\":{\"total\":8,\"count\":8,\"offset\":0,\"next\":null},\"cacheId\":\"32f0b0268c6da97622bc76bf3a5dd314\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1804,17 +1804,17 @@ "Content-Type": "application/json" } }, - "uuid": "2da4e1e0-83cb-425b-b8b4-0663a813058c" + "uuid": "bac49fcf-9ee7-4ff3-9f5e-9708ce9fe88e" }, { - "id": "2e6dac5e-b3ff-43f5-9809-706b227dfee8", + "id": "f5bf5181-bf29-4c3c-8e22-1a90061939c7", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\"}", + "equalToJson": "{\"label\":\"state_id.statename\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -1822,7 +1822,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1840,17 +1840,17 @@ "Content-Type": "application/json" } }, - "uuid": "2e6dac5e-b3ff-43f5-9809-706b227dfee8" + "uuid": "f5bf5181-bf29-4c3c-8e22-1a90061939c7" }, { - "id": "b1a64408-bfcf-44e6-b151-b45e1cbdb03e", + "id": "c8bc8984-20f7-49bb-9e42-db3c031c3f40", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -1858,7 +1858,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1876,10 +1876,10 @@ "Content-Type": "application/json" } }, - "uuid": "b1a64408-bfcf-44e6-b151-b45e1cbdb03e" + "uuid": "c8bc8984-20f7-49bb-9e42-db3c031c3f40" }, { - "id": "14ca3260-33c1-48e6-967d-6ad8df857a88", + "id": "30e9004e-5508-4ae3-a666-c396ab4379e3", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1894,7 +1894,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"},\"elements\":[{\"title\":\"CompuSci\",\"primaryTitle\":\"CompuSci\"},{\"title\":\"Educationly\",\"primaryTitle\":\"Educationly\"},{\"title\":\"Explorer\",\"primaryTitle\":\"Explorer\"},{\"title\":\"Grammar Plus\",\"primaryTitle\":\"Grammar Plus\"},{\"title\":\"PhoenixSoft\",\"primaryTitle\":\"PhoenixSoft\"},{\"title\":\"TouchAll\",\"primaryTitle\":\"TouchAll\"},{\"title\":\"WonderKid\",\"primaryTitle\":\"WonderKid\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"d3148378d021b729659be8946d3e5122\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"},\"elements\":[{\"title\":\"CompuSci\",\"primaryTitle\":\"CompuSci\"},{\"title\":\"Educationly\",\"primaryTitle\":\"Educationly\"},{\"title\":\"Explorer\",\"primaryTitle\":\"Explorer\"},{\"title\":\"Grammar Plus\",\"primaryTitle\":\"Grammar Plus\"},{\"title\":\"PhoenixSoft\",\"primaryTitle\":\"PhoenixSoft\"},{\"title\":\"TouchAll\",\"primaryTitle\":\"TouchAll\"},{\"title\":\"WonderKid\",\"primaryTitle\":\"WonderKid\"}],\"paging\":{\"total\":7,\"count\":7,\"offset\":0,\"next\":null},\"cacheId\":\"d305d866197384e9e0c4f39aa5d80ff4\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1907,10 +1907,10 @@ "Content-Type": "application/json" } }, - "uuid": "14ca3260-33c1-48e6-967d-6ad8df857a88" + "uuid": "30e9004e-5508-4ae3-a666-c396ab4379e3" }, { - "id": "2c4a0b20-e589-4b9d-8231-35805ba1a61f", + "id": "a53cfb25-de26-4023-8df2-f14a9b84c058", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1925,7 +1925,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":null,\"primaryTitle\":null},{\"title\":\"\",\"primaryTitle\":\"\"},{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"},{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"fdf295832a4238d9e92f0e7319159cf1\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"elements\":[{\"title\":null,\"primaryTitle\":null},{\"title\":\"\",\"primaryTitle\":\"\"},{\"title\":\"East Coast\",\"primaryTitle\":\"East Coast\"},{\"title\":\"West Coast\",\"primaryTitle\":\"West Coast\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"7df2009ab11505d24bb6bbf39a35460a\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1938,10 +1938,10 @@ "Content-Type": "application/json" } }, - "uuid": "2c4a0b20-e589-4b9d-8231-35805ba1a61f" + "uuid": "a53cfb25-de26-4023-8df2-f14a9b84c058" }, { - "id": "9d6e4222-69c2-4dda-afbf-71051653a2e8", + "id": "0e310494-6477-4164-9501-603397e7c1fe", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -1962,63 +1962,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9d6e4222-69c2-4dda-afbf-71051653a2e8" + "uuid": "0e310494-6477-4164-9501-603397e7c1fe" }, { - "id": "ea842749-8df2-47a6-99fd-348d5072094e", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", + "id": "a28296e8-223c-4f3d-a0b9-a8c28cd4f2a8", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D6aac31b1-ba6c-40b6-b727-1c412d9e4d25%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%276aac31b1-ba6c-40b6-b727-1c412d9e4d25%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%276aac31b1-ba6c-40b6-b727-1c412d9e4d25%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ea842749-8df2-47a6-99fd-348d5072094e" + "uuid": "a28296e8-223c-4f3d-a0b9-a8c28cd4f2a8" }, { - "id": "03f6481c-027b-446c-a943-54af0d7d588c", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "035eac5b-d93f-41e1-8f52-2ae0052ef69f", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D6aac31b1-ba6c-40b6-b727-1c412d9e4d25%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%276aac31b1-ba6c-40b6-b727-1c412d9e4d25%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%276aac31b1-ba6c-40b6-b727-1c412d9e4d25%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "03f6481c-027b-446c-a943-54af0d7d588c" + "uuid": "035eac5b-d93f-41e1-8f52-2ae0052ef69f" }, { - "id": "86ecbf3d-a09a-4e43-9f68-f20e8213a3d6", + "id": "9ade79ef-98fb-461c-aee3-aa4c71c2b175", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_6aac31b1-ba6c-40b6-b727-1c412d9e4d25", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -2044,10 +2044,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "86ecbf3d-a09a-4e43-9f68-f20e8213a3d6" + "uuid": "9ade79ef-98fb-461c-aee3-aa4c71c2b175" }, { - "id": "7f196473-da99-4c44-8d62-233abc71af81", + "id": "58e6abe1-2f92-4b70-a575-1e2087b3cb07", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -2055,7 +2055,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2073,10 +2073,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7f196473-da99-4c44-8d62-233abc71af81" + "uuid": "58e6abe1-2f92-4b70-a575-1e2087b3cb07" + }, + { + "id": "a004c1b6-7a4a-4a0f-9685-5172d723d9b0", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "a004c1b6-7a4a-4a0f-9685-5172d723d9b0" }, { - "id": "d0fb5693-7987-4edc-8792-e55cc2c3f074", + "id": "4a5c0b47-92e4-462e-b79b-fa82d57f3c57", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -2091,7 +2122,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"bbe466f9da24eeeb4a32715ec4a4c571\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"03d72af4fdfdd03271ca6aba7fa2428d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2104,17 +2135,17 @@ "Content-Type": "application/json" } }, - "uuid": "d0fb5693-7987-4edc-8792-e55cc2c3f074" + "uuid": "4a5c0b47-92e4-462e-b79b-fa82d57f3c57" }, { - "id": "2a746de6-6a4b-4297-ae53-cb80c7cd832f", + "id": "fcc1821d-a050-4958-8359-a280dc9a3e67", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CT\",\"OR\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CT\",\"OR\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2122,7 +2153,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"}],\"paging\":{\"total\":10,\"count\":10,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"}],\"paging\":{\"total\":10,\"count\":10,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2135,13 +2166,13 @@ "Content-Type": "application/json" } }, - "uuid": "2a746de6-6a4b-4297-ae53-cb80c7cd832f" + "uuid": "fcc1821d-a050-4958-8359-a280dc9a3e67" }, { - "id": "8328c6b9-3299-49b6-bb9b-58c96470872f", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_89f9fcc6ad933f61cea162fdb83a8683c7b0bc9d32f3c5983951b6642d0ae30f3c458e94ce58072afdd1f578c5a29cad617aeb2d", + "id": "d4f39664-5431-4965-8542-ae657d6bb4a1", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_29f406252e57b637b56865b6b7aaea0d8c64f5d2e64031d623d31221f5bdeadc5ee88ecc802896eceeeb039dc7d264ce915dcd1b", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/89f9fcc6ad933f61cea162fdb83a8683c7b0bc9d%3A32f3c5983951b6642d0ae30f3c458e94ce58072afdd1f578c5a29cad617aeb2d?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/29f406252e57b637b56865b6b7aaea0d8c64f5d2%3Ae64031d623d31221f5bdeadc5ee88ecc802896eceeeb039dc7d264ce915dcd1b?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -2159,10 +2190,10 @@ "Content-Type": "application/json" } }, - "uuid": "8328c6b9-3299-49b6-bb9b-58c96470872f" + "uuid": "d4f39664-5431-4965-8542-ae657d6bb4a1" }, { - "id": "85884034-76d0-4fa9-8227-6e83345b52ec", + "id": "9eb10b76-d017-4ce0-a7c2-24e2d04f36a3", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -2177,7 +2208,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"89f9fcc6ad933f61cea162fdb83a8683c7b0bc9d:32f3c5983951b6642d0ae30f3c458e94ce58072afdd1f578c5a29cad617aeb2d\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"29f406252e57b637b56865b6b7aaea0d8c64f5d2:e64031d623d31221f5bdeadc5ee88ecc802896eceeeb039dc7d264ce915dcd1b\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2195,17 +2226,17 @@ "Content-Type": "application/json" } }, - "uuid": "85884034-76d0-4fa9-8227-6e83345b52ec" + "uuid": "9eb10b76-d017-4ce0-a7c2-24e2d04f36a3" }, { - "id": "bf56ae1c-a006-4845-aabb-11f253d48b03", + "id": "11bd3e68-3ed8-4b4c-86e4-e799615838d0", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"state_id.statename\",\"cacheId\":\"63fed13934958ce405e5422e7c353add\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2213,7 +2244,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Alabama\",\"primaryTitle\":\"AL\"},{\"title\":\"Alaska\",\"primaryTitle\":\"AK\"},{\"title\":\"Arizona\",\"primaryTitle\":\"AZ\"},{\"title\":\"Arkansas\",\"primaryTitle\":\"AR\"},{\"title\":\"California\",\"primaryTitle\":\"CA\"},{\"title\":\"Colorado\",\"primaryTitle\":\"CO\"},{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"},{\"title\":\"District of Columbia\",\"primaryTitle\":\"DC\"},{\"title\":\"Florida\",\"primaryTitle\":\"FL\"},{\"title\":\"Georgia\",\"primaryTitle\":\"GA\"},{\"title\":\"Hawaii\",\"primaryTitle\":\"HI\"},{\"title\":\"Idaho\",\"primaryTitle\":\"ID\"},{\"title\":\"Illinois\",\"primaryTitle\":\"IL\"},{\"title\":\"Indiana\",\"primaryTitle\":\"IN\"},{\"title\":\"Iowa\",\"primaryTitle\":\"IA\"},{\"title\":\"Kansas\",\"primaryTitle\":\"KS\"},{\"title\":\"Kentucky\",\"primaryTitle\":\"KY\"},{\"title\":\"Louisiana\",\"primaryTitle\":\"LA\"},{\"title\":\"Maine\",\"primaryTitle\":\"ME\"},{\"title\":\"Maryland\",\"primaryTitle\":\"MD\"},{\"title\":\"Massachusetts\",\"primaryTitle\":\"MA\"},{\"title\":\"Michigan\",\"primaryTitle\":\"MI\"},{\"title\":\"Minnesota\",\"primaryTitle\":\"MN\"},{\"title\":\"Mississippi\",\"primaryTitle\":\"MS\"},{\"title\":\"Missouri\",\"primaryTitle\":\"MO\"},{\"title\":\"Nebraska\",\"primaryTitle\":\"NE\"},{\"title\":\"Nevada\",\"primaryTitle\":\"NV\"},{\"title\":\"New Hampshire\",\"primaryTitle\":\"NH\"},{\"title\":\"New Jersey\",\"primaryTitle\":\"NJ\"},{\"title\":\"New Mexico\",\"primaryTitle\":\"NM\"},{\"title\":\"New York\",\"primaryTitle\":\"NY\"},{\"title\":\"North Carolina\",\"primaryTitle\":\"NC\"},{\"title\":\"North Dakota\",\"primaryTitle\":\"ND\"},{\"title\":\"Ohio\",\"primaryTitle\":\"OH\"},{\"title\":\"Oklahoma\",\"primaryTitle\":\"OK\"},{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"},{\"title\":\"Pennsylvania\",\"primaryTitle\":\"PA\"},{\"title\":\"Puerto Rico\",\"primaryTitle\":\"PR\"},{\"title\":\"Rhode Island\",\"primaryTitle\":\"RI\"},{\"title\":\"South Carolina\",\"primaryTitle\":\"SC\"},{\"title\":\"South Dakota\",\"primaryTitle\":\"SD\"},{\"title\":\"Tennessee\",\"primaryTitle\":\"TN\"},{\"title\":\"Texas\",\"primaryTitle\":\"TX\"},{\"title\":\"Utah\",\"primaryTitle\":\"UT\"},{\"title\":\"Virginia\",\"primaryTitle\":\"VA\"},{\"title\":\"Washington\",\"primaryTitle\":\"WA\"},{\"title\":\"West Virginia\",\"primaryTitle\":\"WV\"},{\"title\":\"Wisconsin\",\"primaryTitle\":\"WI\"}],\"paging\":{\"total\":48,\"count\":48,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2231,17 +2262,17 @@ "Content-Type": "application/json" } }, - "uuid": "bf56ae1c-a006-4845-aabb-11f253d48b03" + "uuid": "11bd3e68-3ed8-4b4c-86e4-e799615838d0" }, { - "id": "0ce6f6e9-b6b4-4fef-8cdc-b83006919a28", + "id": "6829709d-2bcb-44ce-9496-8cabde4a529c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"Oregon\",\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"Oregon\",\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2249,7 +2280,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Oregon\",\"primaryTitle\":\"OR\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2262,17 +2293,17 @@ "Content-Type": "application/json" } }, - "uuid": "0ce6f6e9-b6b4-4fef-8cdc-b83006919a28" + "uuid": "6829709d-2bcb-44ce-9496-8cabde4a529c" }, { - "id": "3382b887-4d52-4cd8-acac-add6687a6cbc", + "id": "4fa495f7-b778-44f1-a82e-f0ee0326ec16", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"Connecticut\",\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "equalToJson": "{\"label\":\"state_id.statename\",\"patternFilter\":\"Connecticut\",\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2280,7 +2311,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"49584d40e96c1cb070e3bc398c13fe09\"}", + "body": "{\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Connecticut\",\"primaryTitle\":\"CT\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"63fed13934958ce405e5422e7c353add\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2293,17 +2324,17 @@ "Content-Type": "application/json" } }, - "uuid": "3382b887-4d52-4cd8-acac-add6687a6cbc" + "uuid": "4fa495f7-b778-44f1-a82e-f0ee0326ec16" }, { - "id": "081c2180-ac0c-4320-8acf-dc8e81ecd592", + "id": "5724cf5b-d282-4a41-a668-b5e333943dfb", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"OR\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"OR\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2311,7 +2342,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2324,17 +2355,17 @@ "Content-Type": "application/json" } }, - "uuid": "081c2180-ac0c-4320-8acf-dc8e81ecd592" + "uuid": "5724cf5b-d282-4a41-a668-b5e333943dfb" }, { - "id": "d0a8b9eb-4aad-4755-97a6-e0bf1e7b1b62", + "id": "fefe0401-8ae6-4e06-b25e-b3a46350707f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Medford\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"OR\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Medford\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"OR\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2342,7 +2373,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2355,10 +2386,10 @@ "Content-Type": "application/json" } }, - "uuid": "d0a8b9eb-4aad-4755-97a6-e0bf1e7b1b62" + "uuid": "fefe0401-8ae6-4e06-b25e-b3a46350707f" }, { - "id": "58b3e7eb-430f-461e-81a9-157dca3a2d71", + "id": "559080e2-89f6-41b8-b8ff-aac700892d6d", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -2373,7 +2404,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"e0387865593597f0617b64fb4d7e4b43\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[],\"paging\":{\"total\":0,\"count\":0,\"offset\":0,\"next\":null},\"cacheId\":\"ef9e8b81b1de295aecbc7a0bbd2a6266\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2386,17 +2417,17 @@ "Content-Type": "application/json" } }, - "uuid": "58b3e7eb-430f-461e-81a9-157dca3a2d71" + "uuid": "559080e2-89f6-41b8-b8ff-aac700892d6d" }, { - "id": "7ecff569-20ac-478a-82cc-522cdd8477e4", + "id": "eeea35ac-7573-499e-ac92-0bf1d4b7b9ea", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2404,7 +2435,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2422,17 +2453,17 @@ "Content-Type": "application/json" } }, - "uuid": "7ecff569-20ac-478a-82cc-522cdd8477e4" + "uuid": "eeea35ac-7573-499e-ac92-0bf1d4b7b9ea" }, { - "id": "4ad99546-11bf-4b2f-832b-997b06b4c810", + "id": "42ed0c6f-6470-42e1-957d-1b31761bcafe", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"New York\",\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"New York\",\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2440,7 +2471,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2453,13 +2484,13 @@ "Content-Type": "application/json" } }, - "uuid": "4ad99546-11bf-4b2f-832b-997b06b4c810" + "uuid": "42ed0c6f-6470-42e1-957d-1b31761bcafe" }, { - "id": "70a37b62-4122-441c-8534-c739f0589003", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_093a14f1c116c6a74f129c415134ef03b68a42d6c51abe317fc9ffabd1985c09a16e3a298fd8a6419400cef8bbf80405081934cb", + "id": "9172876d-87d7-4c8e-bcc2-82cff404d019", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_dde0a38e5c2920dd8449d8bd966825f61593e8f339c83a48f5cc85bbcf899cb34c75c4b9a2b51d77d9f5c53663790ca637fea6bb", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/093a14f1c116c6a74f129c415134ef03b68a42d6%3Ac51abe317fc9ffabd1985c09a16e3a298fd8a6419400cef8bbf80405081934cb?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/dde0a38e5c2920dd8449d8bd966825f61593e8f3%3A39c83a48f5cc85bbcf899cb34c75c4b9a2b51d77d9f5c53663790ca637fea6bb?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -2477,10 +2508,10 @@ "Content-Type": "application/json" } }, - "uuid": "70a37b62-4122-441c-8534-c739f0589003" + "uuid": "9172876d-87d7-4c8e-bcc2-82cff404d019" }, { - "id": "e698ac18-210a-4670-8c32-3b3a5cfaac7d", + "id": "583ed318-b25c-4182-826b-b47ee941227e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -2495,7 +2526,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"093a14f1c116c6a74f129c415134ef03b68a42d6:c51abe317fc9ffabd1985c09a16e3a298fd8a6419400cef8bbf80405081934cb\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"dde0a38e5c2920dd8449d8bd966825f61593e8f3:39c83a48f5cc85bbcf899cb34c75c4b9a2b51d77d9f5c53663790ca637fea6bb\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2513,13 +2544,13 @@ "Content-Type": "application/json" } }, - "uuid": "e698ac18-210a-4670-8c32-3b3a5cfaac7d" + "uuid": "583ed318-b25c-4182-826b-b47ee941227e" }, { - "id": "68a27d6e-a2ed-4916-9165-e5d67cea2db7", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_4bd8c4bbf41430c04ccd82a145024fd16dcd74308ebbee26695bdf91844e620b3688bbfa43cf8446484ab67c20f70c9c38d50ca6", + "id": "8c1d7790-1f49-4e8b-9ace-7e35d4c79641", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_68613e8a2e4b69025ba16e2d2f8c6f808810a0bc5291c3f6f67a8c765417700c24cfa3a289ca0c5ee36fca7cd8f5406d6f508c29", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/4bd8c4bbf41430c04ccd82a145024fd16dcd7430%3A8ebbee26695bdf91844e620b3688bbfa43cf8446484ab67c20f70c9c38d50ca6?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/68613e8a2e4b69025ba16e2d2f8c6f808810a0bc%3A5291c3f6f67a8c765417700c24cfa3a289ca0c5ee36fca7cd8f5406d6f508c29?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -2537,10 +2568,10 @@ "Content-Type": "application/json" } }, - "uuid": "68a27d6e-a2ed-4916-9165-e5d67cea2db7" + "uuid": "8c1d7790-1f49-4e8b-9ace-7e35d4c79641" }, { - "id": "6d4260bf-2f22-4b91-b674-cea5d7f2e4d1", + "id": "2025c6b7-6b55-471d-bded-638f7825c66e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -2555,7 +2586,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"4bd8c4bbf41430c04ccd82a145024fd16dcd7430:8ebbee26695bdf91844e620b3688bbfa43cf8446484ab67c20f70c9c38d50ca6\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"68613e8a2e4b69025ba16e2d2f8c6f808810a0bc:5291c3f6f67a8c765417700c24cfa3a289ca0c5ee36fca7cd8f5406d6f508c29\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2573,17 +2604,17 @@ "Content-Type": "application/json" } }, - "uuid": "6d4260bf-2f22-4b91-b674-cea5d7f2e4d1" + "uuid": "2025c6b7-6b55-471d-bded-638f7825c66e" }, { - "id": "f818490b-b74d-4239-a72a-bc3433628a84", + "id": "dc146645-57ee-4d19-b755-53c3acec9efc", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Hartford\",\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"patternFilter\":\"Hartford\",\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2591,7 +2622,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2604,17 +2635,17 @@ "Content-Type": "application/json" } }, - "uuid": "f818490b-b74d-4239-a72a-bc3433628a84" + "uuid": "dc146645-57ee-4d19-b755-53c3acec9efc" }, { - "id": "ae2690de-3bf6-49fc-b3af-e1ae37a0ea53", + "id": "1b0b6ede-a9c6-4029-b8e3-55cda5d1cb54", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CT\"],\"complementFilter\":false}],\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", + "equalToJson": "{\"label\":\"f_city.id.cityname\",\"dependsOn\":[{\"label\":\"state_id\",\"values\":[\"CT\"],\"complementFilter\":false}],\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\",\"filterBy\":{\"labelType\":\"PRIMARY\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -2622,7 +2653,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"}],\"paging\":{\"total\":6,\"count\":6,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"}],\"paging\":{\"total\":6,\"count\":6,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2635,13 +2666,13 @@ "Content-Type": "application/json" } }, - "uuid": "ae2690de-3bf6-49fc-b3af-e1ae37a0ea53" + "uuid": "1b0b6ede-a9c6-4029-b8e3-55cda5d1cb54" }, { - "id": "bc87b277-307e-47e1-99a3-7bbe5c09f8ac", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_5f53f96f91f00cec82ffd0f65a3e2c12bc2892d46e7546d6bac3b1e3223738438b6521530899f43c88dd8d394a60bdb69b3fb87c", + "id": "148bd833-739a-4f11-a138-1661616cc0de", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_1596dd9ad7c7f3a3eb89fa7825b8ca45e27306e617adb95e403e3f01335b573e90f561a95feb6729a21e1095f6dcf54fe334a245", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/5f53f96f91f00cec82ffd0f65a3e2c12bc2892d4%3A6e7546d6bac3b1e3223738438b6521530899f43c88dd8d394a60bdb69b3fb87c?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/1596dd9ad7c7f3a3eb89fa7825b8ca45e27306e6%3A17adb95e403e3f01335b573e90f561a95feb6729a21e1095f6dcf54fe334a245?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -2659,10 +2690,10 @@ "Content-Type": "application/json" } }, - "uuid": "bc87b277-307e-47e1-99a3-7bbe5c09f8ac" + "uuid": "148bd833-739a-4f11-a138-1661616cc0de" }, { - "id": "1d80b6fa-844a-42cf-9c80-f94f8031090e", + "id": "db6784c8-b925-40f4-85ee-38a59fd2f53c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -2677,7 +2708,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"5f53f96f91f00cec82ffd0f65a3e2c12bc2892d4:6e7546d6bac3b1e3223738438b6521530899f43c88dd8d394a60bdb69b3fb87c\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.region_id\",\"label\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"labelName\":\"Region\",\"attribute\":{\"id\":\"f_owner.region_id\",\"type\":\"attribute\"},\"attributeName\":\"Region\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_state_id.statename\",\"label\":{\"id\":\"state_id.statename\",\"type\":\"label\"},\"labelName\":\"State name\",\"attribute\":{\"id\":\"state_id\",\"type\":\"attribute\"},\"attributeName\":\"State\",\"granularity\":null,\"primaryLabel\":{\"id\":\"state_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_city.id.cityname\",\"label\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},\"labelName\":\"City name\",\"attribute\":{\"id\":\"f_city.id\",\"type\":\"attribute\"},\"attributeName\":\"City\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"1596dd9ad7c7f3a3eb89fa7825b8ca45e27306e6:17adb95e403e3f01335b573e90f561a95feb6729a21e1095f6dcf54fe334a245\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -2695,7 +2726,7 @@ "Content-Type": "application/json" } }, - "uuid": "1d80b6fa-844a-42cf-9c80-f94f8031090e" + "uuid": "db6784c8-b925-40f4-85ee-38a59fd2f53c" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dragDropAndMoveWidget.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dragDropAndMoveWidget.spec.ts.json index 60df2135770..eb25a9a9d4a 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dragDropAndMoveWidget.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-dragDropAndMoveWidget.spec.ts.json @@ -1,7 +1,7 @@ { "mappings": [ { - "id": "b4f6b462-461d-48d2-b18a-d80ca1dcef03", + "id": "00d35a9e-35c4-41f1-b1de-c5111d2e0ab7", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&metaInclude=page&size=250&page=0", @@ -9,7 +9,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b4f6b462-461d-48d2-b18a-d80ca1dcef03" + "uuid": "00d35a9e-35c4-41f1-b1de-c5111d2e0ab7" }, { - "id": "d6702fa5-9722-4207-8ee6-b8c24e944bc5", + "id": "ffd61840-bf02-4983-8f88-72c5fd30240e", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -63,63 +63,63 @@ "Content-Type": "application/json" } }, - "uuid": "d6702fa5-9722-4207-8ee6-b8c24e944bc5" + "uuid": "ffd61840-bf02-4983-8f88-72c5fd30240e" }, { - "id": "2459749b-151c-490d-9ea3-b16bbfbc2ced", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_59aabfdf4615a7694762f71995b30bd1109de5b910687745f27ace7e8b1ad66133c33049cb578fdf68f3de9709698e3eaf5643c0", + "id": "9029b9a7-2c27-472b-9652-19738381d6aa", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/59aabfdf4615a7694762f71995b30bd1109de5b9%3A10687745f27ace7e8b1ad66133c33049cb578fdf68f3de9709698e3eaf5643c0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[8092.0,29898.0,154797.0,200514.0,59217.0],[1894.4,6186.3,85408.9,75596.7,6733.8],[0.19318181818181818,0.20121951219512196,0.5305793991416309,0.6241635687732342,0.547945205479452]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}},{\"measureHeader\":{\"measureIndex\":2}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2008\",\"primaryLabelValue\":\"2008\"}},{\"attributeHeader\":{\"labelValue\":\"2009\",\"primaryLabelValue\":\"2009\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[3,5],\"offset\":[0,0],\"total\":[3,5]}}", + "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2459749b-151c-490d-9ea3-b16bbfbc2ced" + "uuid": "9029b9a7-2c27-472b-9652-19738381d6aa" }, { - "id": "e9e83515-289f-4019-be86-e7c7c83195b1", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", + "id": "238b3075-54c6-4fc9-b956-566b509feb1a", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_40b4df43ed0056ac244b7582998e8612c8d9593cb909955ff9bf4455172a37e1dca38ad963981c0e5f94c0ffca72c69f3f72ffd9", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/40b4df43ed0056ac244b7582998e8612c8d9593c%3Ab909955ff9bf4455172a37e1dca38ad963981c0e5f94c0ffca72c69f3f72ffd9", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", + "body": "{\"data\":[[8092.0,29898.0,154797.0,200514.0,59217.0],[1894.4,6186.3,85408.9,75596.7,6733.8],[0.19318181818181818,0.20121951219512196,0.5305793991416309,0.6241635687732342,0.547945205479452]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}},{\"measureHeader\":{\"measureIndex\":2}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2008\",\"primaryLabelValue\":\"2008\"}},{\"attributeHeader\":{\"labelValue\":\"2009\",\"primaryLabelValue\":\"2009\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[3,5],\"offset\":[0,0],\"total\":[3,5]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "e9e83515-289f-4019-be86-e7c7c83195b1" + "uuid": "238b3075-54c6-4fc9-b956-566b509feb1a" }, { - "id": "bd7a04fc-2e17-4ddb-9694-51f1a398a458", + "id": "ad35a5be-54aa-45d0-91d9-684ee169fd65", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -134,7 +134,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_stagehistory.f_velocity_sum\"},{\"localIdentifier\":\"m_f_opportunitysnapshot.f_probability_sum\"},{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_oppcreated_timestamp.year\",\"label\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Created - Year\",\"attribute\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Created - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"59aabfdf4615a7694762f71995b30bd1109de5b9:10687745f27ace7e8b1ad66133c33049cb578fdf68f3de9709698e3eaf5643c0\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_stagehistory.f_velocity_sum\"},{\"localIdentifier\":\"m_f_opportunitysnapshot.f_probability_sum\"},{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_oppcreated_timestamp.year\",\"label\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Created - Year\",\"attribute\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Created - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"40b4df43ed0056ac244b7582998e8612c8d9593c:b909955ff9bf4455172a37e1dca38ad963981c0e5f94c0ffca72c69f3f72ffd9\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -147,10 +147,10 @@ "Content-Type": "application/json" } }, - "uuid": "bd7a04fc-2e17-4ddb-9694-51f1a398a458" + "uuid": "ad35a5be-54aa-45d0-91d9-684ee169fd65" }, { - "id": "f7f7ee3a-5644-4590-b98e-ce403010e609", + "id": "2db0a0f6-45fa-4175-8fc5-e451970a8113", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -158,7 +158,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -176,10 +176,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f7f7ee3a-5644-4590-b98e-ce403010e609" + "uuid": "2db0a0f6-45fa-4175-8fc5-e451970a8113" }, { - "id": "6fc750d8-d736-4738-b78a-c391a417e5e9", + "id": "1ce701a7-a760-483e-920c-8a74bbd6e923", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -187,7 +187,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -205,42 +205,13 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6fc750d8-d736-4738-b78a-c391a417e5e9" + "uuid": "1ce701a7-a760-483e-920c-8a74bbd6e923" }, { - "id": "8f7bf267-89a2-4721-8806-9808806eb565", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", + "id": "c440d4fd-9d3f-4603-b9ab-b596be527aa6", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_556664b6770cb3bac97908b113cf79c38c0aa47edc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", - "method": "GET" - }, - "response": { - "status": 200, - "body": "{\"data\":[{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Activity (Date)\",\"description\":\"Activity (Date)\",\"tags\":[\"Activity\"],\"sourceColumn\":\"f__dt_activity\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_activity.activitydate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Created (Date)\",\"description\":\"Opp. Created (Date)\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"f__dt_oppcreated\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunity.oppcreateddate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunitysnapshot.oppclosedate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Close (Date)\",\"description\":\"Opp. Close (Date)\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f__dt_closedate\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunitysnapshot.oppclosedate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunitysnapshot.oppsnapshotdate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Snapshot (Date)\",\"description\":\"Opp. Snapshot (Date)\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f__dt_snapshotdate\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunitysnapshot.oppsnapshotdate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_timeline.timelinedate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Timeline (Date)\",\"description\":\"Timeline (Date)\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"f__dt_timeline\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_timeline.timelinedate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_density\",\"type\":\"fact\",\"attributes\":{\"title\":\"Density\",\"description\":\"F density\",\"tags\":[\"City\"],\"sourceColumn\":\"f_density\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_density\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_amount\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_daystoclose\",\"type\":\"fact\",\"attributes\":{\"title\":\"Days to Close\",\"description\":\"Days to Close\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_daystoclose\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_daystoclose\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\",\"attributes\":{\"title\":\"Probability\",\"description\":\"Probability\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_probability\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_probability\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_population\",\"type\":\"fact\",\"attributes\":{\"title\":\"Population\",\"description\":\"F population\",\"tags\":[\"City\"],\"sourceColumn\":\"f_population\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_population\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.f_duration\",\"type\":\"fact\",\"attributes\":{\"title\":\"Duration\",\"description\":\"Duration\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"f_duration\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_stagehistory.f_duration\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\",\"attributes\":{\"title\":\"Velocity\",\"description\":\"Velocity\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"f_velocity\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_stagehistory.f_velocity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?page=1&size=250\"}}", - "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], - "Expires": "0", - "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" - } - }, - "uuid": "8f7bf267-89a2-4721-8806-9808806eb565" - }, - { - "id": "3cd5dc12-9dbc-4d49-a84b-e92b0af4408c", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d8de0f632b84136c1c79646ca0a224110db3651a937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", - "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d8de0f632b84136c1c79646ca0a224110db3651a%3A937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/556664b6770cb3bac97908b113cf79c38c0aa47e%3Adc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "method": "GET" }, "response": { @@ -258,18 +229,18 @@ "Content-Type": "application/json" } }, - "uuid": "3cd5dc12-9dbc-4d49-a84b-e92b0af4408c" + "uuid": "c440d4fd-9d3f-4603-b9ab-b596be527aa6" }, { - "id": "63526661-4fdc-4717-ad77-25dd7d442430", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", + "id": "6ed2af94-02b4-4dd7-a398-eb7383181bea", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Combo+chart%27&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Combo+chart%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":1,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Activity (Date)\",\"description\":\"Activity (Date)\",\"tags\":[\"Activity\"],\"sourceColumn\":\"f__dt_activity\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_activity.activitydate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Created (Date)\",\"description\":\"Opp. Created (Date)\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"f__dt_oppcreated\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunity.oppcreateddate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunitysnapshot.oppclosedate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Close (Date)\",\"description\":\"Opp. Close (Date)\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f__dt_closedate\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunitysnapshot.oppclosedate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_opportunitysnapshot.oppsnapshotdate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Opp. Snapshot (Date)\",\"description\":\"Opp. Snapshot (Date)\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f__dt_snapshotdate\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_opportunitysnapshot.oppsnapshotdate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fact.f_timeline.timelinedate\",\"type\":\"fact\",\"attributes\":{\"title\":\"Timeline (Date)\",\"description\":\"Timeline (Date)\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"f__dt_timeline\",\"sourceColumnDataType\":\"INT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/fact.f_timeline.timelinedate\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_density\",\"type\":\"fact\",\"attributes\":{\"title\":\"Density\",\"description\":\"F density\",\"tags\":[\"City\"],\"sourceColumn\":\"f_density\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_density\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_amount\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_daystoclose\",\"type\":\"fact\",\"attributes\":{\"title\":\"Days to Close\",\"description\":\"Days to Close\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_daystoclose\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_daystoclose\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\",\"attributes\":{\"title\":\"Probability\",\"description\":\"Probability\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"f_probability\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_opportunitysnapshot.f_probability\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_population\",\"type\":\"fact\",\"attributes\":{\"title\":\"Population\",\"description\":\"F population\",\"tags\":[\"City\"],\"sourceColumn\":\"f_population\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_population\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.f_duration\",\"type\":\"fact\",\"attributes\":{\"title\":\"Duration\",\"description\":\"Duration\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"f_duration\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_stagehistory.f_duration\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\",\"attributes\":{\"title\":\"Velocity\",\"description\":\"Velocity\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"f_velocity\",\"sourceColumnDataType\":\"NUMERIC\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts/f_stagehistory.f_velocity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -287,13 +258,13 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "63526661-4fdc-4717-ad77-25dd7d442430" + "uuid": "6ed2af94-02b4-4dd7-a398-eb7383181bea" }, { - "id": "1abd56eb-2a56-4170-a911-3fc8f0b24ed3", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_c301575f439532545c9adcdcda3074dd74c68eb5d61c4503e5f54502d1a678528fe94ac9b50a16074ee8af18b408ef40d2adb0b2", + "id": "c125dd95-4785-4b0e-b94a-e367b6348ef4", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f068415220b8771ae796986921b34c706e11379bd7fdedcfa7965b3aa9a9f8a6b2676e33ba3523769d35637d5c7bd23b726ff8bd", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/c301575f439532545c9adcdcda3074dd74c68eb5%3Ad61c4503e5f54502d1a678528fe94ac9b50a16074ee8af18b408ef40d2adb0b2", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f068415220b8771ae796986921b34c706e11379b%3Ad7fdedcfa7965b3aa9a9f8a6b2676e33ba3523769d35637d5c7bd23b726ff8bd", "method": "GET" }, "response": { @@ -311,10 +282,10 @@ "Content-Type": "application/json" } }, - "uuid": "1abd56eb-2a56-4170-a911-3fc8f0b24ed3" + "uuid": "c125dd95-4785-4b0e-b94a-e367b6348ef4" }, { - "id": "1c8faa15-027e-4993-94bd-16f7ce2f7b73", + "id": "9fac24a1-22f2-428e-8c47-d22811cf038d", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -329,7 +300,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"d8de0f632b84136c1c79646ca0a224110db3651a:937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"556664b6770cb3bac97908b113cf79c38c0aa47e:dc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -342,10 +313,39 @@ "Content-Type": "application/json" } }, - "uuid": "1c8faa15-027e-4993-94bd-16f7ce2f7b73" + "uuid": "9fac24a1-22f2-428e-8c47-d22811cf038d" + }, + { + "id": "8de56df4-4266-46c6-b0ed-a75a71513fd4", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Combo+chart%27&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"data\":[{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Combo+chart%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":1,\"totalPages\":1,\"number\":0}}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/vnd.gooddata.api+json" + } + }, + "uuid": "8de56df4-4266-46c6-b0ed-a75a71513fd4" }, { - "id": "f0dcd0dc-c59e-4459-989e-9c1e4381b865", + "id": "2f80db15-0bde-4590-89e5-b42d51890887", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -360,7 +360,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_stagehistory.f_velocity_sum\"},{\"localIdentifier\":\"m_f_opportunitysnapshot.f_probability_sum\"},{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_oppcreated_timestamp.year\",\"label\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Created - Year\",\"attribute\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Created - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"c301575f439532545c9adcdcda3074dd74c68eb5:d61c4503e5f54502d1a678528fe94ac9b50a16074ee8af18b408ef40d2adb0b2\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_f_stagehistory.f_velocity_sum\"},{\"localIdentifier\":\"m_f_opportunitysnapshot.f_probability_sum\"},{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_oppcreated_timestamp.year\",\"label\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Created - Year\",\"attribute\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Created - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"f068415220b8771ae796986921b34c706e11379b:d7fdedcfa7965b3aa9a9f8a6b2676e33ba3523769d35637d5c7bd23b726ff8bd\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -373,18 +373,18 @@ "Content-Type": "application/json" } }, - "uuid": "f0dcd0dc-c59e-4459-989e-9c1e4381b865" + "uuid": "2f80db15-0bde-4590-89e5-b42d51890887" }, { - "id": "a7b0da00-4b7a-42bc-b7f4-68e4a9897e1e", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "2576282c-cf08-4733-8250-cf180e6b4ce4", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -394,21 +394,21 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "a7b0da00-4b7a-42bc-b7f4-68e4a9897e1e" + "uuid": "2576282c-cf08-4733-8250-cf180e6b4ce4" }, { - "id": "eefb6ea9-96ce-4992-85f3-d9d5da1d9f65", + "id": "750e61cb-b163-443a-acae-07df1ad1cb60", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -421,18 +421,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "eefb6ea9-96ce-4992-85f3-d9d5da1d9f65" + "uuid": "750e61cb-b163-443a-acae-07df1ad1cb60" }, { - "id": "c9b79f86-1180-410e-b744-cd7f1094175e", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "bca31b08-5b37-41fa-aea6-8ea7fcdc9114", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -442,13 +442,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c9b79f86-1180-410e-b744-cd7f1094175e" + "uuid": "bca31b08-5b37-41fa-aea6-8ea7fcdc9114" }, { - "id": "69ae0632-52f2-4229-beca-9da2d4d32dd6", + "id": "c7687bc9-b7e6-44cb-9e0e-8340ae06209a", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -469,10 +469,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "69ae0632-52f2-4229-beca-9da2d4d32dd6" + "uuid": "c7687bc9-b7e6-44cb-9e0e-8340ae06209a" }, { - "id": "aecb9e23-d3d5-4b7c-b6c6-30a06791f0ec", + "id": "9eb262b1-84a2-49b5-9795-18eae47d7eb3", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -493,63 +493,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "aecb9e23-d3d5-4b7c-b6c6-30a06791f0ec" + "uuid": "9eb262b1-84a2-49b5-9795-18eae47d7eb3" }, { - "id": "64c6a209-810a-4d50-a47b-177cdbb42742", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", + "id": "fcc9a5b7-e402-4967-882a-75d3bc267ec9", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3Db74d3889-655f-4a0d-bc94-15b39d5e1046%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "64c6a209-810a-4d50-a47b-177cdbb42742" + "uuid": "fcc9a5b7-e402-4967-882a-75d3bc267ec9" }, { - "id": "614a43ae-7792-45ba-8ea2-392dcf072359", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "62694551-70d9-473c-86fb-b39252b02cb3", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3Db74d3889-655f-4a0d-bc94-15b39d5e1046%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27b74d3889-655f-4a0d-bc94-15b39d5e1046%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "614a43ae-7792-45ba-8ea2-392dcf072359" + "uuid": "62694551-70d9-473c-86fb-b39252b02cb3" }, { - "id": "7093593b-8550-492d-922b-03f94192f3a5", + "id": "7e8c914e-7372-44a8-922d-530122840da7", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_b74d3889-655f-4a0d-bc94-15b39d5e1046", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -575,10 +575,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7093593b-8550-492d-922b-03f94192f3a5" + "uuid": "7e8c914e-7372-44a8-922d-530122840da7" }, { - "id": "fe2dcc94-658c-4da1-bb79-89c0ecc30a27", + "id": "7f29bdef-bc8e-4aec-9963-d514a19e02fb", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -586,7 +586,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -602,10 +602,10 @@ "Content-Type": "application/json" } }, - "uuid": "fe2dcc94-658c-4da1-bb79-89c0ecc30a27" + "uuid": "7f29bdef-bc8e-4aec-9963-d514a19e02fb" }, { - "id": "30665c20-5853-4656-98db-314575af5b67", + "id": "14b212a7-66bf-4ce1-a09b-bba9260dccff", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -613,7 +613,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -631,37 +631,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "30665c20-5853-4656-98db-314575af5b67" + "uuid": "14b212a7-66bf-4ce1-a09b-bba9260dccff" }, { - "id": "88e10c73-4d3d-41b5-b202-2809e2f9c02c", - "name": "api_v1_profile", + "id": "e7f6c59b-199a-4b68-a996-1fc7e5d8c4e6", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/profile", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "88e10c73-4d3d-41b5-b202-2809e2f9c02c" + "uuid": "e7f6c59b-199a-4b68-a996-1fc7e5d8c4e6" }, { - "id": "e076efdc-634a-4cda-9c4a-165567429f55", + "id": "d10b624d-26fa-460e-82e1-cb79bf73a488", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -669,7 +673,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -680,10 +684,37 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e076efdc-634a-4cda-9c4a-165567429f55" + "uuid": "d10b624d-26fa-460e-82e1-cb79bf73a488" + }, + { + "id": "f8b90226-4abe-4ec2-9bfe-8e663dfb32ba", + "name": "api_v1_profile", + "request": { + "url": "/api/v1/profile", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "f8b90226-4abe-4ec2-9bfe-8e663dfb32ba" }, { - "id": "9ea33b58-0d9b-49cf-a054-1768be6e9f60", + "id": "b99ac636-8ddb-4d23-9b29-611e7e9f35e2", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Headline%27&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -709,10 +740,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9ea33b58-0d9b-49cf-a054-1768be6e9f60" + "uuid": "b99ac636-8ddb-4d23-9b29-611e7e9f35e2" }, { - "id": "71d4c101-34f7-4c74-8a8c-a72037e1bb71", + "id": "5c2b6e12-d857-4da0-b32a-73ab52fe2c4f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27Table+with+hyperlink+attribute%27&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -738,7 +769,7 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "71d4c101-34f7-4c74-8a8c-a72037e1bb71" + "uuid": "5c2b6e12-d857-4da0-b32a-73ab52fe2c4f" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-headerSection.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-headerSection.spec.ts.json index edb5d3dd6da..e5e04c1d841 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-headerSection.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-headerSection.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "1ef32033-bb6c-496e-a0b2-567f105810a1", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_3c7c8496418d0ea1c13bbb2a0073d75b3b4da78e254e5d4f364af72b187e4e5a74f03952cf6f63cbd53e184bae00f733d47dc108", + "id": "21ab0a49-7c13-4c8d-a7c8-97bdeb2d333b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_a5ac64e6c4d01cd63716f4a9504ba49629bb16186f067a715a234966c6bf0b70d232cae686127d9dff81a284b66a013a33738c3b", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/3c7c8496418d0ea1c13bbb2a0073d75b3b4da78e%3A254e5d4f364af72b187e4e5a74f03952cf6f63cbd53e184bae00f733d47dc108", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/a5ac64e6c4d01cd63716f4a9504ba49629bb1618%3A6f067a715a234966c6bf0b70d232cae686127d9dff81a284b66a013a33738c3b", "method": "GET" }, "response": { @@ -22,13 +22,13 @@ "Content-Type": "application/json" } }, - "uuid": "1ef32033-bb6c-496e-a0b2-567f105810a1" + "uuid": "21ab0a49-7c13-4c8d-a7c8-97bdeb2d333b" }, { - "id": "132eb950-0d78-42e6-8cb9-19da7ec81f2f", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d8de0f632b84136c1c79646ca0a224110db3651a937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "id": "1f839347-7b72-4d5f-abd9-7459f6b4de83", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_556664b6770cb3bac97908b113cf79c38c0aa47edc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d8de0f632b84136c1c79646ca0a224110db3651a%3A937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/556664b6770cb3bac97908b113cf79c38c0aa47e%3Adc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "method": "GET" }, "response": { @@ -46,13 +46,13 @@ "Content-Type": "application/json" } }, - "uuid": "132eb950-0d78-42e6-8cb9-19da7ec81f2f" + "uuid": "1f839347-7b72-4d5f-abd9-7459f6b4de83" }, { - "id": "34f4a84c-7f11-476d-b9f5-1df612e46972", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_78426457f81dca7f8bd073d396eeb8c55d0f19f3f7f6fc5a3686022cd88989554e14b6185f1e0d48e65546dec54f417b75ec7fe8", + "id": "7522c311-1386-4722-8357-61536f3d9643", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_fa9abcb681ffe1f1366e016f289fba016c46a6cfb1647a2cd54356ab35b9ff705015365970e6a417d8fc0aac7217ab9e107f288e", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/78426457f81dca7f8bd073d396eeb8c55d0f19f3%3Af7f6fc5a3686022cd88989554e14b6185f1e0d48e65546dec54f417b75ec7fe8", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/fa9abcb681ffe1f1366e016f289fba016c46a6cf%3Ab1647a2cd54356ab35b9ff705015365970e6a417d8fc0aac7217ab9e107f288e", "method": "GET" }, "response": { @@ -70,10 +70,10 @@ "Content-Type": "application/json" } }, - "uuid": "34f4a84c-7f11-476d-b9f5-1df612e46972" + "uuid": "7522c311-1386-4722-8357-61536f3d9643" }, { - "id": "d689f723-94d7-491c-838a-d27046e8e706", + "id": "277722b7-69e4-48f3-b8a3-21206c1a73c4", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -88,7 +88,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"3c7c8496418d0ea1c13bbb2a0073d75b3b4da78e:254e5d4f364af72b187e4e5a74f03952cf6f63cbd53e184bae00f733d47dc108\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"a5ac64e6c4d01cd63716f4a9504ba49629bb1618:6f067a715a234966c6bf0b70d232cae686127d9dff81a284b66a013a33738c3b\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -101,10 +101,10 @@ "Content-Type": "application/json" } }, - "uuid": "d689f723-94d7-491c-838a-d27046e8e706" + "uuid": "277722b7-69e4-48f3-b8a3-21206c1a73c4" }, { - "id": "a58c42fe-07b8-4f95-818b-a243fd4672d7", + "id": "0a5cb1c3-c917-424b-9e12-918c1c9c09e3", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -119,7 +119,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"d8de0f632b84136c1c79646ca0a224110db3651a:937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"556664b6770cb3bac97908b113cf79c38c0aa47e:dc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -132,10 +132,10 @@ "Content-Type": "application/json" } }, - "uuid": "a58c42fe-07b8-4f95-818b-a243fd4672d7" + "uuid": "0a5cb1c3-c917-424b-9e12-918c1c9c09e3" }, { - "id": "933fcfa1-17af-4535-a610-2ec0ca02301e", + "id": "9b2157e1-96ff-490d-92d2-27f25d106455", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -150,7 +150,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"78426457f81dca7f8bd073d396eeb8c55d0f19f3:f7f6fc5a3686022cd88989554e14b6185f1e0d48e65546dec54f417b75ec7fe8\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"fa9abcb681ffe1f1366e016f289fba016c46a6cf:b1647a2cd54356ab35b9ff705015365970e6a417d8fc0aac7217ab9e107f288e\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -163,10 +163,10 @@ "Content-Type": "application/json" } }, - "uuid": "933fcfa1-17af-4535-a610-2ec0ca02301e" + "uuid": "9b2157e1-96ff-490d-92d2-27f25d106455" }, { - "id": "d367f437-2437-4973-94e8-b8791bb2dac2", + "id": "b5574202-d233-493a-b009-62b493cb2f26", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -174,7 +174,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -192,10 +192,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d367f437-2437-4973-94e8-b8791bb2dac2" + "uuid": "b5574202-d233-493a-b009-62b493cb2f26" }, { - "id": "421a8a32-9d24-4b3a-b2c1-4e6b58fc13f3", + "id": "a953af00-39b5-4559-9f2c-668b27c9ad32", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -216,10 +216,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "421a8a32-9d24-4b3a-b2c1-4e6b58fc13f3" + "uuid": "a953af00-39b5-4559-9f2c-668b27c9ad32" }, { - "id": "85040cf6-f726-48a8-b6cd-d914fb94045e", + "id": "f39b82d8-edff-4aef-b845-fc34793c1433", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -240,10 +240,10 @@ "Content-Type": "application/json" } }, - "uuid": "85040cf6-f726-48a8-b6cd-d914fb94045e" + "uuid": "f39b82d8-edff-4aef-b845-fc34793c1433" }, { - "id": "9043698e-ff88-49ae-8cc1-99eafb4f8c58", + "id": "6518a24e-4031-4ec4-b486-9c859031d19b", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -264,10 +264,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9043698e-ff88-49ae-8cc1-99eafb4f8c58" + "uuid": "6518a24e-4031-4ec4-b486-9c859031d19b" }, { - "id": "fff743c5-e60f-4a6e-ad01-6beefb0a3477", + "id": "3c4e6733-9e43-47d5-9968-89109e40a111", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%272dcc56ff-5ae6-49f1-ba97-9b76000ca4a1%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -288,10 +288,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "fff743c5-e60f-4a6e-ad01-6beefb0a3477" + "uuid": "3c4e6733-9e43-47d5-9968-89109e40a111" }, { - "id": "f434a04d-bab6-4fa0-8666-7f56b5f27f2d", + "id": "11db0f65-2114-4384-b06b-6946cb78906b", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -312,10 +312,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f434a04d-bab6-4fa0-8666-7f56b5f27f2d" + "uuid": "11db0f65-2114-4384-b06b-6946cb78906b" }, { - "id": "5f11759a-3194-4611-8daf-7a7c70b050ec", + "id": "fac7d8d7-3c04-431d-ae5a-285c0add3771", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -323,7 +323,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -341,10 +341,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5f11759a-3194-4611-8daf-7a7c70b050ec" + "uuid": "fac7d8d7-3c04-431d-ae5a-285c0add3771" }, { - "id": "d1dc20c3-4cd9-4610-843f-6aff38025cca", + "id": "205cc8ba-1be6-4e20-a31a-a28c7e11959f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -352,7 +352,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -370,10 +370,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d1dc20c3-4cd9-4610-843f-6aff38025cca" + "uuid": "205cc8ba-1be6-4e20-a31a-a28c7e11959f" }, { - "id": "4bca29e1-61e6-47ad-9378-c11f32c75a7e", + "id": "2557c7f8-0e35-4eed-afda-1e01580a0f9c", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -394,66 +394,66 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4bca29e1-61e6-47ad-9378-c11f32c75a7e" + "uuid": "2557c7f8-0e35-4eed-afda-1e01580a0f9c" }, { - "id": "abb21a0e-d33e-4069-9c83-279e4e8c40ae", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1", + "id": "196bff81-33c2-43bf-bace-9fc52bd84444", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":\"0\",\"granularity\":\"GDC.time.month\",\"to\":\"0\",\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/c4d17586-73c4-440a-9977-f25baed90d88\"}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], - "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "abb21a0e-d33e-4069-9c83-279e4e8c40ae" + "uuid": "196bff81-33c2-43bf-bace-9fc52bd84444" }, { - "id": "7ae548b5-124d-4d41-9f03-3e21049ee544", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "571446d5-5b8c-472c-bb40-47f943c92e62", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":\"0\",\"granularity\":\"GDC.time.month\",\"to\":\"0\",\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/c4d17586-73c4-440a-9977-f25baed90d88\"}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7ae548b5-124d-4d41-9f03-3e21049ee544" + "uuid": "571446d5-5b8c-472c-bb40-47f943c92e62" }, { - "id": "8e2dcd28-97a5-4755-a79d-111945e0f0f1", + "id": "916e58d7-a3b2-48d5-a1a0-ddbe9c6f9e4a", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -461,7 +461,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -479,10 +479,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8e2dcd28-97a5-4755-a79d-111945e0f0f1" + "uuid": "916e58d7-a3b2-48d5-a1a0-ddbe9c6f9e4a" + }, + { + "id": "e0ee4ba1-31a9-4ca5-aa40-6a3d0c5edc6f", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "e0ee4ba1-31a9-4ca5-aa40-6a3d0c5edc6f" }, { - "id": "2d8e10fe-bd27-424d-87d3-6abc9c4c8d1b", + "id": "32c23da7-4c17-4f98-b5e2-73e64ca4e8e7", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -490,7 +521,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -501,10 +532,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2d8e10fe-bd27-424d-87d3-6abc9c4c8d1b" + "uuid": "32c23da7-4c17-4f98-b5e2-73e64ca4e8e7" }, { - "id": "e7ae0213-770b-4053-8953-0bb4f20087c0", + "id": "0e866660-1366-46b4-8e50-44e169aac7ff", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -528,7 +559,7 @@ "Content-Type": "application/json" } }, - "uuid": "e7ae0213-770b-4053-8953-0bb4f20087c0" + "uuid": "0e866660-1366-46b4-8e50-44e169aac7ff" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFilters.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFilters.spec.ts.json index 045f1bb435d..face90b1343 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFilters.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFilters.spec.ts.json @@ -1,15 +1,22 @@ { "mappings": [ { - "id": "77d0924a-043a-445d-9aba-906ecfb49e78", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7c805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca", + "id": "74140bb6-354b-4e8c-a7a7-d2c81aff333b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7%3Ac805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":[0.552570093457944],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"cff537026ca77e6f469939da9bbe8f527cad958d:7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -22,18 +29,18 @@ "Content-Type": "application/json" } }, - "uuid": "77d0924a-043a-445d-9aba-906ecfb49e78" + "uuid": "74140bb6-354b-4e8c-a7a7-d2c81aff333b" }, { - "id": "da7d0b19-3283-4107-b311-9226ed71762c", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_75f1b00a117d00938b202f36bb94143f2603d675769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da", + "id": "fd413e6c-3259-4701-836d-b1ab439ad5d5", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_stage.iswon_id", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/75f1b00a117d00938b202f36bb94143f2603d675%3A769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[0.5319148936170213],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", + "body": "{\"data\":{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -43,49 +50,20 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" - } - }, - "uuid": "da7d0b19-3283-4107-b311-9226ed71762c" - }, - { - "id": "7ff17afa-d78f-4a9d-888c-b7275382c560", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_activity.status_id", - "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets", - "method": "GET" - }, - "response": { - "status": 200, - "body": "{\"data\":{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets\"}}", - "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], - "Expires": "0", - "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7ff17afa-d78f-4a9d-888c-b7275382c560" + "uuid": "fd413e6c-3259-4701-836d-b1ab439ad5d5" }, { - "id": "1f991450-a1c3-4686-aec0-d846ab8b1ee5", + "id": "76800d99-339b-4ee2-9f37-d43540320e3a", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -93,7 +71,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"f03086786b8de3188c0a490a3846e9039ccf67ee:861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"45b1fb63baff85db4ee6f874142216548c5a1577:e6e7f32d1b70fa7ebb5a4005bcdfa858c98ba7be5c59f6f44cf31ea207f6fa05\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -106,46 +84,17 @@ "Content-Type": "application/json" } }, - "uuid": "1f991450-a1c3-4686-aec0-d846ab8b1ee5" - }, - { - "id": "94938fb0-0ade-4640-92be-0de9012d965d", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_owner.salesrep", - "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets", - "method": "GET" - }, - "response": { - "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", - "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], - "Expires": "0", - "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" - } - }, - "uuid": "94938fb0-0ade-4640-92be-0de9012d965d" + "uuid": "76800d99-339b-4ee2-9f37-d43540320e3a" }, { - "id": "99e69122-5aa0-4f2b-b973-f0b00947bc8e", + "id": "ac972426-c50e-4f96-b4c0-73866d04cea1", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -153,7 +102,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"a12368d04894921db7d22dd95987b195971aa532:6769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"acb04ebf70ee4d39545985b2a75a519e364cb13e:b196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -166,48 +115,46 @@ "Content-Type": "application/json" } }, - "uuid": "99e69122-5aa0-4f2b-b973-f0b00947bc8e" + "uuid": "ac972426-c50e-4f96-b4c0-73866d04cea1" }, { - "id": "ef6b1728-2b6b-4e4a-a75e-13c4be2b6b29", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", + "id": "8f0edf39-3a8c-4b1e-8022-2738ef1b195d", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_owner.salesrep", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", - "method": "POST", - "bodyPatterns": [ - { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", - "ignoreArrayOrder": false, - "ignoreExtraElements": false - } - ] + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets", + "method": "GET" }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7:c805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca\"}}}", + "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ef6b1728-2b6b-4e4a-a75e-13c4be2b6b29" + "uuid": "8f0edf39-3a8c-4b1e-8022-2738ef1b195d" }, { - "id": "699f44dd-82c6-4635-93a3-ea13f496b7bf", + "id": "000f0827-403b-46c4-bd93-44e5f01ba9b4", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -215,7 +162,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"75f1b00a117d00938b202f36bb94143f2603d675:769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"9109011aa897e782743e47dedaf9aab2c93ea810:3c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -228,34 +175,39 @@ "Content-Type": "application/json" } }, - "uuid": "699f44dd-82c6-4635-93a3-ea13f496b7bf" + "uuid": "000f0827-403b-46c4-bd93-44e5f01ba9b4" }, { - "id": "7cacad3f-eadc-46db-ae22-5401cfbb48f1", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_stage.iswon_id", + "id": "12bd0371-7088-4a11-89bf-1ceda990079e", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_activity.status_id", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7cacad3f-eadc-46db-ae22-5401cfbb48f1" + "uuid": "12bd0371-7088-4a11-89bf-1ceda990079e" }, { - "id": "f11daf54-cf7c-4e97-97e1-87f36a1d5d3f", + "id": "17bc2cc9-19c8-4346-9dd4-c1a88c76e2ac", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -263,7 +215,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -281,18 +233,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f11daf54-cf7c-4e97-97e1-87f36a1d5d3f" + "uuid": "17bc2cc9-19c8-4346-9dd4-c1a88c76e2ac" }, { - "id": "2042aaf0-1005-4d12-b697-b5085f6ca29e", - "name": "api_v1_entities_notificationchannels", + "id": "748d3a8a-224f-4220-9fb4-fecd5739ffc4", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -302,21 +254,21 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "2042aaf0-1005-4d12-b697-b5085f6ca29e" + "uuid": "748d3a8a-224f-4220-9fb4-fecd5739ffc4" }, { - "id": "c8bed5f1-53ab-4126-9169-3a29d274ee00", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "f7264030-2064-4583-b9d0-669a219337a7", + "name": "api_v1_entities_notificationchannels", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=100\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -326,13 +278,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c8bed5f1-53ab-4126-9169-3a29d274ee00" + "uuid": "f7264030-2064-4583-b9d0-669a219337a7" }, { - "id": "19a9d45a-53ef-40bb-8141-ff5a824538e9", + "id": "196ab1f8-4838-468a-bb46-0ef11a3b724a", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -353,63 +305,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "19a9d45a-53ef-40bb-8141-ff5a824538e9" + "uuid": "196ab1f8-4838-468a-bb46-0ef11a3b724a" }, { - "id": "ba6c6355-17ae-4002-b484-be08af578898", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "f8442f62-7031-4763-8c64-a4565833e05f", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_activity.status_id&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=1&size=20\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ba6c6355-17ae-4002-b484-be08af578898" + "uuid": "f8442f62-7031-4763-8c64-a4565833e05f" }, { - "id": "d2bb5e8a-8b59-4910-bdd4-0ddd9e5a703e", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "ee3f797e-9c94-4cdf-ab46-82ffd78ccda2", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_stage.iswon_id&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_stage.iswon_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_stage.iswon_id%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d2bb5e8a-8b59-4910-bdd4-0ddd9e5a703e" + "uuid": "ee3f797e-9c94-4cdf-ab46-82ffd78ccda2" }, { - "id": "02d6b914-f87e-46ca-8d7a-3d2a99cf6da8", + "id": "7f82a0fc-32dc-4c16-a827-3f6e7f3cd7af", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -424,7 +376,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"3822853b99eecdd9e6f716001e235253\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"54a226be7d14a66d4f7dfcc497712d66\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -442,10 +394,10 @@ "Content-Type": "application/json" } }, - "uuid": "02d6b914-f87e-46ca-8d7a-3d2a99cf6da8" + "uuid": "7f82a0fc-32dc-4c16-a827-3f6e7f3cd7af" }, { - "id": "d5d700b1-8873-4663-9f66-ea3089f0beae", + "id": "60dedb8e-3546-4c16-9397-249aa08cb0ac", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -460,7 +412,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"5040cba279de060018715e619bbf982f\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"43d3148382bbc8b813ae0f8b6570f2be\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -473,10 +425,10 @@ "Content-Type": "application/json" } }, - "uuid": "d5d700b1-8873-4663-9f66-ea3089f0beae" + "uuid": "60dedb8e-3546-4c16-9397-249aa08cb0ac" }, { - "id": "f0b0afdd-9ef6-4508-936e-10e82959eb34", + "id": "f507613e-09de-4012-9941-0838f7037eaa", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -491,7 +443,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"ace65250b8b81aea3d994be463b6d85a\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"7a94806d854f77477e7b5b2dfd7ad8b5\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -504,10 +456,10 @@ "Content-Type": "application/json" } }, - "uuid": "f0b0afdd-9ef6-4508-936e-10e82959eb34" + "uuid": "f507613e-09de-4012-9941-0838f7037eaa" }, { - "id": "0cca2c2d-414b-4c01-91a4-a75d704ee529", + "id": "4c7268ad-b0f2-438e-b409-5a9409d7b93f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", @@ -522,7 +474,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"b21d0d31f3e995ee404e61353f13a737\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"ae54ec2f594859dc9acfb5463d9e77ef\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -535,10 +487,10 @@ "Content-Type": "application/json" } }, - "uuid": "0cca2c2d-414b-4c01-91a4-a75d704ee529" + "uuid": "4c7268ad-b0f2-438e-b409-5a9409d7b93f" }, { - "id": "5dd53839-49f2-41bf-884d-48cbcc41489b", + "id": "8a8ef62e-0537-4a8e-9401-ff526075a306", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_owner.salesrep&include=labels", @@ -546,7 +498,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27attr.f_owner.salesrep%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -564,18 +516,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5dd53839-49f2-41bf-884d-48cbcc41489b" + "uuid": "8a8ef62e-0537-4a8e-9401-ff526075a306" }, { - "id": "9f9a046b-131f-4c35-8383-4cdff6aacffa", + "id": "f2eb7aaf-2177-42dd-b583-8b8cedc38d52", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_stage.iswon_id&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_activity.status_id&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_stage.iswon_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_stage.iswon_id%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -593,10 +545,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9f9a046b-131f-4c35-8383-4cdff6aacffa" + "uuid": "f2eb7aaf-2177-42dd-b583-8b8cedc38d52" }, { - "id": "72a46666-32f6-4272-898d-d0dcc3558587", + "id": "badea32f-9d3d-4d91-a0a5-b424c28985be", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -617,10 +569,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "72a46666-32f6-4272-898d-d0dcc3558587" + "uuid": "badea32f-9d3d-4d91-a0a5-b424c28985be" }, { - "id": "0d5136fe-31f4-43ae-8ac4-c3a0a076dfaa", + "id": "03187926-5b6c-4369-9970-058337ffcd7f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -628,7 +580,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -646,10 +598,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "0d5136fe-31f4-43ae-8ac4-c3a0a076dfaa" + "uuid": "03187926-5b6c-4369-9970-058337ffcd7f" }, { - "id": "88c353ba-7dd8-4b5f-b847-c859f807098c", + "id": "167f5922-178d-45f9-a27e-f5b9a87e62e2", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D601c81ae-0582-42f0-9f35-a4ec2a6a8497%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -670,10 +622,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "88c353ba-7dd8-4b5f-b847-c859f807098c" + "uuid": "167f5922-178d-45f9-a27e-f5b9a87e62e2" }, { - "id": "7063d7a7-64a0-4b2f-9a48-88f04851e8fb", + "id": "6325a2b5-dbc4-4c67-8aa9-69ce79f68644", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", @@ -681,7 +633,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -699,10 +651,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7063d7a7-64a0-4b2f-9a48-88f04851e8fb" + "uuid": "6325a2b5-dbc4-4c67-8aa9-69ce79f68644" }, { - "id": "57a70c07-9690-46ab-817d-fd1a6b458bb1", + "id": "f3927a8b-7679-413a-bc89-4cadb7721188", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_601c81ae-0582-42f0-9f35-a4ec2a6a8497", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -728,93 +680,97 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "57a70c07-9690-46ab-817d-fd1a6b458bb1" + "uuid": "f3927a8b-7679-413a-bc89-4cadb7721188" }, { - "id": "7b1c88dc-9430-4f30-bbb8-6d38617117e4", - "name": "api_v1_entities_workspaces", + "id": "e194ae16-0013-4e4f-a910-a7a350b23b8c", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], - "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "7b1c88dc-9430-4f30-bbb8-6d38617117e4" + "uuid": "e194ae16-0013-4e4f-a910-a7a350b23b8c" }, { - "id": "c933ba54-ac6c-4edc-b1aa-a8ec0cc47593", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "id": "9da38107-0339-4f4f-ac47-ff1c5b8351a9", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], + "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c933ba54-ac6c-4edc-b1aa-a8ec0cc47593" + "uuid": "9da38107-0339-4f4f-ac47-ff1c5b8351a9" }, { - "id": "6e0d0b21-b005-4cc5-8b3b-91eca7acffb6", - "name": "api_v1_profile", + "id": "728848f2-a5fa-4bf7-bb91-509299d19cc2", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/profile", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "6e0d0b21-b005-4cc5-8b3b-91eca7acffb6" + "uuid": "728848f2-a5fa-4bf7-bb91-509299d19cc2" }, { - "id": "172083b5-63b8-4bc7-bcdd-cbdef8fe4374", + "id": "3875ac0f-1c4b-4689-a44a-5ac61c2a5feb", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -822,7 +778,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -833,13 +789,40 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "172083b5-63b8-4bc7-bcdd-cbdef8fe4374" + "uuid": "3875ac0f-1c4b-4689-a44a-5ac61c2a5feb" }, { - "id": "3991b0a5-4668-4da4-9b68-34978f1579ad", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d8de0f632b84136c1c79646ca0a224110db3651a937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "id": "f07b6731-e145-4ffd-b589-e4e342b385d7", + "name": "api_v1_profile", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d8de0f632b84136c1c79646ca0a224110db3651a%3A937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "url": "/api/v1/profile", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "f07b6731-e145-4ffd-b589-e4e342b385d7" + }, + { + "id": "f81d26c9-8741-420d-bda1-78abf0ca1970", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_556664b6770cb3bac97908b113cf79c38c0aa47edc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/556664b6770cb3bac97908b113cf79c38c0aa47e%3Adc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "method": "GET" }, "response": { @@ -856,10 +839,10 @@ "X-XSS-Protection": "0" } }, - "uuid": "3991b0a5-4668-4da4-9b68-34978f1579ad" + "uuid": "f81d26c9-8741-420d-bda1-78abf0ca1970" }, { - "id": "6e12c25a-d9be-4e43-b4a5-e42552f4e11b", + "id": "9c9e0e16-61ba-49dc-a966-0f02853adfef", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -874,7 +857,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"d8de0f632b84136c1c79646ca0a224110db3651a:937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"556664b6770cb3bac97908b113cf79c38c0aa47e:dc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -887,10 +870,10 @@ "Content-Type": "application/json" } }, - "uuid": "6e12c25a-d9be-4e43-b4a5-e42552f4e11b" + "uuid": "9c9e0e16-61ba-49dc-a966-0f02853adfef" }, { - "id": "1e896ac9-4209-4876-a99d-6078d22a1e76", + "id": "32d45bd4-2dae-49f6-9f9c-af7ad67f9fdc", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -911,10 +894,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1e896ac9-4209-4876-a99d-6078d22a1e76" + "uuid": "32d45bd4-2dae-49f6-9f9c-af7ad67f9fdc" }, { - "id": "158093a4-7ba8-4834-8ef4-eddbe002e2a1", + "id": "232129e8-7dd1-490f-aa48-8d250fbb557c", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D62554df1-31a8-49c7-bfed-524771a83b1a%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -935,10 +918,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "158093a4-7ba8-4834-8ef4-eddbe002e2a1" + "uuid": "232129e8-7dd1-490f-aa48-8d250fbb557c" }, { - "id": "b418f8b0-15a7-4c73-846b-f25268f73b90", + "id": "bdeb9323-8369-44a3-913c-62265236135f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_62554df1-31a8-49c7-bfed-524771a83b1a", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -964,10 +947,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b418f8b0-15a7-4c73-846b-f25268f73b90" + "uuid": "bdeb9323-8369-44a3-913c-62265236135f" }, { - "id": "67a4139a-00ba-4b93-bf54-9d33e597b24d", + "id": "ea77a3ca-4112-4dbb-a860-f1b1343bac50", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1000,10 +983,10 @@ "Content-Type": "application/json" } }, - "uuid": "67a4139a-00ba-4b93-bf54-9d33e597b24d" + "uuid": "ea77a3ca-4112-4dbb-a860-f1b1343bac50" }, { - "id": "b3771285-f41e-4796-9187-7f5871674588", + "id": "ccf8af20-80f6-4dd4-9d02-bb753610c3d2", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", @@ -1011,7 +994,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1029,10 +1012,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "b3771285-f41e-4796-9187-7f5871674588" + "uuid": "ccf8af20-80f6-4dd4-9d02-bb753610c3d2" }, { - "id": "0cc794d7-f13b-473d-aaa3-8bdbe89c4da1", + "id": "86f22cd0-6c86-4e4a-b472-5bb0a3649a94", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1065,10 +1048,10 @@ "Content-Type": "application/json" } }, - "uuid": "0cc794d7-f13b-473d-aaa3-8bdbe89c4da1" + "uuid": "86f22cd0-6c86-4e4a-b472-5bb0a3649a94" }, { - "id": "16ccb979-ff3d-4f6d-b296-3316221cb06c", + "id": "01c5ee85-eeee-458b-9b7c-747139b26753", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", @@ -1094,10 +1077,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "16ccb979-ff3d-4f6d-b296-3316221cb06c" + "uuid": "01c5ee85-eeee-458b-9b7c-747139b26753" }, { - "id": "c0ff4767-b3ed-4b6c-8b48-126b3a09b0fa", + "id": "5b088505-231f-41c2-8521-8a5602cb03b5", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1130,10 +1113,10 @@ "Content-Type": "application/json" } }, - "uuid": "c0ff4767-b3ed-4b6c-8b48-126b3a09b0fa" + "uuid": "5b088505-231f-41c2-8521-8a5602cb03b5" }, { - "id": "01f91aef-2969-4b8a-b6c2-ab5966877364", + "id": "62464276-a310-48aa-b0af-cc88c08ce9fe", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1166,10 +1149,10 @@ "Content-Type": "application/json" } }, - "uuid": "01f91aef-2969-4b8a-b6c2-ab5966877364" + "uuid": "62464276-a310-48aa-b0af-cc88c08ce9fe" }, { - "id": "deeae955-2cf9-434f-8602-903266eb1d77", + "id": "ded8498d-c9b8-4b8b-af98-3badde8b966b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1202,10 +1185,10 @@ "Content-Type": "application/json" } }, - "uuid": "deeae955-2cf9-434f-8602-903266eb1d77" + "uuid": "ded8498d-c9b8-4b8b-af98-3badde8b966b" }, { - "id": "b8a30007-6f96-4bed-ab9c-07005d503672", + "id": "20e5bc6e-6d94-4d41-9c99-3893e5e3253c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1238,10 +1221,10 @@ "Content-Type": "application/json" } }, - "uuid": "b8a30007-6f96-4bed-ab9c-07005d503672" + "uuid": "20e5bc6e-6d94-4d41-9c99-3893e5e3253c" }, { - "id": "147b55d0-b489-497e-807a-8d59e940b90f", + "id": "88b89acf-bb9a-4436-8575-4a8b962d5323", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_city.id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets", @@ -1249,7 +1232,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1262,10 +1245,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "147b55d0-b489-497e-807a-8d59e940b90f" + "uuid": "88b89acf-bb9a-4436-8575-4a8b962d5323" }, { - "id": "264cdf62-598a-4b03-80b5-033b6596852f", + "id": "8d92b6c4-2c34-4897-83c3-5de45ed29a73", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_activity.activity", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets", @@ -1273,7 +1256,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1291,10 +1274,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "264cdf62-598a-4b03-80b5-033b6596852f" + "uuid": "8d92b6c4-2c34-4897-83c3-5de45ed29a73" }, { - "id": "7efc5680-4eb0-41b5-a266-8b7b80000143", + "id": "17bea3b9-a341-4ea4-9015-35b5c36687a1", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_account.account", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets", @@ -1302,7 +1285,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1315,10 +1298,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7efc5680-4eb0-41b5-a266-8b7b80000143" + "uuid": "17bea3b9-a341-4ea4-9015-35b5c36687a1" }, { - "id": "98627962-7fa1-49a8-abef-2955a15feb7f", + "id": "8cff759f-34ab-4fef-9204-d913c858a6cf", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1333,7 +1316,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1351,10 +1334,10 @@ "Content-Type": "application/json" } }, - "uuid": "98627962-7fa1-49a8-abef-2955a15feb7f" + "uuid": "8cff759f-34ab-4fef-9204-d913c858a6cf" }, { - "id": "5a33bf67-0ddf-43c3-8780-f19ffb754ddb", + "id": "cd53b6f9-4d2c-4168-bd14-72c5184bf4e0", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_city.id.cityname&include=labels", @@ -1362,7 +1345,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1380,10 +1363,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "5a33bf67-0ddf-43c3-8780-f19ffb754ddb" + "uuid": "cd53b6f9-4d2c-4168-bd14-72c5184bf4e0" }, { - "id": "225c4402-f064-46c2-8d17-63675ab9fde4", + "id": "cf9ca291-6d4c-4e27-9bcf-7df76ddc6ff7", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1398,7 +1381,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},\"elements\":[{\"title\":\"Email with 1000Bulbs.com on Apr-21-08\",\"primaryTitle\":\"4\"},{\"title\":\"Email with 1000Bulbs.com on Dec-14-09\",\"primaryTitle\":\"715\"},{\"title\":\"Email with 1000Bulbs.com on Dec-29-08\",\"primaryTitle\":\"77\"},{\"title\":\"Email with 1000Bulbs.com on Feb-10-09\",\"primaryTitle\":\"111\"},{\"title\":\"Email with 1000Bulbs.com on Jan-06-10\",\"primaryTitle\":\"817\"},{\"title\":\"Email with 1000Bulbs.com on Jan-29-09\",\"primaryTitle\":\"99\"},{\"title\":\"Email with 1000Bulbs.com on Jul-03-08\",\"primaryTitle\":\"9\"},{\"title\":\"Email with 1000Bulbs.com on Jul-06-10\",\"primaryTitle\":\"2884\"},{\"title\":\"Email with 1000Bulbs.com on Jul-24-10\",\"primaryTitle\":\"3338\"},{\"title\":\"Email with 1000Bulbs.com on Jun-01-10\",\"primaryTitle\":\"2293\"},{\"title\":\"Email with 1000Bulbs.com on Mar-08-10\",\"primaryTitle\":\"1206\"},{\"title\":\"Email with 1000Bulbs.com on May-23-10\",\"primaryTitle\":\"2138\"},{\"title\":\"Email with 1000Bulbs.com on May-28-09\",\"primaryTitle\":\"223\"},{\"title\":\"Email with 1000Bulbs.com on Oct-15-08\",\"primaryTitle\":\"42\"},{\"title\":\"Email with 1000Bulbs.com on Sep-13-08\",\"primaryTitle\":\"31\"},{\"title\":\"Email with 1000Bulbs.com on Sep-17-08\",\"primaryTitle\":\"32\"},{\"title\":\"Email with 101 Financial on Apr-20-10\",\"primaryTitle\":\"1651\"},{\"title\":\"Email with 101 Financial on Aug-16-08\",\"primaryTitle\":\"150353\"},{\"title\":\"Email with 101 Financial on Dec-08-08\",\"primaryTitle\":\"60\"},{\"title\":\"Email with 101 Financial on Dec-18-09\",\"primaryTitle\":\"150359\"},{\"title\":\"Email with 101 Financial on Feb-02-09\",\"primaryTitle\":\"150355\"},{\"title\":\"Email with 101 Financial on Jun-15-08\",\"primaryTitle\":\"150352\"},{\"title\":\"Email with 101 Financial on Mar-11-09\",\"primaryTitle\":\"132\"},{\"title\":\"Email with 101 Financial on Mar-15-09\",\"primaryTitle\":\"135\"},{\"title\":\"Email with 101 Financial on Mar-17-11\",\"primaryTitle\":\"150388\"},{\"title\":\"Email with 101 Financial on Mar-28-11\",\"primaryTitle\":\"150389\"},{\"title\":\"Email with 101 Financial on May-01-10\",\"primaryTitle\":\"1800\"},{\"title\":\"Email with 101 Financial on May-24-09\",\"primaryTitle\":\"217\"},{\"title\":\"Email with 101 Financial on Nov-15-09\",\"primaryTitle\":\"150358\"},{\"title\":\"Email with 101 Financial on Nov-16-08\",\"primaryTitle\":\"51\"},{\"title\":\"Email with 101 Financial on Oct-01-09\",\"primaryTitle\":\"472\"},{\"title\":\"Email with 101 Financial on Oct-15-08\",\"primaryTitle\":\"150354\"},{\"title\":\"Email with 123 Exteriors on Apr-07-10\",\"primaryTitle\":\"1518\"},{\"title\":\"Email with 123 Exteriors on Dec-13-08\",\"primaryTitle\":\"66\"},{\"title\":\"Email with 123 Exteriors on Jul-18-09\",\"primaryTitle\":\"304\"},{\"title\":\"Email with 123 Exteriors on Jul-26-09\",\"primaryTitle\":\"325\"},{\"title\":\"Email with 123 Exteriors on Jul-28-08\",\"primaryTitle\":\"16\"},{\"title\":\"Email with 123 Exteriors on Jun-22-08\",\"primaryTitle\":\"8\"},{\"title\":\"Email with 123 Exteriors on Nov-13-09\",\"primaryTitle\":\"595\"},{\"title\":\"Email with 123 Exteriors on Oct-06-09\",\"primaryTitle\":\"486\"},{\"title\":\"Email with 1-800 Postcards on Dec-06-10\",\"primaryTitle\":\"34000\"},{\"title\":\"Email with 1-800 Postcards on Dec-21-10\",\"primaryTitle\":\"34432\"},{\"title\":\"Email with 1-800 Postcards on Feb-14-11\",\"primaryTitle\":\"36297\"},{\"title\":\"Email with 1-800 Postcards on Feb-23-11\",\"primaryTitle\":\"36588\"},{\"title\":\"Email with 1-800 Postcards on Jun-09-11\",\"primaryTitle\":\"40060\"},{\"title\":\"Email with 1-800 Postcards on Oct-26-10\",\"primaryTitle\":\"32516\"},{\"title\":\"Email with 1-800 We Answer on Apr-13-09\",\"primaryTitle\":\"151091\"},{\"title\":\"Email with 1-800 We Answer on Feb-11-10\",\"primaryTitle\":\"151131\"},{\"title\":\"Email with 1-800 We Answer on Jul-14-09\",\"primaryTitle\":\"151097\"},{\"title\":\"Email with 1-800 We Answer on Mar-09-09\",\"primaryTitle\":\"151090\"},{\"title\":\"Email with 1-800 We Answer on Oct-02-09\",\"primaryTitle\":\"151109\"},{\"title\":\"Email with 1-800 We Answer on Oct-04-10\",\"primaryTitle\":\"151259\"},{\"title\":\"Email with 1-800 We Answer on Oct-17-08\",\"primaryTitle\":\"151088\"},{\"title\":\"Email with 1-800 We Answer on Oct-23-09\",\"primaryTitle\":\"151114\"},{\"title\":\"Email with 1-888-OhioComp on Aug-20-09\",\"primaryTitle\":\"140982\"},{\"title\":\"Email with 1-888-OhioComp on Dec-10-12\",\"primaryTitle\":\"142916\"},{\"title\":\"Email with 1-888-OhioComp on Jul-25-12\",\"primaryTitle\":\"142705\"},{\"title\":\"Email with 1-888-OhioComp on Jun-11-12\",\"primaryTitle\":\"142451\"},{\"title\":\"Email with 1-888-OhioComp on Mar-04-10\",\"primaryTitle\":\"140994\"},{\"title\":\"Email with 1-888-OhioComp on Oct-13-09\",\"primaryTitle\":\"140985\"},{\"title\":\"Email with 1-888-OhioComp on Sep-04-08\",\"primaryTitle\":\"140976\"},{\"title\":\"Email with 1-888-OhioComp on Sep-25-12\",\"primaryTitle\":\"142870\"},{\"title\":\"Email with 1 Source Consulting on Apr-27-08\",\"primaryTitle\":\"5\"},{\"title\":\"Email with 1 Source Consulting on Apr-29-10\",\"primaryTitle\":\"1758\"},{\"title\":\"Email with 1 Source Consulting on Dec-17-09\",\"primaryTitle\":\"729\"},{\"title\":\"Email with 1 Source Consulting on Feb-03-10\",\"primaryTitle\":\"987\"},{\"title\":\"Email with 1 Source Consulting on Jan-08-10\",\"primaryTitle\":\"832\"},{\"title\":\"Email with 1 Source Consulting on Jan-11-10\",\"primaryTitle\":\"844\"},{\"title\":\"Email with 1 Source Consulting on Jan-21-10\",\"primaryTitle\":\"898\"},{\"title\":\"Email with 1 Source Consulting on Jan-26-09\",\"primaryTitle\":\"95\"},{\"title\":\"Email with 1 Source Consulting on Jan-27-09\",\"primaryTitle\":\"98\"},{\"title\":\"Email with 1 Source Consulting on Jul-11-09\",\"primaryTitle\":\"287\"},{\"title\":\"Email with 1 Source Consulting on Jul-16-08\",\"primaryTitle\":\"11\"},{\"title\":\"Email with 1 Source Consulting on Mar-06-10\",\"primaryTitle\":\"1191\"},{\"title\":\"Email with 1 Source Consulting on Nov-01-09\",\"primaryTitle\":\"558\"},{\"title\":\"Email with 1 Source Consulting on Nov-22-09\",\"primaryTitle\":\"625\"},{\"title\":\"Email with 1 Source Consulting on Oct-07-08\",\"primaryTitle\":\"38\"},{\"title\":\"Email with 1 Source Consulting on Oct-08-08\",\"primaryTitle\":\"39\"},{\"title\":\"Email with 1Source International on Apr-03-09\",\"primaryTitle\":\"153\"},{\"title\":\"Email with 1Source International on Apr-23-10\",\"primaryTitle\":\"1689\"},{\"title\":\"Email with 1Source International on Dec-23-09\",\"primaryTitle\":\"740\"},{\"title\":\"Email with 1Source International on Jul-13-08\",\"primaryTitle\":\"10\"},{\"title\":\"Email with 1Source International on Jul-23-09\",\"primaryTitle\":\"317\"},{\"title\":\"Email with 1Source International on Mar-17-09\",\"primaryTitle\":\"137\"},{\"title\":\"Email with 1Source International on May-23-09\",\"primaryTitle\":\"216\"},{\"title\":\"Email with 1Source International on Nov-20-08\",\"primaryTitle\":\"55\"},{\"title\":\"Email with 1Source International on Oct-06-08\",\"primaryTitle\":\"37\"},{\"title\":\"Email with 1Source International on Sep-01-10\",\"primaryTitle\":\"4153\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-22-09\",\"primaryTitle\":\"90\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-24-09\",\"primaryTitle\":\"92\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-09-09\",\"primaryTitle\":\"283\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-23-09\",\"primaryTitle\":\"316\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-05-09\",\"primaryTitle\":\"128\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-14-10\",\"primaryTitle\":\"1266\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-23-09\",\"primaryTitle\":\"144\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-30-10\",\"primaryTitle\":\"1427\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Nov-05-09\",\"primaryTitle\":\"567\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Sep-27-10\",\"primaryTitle\":\"4653\"},{\"title\":\"Email with 2HB Software Designs on Apr-03-09\",\"primaryTitle\":\"152\"},{\"title\":\"Email with 2HB Software Designs on Apr-17-09\",\"primaryTitle\":\"165\"},{\"title\":\"Email with 2HB Software Designs on Apr-25-10\",\"primaryTitle\":\"1714\"},{\"title\":\"Email with 2HB Software Designs on Dec-07-08\",\"primaryTitle\":\"59\"},{\"title\":\"Email with 2HB Software Designs on Dec-30-08\",\"primaryTitle\":\"78\"},{\"title\":\"Email with 2HB Software Designs on Feb-24-10\",\"primaryTitle\":\"1124\"},{\"title\":\"Email with 2HB Software Designs on Jun-05-09\",\"primaryTitle\":\"236\"},{\"title\":\"Email with 2HB Software Designs on Jun-06-10\",\"primaryTitle\":\"2378\"},{\"title\":\"Email with 2HB Software Designs on Sep-16-09\",\"primaryTitle\":\"438\"},{\"title\":\"Email with 2HB Software Designs on Sep-26-08\",\"primaryTitle\":\"34\"},{\"title\":\"Email with 2 Wheel Bikes on Dec-01-10\",\"primaryTitle\":\"33859\"},{\"title\":\"Email with 2 Wheel Bikes on Oct-10-10\",\"primaryTitle\":\"32066\"},{\"title\":\"Email with 352 Media Group on Aug-29-09\",\"primaryTitle\":\"139608\"},{\"title\":\"Email with 352 Media Group on Dec-19-10\",\"primaryTitle\":\"139628\"},{\"title\":\"Email with 352 Media Group on Feb-27-11\",\"primaryTitle\":\"139644\"},{\"title\":\"Email with 352 Media Group on Mar-26-11\",\"primaryTitle\":\"139648\"},{\"title\":\"Email with 352 Media Group on Nov-17-11\",\"primaryTitle\":\"139754\"},{\"title\":\"Email with 352 Media Group on Oct-08-08\",\"primaryTitle\":\"139603\"},{\"title\":\"Email with 352 Media Group on Sep-02-08\",\"primaryTitle\":\"139601\"},{\"title\":\"Email with 352 Media Group on Sep-14-08\",\"primaryTitle\":\"139602\"},{\"title\":\"Email with 3balls.com on Aug-22-10\",\"primaryTitle\":\"3957\"},{\"title\":\"Email with 3balls.com on Aug-22-11\",\"primaryTitle\":\"10952\"},{\"title\":\"Email with 3balls.com on Jan-05-10\",\"primaryTitle\":\"813\"},{\"title\":\"Email with 3balls.com on Jan-26-09\",\"primaryTitle\":\"96\"},{\"title\":\"Email with 3balls.com on Jul-14-11\",\"primaryTitle\":\"10146\"},{\"title\":\"Email with 3balls.com on Nov-28-10\",\"primaryTitle\":\"5908\"},{\"title\":\"Email with 3balls.com on Oct-15-10\",\"primaryTitle\":\"4998\"},{\"title\":\"Email with 3balls.com on Sep-09-08\",\"primaryTitle\":\"27\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Dec-05-09\",\"primaryTitle\":\"679\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Feb-10-09\",\"primaryTitle\":\"112\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jan-09-09\",\"primaryTitle\":\"83\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-04-09\",\"primaryTitle\":\"276\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-20-08\",\"primaryTitle\":\"12\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jun-18-09\",\"primaryTitle\":\"252\"},{\"title\":\"Email with 3dCart Shopping Cart Software on May-22-09\",\"primaryTitle\":\"214\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Oct-25-09\",\"primaryTitle\":\"539\"},{\"title\":\"Email with 3Degrees on Aug-20-09\",\"primaryTitle\":\"376\"},{\"title\":\"Email with 3Degrees on Aug-27-10\",\"primaryTitle\":\"4041\"},{\"title\":\"Email with 3Degrees on Aug-30-09\",\"primaryTitle\":\"396\"},{\"title\":\"Email with 3Degrees on Dec-05-08\",\"primaryTitle\":\"57\"},{\"title\":\"Email with 3Degrees on Feb-07-09\",\"primaryTitle\":\"108\"},{\"title\":\"Email with 3Degrees on Jul-02-12\",\"primaryTitle\":\"146462\"},{\"title\":\"Email with 3Degrees on Jul-08-12\",\"primaryTitle\":\"146500\"},{\"title\":\"Email with 3Degrees on Jul-10-12\",\"primaryTitle\":\"146524\"},{\"title\":\"Email with 3Degrees on Jul-20-12\",\"primaryTitle\":\"146597\"},{\"title\":\"Email with 3Degrees on Jul-21-12\",\"primaryTitle\":\"146600\"},{\"title\":\"Email with 3Degrees on Jul-30-08\",\"primaryTitle\":\"17\"},{\"title\":\"Email with 3Degrees on Jun-08-12\",\"primaryTitle\":\"146298\"},{\"title\":\"Email with 3Degrees on Jun-10-12\",\"primaryTitle\":\"146310\"},{\"title\":\"Email with 3Degrees on Jun-16-12\",\"primaryTitle\":\"146356\"},{\"title\":\"Email with 3Degrees on May-06-09\",\"primaryTitle\":\"193\"},{\"title\":\"Email with 3Degrees on May-12-10\",\"primaryTitle\":\"1956\"},{\"title\":\"Email with 3E on Aug-18-09\",\"primaryTitle\":\"371\"},{\"title\":\"Email with 3E on Dec-29-09\",\"primaryTitle\":\"765\"},{\"title\":\"Email with 3E on Jan-17-10\",\"primaryTitle\":\"875\"},{\"title\":\"Email with 3E on Jan-27-09\",\"primaryTitle\":\"97\"},{\"title\":\"Email with 3E on Jun-18-10\",\"primaryTitle\":\"2593\"},{\"title\":\"Email with 3E on Jun-24-10\",\"primaryTitle\":\"2675\"},{\"title\":\"Email with 3E on May-28-09\",\"primaryTitle\":\"222\"},{\"title\":\"Email with 3E on Nov-28-10\",\"primaryTitle\":\"5922\"},{\"title\":\"Email with 49er Communications on Dec-11-09\",\"primaryTitle\":\"700\"},{\"title\":\"Email with 49er Communications on Feb-09-09\",\"primaryTitle\":\"110\"},{\"title\":\"Email with 49er Communications on Jan-04-09\",\"primaryTitle\":\"81\"},{\"title\":\"Email with 49er Communications on Jul-02-10\",\"primaryTitle\":\"2825\"},{\"title\":\"Email with 49er Communications on Mar-22-10\",\"primaryTitle\":\"1349\"},{\"title\":\"Email with 49er Communications on May-23-08\",\"primaryTitle\":\"6\"},{\"title\":\"Email with 49er Communications on Oct-01-09\",\"primaryTitle\":\"475\"},{\"title\":\"Email with 49er Communications on Oct-10-09\",\"primaryTitle\":\"498\"},{\"title\":\"Email with 4th Source on Aug-23-08\",\"primaryTitle\":\"139600\"},{\"title\":\"Email with 4th Source on Aug-27-12\",\"primaryTitle\":\"140249\"},{\"title\":\"Email with 4th Source on Feb-04-10\",\"primaryTitle\":\"139613\"},{\"title\":\"Email with 4th Source on Jan-21-11\",\"primaryTitle\":\"139631\"},{\"title\":\"Email with 4th Source on May-08-12\",\"primaryTitle\":\"140042\"},{\"title\":\"Email with 4th Source on Oct-01-11\",\"primaryTitle\":\"139714\"},{\"title\":\"Email with 4th Source on Oct-29-08\",\"primaryTitle\":\"139604\"},{\"title\":\"Email with 4th Source on Sep-03-10\",\"primaryTitle\":\"139623\"},{\"title\":\"Email with 4Wall Entertainment on Apr-11-09\",\"primaryTitle\":\"159\"},{\"title\":\"Email with 4Wall Entertainment on Aug-11-10\",\"primaryTitle\":\"3740\"},{\"title\":\"Email with 4Wall Entertainment on Dec-27-08\",\"primaryTitle\":\"74\"},{\"title\":\"Email with 4Wall Entertainment on Jul-21-08\",\"primaryTitle\":\"13\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-10\",\"primaryTitle\":\"1379\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-11\",\"primaryTitle\":\"8064\"},{\"title\":\"Email with 4Wall Entertainment on Sep-12-10\",\"primaryTitle\":\"4334\"},{\"title\":\"Email with 4Wall Entertainment on Sep-28-08\",\"primaryTitle\":\"35\"},{\"title\":\"Email with 5LINX Enterprises on Apr-03-12\",\"primaryTitle\":\"139942\"},{\"title\":\"Email with 5LINX Enterprises on Aug-19-09\",\"primaryTitle\":\"139607\"},{\"title\":\"Email with 5LINX Enterprises on Aug-26-10\",\"primaryTitle\":\"139620\"},{\"title\":\"Email with 5LINX Enterprises on Dec-09-09\",\"primaryTitle\":\"139612\"},{\"title\":\"Email with 5LINX Enterprises on Feb-18-12\",\"primaryTitle\":\"139871\"},{\"title\":\"Email with 5LINX Enterprises on Feb-21-10\",\"primaryTitle\":\"139615\"},{\"title\":\"Email with 5LINX Enterprises on Mar-04-11\",\"primaryTitle\":\"139645\"},{\"title\":\"Email with 5LINX Enterprises on Sep-27-09\",\"primaryTitle\":\"139610\"},{\"title\":\"Email with 614 Media Group on Apr-24-11\",\"primaryTitle\":\"38606\"},{\"title\":\"Email with 614 Media Group on Mar-02-11\",\"primaryTitle\":\"36938\"},{\"title\":\"Email with 614 Media Group on Sep-02-10\",\"primaryTitle\":\"31085\"},{\"title\":\"Email with 6K Systems on Aug-15-09\",\"primaryTitle\":\"139606\"},{\"title\":\"Email with 6K Systems on Dec-10-11\",\"primaryTitle\":\"139779\"},{\"title\":\"Email with 6K Systems on Dec-29-11\",\"primaryTitle\":\"139803\"},{\"title\":\"Email with 6K Systems on Feb-03-10\",\"primaryTitle\":\"989\"},{\"title\":\"Email with 6K Systems on Feb-06-10\",\"primaryTitle\":\"139614\"},{\"title\":\"Email with 6K Systems on Jan-15-10\",\"primaryTitle\":\"864\"},{\"title\":\"Email with 6K Systems on Jan-25-09\",\"primaryTitle\":\"94\"},{\"title\":\"Email with 6K Systems on Jul-07-09\",\"primaryTitle\":\"139605\"},{\"title\":\"Email with 6K Systems on Jun-15-12\",\"primaryTitle\":\"140150\"},{\"title\":\"Email with 6K Systems on May-07-09\",\"primaryTitle\":\"196\"},{\"title\":\"Email with 6K Systems on Nov-06-09\",\"primaryTitle\":\"569\"},{\"title\":\"Email with 6K Systems on Nov-25-09\",\"primaryTitle\":\"633\"},{\"title\":\"Email with 6K Systems on Oct-04-09\",\"primaryTitle\":\"477\"},{\"title\":\"Email with 6K Systems on Sep-02-10\",\"primaryTitle\":\"139622\"},{\"title\":\"Email with 6K Systems on Sep-27-09\",\"primaryTitle\":\"139609\"},{\"title\":\"Email with 6K Systems on Sep-29-08\",\"primaryTitle\":\"36\"},{\"title\":\"Email with 720 Strategies on Apr-10-10\",\"primaryTitle\":\"1545\"},{\"title\":\"Email with 720 Strategies on Aug-22-09\",\"primaryTitle\":\"381\"},{\"title\":\"Email with 720 Strategies on Dec-08-09\",\"primaryTitle\":\"688\"},{\"title\":\"Email with 720 Strategies on Dec-25-08\",\"primaryTitle\":\"73\"},{\"title\":\"Email with 720 Strategies on Jul-03-09\",\"primaryTitle\":\"274\"},{\"title\":\"Email with 720 Strategies on Jun-11-10\",\"primaryTitle\":\"2449\"},{\"title\":\"Email with 720 Strategies on May-11-10\",\"primaryTitle\":\"1930\"},{\"title\":\"Email with 720 Strategies on May-17-09\",\"primaryTitle\":\"204\"},{\"title\":\"Email with 720 Strategies on Oct-26-08\",\"primaryTitle\":\"44\"},{\"title\":\"Email with 720 Strategies on Sep-10-09\",\"primaryTitle\":\"429\"},{\"title\":\"Email with 7-Eleven on Apr-23-10\",\"primaryTitle\":\"1688\"},{\"title\":\"Email with 7-Eleven on Apr-25-10\",\"primaryTitle\":\"1718\"},{\"title\":\"Email with 7-Eleven on Dec-06-09\",\"primaryTitle\":\"683\"},{\"title\":\"Email with 7-Eleven on Mar-08-12\",\"primaryTitle\":\"14435\"},{\"title\":\"Email with 7-Eleven on Mar-21-09\",\"primaryTitle\":\"140\"},{\"title\":\"Email with 7-Eleven on Nov-16-08\",\"primaryTitle\":\"52\"},{\"title\":\"Email with 7-Eleven on Oct-29-08\",\"primaryTitle\":\"46\"},{\"title\":\"Email with 7-Eleven on Sep-23-09\",\"primaryTitle\":\"451\"},{\"title\":\"Email with 7 Medical Systems on Aug-04-09\",\"primaryTitle\":\"343\"},{\"title\":\"Email with 7 Medical Systems on Aug-28-09\",\"primaryTitle\":\"393\"},{\"title\":\"Email with 7 Medical Systems on Jun-21-09\",\"primaryTitle\":\"255\"},{\"title\":\"Email with 7 Medical Systems on Jun-29-09\",\"primaryTitle\":\"266\"},{\"title\":\"Email with 7 Medical Systems on Mar-16-09\",\"primaryTitle\":\"136\"},{\"title\":\"Email with 7 Medical Systems on Mar-29-09\",\"primaryTitle\":\"148\"},{\"title\":\"Email with 7 Medical Systems on May-09-10\",\"primaryTitle\":\"1904\"},{\"title\":\"Email with 7 Medical Systems on May-31-09\",\"primaryTitle\":\"228\"},{\"title\":\"Email with 7 Medical Systems on Oct-14-09\",\"primaryTitle\":\"512\"},{\"title\":\"Email with 7 Medical Systems on Oct-21-08\",\"primaryTitle\":\"43\"},{\"title\":\"Email with 7 Simple Machines on Apr-01-09\",\"primaryTitle\":\"149\"},{\"title\":\"Email with 7 Simple Machines on Jan-10-10\",\"primaryTitle\":\"841\"},{\"title\":\"Email with 7 Simple Machines on Jan-24-10\",\"primaryTitle\":\"922\"},{\"title\":\"Email with 7 Simple Machines on Jul-11-09\",\"primaryTitle\":\"288\"},{\"title\":\"Email with 7 Simple Machines on Jul-12-10\",\"primaryTitle\":\"3015\"},{\"title\":\"Email with 7 Simple Machines on Jul-13-09\",\"primaryTitle\":\"293\"},{\"title\":\"Email with 7 Simple Machines on May-22-10\",\"primaryTitle\":\"2130\"},{\"title\":\"Email with 7 Simple Machines on Nov-02-08\",\"primaryTitle\":\"48\"},{\"title\":\"Email with 7 Simple Machines on Nov-10-10\",\"primaryTitle\":\"5551\"},{\"title\":\"Email with 7 Simple Machines on Nov-13-08\",\"primaryTitle\":\"49\"},{\"title\":\"Email with 90octane on Apr-18-10\",\"primaryTitle\":\"151160\"},{\"title\":\"Email with 90octane on Apr-20-10\",\"primaryTitle\":\"151162\"},{\"title\":\"Email with 90octane on Aug-06-09\",\"primaryTitle\":\"151103\"},{\"title\":\"Email with 90octane on Feb-07-09\",\"primaryTitle\":\"151089\"},{\"title\":\"Email with 90octane on Jan-13-11\",\"primaryTitle\":\"151318\"},{\"title\":\"Email with 90octane on May-19-09\",\"primaryTitle\":\"151093\"},{\"title\":\"Email with 90octane on Oct-28-10\",\"primaryTitle\":\"151277\"},{\"title\":\"Email with 90octane on Sep-26-09\",\"primaryTitle\":\"151108\"},{\"title\":\"Email with 919 Marketing on Apr-22-09\",\"primaryTitle\":\"171\"},{\"title\":\"Email with 919 Marketing on Apr-22-10\",\"primaryTitle\":\"1685\"},{\"title\":\"Email with 919 Marketing on Dec-15-08\",\"primaryTitle\":\"68\"},{\"title\":\"Email with 919 Marketing on Feb-28-09\",\"primaryTitle\":\"123\"},{\"title\":\"Email with 919 Marketing on Jul-14-09\",\"primaryTitle\":\"296\"},{\"title\":\"Email with 919 Marketing on Jun-08-09\",\"primaryTitle\":\"239\"},{\"title\":\"Email with 919 Marketing on Jun-17-11\",\"primaryTitle\":\"9632\"},{\"title\":\"Email with 919 Marketing on Jun-20-10\",\"primaryTitle\":\"2626\"},{\"title\":\"Email with 919 Marketing on Jun-23-10\",\"primaryTitle\":\"2652\"},{\"title\":\"Email with 919 Marketing on Jun-27-11\",\"primaryTitle\":\"9817\"},{\"title\":\"Email with 919 Marketing on Mar-18-10\",\"primaryTitle\":\"1302\"},{\"title\":\"Email with 919 Marketing on Mar-21-11\",\"primaryTitle\":\"7998\"},{\"title\":\"Email with 919 Marketing on Mar-30-10\",\"primaryTitle\":\"1437\"},{\"title\":\"Email with 919 Marketing on May-05-09\",\"primaryTitle\":\"191\"},{\"title\":\"Email with 919 Marketing on May-17-09\",\"primaryTitle\":\"205\"},{\"title\":\"Email with 919 Marketing on May-23-10\",\"primaryTitle\":\"2140\"},{\"title\":\"Email with 919 Marketing on May-26-09\",\"primaryTitle\":\"220\"},{\"title\":\"Email with 919 Marketing on Nov-10-11\",\"primaryTitle\":\"12550\"},{\"title\":\"Email with 919 Marketing on Nov-24-09\",\"primaryTitle\":\"629\"},{\"title\":\"Email with 919 Marketing on Sep-21-08\",\"primaryTitle\":\"33\"},{\"title\":\"Email with A10 Clinical Solutions on Feb-06-11\",\"primaryTitle\":\"35982\"},{\"title\":\"Email with A10 Clinical Solutions on Jun-23-11\",\"primaryTitle\":\"40437\"},{\"title\":\"Email with A10 Clinical Solutions on May-29-11\",\"primaryTitle\":\"39797\"},{\"title\":\"Email with A10 Clinical Solutions on Oct-31-10\",\"primaryTitle\":\"32670\"},{\"title\":\"Email with A10 Networks on Aug-01-09\",\"primaryTitle\":\"336\"},{\"title\":\"Email with A10 Networks on Aug-23-09\",\"primaryTitle\":\"382\"},{\"title\":\"Email with A10 Networks on Aug-29-08\",\"primaryTitle\":\"22\"},{\"title\":\"Email with A10 Networks on Dec-01-09\",\"primaryTitle\":\"660\"},{\"title\":\"Email with A10 Networks on Jul-21-09\",\"primaryTitle\":\"313\"},{\"title\":\"Email with A10 Networks on Jul-30-09\",\"primaryTitle\":\"333\"},{\"title\":\"Email with A10 Networks on Mar-02-10\",\"primaryTitle\":\"1164\"},{\"title\":\"Email with A10 Networks on May-29-09\",\"primaryTitle\":\"224\"},{\"title\":\"Email with A1 Pool Parts on Aug-13-10\",\"primaryTitle\":\"30390\"},{\"title\":\"Email with A1 Pool Parts on Dec-21-10\",\"primaryTitle\":\"34427\"},{\"title\":\"Email with A1 Pool Parts on Nov-07-10\",\"primaryTitle\":\"32912\"},{\"title\":\"Email with A-1 Textiles on Apr-17-09\",\"primaryTitle\":\"140979\"},{\"title\":\"Email with A-1 Textiles on Feb-22-12\",\"primaryTitle\":\"141778\"},{\"title\":\"Email with A-1 Textiles on Jul-22-11\",\"primaryTitle\":\"141318\"},{\"title\":\"Email with A-1 Textiles on Jul-25-11\",\"primaryTitle\":\"141322\"},{\"title\":\"Email with A-1 Textiles on Mar-20-12\",\"primaryTitle\":\"141884\"},{\"title\":\"Email with A-1 Textiles on Nov-22-10\",\"primaryTitle\":\"141084\"},{\"title\":\"Email with A-1 Textiles on Oct-17-11\",\"primaryTitle\":\"141451\"},{\"title\":\"Email with A-1 Textiles on Oct-24-11\",\"primaryTitle\":\"141465\"},{\"title\":\"Email with AAC Enterprises on Aug-30-08\",\"primaryTitle\":\"23\"},{\"title\":\"Email with AAC Enterprises on Feb-15-09\",\"primaryTitle\":\"116\"},{\"title\":\"Email with AAC Enterprises on Jan-23-09\",\"primaryTitle\":\"91\"},{\"title\":\"Email with AAC Enterprises on Jun-01-09\",\"primaryTitle\":\"229\"},{\"title\":\"Email with AAC Enterprises on Jun-19-10\",\"primaryTitle\":\"2611\"},{\"title\":\"Email with AAC Enterprises on Jun-27-10\",\"primaryTitle\":\"2729\"},{\"title\":\"Email with AAC Enterprises on Mar-11-10\",\"primaryTitle\":\"1233\"},{\"title\":\"Email with AAC Enterprises on Mar-30-10\",\"primaryTitle\":\"1429\"},{\"title\":\"Email with AAC Enterprises on May-12-10\",\"primaryTitle\":\"1958\"},{\"title\":\"Email with AAC Enterprises on Sep-13-08\",\"primaryTitle\":\"28\"},{\"title\":\"Email with Aaron Oil Company on Apr-13-09\",\"primaryTitle\":\"161\"},{\"title\":\"Email with Aaron Oil Company on Dec-09-08\",\"primaryTitle\":\"61\"},{\"title\":\"Email with Aaron Oil Company on Dec-29-09\",\"primaryTitle\":\"770\"},{\"title\":\"Email with Aaron Oil Company on Jan-28-10\",\"primaryTitle\":\"944\"},{\"title\":\"Email with Aaron Oil Company on Jul-24-09\",\"primaryTitle\":\"318\"},{\"title\":\"Email with Aaron Oil Company on Jul-27-09\",\"primaryTitle\":\"328\"},{\"title\":\"Email with Aaron Oil Company on Jul-27-10\",\"primaryTitle\":\"3408\"},{\"title\":\"Email with Aaron Oil Company on Jun-26-10\",\"primaryTitle\":\"2704\"},{\"title\":\"Email with Aaron Oil Company on Mar-14-10\",\"primaryTitle\":\"1265\"},{\"title\":\"Email with Aaron Oil Company on Oct-14-09\",\"primaryTitle\":\"511\"},{\"title\":\"Email with Aaron's on Aug-27-12\",\"primaryTitle\":\"146792\"},{\"title\":\"Email with Aaron's on Jul-02-12\",\"primaryTitle\":\"146463\"},{\"title\":\"Email with Aaron's on Jul-13-12\",\"primaryTitle\":\"146540\"},{\"title\":\"Email with Aaron's on Jul-18-12\",\"primaryTitle\":\"146588\"},{\"title\":\"Email with Aaron's on May-04-12\",\"primaryTitle\":\"146027\"},{\"title\":\"Email with Aaron's on May-05-12\",\"primaryTitle\":\"146030\"},{\"title\":\"Email with Aaron's on May-10-12\",\"primaryTitle\":\"146072\"},{\"title\":\"Email with Aaron's on May-13-12\",\"primaryTitle\":\"146094\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Dec-11-08\",\"primaryTitle\":\"63\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Dec-30-09\",\"primaryTitle\":\"774\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Feb-05-11\",\"primaryTitle\":\"7161\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Feb-22-11\",\"primaryTitle\":\"7487\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Mar-06-10\",\"primaryTitle\":\"1185\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Oct-22-10\",\"primaryTitle\":\"5139\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Sep-13-09\",\"primaryTitle\":\"435\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Sep-26-10\",\"primaryTitle\":\"4616\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-10-11\",\"primaryTitle\":\"149223\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-15-08\",\"primaryTitle\":\"19\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-21-10\",\"primaryTitle\":\"149141\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Dec-14-08\",\"primaryTitle\":\"67\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Feb-04-09\",\"primaryTitle\":\"104\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Feb-10-09\",\"primaryTitle\":\"149121\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jan-03-12\",\"primaryTitle\":\"149272\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jul-05-11\",\"primaryTitle\":\"149218\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jul-17-10\",\"primaryTitle\":\"3163\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Mar-14-09\",\"primaryTitle\":\"133\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on May-07-11\",\"primaryTitle\":\"8866\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on May-10-10\",\"primaryTitle\":\"1915\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Nov-27-10\",\"primaryTitle\":\"149179\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Oct-04-09\",\"primaryTitle\":\"480\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Sep-14-09\",\"primaryTitle\":\"149127\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Sep-29-08\",\"primaryTitle\":\"149120\"},{\"title\":\"Email with AArrow Advertising on Apr-13-11\",\"primaryTitle\":\"145108\"},{\"title\":\"Email with AArrow Advertising on Aug-05-09\",\"primaryTitle\":\"151102\"},{\"title\":\"Email with AArrow Advertising on Aug-19-11\",\"primaryTitle\":\"145206\"},{\"title\":\"Email with AArrow Advertising on Dec-14-08\",\"primaryTitle\":\"144928\"},{\"title\":\"Email with AArrow Advertising on Dec-29-09\",\"primaryTitle\":\"151122\"},{\"title\":\"Email with AArrow Advertising on Jan-18-10\",\"primaryTitle\":\"144935\"},{\"title\":\"Email with AArrow Advertising on Jan-31-11\",\"primaryTitle\":\"151331\"},{\"title\":\"Email with AArrow Advertising on Jul-11-09\",\"primaryTitle\":\"144929\"},{\"title\":\"Email with AArrow Advertising on Jul-31-09\",\"primaryTitle\":\"151101\"},{\"title\":\"Email with AArrow Advertising on Jun-14-12\",\"primaryTitle\":\"146339\"},{\"title\":\"Email with AArrow Advertising on Jun-25-09\",\"primaryTitle\":\"151094\"},{\"title\":\"Email with AArrow Advertising on Mar-24-12\",\"primaryTitle\":\"145754\"},{\"title\":\"Email with AArrow Advertising on Oct-05-09\",\"primaryTitle\":\"151110\"},{\"title\":\"Email with AArrow Advertising on Oct-18-10\",\"primaryTitle\":\"151269\"},{\"title\":\"Email with AArrow Advertising on Oct-31-12\",\"primaryTitle\":\"146900\"},{\"title\":\"Email with AArrow Advertising on Sep-02-10\",\"primaryTitle\":\"151240\"},{\"title\":\"Email with Aasent Mortgage Corporation on Aug-08-09\",\"primaryTitle\":\"350\"},{\"title\":\"Email with Aasent Mortgage Corporation on Feb-10-11\",\"primaryTitle\":\"7242\"},{\"title\":\"Email with Aasent Mortgage Corporation on Feb-26-11\",\"primaryTitle\":\"7581\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-09-11\",\"primaryTitle\":\"6724\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-31-10\",\"primaryTitle\":\"964\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-31-10\",\"primaryTitle\":\"973\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jul-30-09\",\"primaryTitle\":\"331\"},{\"title\":\"Email with Aasent Mortgage Corporation on Mar-31-10\",\"primaryTitle\":\"1445\"},{\"title\":\"Email with Aasent Mortgage Corporation on Nov-21-09\",\"primaryTitle\":\"623\"},{\"title\":\"Email with Aasent Mortgage Corporation on Oct-05-10\",\"primaryTitle\":\"4804\"},{\"title\":\"Email with Abacus Plumbing on Dec-29-08\",\"primaryTitle\":\"76\"},{\"title\":\"Email with Abacus Plumbing on Jul-01-09\",\"primaryTitle\":\"270\"},{\"title\":\"Email with Abacus Plumbing on Jul-02-10\",\"primaryTitle\":\"2822\"},{\"title\":\"Email with Abacus Plumbing on Jun-28-10\",\"primaryTitle\":\"2757\"},{\"title\":\"Email with Abacus Plumbing on Mar-06-10\",\"primaryTitle\":\"1190\"},{\"title\":\"Email with Abacus Plumbing on Mar-11-09\",\"primaryTitle\":\"131\"},{\"title\":\"Email with Abacus Plumbing on May-06-09\",\"primaryTitle\":\"194\"},{\"title\":\"Email with Abacus Plumbing on Oct-13-09\",\"primaryTitle\":\"507\"},{\"title\":\"Email with Abacus Solutions Group on Aug-17-10\",\"primaryTitle\":\"3857\"},{\"title\":\"Email with Abacus Solutions Group on Feb-17-09\",\"primaryTitle\":\"118\"},{\"title\":\"Email with Abacus Solutions Group on Jan-19-10\",\"primaryTitle\":\"887\"},{\"title\":\"Email with Abacus Solutions Group on Jul-08-09\",\"primaryTitle\":\"282\"},{\"title\":\"Email with Abacus Solutions Group on Mar-30-10\",\"primaryTitle\":\"1430\"},{\"title\":\"Email with Abacus Solutions Group on May-01-12\",\"primaryTitle\":\"14846\"},{\"title\":\"Email with Abacus Solutions Group on May-02-12\",\"primaryTitle\":\"14851\"},{\"title\":\"Email with Abacus Solutions Group on May-02-12\",\"primaryTitle\":\"14857\"},{\"title\":\"Email with Abacus Solutions Group on May-06-12\",\"primaryTitle\":\"14870\"},{\"title\":\"Email with Abacus Solutions Group on May-07-12\",\"primaryTitle\":\"14876\"},{\"title\":\"Email with Abacus Solutions Group on May-08-12\",\"primaryTitle\":\"14881\"},{\"title\":\"Email with Abacus Solutions Group on May-13-12\",\"primaryTitle\":\"14894\"},{\"title\":\"Email with Abacus Solutions Group on May-15-12\",\"primaryTitle\":\"14898\"},{\"title\":\"Email with Abacus Solutions Group on May-17-09\",\"primaryTitle\":\"207\"},{\"title\":\"Email with Abacus Solutions Group on May-17-12\",\"primaryTitle\":\"14903\"},{\"title\":\"Email with Abacus Solutions Group on May-22-12\",\"primaryTitle\":\"14908\"},{\"title\":\"Email with Abacus Solutions Group on Nov-15-09\",\"primaryTitle\":\"602\"},{\"title\":\"Email with Abacus Solutions Group on Oct-24-09\",\"primaryTitle\":\"538\"},{\"title\":\"Email with ABBTech Staffing Services on Aug-25-10\",\"primaryTitle\":\"149142\"},{\"title\":\"Email with ABBTech Staffing Services on Jun-01-09\",\"primaryTitle\":\"149124\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-08-10\",\"primaryTitle\":\"149131\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-13-09\",\"primaryTitle\":\"149122\"},{\"title\":\"Email with ABBTech Staffing Services on May-09-12\",\"primaryTitle\":\"149498\"},{\"title\":\"Email with ABBTech Staffing Services on May-31-11\",\"primaryTitle\":\"149211\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-13-11\",\"primaryTitle\":\"149231\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-30-09\",\"primaryTitle\":\"149129\"},{\"title\":\"Email with ABCOMRents.com on Dec-28-08\",\"primaryTitle\":\"75\"},{\"title\":\"Email with ABCOMRents.com on Feb-16-10\",\"primaryTitle\":\"1077\"},{\"title\":\"Email with ABCOMRents.com on Jan-10-09\",\"primaryTitle\":\"85\"},{\"title\":\"Email with ABCOMRents.com on Jul-29-10\",\"primaryTitle\":\"3449\"},{\"title\":\"Email with ABCOMRents.com on Jun-17-10\",\"primaryTitle\":\"2562\"},{\"title\":\"Email with ABCOMRents.com on Sep-18-10\",\"primaryTitle\":\"4443\"},{\"title\":\"Email with ABCOMRents.com on Sep-27-09\",\"primaryTitle\":\"462\"},{\"title\":\"Email with ABCOMRents.com on Sep-28-09\",\"primaryTitle\":\"465\"},{\"title\":\"Email with ABC Security Service on Apr-25-09\",\"primaryTitle\":\"177\"},{\"title\":\"Email with ABC Security Service on Jan-13-09\",\"primaryTitle\":\"86\"},{\"title\":\"Email with ABC Security Service on Jan-25-11\",\"primaryTitle\":\"6982\"},{\"title\":\"Email with ABC Security Service on Jul-22-11\",\"primaryTitle\":\"10323\"},{\"title\":\"Email with ABC Security Service on Mar-23-09\",\"primaryTitle\":\"143\"},{\"title\":\"Email with ABC Security Service on Nov-08-11\",\"primaryTitle\":\"147003\"},{\"title\":\"Email with ABC Security Service on Nov-15-11\",\"primaryTitle\":\"147021\"},{\"title\":\"Email with ABC Security Service on Nov-16-08\",\"primaryTitle\":\"50\"},{\"title\":\"Email with ABC Security Service on Nov-18-08\",\"primaryTitle\":\"54\"},{\"title\":\"Email with ABC Security Service on Nov-18-11\",\"primaryTitle\":\"147006\"},{\"title\":\"Email with ABC Security Service on Nov-20-11\",\"primaryTitle\":\"147015\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147000\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147009\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147018\"},{\"title\":\"Email with ABC Security Service on Oct-30-11\",\"primaryTitle\":\"147012\"},{\"title\":\"Email with ABC Security Service on Sep-10-10\",\"primaryTitle\":\"4302\"},{\"title\":\"Email with A.B. Data on Apr-04-12\",\"primaryTitle\":\"151865\"},{\"title\":\"Email with A.B. Data on Aug-02-12\",\"primaryTitle\":\"146674\"},{\"title\":\"Email with A.B. Data on Aug-05-12\",\"primaryTitle\":\"146689\"},{\"title\":\"Email with A.B. Data on Dec-31-12\",\"primaryTitle\":\"152606\"},{\"title\":\"Email with A.B. Data on Feb-23-10\",\"primaryTitle\":\"151136\"},{\"title\":\"Email with A.B. Data on Jan-12-11\",\"primaryTitle\":\"151317\"},{\"title\":\"Email with A.B. Data on Jul-14-12\",\"primaryTitle\":\"146548\"},{\"title\":\"Email with A.B. Data on Jul-18-09\",\"primaryTitle\":\"151099\"},{\"title\":\"Email with A.B. Data on Jun-08-12\",\"primaryTitle\":\"146295\"},{\"title\":\"Email with A.B. Data on Jun-10-12\",\"primaryTitle\":\"152166\"},{\"title\":\"Email with A.B. Data on Jun-23-12\",\"primaryTitle\":\"152239\"},{\"title\":\"Email with A.B. Data on Jun-26-12\",\"primaryTitle\":\"146425\"},{\"title\":\"Email with A.B. Data on Mar-24-13\",\"primaryTitle\":\"152630\"},{\"title\":\"Email with A.B. Data on May-20-12\",\"primaryTitle\":\"146151\"},{\"title\":\"Email with A.B. Data on May-22-12\",\"primaryTitle\":\"146168\"},{\"title\":\"Email with A.B. Data on May-28-12\",\"primaryTitle\":\"146217\"},{\"title\":\"Email with Able Equipment Rental on Apr-17-10\",\"primaryTitle\":\"1621\"},{\"title\":\"Email with Able Equipment Rental on Feb-06-09\",\"primaryTitle\":\"106\"},{\"title\":\"Email with Able Equipment Rental on Feb-13-09\",\"primaryTitle\":\"114\"},{\"title\":\"Email with Able Equipment Rental on Feb-19-09\",\"primaryTitle\":\"120\"},{\"title\":\"Email with Able Equipment Rental on Jun-12-10\",\"primaryTitle\":\"2478\"},{\"title\":\"Email with Able Equipment Rental on Jun-29-09\",\"primaryTitle\":\"265\"},{\"title\":\"Email with Able Equipment Rental on Mar-22-10\",\"primaryTitle\":\"1345\"},{\"title\":\"Email with Able Equipment Rental on Sep-30-09\",\"primaryTitle\":\"471\"},{\"title\":\"Email with Able Patrol and Guard on Aug-05-10\",\"primaryTitle\":\"3602\"},{\"title\":\"Email with Able Patrol and Guard on Dec-30-08\",\"primaryTitle\":\"80\"},{\"title\":\"Email with Able Patrol and Guard on Dec-30-08\",\"primaryTitle\":\"79\"},{\"title\":\"Email with Able Patrol and Guard on Feb-06-10\",\"primaryTitle\":\"1011\"},{\"title\":\"Email with Able Patrol and Guard on Jan-10-09\",\"primaryTitle\":\"84\"},{\"title\":\"Email with Able Patrol and Guard on Jun-05-10\",\"primaryTitle\":\"2367\"},{\"title\":\"Email with Able Patrol and Guard on Sep-10-09\",\"primaryTitle\":\"424\"},{\"title\":\"Email with Able Patrol and Guard on Sep-17-09\",\"primaryTitle\":\"443\"},{\"title\":\"Email with Abraxas on Aug-03-10\",\"primaryTitle\":\"3554\"},{\"title\":\"Email with Abraxas on Aug-07-09\",\"primaryTitle\":\"348\"},{\"title\":\"Email with Abraxas on Dec-23-09\",\"primaryTitle\":\"742\"},{\"title\":\"Email with Abraxas on Dec-29-09\",\"primaryTitle\":\"764\"},{\"title\":\"Email with Abraxas on Feb-23-10\",\"primaryTitle\":\"1117\"},{\"title\":\"Email with Abraxas on Jun-26-10\",\"primaryTitle\":\"2713\"},{\"title\":\"Email with Abraxas on Nov-09-09\",\"primaryTitle\":\"582\"},{\"title\":\"Email with Abraxas on Sep-16-10\",\"primaryTitle\":\"4409\"},{\"title\":\"Email with Absolute Concrete Construction on May-11-11\",\"primaryTitle\":\"39146\"},{\"title\":\"Email with Absolute Concrete Construction on Nov-03-10\",\"primaryTitle\":\"32778\"},{\"title\":\"Email with Abstract Displays on Jun-15-09\",\"primaryTitle\":\"248\"},{\"title\":\"Email with Abstract Displays on Mar-01-09\",\"primaryTitle\":\"124\"},{\"title\":\"Email with Abstract Displays on Mar-03-09\",\"primaryTitle\":\"126\"},{\"title\":\"Email with Abstract Displays on Mar-15-09\",\"primaryTitle\":\"134\"},{\"title\":\"Email with Abstract Displays on Mar-23-09\",\"primaryTitle\":\"142\"},{\"title\":\"Email with Abstract Displays on May-01-09\",\"primaryTitle\":\"184\"},{\"title\":\"Email with Abstract Displays on Nov-17-09\",\"primaryTitle\":\"612\"},{\"title\":\"Email with Abstract Displays on Oct-29-08\",\"primaryTitle\":\"47\"},{\"title\":\"Email with AcademixDirect on Apr-06-09\",\"primaryTitle\":\"154\"},{\"title\":\"Email with AcademixDirect on Apr-13-09\",\"primaryTitle\":\"162\"},{\"title\":\"Email with AcademixDirect on Apr-20-09\",\"primaryTitle\":\"168\"},{\"title\":\"Email with AcademixDirect on Apr-22-09\",\"primaryTitle\":\"170\"},{\"title\":\"Email with AcademixDirect on Dec-08-09\",\"primaryTitle\":\"690\"},{\"title\":\"Email with AcademixDirect on Dec-12-09\",\"primaryTitle\":\"708\"},{\"title\":\"Email with AcademixDirect on Feb-12-09\",\"primaryTitle\":\"113\"},{\"title\":\"Email with AcademixDirect on Feb-25-10\",\"primaryTitle\":\"1132\"},{\"title\":\"Email with AcademixDirect on Jan-20-10\",\"primaryTitle\":\"894\"},{\"title\":\"Email with AcademixDirect on Jul-14-09\",\"primaryTitle\":\"295\"},{\"title\":\"Email with AcademixDirect on Jul-21-09\",\"primaryTitle\":\"311\"},{\"title\":\"Email with AcademixDirect on Jun-07-10\",\"primaryTitle\":\"2385\"},{\"title\":\"Email with AcademixDirect on Mar-02-09\",\"primaryTitle\":\"125\"},{\"title\":\"Email with AcademixDirect on Mar-13-10\",\"primaryTitle\":\"1260\"},{\"title\":\"Email with AcademixDirect on May-30-09\",\"primaryTitle\":\"226\"},{\"title\":\"Email with AcademixDirect on Sep-18-09\",\"primaryTitle\":\"445\"}],\"paging\":{\"total\":10000,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"a84dd2d47943244b81b62777d31814bc\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},\"elements\":[{\"title\":\"Email with (add)ventures on Apr-02-08\",\"primaryTitle\":\"2\"},{\"title\":\"Email with (add)ventures on Jul-03-10\",\"primaryTitle\":\"2832\"},{\"title\":\"Email with (add)ventures on Jul-12-09\",\"primaryTitle\":\"291\"},{\"title\":\"Email with (add)ventures on Jul-21-09\",\"primaryTitle\":\"309\"},{\"title\":\"Email with (add)ventures on Jun-26-10\",\"primaryTitle\":\"2719\"},{\"title\":\"Email with (add)ventures on Mar-23-08\",\"primaryTitle\":\"1\"},{\"title\":\"Email with (add)ventures on Oct-06-09\",\"primaryTitle\":\"487\"},{\"title\":\"Email with (add)ventures on Oct-27-08\",\"primaryTitle\":\"45\"},{\"title\":\"Email with (mt) Media Temple on Apr-22-10\",\"primaryTitle\":\"1677\"},{\"title\":\"Email with (mt) Media Temple on Aug-01-10\",\"primaryTitle\":\"3531\"},{\"title\":\"Email with (mt) Media Temple on Feb-04-09\",\"primaryTitle\":\"105\"},{\"title\":\"Email with (mt) Media Temple on Jan-12-10\",\"primaryTitle\":\"848\"},{\"title\":\"Email with (mt) Media Temple on Jan-17-09\",\"primaryTitle\":\"89\"},{\"title\":\"Email with (mt) Media Temple on Mar-26-09\",\"primaryTitle\":\"146\"},{\"title\":\"Email with (mt) Media Temple on May-26-10\",\"primaryTitle\":\"2191\"},{\"title\":\"Email with (mt) Media Temple on Nov-28-08\",\"primaryTitle\":\"56\"},{\"title\":\"Email with .decimal on Aug-20-08\",\"primaryTitle\":\"20\"},{\"title\":\"Email with .decimal on Aug-30-08\",\"primaryTitle\":\"24\"},{\"title\":\"Email with .decimal on Dec-07-08\",\"primaryTitle\":\"58\"},{\"title\":\"Email with .decimal on Dec-09-09\",\"primaryTitle\":\"694\"},{\"title\":\"Email with .decimal on Jan-20-10\",\"primaryTitle\":\"892\"},{\"title\":\"Email with .decimal on May-25-10\",\"primaryTitle\":\"2176\"},{\"title\":\"Email with .decimal on Nov-14-09\",\"primaryTitle\":\"600\"},{\"title\":\"Email with .decimal on Oct-12-09\",\"primaryTitle\":\"505\"},{\"title\":\"Email with 1 Source Consulting on Apr-27-08\",\"primaryTitle\":\"5\"},{\"title\":\"Email with 1 Source Consulting on Apr-29-10\",\"primaryTitle\":\"1758\"},{\"title\":\"Email with 1 Source Consulting on Dec-17-09\",\"primaryTitle\":\"729\"},{\"title\":\"Email with 1 Source Consulting on Feb-03-10\",\"primaryTitle\":\"987\"},{\"title\":\"Email with 1 Source Consulting on Jan-08-10\",\"primaryTitle\":\"832\"},{\"title\":\"Email with 1 Source Consulting on Jan-11-10\",\"primaryTitle\":\"844\"},{\"title\":\"Email with 1 Source Consulting on Jan-21-10\",\"primaryTitle\":\"898\"},{\"title\":\"Email with 1 Source Consulting on Jan-26-09\",\"primaryTitle\":\"95\"},{\"title\":\"Email with 1 Source Consulting on Jan-27-09\",\"primaryTitle\":\"98\"},{\"title\":\"Email with 1 Source Consulting on Jul-11-09\",\"primaryTitle\":\"287\"},{\"title\":\"Email with 1 Source Consulting on Jul-16-08\",\"primaryTitle\":\"11\"},{\"title\":\"Email with 1 Source Consulting on Mar-06-10\",\"primaryTitle\":\"1191\"},{\"title\":\"Email with 1 Source Consulting on Nov-01-09\",\"primaryTitle\":\"558\"},{\"title\":\"Email with 1 Source Consulting on Nov-22-09\",\"primaryTitle\":\"625\"},{\"title\":\"Email with 1 Source Consulting on Oct-07-08\",\"primaryTitle\":\"38\"},{\"title\":\"Email with 1 Source Consulting on Oct-08-08\",\"primaryTitle\":\"39\"},{\"title\":\"Email with 1-800 Postcards on Dec-06-10\",\"primaryTitle\":\"34000\"},{\"title\":\"Email with 1-800 Postcards on Dec-21-10\",\"primaryTitle\":\"34432\"},{\"title\":\"Email with 1-800 Postcards on Feb-14-11\",\"primaryTitle\":\"36297\"},{\"title\":\"Email with 1-800 Postcards on Feb-23-11\",\"primaryTitle\":\"36588\"},{\"title\":\"Email with 1-800 Postcards on Jun-09-11\",\"primaryTitle\":\"40060\"},{\"title\":\"Email with 1-800 Postcards on Oct-26-10\",\"primaryTitle\":\"32516\"},{\"title\":\"Email with 1-800 We Answer on Apr-13-09\",\"primaryTitle\":\"151091\"},{\"title\":\"Email with 1-800 We Answer on Feb-11-10\",\"primaryTitle\":\"151131\"},{\"title\":\"Email with 1-800 We Answer on Jul-14-09\",\"primaryTitle\":\"151097\"},{\"title\":\"Email with 1-800 We Answer on Mar-09-09\",\"primaryTitle\":\"151090\"},{\"title\":\"Email with 1-800 We Answer on Oct-02-09\",\"primaryTitle\":\"151109\"},{\"title\":\"Email with 1-800 We Answer on Oct-04-10\",\"primaryTitle\":\"151259\"},{\"title\":\"Email with 1-800 We Answer on Oct-17-08\",\"primaryTitle\":\"151088\"},{\"title\":\"Email with 1-800 We Answer on Oct-23-09\",\"primaryTitle\":\"151114\"},{\"title\":\"Email with 1-888-OhioComp on Aug-20-09\",\"primaryTitle\":\"140982\"},{\"title\":\"Email with 1-888-OhioComp on Dec-10-12\",\"primaryTitle\":\"142916\"},{\"title\":\"Email with 1-888-OhioComp on Jul-25-12\",\"primaryTitle\":\"142705\"},{\"title\":\"Email with 1-888-OhioComp on Jun-11-12\",\"primaryTitle\":\"142451\"},{\"title\":\"Email with 1-888-OhioComp on Mar-04-10\",\"primaryTitle\":\"140994\"},{\"title\":\"Email with 1-888-OhioComp on Oct-13-09\",\"primaryTitle\":\"140985\"},{\"title\":\"Email with 1-888-OhioComp on Sep-04-08\",\"primaryTitle\":\"140976\"},{\"title\":\"Email with 1-888-OhioComp on Sep-25-12\",\"primaryTitle\":\"142870\"},{\"title\":\"Email with 1000Bulbs.com on Apr-21-08\",\"primaryTitle\":\"4\"},{\"title\":\"Email with 1000Bulbs.com on Dec-14-09\",\"primaryTitle\":\"715\"},{\"title\":\"Email with 1000Bulbs.com on Dec-29-08\",\"primaryTitle\":\"77\"},{\"title\":\"Email with 1000Bulbs.com on Feb-10-09\",\"primaryTitle\":\"111\"},{\"title\":\"Email with 1000Bulbs.com on Jan-06-10\",\"primaryTitle\":\"817\"},{\"title\":\"Email with 1000Bulbs.com on Jan-29-09\",\"primaryTitle\":\"99\"},{\"title\":\"Email with 1000Bulbs.com on Jul-03-08\",\"primaryTitle\":\"9\"},{\"title\":\"Email with 1000Bulbs.com on Jul-06-10\",\"primaryTitle\":\"2884\"},{\"title\":\"Email with 1000Bulbs.com on Jul-24-10\",\"primaryTitle\":\"3338\"},{\"title\":\"Email with 1000Bulbs.com on Jun-01-10\",\"primaryTitle\":\"2293\"},{\"title\":\"Email with 1000Bulbs.com on Mar-08-10\",\"primaryTitle\":\"1206\"},{\"title\":\"Email with 1000Bulbs.com on May-23-10\",\"primaryTitle\":\"2138\"},{\"title\":\"Email with 1000Bulbs.com on May-28-09\",\"primaryTitle\":\"223\"},{\"title\":\"Email with 1000Bulbs.com on Oct-15-08\",\"primaryTitle\":\"42\"},{\"title\":\"Email with 1000Bulbs.com on Sep-13-08\",\"primaryTitle\":\"31\"},{\"title\":\"Email with 1000Bulbs.com on Sep-17-08\",\"primaryTitle\":\"32\"},{\"title\":\"Email with 101 Financial on Apr-20-10\",\"primaryTitle\":\"1651\"},{\"title\":\"Email with 101 Financial on Aug-16-08\",\"primaryTitle\":\"150353\"},{\"title\":\"Email with 101 Financial on Dec-08-08\",\"primaryTitle\":\"60\"},{\"title\":\"Email with 101 Financial on Dec-18-09\",\"primaryTitle\":\"150359\"},{\"title\":\"Email with 101 Financial on Feb-02-09\",\"primaryTitle\":\"150355\"},{\"title\":\"Email with 101 Financial on Jun-15-08\",\"primaryTitle\":\"150352\"},{\"title\":\"Email with 101 Financial on Mar-11-09\",\"primaryTitle\":\"132\"},{\"title\":\"Email with 101 Financial on Mar-15-09\",\"primaryTitle\":\"135\"},{\"title\":\"Email with 101 Financial on Mar-17-11\",\"primaryTitle\":\"150388\"},{\"title\":\"Email with 101 Financial on Mar-28-11\",\"primaryTitle\":\"150389\"},{\"title\":\"Email with 101 Financial on May-01-10\",\"primaryTitle\":\"1800\"},{\"title\":\"Email with 101 Financial on May-24-09\",\"primaryTitle\":\"217\"},{\"title\":\"Email with 101 Financial on Nov-15-09\",\"primaryTitle\":\"150358\"},{\"title\":\"Email with 101 Financial on Nov-16-08\",\"primaryTitle\":\"51\"},{\"title\":\"Email with 101 Financial on Oct-01-09\",\"primaryTitle\":\"472\"},{\"title\":\"Email with 101 Financial on Oct-15-08\",\"primaryTitle\":\"150354\"},{\"title\":\"Email with 123 Exteriors on Apr-07-10\",\"primaryTitle\":\"1518\"},{\"title\":\"Email with 123 Exteriors on Dec-13-08\",\"primaryTitle\":\"66\"},{\"title\":\"Email with 123 Exteriors on Jul-18-09\",\"primaryTitle\":\"304\"},{\"title\":\"Email with 123 Exteriors on Jul-26-09\",\"primaryTitle\":\"325\"},{\"title\":\"Email with 123 Exteriors on Jul-28-08\",\"primaryTitle\":\"16\"},{\"title\":\"Email with 123 Exteriors on Jun-22-08\",\"primaryTitle\":\"8\"},{\"title\":\"Email with 123 Exteriors on Nov-13-09\",\"primaryTitle\":\"595\"},{\"title\":\"Email with 123 Exteriors on Oct-06-09\",\"primaryTitle\":\"486\"},{\"title\":\"Email with 1Source International on Apr-03-09\",\"primaryTitle\":\"153\"},{\"title\":\"Email with 1Source International on Apr-23-10\",\"primaryTitle\":\"1689\"},{\"title\":\"Email with 1Source International on Dec-23-09\",\"primaryTitle\":\"740\"},{\"title\":\"Email with 1Source International on Jul-13-08\",\"primaryTitle\":\"10\"},{\"title\":\"Email with 1Source International on Jul-23-09\",\"primaryTitle\":\"317\"},{\"title\":\"Email with 1Source International on Mar-17-09\",\"primaryTitle\":\"137\"},{\"title\":\"Email with 1Source International on May-23-09\",\"primaryTitle\":\"216\"},{\"title\":\"Email with 1Source International on Nov-20-08\",\"primaryTitle\":\"55\"},{\"title\":\"Email with 1Source International on Oct-06-08\",\"primaryTitle\":\"37\"},{\"title\":\"Email with 1Source International on Sep-01-10\",\"primaryTitle\":\"4153\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-22-09\",\"primaryTitle\":\"90\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-24-09\",\"primaryTitle\":\"92\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-09-09\",\"primaryTitle\":\"283\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-23-09\",\"primaryTitle\":\"316\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-05-09\",\"primaryTitle\":\"128\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-14-10\",\"primaryTitle\":\"1266\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-23-09\",\"primaryTitle\":\"144\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-30-10\",\"primaryTitle\":\"1427\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Nov-05-09\",\"primaryTitle\":\"567\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Sep-27-10\",\"primaryTitle\":\"4653\"},{\"title\":\"Email with 2 Wheel Bikes on Dec-01-10\",\"primaryTitle\":\"33859\"},{\"title\":\"Email with 2 Wheel Bikes on Oct-10-10\",\"primaryTitle\":\"32066\"},{\"title\":\"Email with 2HB Software Designs on Apr-03-09\",\"primaryTitle\":\"152\"},{\"title\":\"Email with 2HB Software Designs on Apr-17-09\",\"primaryTitle\":\"165\"},{\"title\":\"Email with 2HB Software Designs on Apr-25-10\",\"primaryTitle\":\"1714\"},{\"title\":\"Email with 2HB Software Designs on Dec-07-08\",\"primaryTitle\":\"59\"},{\"title\":\"Email with 2HB Software Designs on Dec-30-08\",\"primaryTitle\":\"78\"},{\"title\":\"Email with 2HB Software Designs on Feb-24-10\",\"primaryTitle\":\"1124\"},{\"title\":\"Email with 2HB Software Designs on Jun-05-09\",\"primaryTitle\":\"236\"},{\"title\":\"Email with 2HB Software Designs on Jun-06-10\",\"primaryTitle\":\"2378\"},{\"title\":\"Email with 2HB Software Designs on Sep-16-09\",\"primaryTitle\":\"438\"},{\"title\":\"Email with 2HB Software Designs on Sep-26-08\",\"primaryTitle\":\"34\"},{\"title\":\"Email with 352 Media Group on Aug-29-09\",\"primaryTitle\":\"139608\"},{\"title\":\"Email with 352 Media Group on Dec-19-10\",\"primaryTitle\":\"139628\"},{\"title\":\"Email with 352 Media Group on Feb-27-11\",\"primaryTitle\":\"139644\"},{\"title\":\"Email with 352 Media Group on Mar-26-11\",\"primaryTitle\":\"139648\"},{\"title\":\"Email with 352 Media Group on Nov-17-11\",\"primaryTitle\":\"139754\"},{\"title\":\"Email with 352 Media Group on Oct-08-08\",\"primaryTitle\":\"139603\"},{\"title\":\"Email with 352 Media Group on Sep-02-08\",\"primaryTitle\":\"139601\"},{\"title\":\"Email with 352 Media Group on Sep-14-08\",\"primaryTitle\":\"139602\"},{\"title\":\"Email with 3Degrees on Aug-20-09\",\"primaryTitle\":\"376\"},{\"title\":\"Email with 3Degrees on Aug-27-10\",\"primaryTitle\":\"4041\"},{\"title\":\"Email with 3Degrees on Aug-30-09\",\"primaryTitle\":\"396\"},{\"title\":\"Email with 3Degrees on Dec-05-08\",\"primaryTitle\":\"57\"},{\"title\":\"Email with 3Degrees on Feb-07-09\",\"primaryTitle\":\"108\"},{\"title\":\"Email with 3Degrees on Jul-02-12\",\"primaryTitle\":\"146462\"},{\"title\":\"Email with 3Degrees on Jul-08-12\",\"primaryTitle\":\"146500\"},{\"title\":\"Email with 3Degrees on Jul-10-12\",\"primaryTitle\":\"146524\"},{\"title\":\"Email with 3Degrees on Jul-20-12\",\"primaryTitle\":\"146597\"},{\"title\":\"Email with 3Degrees on Jul-21-12\",\"primaryTitle\":\"146600\"},{\"title\":\"Email with 3Degrees on Jul-30-08\",\"primaryTitle\":\"17\"},{\"title\":\"Email with 3Degrees on Jun-08-12\",\"primaryTitle\":\"146298\"},{\"title\":\"Email with 3Degrees on Jun-10-12\",\"primaryTitle\":\"146310\"},{\"title\":\"Email with 3Degrees on Jun-16-12\",\"primaryTitle\":\"146356\"},{\"title\":\"Email with 3Degrees on May-06-09\",\"primaryTitle\":\"193\"},{\"title\":\"Email with 3Degrees on May-12-10\",\"primaryTitle\":\"1956\"},{\"title\":\"Email with 3E on Aug-18-09\",\"primaryTitle\":\"371\"},{\"title\":\"Email with 3E on Dec-29-09\",\"primaryTitle\":\"765\"},{\"title\":\"Email with 3E on Jan-17-10\",\"primaryTitle\":\"875\"},{\"title\":\"Email with 3E on Jan-27-09\",\"primaryTitle\":\"97\"},{\"title\":\"Email with 3E on Jun-18-10\",\"primaryTitle\":\"2593\"},{\"title\":\"Email with 3E on Jun-24-10\",\"primaryTitle\":\"2675\"},{\"title\":\"Email with 3E on May-28-09\",\"primaryTitle\":\"222\"},{\"title\":\"Email with 3E on Nov-28-10\",\"primaryTitle\":\"5922\"},{\"title\":\"Email with 3balls.com on Aug-22-10\",\"primaryTitle\":\"3957\"},{\"title\":\"Email with 3balls.com on Aug-22-11\",\"primaryTitle\":\"10952\"},{\"title\":\"Email with 3balls.com on Jan-05-10\",\"primaryTitle\":\"813\"},{\"title\":\"Email with 3balls.com on Jan-26-09\",\"primaryTitle\":\"96\"},{\"title\":\"Email with 3balls.com on Jul-14-11\",\"primaryTitle\":\"10146\"},{\"title\":\"Email with 3balls.com on Nov-28-10\",\"primaryTitle\":\"5908\"},{\"title\":\"Email with 3balls.com on Oct-15-10\",\"primaryTitle\":\"4998\"},{\"title\":\"Email with 3balls.com on Sep-09-08\",\"primaryTitle\":\"27\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Dec-05-09\",\"primaryTitle\":\"679\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Feb-10-09\",\"primaryTitle\":\"112\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jan-09-09\",\"primaryTitle\":\"83\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-04-09\",\"primaryTitle\":\"276\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-20-08\",\"primaryTitle\":\"12\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jun-18-09\",\"primaryTitle\":\"252\"},{\"title\":\"Email with 3dCart Shopping Cart Software on May-22-09\",\"primaryTitle\":\"214\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Oct-25-09\",\"primaryTitle\":\"539\"},{\"title\":\"Email with 49er Communications on Dec-11-09\",\"primaryTitle\":\"700\"},{\"title\":\"Email with 49er Communications on Feb-09-09\",\"primaryTitle\":\"110\"},{\"title\":\"Email with 49er Communications on Jan-04-09\",\"primaryTitle\":\"81\"},{\"title\":\"Email with 49er Communications on Jul-02-10\",\"primaryTitle\":\"2825\"},{\"title\":\"Email with 49er Communications on Mar-22-10\",\"primaryTitle\":\"1349\"},{\"title\":\"Email with 49er Communications on May-23-08\",\"primaryTitle\":\"6\"},{\"title\":\"Email with 49er Communications on Oct-01-09\",\"primaryTitle\":\"475\"},{\"title\":\"Email with 49er Communications on Oct-10-09\",\"primaryTitle\":\"498\"},{\"title\":\"Email with 4Wall Entertainment on Apr-11-09\",\"primaryTitle\":\"159\"},{\"title\":\"Email with 4Wall Entertainment on Aug-11-10\",\"primaryTitle\":\"3740\"},{\"title\":\"Email with 4Wall Entertainment on Dec-27-08\",\"primaryTitle\":\"74\"},{\"title\":\"Email with 4Wall Entertainment on Jul-21-08\",\"primaryTitle\":\"13\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-10\",\"primaryTitle\":\"1379\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-11\",\"primaryTitle\":\"8064\"},{\"title\":\"Email with 4Wall Entertainment on Sep-12-10\",\"primaryTitle\":\"4334\"},{\"title\":\"Email with 4Wall Entertainment on Sep-28-08\",\"primaryTitle\":\"35\"},{\"title\":\"Email with 4th Source on Aug-23-08\",\"primaryTitle\":\"139600\"},{\"title\":\"Email with 4th Source on Aug-27-12\",\"primaryTitle\":\"140249\"},{\"title\":\"Email with 4th Source on Feb-04-10\",\"primaryTitle\":\"139613\"},{\"title\":\"Email with 4th Source on Jan-21-11\",\"primaryTitle\":\"139631\"},{\"title\":\"Email with 4th Source on May-08-12\",\"primaryTitle\":\"140042\"},{\"title\":\"Email with 4th Source on Oct-01-11\",\"primaryTitle\":\"139714\"},{\"title\":\"Email with 4th Source on Oct-29-08\",\"primaryTitle\":\"139604\"},{\"title\":\"Email with 4th Source on Sep-03-10\",\"primaryTitle\":\"139623\"},{\"title\":\"Email with 5LINX Enterprises on Apr-03-12\",\"primaryTitle\":\"139942\"},{\"title\":\"Email with 5LINX Enterprises on Aug-19-09\",\"primaryTitle\":\"139607\"},{\"title\":\"Email with 5LINX Enterprises on Aug-26-10\",\"primaryTitle\":\"139620\"},{\"title\":\"Email with 5LINX Enterprises on Dec-09-09\",\"primaryTitle\":\"139612\"},{\"title\":\"Email with 5LINX Enterprises on Feb-18-12\",\"primaryTitle\":\"139871\"},{\"title\":\"Email with 5LINX Enterprises on Feb-21-10\",\"primaryTitle\":\"139615\"},{\"title\":\"Email with 5LINX Enterprises on Mar-04-11\",\"primaryTitle\":\"139645\"},{\"title\":\"Email with 5LINX Enterprises on Sep-27-09\",\"primaryTitle\":\"139610\"},{\"title\":\"Email with 614 Media Group on Apr-24-11\",\"primaryTitle\":\"38606\"},{\"title\":\"Email with 614 Media Group on Mar-02-11\",\"primaryTitle\":\"36938\"},{\"title\":\"Email with 614 Media Group on Sep-02-10\",\"primaryTitle\":\"31085\"},{\"title\":\"Email with 6K Systems on Aug-15-09\",\"primaryTitle\":\"139606\"},{\"title\":\"Email with 6K Systems on Dec-10-11\",\"primaryTitle\":\"139779\"},{\"title\":\"Email with 6K Systems on Dec-29-11\",\"primaryTitle\":\"139803\"},{\"title\":\"Email with 6K Systems on Feb-03-10\",\"primaryTitle\":\"989\"},{\"title\":\"Email with 6K Systems on Feb-06-10\",\"primaryTitle\":\"139614\"},{\"title\":\"Email with 6K Systems on Jan-15-10\",\"primaryTitle\":\"864\"},{\"title\":\"Email with 6K Systems on Jan-25-09\",\"primaryTitle\":\"94\"},{\"title\":\"Email with 6K Systems on Jul-07-09\",\"primaryTitle\":\"139605\"},{\"title\":\"Email with 6K Systems on Jun-15-12\",\"primaryTitle\":\"140150\"},{\"title\":\"Email with 6K Systems on May-07-09\",\"primaryTitle\":\"196\"},{\"title\":\"Email with 6K Systems on Nov-06-09\",\"primaryTitle\":\"569\"},{\"title\":\"Email with 6K Systems on Nov-25-09\",\"primaryTitle\":\"633\"},{\"title\":\"Email with 6K Systems on Oct-04-09\",\"primaryTitle\":\"477\"},{\"title\":\"Email with 6K Systems on Sep-02-10\",\"primaryTitle\":\"139622\"},{\"title\":\"Email with 6K Systems on Sep-27-09\",\"primaryTitle\":\"139609\"},{\"title\":\"Email with 6K Systems on Sep-29-08\",\"primaryTitle\":\"36\"},{\"title\":\"Email with 7 Medical Systems on Aug-04-09\",\"primaryTitle\":\"343\"},{\"title\":\"Email with 7 Medical Systems on Aug-28-09\",\"primaryTitle\":\"393\"},{\"title\":\"Email with 7 Medical Systems on Jun-21-09\",\"primaryTitle\":\"255\"},{\"title\":\"Email with 7 Medical Systems on Jun-29-09\",\"primaryTitle\":\"266\"},{\"title\":\"Email with 7 Medical Systems on Mar-16-09\",\"primaryTitle\":\"136\"},{\"title\":\"Email with 7 Medical Systems on Mar-29-09\",\"primaryTitle\":\"148\"},{\"title\":\"Email with 7 Medical Systems on May-09-10\",\"primaryTitle\":\"1904\"},{\"title\":\"Email with 7 Medical Systems on May-31-09\",\"primaryTitle\":\"228\"},{\"title\":\"Email with 7 Medical Systems on Oct-14-09\",\"primaryTitle\":\"512\"},{\"title\":\"Email with 7 Medical Systems on Oct-21-08\",\"primaryTitle\":\"43\"},{\"title\":\"Email with 7 Simple Machines on Apr-01-09\",\"primaryTitle\":\"149\"},{\"title\":\"Email with 7 Simple Machines on Jan-10-10\",\"primaryTitle\":\"841\"},{\"title\":\"Email with 7 Simple Machines on Jan-24-10\",\"primaryTitle\":\"922\"},{\"title\":\"Email with 7 Simple Machines on Jul-11-09\",\"primaryTitle\":\"288\"},{\"title\":\"Email with 7 Simple Machines on Jul-12-10\",\"primaryTitle\":\"3015\"},{\"title\":\"Email with 7 Simple Machines on Jul-13-09\",\"primaryTitle\":\"293\"},{\"title\":\"Email with 7 Simple Machines on May-22-10\",\"primaryTitle\":\"2130\"},{\"title\":\"Email with 7 Simple Machines on Nov-02-08\",\"primaryTitle\":\"48\"},{\"title\":\"Email with 7 Simple Machines on Nov-10-10\",\"primaryTitle\":\"5551\"},{\"title\":\"Email with 7 Simple Machines on Nov-13-08\",\"primaryTitle\":\"49\"},{\"title\":\"Email with 7-Eleven on Apr-23-10\",\"primaryTitle\":\"1688\"},{\"title\":\"Email with 7-Eleven on Apr-25-10\",\"primaryTitle\":\"1718\"},{\"title\":\"Email with 7-Eleven on Dec-06-09\",\"primaryTitle\":\"683\"},{\"title\":\"Email with 7-Eleven on Mar-08-12\",\"primaryTitle\":\"14435\"},{\"title\":\"Email with 7-Eleven on Mar-21-09\",\"primaryTitle\":\"140\"},{\"title\":\"Email with 7-Eleven on Nov-16-08\",\"primaryTitle\":\"52\"},{\"title\":\"Email with 7-Eleven on Oct-29-08\",\"primaryTitle\":\"46\"},{\"title\":\"Email with 7-Eleven on Sep-23-09\",\"primaryTitle\":\"451\"},{\"title\":\"Email with 720 Strategies on Apr-10-10\",\"primaryTitle\":\"1545\"},{\"title\":\"Email with 720 Strategies on Aug-22-09\",\"primaryTitle\":\"381\"},{\"title\":\"Email with 720 Strategies on Dec-08-09\",\"primaryTitle\":\"688\"},{\"title\":\"Email with 720 Strategies on Dec-25-08\",\"primaryTitle\":\"73\"},{\"title\":\"Email with 720 Strategies on Jul-03-09\",\"primaryTitle\":\"274\"},{\"title\":\"Email with 720 Strategies on Jun-11-10\",\"primaryTitle\":\"2449\"},{\"title\":\"Email with 720 Strategies on May-11-10\",\"primaryTitle\":\"1930\"},{\"title\":\"Email with 720 Strategies on May-17-09\",\"primaryTitle\":\"204\"},{\"title\":\"Email with 720 Strategies on Oct-26-08\",\"primaryTitle\":\"44\"},{\"title\":\"Email with 720 Strategies on Sep-10-09\",\"primaryTitle\":\"429\"},{\"title\":\"Email with 90octane on Apr-18-10\",\"primaryTitle\":\"151160\"},{\"title\":\"Email with 90octane on Apr-20-10\",\"primaryTitle\":\"151162\"},{\"title\":\"Email with 90octane on Aug-06-09\",\"primaryTitle\":\"151103\"},{\"title\":\"Email with 90octane on Feb-07-09\",\"primaryTitle\":\"151089\"},{\"title\":\"Email with 90octane on Jan-13-11\",\"primaryTitle\":\"151318\"},{\"title\":\"Email with 90octane on May-19-09\",\"primaryTitle\":\"151093\"},{\"title\":\"Email with 90octane on Oct-28-10\",\"primaryTitle\":\"151277\"},{\"title\":\"Email with 90octane on Sep-26-09\",\"primaryTitle\":\"151108\"},{\"title\":\"Email with 919 Marketing on Apr-22-09\",\"primaryTitle\":\"171\"},{\"title\":\"Email with 919 Marketing on Apr-22-10\",\"primaryTitle\":\"1685\"},{\"title\":\"Email with 919 Marketing on Dec-15-08\",\"primaryTitle\":\"68\"},{\"title\":\"Email with 919 Marketing on Feb-28-09\",\"primaryTitle\":\"123\"},{\"title\":\"Email with 919 Marketing on Jul-14-09\",\"primaryTitle\":\"296\"},{\"title\":\"Email with 919 Marketing on Jun-08-09\",\"primaryTitle\":\"239\"},{\"title\":\"Email with 919 Marketing on Jun-17-11\",\"primaryTitle\":\"9632\"},{\"title\":\"Email with 919 Marketing on Jun-20-10\",\"primaryTitle\":\"2626\"},{\"title\":\"Email with 919 Marketing on Jun-23-10\",\"primaryTitle\":\"2652\"},{\"title\":\"Email with 919 Marketing on Jun-27-11\",\"primaryTitle\":\"9817\"},{\"title\":\"Email with 919 Marketing on Mar-18-10\",\"primaryTitle\":\"1302\"},{\"title\":\"Email with 919 Marketing on Mar-21-11\",\"primaryTitle\":\"7998\"},{\"title\":\"Email with 919 Marketing on Mar-30-10\",\"primaryTitle\":\"1437\"},{\"title\":\"Email with 919 Marketing on May-05-09\",\"primaryTitle\":\"191\"},{\"title\":\"Email with 919 Marketing on May-17-09\",\"primaryTitle\":\"205\"},{\"title\":\"Email with 919 Marketing on May-23-10\",\"primaryTitle\":\"2140\"},{\"title\":\"Email with 919 Marketing on May-26-09\",\"primaryTitle\":\"220\"},{\"title\":\"Email with 919 Marketing on Nov-10-11\",\"primaryTitle\":\"12550\"},{\"title\":\"Email with 919 Marketing on Nov-24-09\",\"primaryTitle\":\"629\"},{\"title\":\"Email with 919 Marketing on Sep-21-08\",\"primaryTitle\":\"33\"},{\"title\":\"Email with @properties on Apr-05-08\",\"primaryTitle\":\"3\"},{\"title\":\"Email with @properties on Aug-13-09\",\"primaryTitle\":\"358\"},{\"title\":\"Email with @properties on Aug-25-08\",\"primaryTitle\":\"21\"},{\"title\":\"Email with @properties on Dec-24-08\",\"primaryTitle\":\"70\"},{\"title\":\"Email with @properties on Feb-27-09\",\"primaryTitle\":\"122\"},{\"title\":\"Email with @properties on Jun-09-08\",\"primaryTitle\":\"7\"},{\"title\":\"Email with @properties on Jun-23-10\",\"primaryTitle\":\"2650\"},{\"title\":\"Email with @properties on Nov-25-09\",\"primaryTitle\":\"635\"},{\"title\":\"Email with A Main Hobbies on Apr-03-10\",\"primaryTitle\":\"1481\"},{\"title\":\"Email with A Main Hobbies on Apr-28-11\",\"primaryTitle\":\"8672\"},{\"title\":\"Email with A Main Hobbies on Aug-02-10\",\"primaryTitle\":\"3550\"},{\"title\":\"Email with A Main Hobbies on Aug-07-10\",\"primaryTitle\":\"3651\"},{\"title\":\"Email with A Main Hobbies on Aug-19-09\",\"primaryTitle\":\"374\"},{\"title\":\"Email with A Main Hobbies on Dec-07-09\",\"primaryTitle\":\"686\"},{\"title\":\"Email with A Main Hobbies on Dec-11-09\",\"primaryTitle\":\"703\"},{\"title\":\"Email with A Main Hobbies on Feb-18-09\",\"primaryTitle\":\"119\"},{\"title\":\"Email with A Main Hobbies on Jun-07-09\",\"primaryTitle\":\"238\"},{\"title\":\"Email with A Main Hobbies on Mar-01-10\",\"primaryTitle\":\"1158\"},{\"title\":\"Email with A Main Hobbies on Mar-03-09\",\"primaryTitle\":\"127\"},{\"title\":\"Email with A Main Hobbies on Mar-06-10\",\"primaryTitle\":\"1189\"},{\"title\":\"Email with A Main Hobbies on Nov-01-11\",\"primaryTitle\":\"12376\"},{\"title\":\"Email with A Main Hobbies on Oct-10-08\",\"primaryTitle\":\"40\"},{\"title\":\"Email with A Main Hobbies on Sep-02-09\",\"primaryTitle\":\"402\"},{\"title\":\"Email with A Main Hobbies on Sep-04-11\",\"primaryTitle\":\"11209\"},{\"title\":\"Email with A Main Hobbies on Sep-07-08\",\"primaryTitle\":\"26\"},{\"title\":\"Email with A Main Hobbies on Sep-07-08\",\"primaryTitle\":\"25\"},{\"title\":\"Email with A Main Hobbies on Sep-10-09\",\"primaryTitle\":\"427\"},{\"title\":\"Email with A Main Hobbies on Sep-25-09\",\"primaryTitle\":\"456\"},{\"title\":\"Email with A Place for Mom on Apr-18-12\",\"primaryTitle\":\"142033\"},{\"title\":\"Email with A Place for Mom on Apr-21-12\",\"primaryTitle\":\"142053\"},{\"title\":\"Email with A Place for Mom on Dec-23-08\",\"primaryTitle\":\"69\"},{\"title\":\"Email with A Place for Mom on Jan-31-09\",\"primaryTitle\":\"100\"},{\"title\":\"Email with A Place for Mom on Jul-03-12\",\"primaryTitle\":\"142585\"},{\"title\":\"Email with A Place for Mom on Jul-04-12\",\"primaryTitle\":\"142590\"},{\"title\":\"Email with A Place for Mom on Jul-29-10\",\"primaryTitle\":\"3458\"},{\"title\":\"Email with A Place for Mom on Jul-29-10\",\"primaryTitle\":\"3442\"},{\"title\":\"Email with A Place for Mom on Jun-18-12\",\"primaryTitle\":\"142503\"},{\"title\":\"Email with A Place for Mom on Mar-03-10\",\"primaryTitle\":\"1169\"},{\"title\":\"Email with A Place for Mom on Mar-24-09\",\"primaryTitle\":\"145\"},{\"title\":\"Email with A Place for Mom on May-03-12\",\"primaryTitle\":\"142152\"},{\"title\":\"Email with A Place for Mom on May-15-12\",\"primaryTitle\":\"142263\"},{\"title\":\"Email with A Place for Mom on May-24-12\",\"primaryTitle\":\"142326\"},{\"title\":\"Email with A Place for Mom on Nov-16-08\",\"primaryTitle\":\"53\"},{\"title\":\"Email with A Place for Mom on Oct-26-09\",\"primaryTitle\":\"544\"},{\"title\":\"Email with A Squared Group on Apr-30-09\",\"primaryTitle\":\"181\"},{\"title\":\"Email with A Squared Group on Dec-11-08\",\"primaryTitle\":\"64\"},{\"title\":\"Email with A Squared Group on Jan-06-10\",\"primaryTitle\":\"816\"},{\"title\":\"Email with A Squared Group on Jan-31-09\",\"primaryTitle\":\"101\"},{\"title\":\"Email with A Squared Group on May-22-10\",\"primaryTitle\":\"2117\"},{\"title\":\"Email with A Squared Group on Nov-25-10\",\"primaryTitle\":\"5860\"},{\"title\":\"Email with A Squared Group on Sep-13-08\",\"primaryTitle\":\"29\"},{\"title\":\"Email with A Squared Group on Sep-19-09\",\"primaryTitle\":\"447\"},{\"title\":\"Email with A White Orchid Wedding on Aug-06-10\",\"primaryTitle\":\"30203\"},{\"title\":\"Email with A White Orchid Wedding on Sep-02-10\",\"primaryTitle\":\"31087\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Feb-27-09\",\"primaryTitle\":\"121\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Jan-06-11\",\"primaryTitle\":\"6677\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Jul-03-09\",\"primaryTitle\":\"273\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on May-04-10\",\"primaryTitle\":\"1841\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on May-18-10\",\"primaryTitle\":\"2047\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Nov-23-10\",\"primaryTitle\":\"5815\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Sep-13-08\",\"primaryTitle\":\"30\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Sep-16-10\",\"primaryTitle\":\"4406\"},{\"title\":\"Email with A&R Tarpaulins on Dec-09-09\",\"primaryTitle\":\"692\"},{\"title\":\"Email with A&R Tarpaulins on Dec-12-08\",\"primaryTitle\":\"65\"},{\"title\":\"Email with A&R Tarpaulins on Feb-07-09\",\"primaryTitle\":\"107\"},{\"title\":\"Email with A&R Tarpaulins on Feb-09-09\",\"primaryTitle\":\"109\"},{\"title\":\"Email with A&R Tarpaulins on Jul-22-08\",\"primaryTitle\":\"14\"},{\"title\":\"Email with A&R Tarpaulins on Jul-26-08\",\"primaryTitle\":\"15\"},{\"title\":\"Email with A&R Tarpaulins on Jun-05-10\",\"primaryTitle\":\"2354\"},{\"title\":\"Email with A&R Tarpaulins on Oct-11-08\",\"primaryTitle\":\"41\"},{\"title\":\"Email with A+ Tutor U on Apr-28-11\",\"primaryTitle\":\"8669\"},{\"title\":\"Email with A+ Tutor U on Aug-05-08\",\"primaryTitle\":\"18\"},{\"title\":\"Email with A+ Tutor U on Aug-12-11\",\"primaryTitle\":\"10751\"},{\"title\":\"Email with A+ Tutor U on Jul-15-09\",\"primaryTitle\":\"299\"},{\"title\":\"Email with A+ Tutor U on Jun-20-11\",\"primaryTitle\":\"9690\"},{\"title\":\"Email with A+ Tutor U on May-31-09\",\"primaryTitle\":\"227\"},{\"title\":\"Email with A+ Tutor U on Nov-16-09\",\"primaryTitle\":\"603\"},{\"title\":\"Email with A+ Tutor U on Oct-06-09\",\"primaryTitle\":\"482\"},{\"title\":\"Email with A-1 Textiles on Apr-17-09\",\"primaryTitle\":\"140979\"},{\"title\":\"Email with A-1 Textiles on Feb-22-12\",\"primaryTitle\":\"141778\"},{\"title\":\"Email with A-1 Textiles on Jul-22-11\",\"primaryTitle\":\"141318\"},{\"title\":\"Email with A-1 Textiles on Jul-25-11\",\"primaryTitle\":\"141322\"},{\"title\":\"Email with A-1 Textiles on Mar-20-12\",\"primaryTitle\":\"141884\"},{\"title\":\"Email with A-1 Textiles on Nov-22-10\",\"primaryTitle\":\"141084\"},{\"title\":\"Email with A-1 Textiles on Oct-17-11\",\"primaryTitle\":\"141451\"},{\"title\":\"Email with A-1 Textiles on Oct-24-11\",\"primaryTitle\":\"141465\"},{\"title\":\"Email with A-Life Medical on Apr-10-10\",\"primaryTitle\":\"1543\"},{\"title\":\"Email with A-Life Medical on Dec-06-09\",\"primaryTitle\":\"681\"},{\"title\":\"Email with A-Life Medical on Jan-21-10\",\"primaryTitle\":\"903\"},{\"title\":\"Email with A-Life Medical on Jul-31-10\",\"primaryTitle\":\"3508\"},{\"title\":\"Email with A-Life Medical on May-04-10\",\"primaryTitle\":\"1837\"},{\"title\":\"Email with A-Life Medical on Sep-01-09\",\"primaryTitle\":\"400\"},{\"title\":\"Email with A-Life Medical on Sep-08-09\",\"primaryTitle\":\"417\"},{\"title\":\"Email with A-Life Medical on Sep-27-09\",\"primaryTitle\":\"461\"},{\"title\":\"Email with A-T Solutions on Apr-06-10\",\"primaryTitle\":\"1511\"},{\"title\":\"Email with A-T Solutions on Jul-12-10\",\"primaryTitle\":\"3005\"},{\"title\":\"Email with A-T Solutions on Jul-19-10\",\"primaryTitle\":\"3203\"},{\"title\":\"Email with A-T Solutions on Jul-30-10\",\"primaryTitle\":\"3474\"},{\"title\":\"Email with A-T Solutions on May-16-10\",\"primaryTitle\":\"2022\"},{\"title\":\"Email with A-T Solutions on Nov-09-10\",\"primaryTitle\":\"5519\"},{\"title\":\"Email with A-T Solutions on Nov-13-10\",\"primaryTitle\":\"5614\"},{\"title\":\"Email with A-T Solutions on Nov-19-10\",\"primaryTitle\":\"5756\"},{\"title\":\"Email with A. Pomerantz & Co. on Apr-06-09\",\"primaryTitle\":\"155\"},{\"title\":\"Email with A. Pomerantz & Co. on Dec-21-09\",\"primaryTitle\":\"733\"},{\"title\":\"Email with A. Pomerantz & Co. on Jan-22-11\",\"primaryTitle\":\"6922\"},{\"title\":\"Email with A. Pomerantz & Co. on Jun-27-11\",\"primaryTitle\":\"9805\"},{\"title\":\"Email with A. Pomerantz & Co. on May-05-09\",\"primaryTitle\":\"192\"},{\"title\":\"Email with A. Pomerantz & Co. on May-29-10\",\"primaryTitle\":\"2234\"},{\"title\":\"Email with A. Pomerantz & Co. on Nov-01-09\",\"primaryTitle\":\"559\"},{\"title\":\"Email with A. Pomerantz & Co. on Sep-20-09\",\"primaryTitle\":\"449\"},{\"title\":\"Email with A.B. Data on Apr-04-12\",\"primaryTitle\":\"151865\"},{\"title\":\"Email with A.B. Data on Aug-02-12\",\"primaryTitle\":\"146674\"},{\"title\":\"Email with A.B. Data on Aug-05-12\",\"primaryTitle\":\"146689\"},{\"title\":\"Email with A.B. Data on Dec-31-12\",\"primaryTitle\":\"152606\"},{\"title\":\"Email with A.B. Data on Feb-23-10\",\"primaryTitle\":\"151136\"},{\"title\":\"Email with A.B. Data on Jan-12-11\",\"primaryTitle\":\"151317\"},{\"title\":\"Email with A.B. Data on Jul-14-12\",\"primaryTitle\":\"146548\"},{\"title\":\"Email with A.B. Data on Jul-18-09\",\"primaryTitle\":\"151099\"},{\"title\":\"Email with A.B. Data on Jun-08-12\",\"primaryTitle\":\"146295\"},{\"title\":\"Email with A.B. Data on Jun-10-12\",\"primaryTitle\":\"152166\"},{\"title\":\"Email with A.B. Data on Jun-23-12\",\"primaryTitle\":\"152239\"},{\"title\":\"Email with A.B. Data on Jun-26-12\",\"primaryTitle\":\"146425\"},{\"title\":\"Email with A.B. Data on Mar-24-13\",\"primaryTitle\":\"152630\"},{\"title\":\"Email with A.B. Data on May-20-12\",\"primaryTitle\":\"146151\"},{\"title\":\"Email with A.B. Data on May-22-12\",\"primaryTitle\":\"146168\"},{\"title\":\"Email with A.B. Data on May-28-12\",\"primaryTitle\":\"146217\"},{\"title\":\"Email with A.R.M. Solutions on Jan-17-09\",\"primaryTitle\":\"88\"},{\"title\":\"Email with A.R.M. Solutions on Jul-15-09\",\"primaryTitle\":\"298\"},{\"title\":\"Email with A.R.M. Solutions on Mar-09-09\",\"primaryTitle\":\"129\"},{\"title\":\"Email with A.R.M. Solutions on May-07-09\",\"primaryTitle\":\"195\"},{\"title\":\"Email with A.R.M. Solutions on May-09-09\",\"primaryTitle\":\"199\"},{\"title\":\"Email with A.R.M. Solutions on May-28-10\",\"primaryTitle\":\"2223\"},{\"title\":\"Email with A.R.M. Solutions on Nov-17-10\",\"primaryTitle\":\"5706\"},{\"title\":\"Email with A.R.M. Solutions on Sep-09-09\",\"primaryTitle\":\"422\"},{\"title\":\"Email with A1 Pool Parts on Aug-13-10\",\"primaryTitle\":\"30390\"},{\"title\":\"Email with A1 Pool Parts on Dec-21-10\",\"primaryTitle\":\"34427\"},{\"title\":\"Email with A1 Pool Parts on Nov-07-10\",\"primaryTitle\":\"32912\"},{\"title\":\"Email with A10 Clinical Solutions on Feb-06-11\",\"primaryTitle\":\"35982\"},{\"title\":\"Email with A10 Clinical Solutions on Jun-23-11\",\"primaryTitle\":\"40437\"},{\"title\":\"Email with A10 Clinical Solutions on May-29-11\",\"primaryTitle\":\"39797\"},{\"title\":\"Email with A10 Clinical Solutions on Oct-31-10\",\"primaryTitle\":\"32670\"},{\"title\":\"Email with A10 Networks on Aug-01-09\",\"primaryTitle\":\"336\"},{\"title\":\"Email with A10 Networks on Aug-23-09\",\"primaryTitle\":\"382\"},{\"title\":\"Email with A10 Networks on Aug-29-08\",\"primaryTitle\":\"22\"},{\"title\":\"Email with A10 Networks on Dec-01-09\",\"primaryTitle\":\"660\"},{\"title\":\"Email with A10 Networks on Jul-21-09\",\"primaryTitle\":\"313\"},{\"title\":\"Email with A10 Networks on Jul-30-09\",\"primaryTitle\":\"333\"},{\"title\":\"Email with A10 Networks on Mar-02-10\",\"primaryTitle\":\"1164\"},{\"title\":\"Email with A10 Networks on May-29-09\",\"primaryTitle\":\"224\"},{\"title\":\"Email with AAC Enterprises on Aug-30-08\",\"primaryTitle\":\"23\"},{\"title\":\"Email with AAC Enterprises on Feb-15-09\",\"primaryTitle\":\"116\"},{\"title\":\"Email with AAC Enterprises on Jan-23-09\",\"primaryTitle\":\"91\"},{\"title\":\"Email with AAC Enterprises on Jun-01-09\",\"primaryTitle\":\"229\"},{\"title\":\"Email with AAC Enterprises on Jun-19-10\",\"primaryTitle\":\"2611\"},{\"title\":\"Email with AAC Enterprises on Jun-27-10\",\"primaryTitle\":\"2729\"},{\"title\":\"Email with AAC Enterprises on Mar-11-10\",\"primaryTitle\":\"1233\"},{\"title\":\"Email with AAC Enterprises on Mar-30-10\",\"primaryTitle\":\"1429\"},{\"title\":\"Email with AAC Enterprises on May-12-10\",\"primaryTitle\":\"1958\"},{\"title\":\"Email with AAC Enterprises on Sep-13-08\",\"primaryTitle\":\"28\"},{\"title\":\"Email with AArrow Advertising on Apr-13-11\",\"primaryTitle\":\"145108\"},{\"title\":\"Email with AArrow Advertising on Aug-05-09\",\"primaryTitle\":\"151102\"},{\"title\":\"Email with AArrow Advertising on Aug-19-11\",\"primaryTitle\":\"145206\"},{\"title\":\"Email with AArrow Advertising on Dec-14-08\",\"primaryTitle\":\"144928\"},{\"title\":\"Email with AArrow Advertising on Dec-29-09\",\"primaryTitle\":\"151122\"},{\"title\":\"Email with AArrow Advertising on Jan-18-10\",\"primaryTitle\":\"144935\"},{\"title\":\"Email with AArrow Advertising on Jan-31-11\",\"primaryTitle\":\"151331\"},{\"title\":\"Email with AArrow Advertising on Jul-11-09\",\"primaryTitle\":\"144929\"},{\"title\":\"Email with AArrow Advertising on Jul-31-09\",\"primaryTitle\":\"151101\"},{\"title\":\"Email with AArrow Advertising on Jun-14-12\",\"primaryTitle\":\"146339\"},{\"title\":\"Email with AArrow Advertising on Jun-25-09\",\"primaryTitle\":\"151094\"},{\"title\":\"Email with AArrow Advertising on Mar-24-12\",\"primaryTitle\":\"145754\"},{\"title\":\"Email with AArrow Advertising on Oct-05-09\",\"primaryTitle\":\"151110\"},{\"title\":\"Email with AArrow Advertising on Oct-18-10\",\"primaryTitle\":\"151269\"},{\"title\":\"Email with AArrow Advertising on Oct-31-12\",\"primaryTitle\":\"146900\"},{\"title\":\"Email with AArrow Advertising on Sep-02-10\",\"primaryTitle\":\"151240\"},{\"title\":\"Email with ABBTech Staffing Services on Aug-25-10\",\"primaryTitle\":\"149142\"},{\"title\":\"Email with ABBTech Staffing Services on Jun-01-09\",\"primaryTitle\":\"149124\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-08-10\",\"primaryTitle\":\"149131\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-13-09\",\"primaryTitle\":\"149122\"},{\"title\":\"Email with ABBTech Staffing Services on May-09-12\",\"primaryTitle\":\"149498\"},{\"title\":\"Email with ABBTech Staffing Services on May-31-11\",\"primaryTitle\":\"149211\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-13-11\",\"primaryTitle\":\"149231\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-30-09\",\"primaryTitle\":\"149129\"},{\"title\":\"Email with ABC Security Service on Apr-25-09\",\"primaryTitle\":\"177\"},{\"title\":\"Email with ABC Security Service on Jan-13-09\",\"primaryTitle\":\"86\"},{\"title\":\"Email with ABC Security Service on Jan-25-11\",\"primaryTitle\":\"6982\"},{\"title\":\"Email with ABC Security Service on Jul-22-11\",\"primaryTitle\":\"10323\"},{\"title\":\"Email with ABC Security Service on Mar-23-09\",\"primaryTitle\":\"143\"},{\"title\":\"Email with ABC Security Service on Nov-08-11\",\"primaryTitle\":\"147003\"},{\"title\":\"Email with ABC Security Service on Nov-15-11\",\"primaryTitle\":\"147021\"},{\"title\":\"Email with ABC Security Service on Nov-16-08\",\"primaryTitle\":\"50\"},{\"title\":\"Email with ABC Security Service on Nov-18-08\",\"primaryTitle\":\"54\"},{\"title\":\"Email with ABC Security Service on Nov-18-11\",\"primaryTitle\":\"147006\"},{\"title\":\"Email with ABC Security Service on Nov-20-11\",\"primaryTitle\":\"147015\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147018\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147000\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147009\"},{\"title\":\"Email with ABC Security Service on Oct-30-11\",\"primaryTitle\":\"147012\"},{\"title\":\"Email with ABC Security Service on Sep-10-10\",\"primaryTitle\":\"4302\"},{\"title\":\"Email with ABCOMRents.com on Dec-28-08\",\"primaryTitle\":\"75\"},{\"title\":\"Email with ABCOMRents.com on Feb-16-10\",\"primaryTitle\":\"1077\"}],\"paging\":{\"total\":10000,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"d2ca8b168a91b47268332d05e2307bb6\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1416,10 +1399,10 @@ "Content-Type": "application/json" } }, - "uuid": "225c4402-f064-46c2-8d17-63675ab9fde4" + "uuid": "cf9ca291-6d4c-4e27-9bcf-7df76ddc6ff7" }, { - "id": "fa79948b-e52a-42fd-ba7b-a29d013418a3", + "id": "c236e36a-0814-4828-bdcc-013ca306b1a1", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1434,7 +1417,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"adaQuest\",\"primaryTitle\":\"adaQuest\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"agencyQ\",\"primaryTitle\":\"agencyQ\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"allConnex\",\"primaryTitle\":\"allConnex\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"altE\",\"primaryTitle\":\"altE\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"aPriori\",\"primaryTitle\":\"aPriori\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"},{\"title\":\"Bamco\",\"primaryTitle\":\"Bamco\"},{\"title\":\"Bamko\",\"primaryTitle\":\"Bamko\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BancVue\",\"primaryTitle\":\"BancVue\"},{\"title\":\"BandCon\",\"primaryTitle\":\"BandCon\"},{\"title\":\"Bankers Healthcare Group\",\"primaryTitle\":\"Bankers Healthcare Group\"},{\"title\":\"BankServ\",\"primaryTitle\":\"BankServ\"},{\"title\":\"Barbara Lynch Gruppo\",\"primaryTitle\":\"Barbara Lynch Gruppo\"},{\"title\":\"Barhorst Insurance Group\",\"primaryTitle\":\"Barhorst Insurance Group\"},{\"title\":\"Barnes & Thornburg\",\"primaryTitle\":\"Barnes & Thornburg\"},{\"title\":\"Barrack's Cater Inn\",\"primaryTitle\":\"Barrack's Cater Inn\"},{\"title\":\"Barrister Global Services Network\",\"primaryTitle\":\"Barrister Global Services Network\"},{\"title\":\"Bars + Tone\",\"primaryTitle\":\"Bars + Tone\"},{\"title\":\"Baseball Rampage\",\"primaryTitle\":\"Baseball Rampage\"},{\"title\":\"Basic\",\"primaryTitle\":\"Basic\"},{\"title\":\"Basic Commerce and Industries\",\"primaryTitle\":\"Basic Commerce and Industries\"},{\"title\":\"Batteries Plus\",\"primaryTitle\":\"Batteries Plus\"},{\"title\":\"Battle Resource Management\",\"primaryTitle\":\"Battle Resource Management\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"736e74b7f30b810343b65ceefe3d0b74\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"(blank)\",\"primaryTitle\":\"(blank)\"},{\"title\":\"(mt) Media Temple\",\"primaryTitle\":\"(mt) Media Temple\"},{\"title\":\".decimal\",\"primaryTitle\":\".decimal\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"@properties\",\"primaryTitle\":\"@properties\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B Resource\",\"primaryTitle\":\"B Resource\"},{\"title\":\"B&S Electric Supply\",\"primaryTitle\":\"B&S Electric Supply\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BB&E \",\"primaryTitle\":\"BB&E \"},{\"title\":\"BBE\",\"primaryTitle\":\"BBE\"},{\"title\":\"BBH Solutions\",\"primaryTitle\":\"BBH Solutions\"},{\"title\":\"BBS Technologies\",\"primaryTitle\":\"BBS Technologies\"},{\"title\":\"BCT Consulting\",\"primaryTitle\":\"BCT Consulting\"},{\"title\":\"BEAR Data Systems\",\"primaryTitle\":\"BEAR Data Systems\"},{\"title\":\"BG Medicine\",\"primaryTitle\":\"BG Medicine\"},{\"title\":\"BHI Advanced Internet\",\"primaryTitle\":\"BHI Advanced Internet\"},{\"title\":\"BI Consulting Group\",\"primaryTitle\":\"BI Consulting Group\"},{\"title\":\"BIGresearch\",\"primaryTitle\":\"BIGresearch\"},{\"title\":\"BITadvisors\",\"primaryTitle\":\"BITadvisors\"},{\"title\":\"BLUE Microphones\",\"primaryTitle\":\"BLUE Microphones\"},{\"title\":\"BOC International\",\"primaryTitle\":\"BOC International\"},{\"title\":\"BOSH Global Services\",\"primaryTitle\":\"BOSH Global Services\"},{\"title\":\"BPA International\",\"primaryTitle\":\"BPA International\"},{\"title\":\"BRS Media\",\"primaryTitle\":\"BRS Media\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"799a927d00d73d6d542c24840fd4bef7\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1452,18 +1435,18 @@ "Content-Type": "application/json" } }, - "uuid": "fa79948b-e52a-42fd-ba7b-a29d013418a3" + "uuid": "c236e36a-0814-4828-bdcc-013ca306b1a1" }, { - "id": "c6a86e6b-f45e-44cc-bdd0-3c95bd042f8c", + "id": "46ee3d13-a966-4ad6-acc3-da458cfa406f", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_activity.subject&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_account.account.name&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1481,18 +1464,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c6a86e6b-f45e-44cc-bdd0-3c95bd042f8c" + "uuid": "46ee3d13-a966-4ad6-acc3-da458cfa406f" }, { - "id": "69593d03-04b7-4b77-bd0b-e51b347488f5", + "id": "b547dd13-e8b4-4fab-b6d1-321479a4cc4c", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_account.account.name&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_activity.subject&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1510,10 +1493,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "69593d03-04b7-4b77-bd0b-e51b347488f5" + "uuid": "b547dd13-e8b4-4fab-b6d1-321479a4cc4c" }, { - "id": "bb9b5da5-0fc5-4ca3-bfeb-7274fa5850be", + "id": "c36719e6-d53e-4884-8592-6f6370bf2425", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27c4e4916e-ccc2-46d1-8202-8321249ec2a3%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -1534,10 +1517,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "bb9b5da5-0fc5-4ca3-bfeb-7274fa5850be" + "uuid": "c36719e6-d53e-4884-8592-6f6370bf2425" }, { - "id": "2132dd02-f5a1-4029-b20b-bbe5af3668e1", + "id": "93512307-3111-431a-a1a3-afd5c64e1a79", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3Dc4e4916e-ccc2-46d1-8202-8321249ec2a3%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -1558,10 +1541,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2132dd02-f5a1-4029-b20b-bbe5af3668e1" + "uuid": "93512307-3111-431a-a1a3-afd5c64e1a79" }, { - "id": "2c1a5ead-fc86-451e-a7d8-441d0063bca9", + "id": "8e97620b-6c6c-4ba6-98ca-82c263bd6c1e", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_c4e4916e-ccc2-46d1-8202-8321249ec2a3", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -1587,10 +1570,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2c1a5ead-fc86-451e-a7d8-441d0063bca9" + "uuid": "8e97620b-6c6c-4ba6-98ca-82c263bd6c1e" }, { - "id": "728eeafd-8c2a-415c-8b58-eabea1e4e8fd", + "id": "ba9ff15a-7f67-4fa3-80a8-c397e0f6ea2c", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1605,7 +1588,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"adaQuest\",\"primaryTitle\":\"adaQuest\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"agencyQ\",\"primaryTitle\":\"agencyQ\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"allConnex\",\"primaryTitle\":\"allConnex\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"altE\",\"primaryTitle\":\"altE\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"aPriori\",\"primaryTitle\":\"aPriori\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"},{\"title\":\"Bamco\",\"primaryTitle\":\"Bamco\"},{\"title\":\"Bamko\",\"primaryTitle\":\"Bamko\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BancVue\",\"primaryTitle\":\"BancVue\"},{\"title\":\"BandCon\",\"primaryTitle\":\"BandCon\"},{\"title\":\"Bankers Healthcare Group\",\"primaryTitle\":\"Bankers Healthcare Group\"},{\"title\":\"BankServ\",\"primaryTitle\":\"BankServ\"},{\"title\":\"Barbara Lynch Gruppo\",\"primaryTitle\":\"Barbara Lynch Gruppo\"},{\"title\":\"Barhorst Insurance Group\",\"primaryTitle\":\"Barhorst Insurance Group\"},{\"title\":\"Barnes & Thornburg\",\"primaryTitle\":\"Barnes & Thornburg\"},{\"title\":\"Barrack's Cater Inn\",\"primaryTitle\":\"Barrack's Cater Inn\"},{\"title\":\"Barrister Global Services Network\",\"primaryTitle\":\"Barrister Global Services Network\"},{\"title\":\"Bars + Tone\",\"primaryTitle\":\"Bars + Tone\"},{\"title\":\"Baseball Rampage\",\"primaryTitle\":\"Baseball Rampage\"},{\"title\":\"Basic\",\"primaryTitle\":\"Basic\"},{\"title\":\"Basic Commerce and Industries\",\"primaryTitle\":\"Basic Commerce and Industries\"},{\"title\":\"Batteries Plus\",\"primaryTitle\":\"Batteries Plus\"},{\"title\":\"Battle Resource Management\",\"primaryTitle\":\"Battle Resource Management\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"736e74b7f30b810343b65ceefe3d0b74\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"(blank)\",\"primaryTitle\":\"(blank)\"},{\"title\":\"(mt) Media Temple\",\"primaryTitle\":\"(mt) Media Temple\"},{\"title\":\".decimal\",\"primaryTitle\":\".decimal\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"@properties\",\"primaryTitle\":\"@properties\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B Resource\",\"primaryTitle\":\"B Resource\"},{\"title\":\"B&S Electric Supply\",\"primaryTitle\":\"B&S Electric Supply\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BB&E \",\"primaryTitle\":\"BB&E \"},{\"title\":\"BBE\",\"primaryTitle\":\"BBE\"},{\"title\":\"BBH Solutions\",\"primaryTitle\":\"BBH Solutions\"},{\"title\":\"BBS Technologies\",\"primaryTitle\":\"BBS Technologies\"},{\"title\":\"BCT Consulting\",\"primaryTitle\":\"BCT Consulting\"},{\"title\":\"BEAR Data Systems\",\"primaryTitle\":\"BEAR Data Systems\"},{\"title\":\"BG Medicine\",\"primaryTitle\":\"BG Medicine\"},{\"title\":\"BHI Advanced Internet\",\"primaryTitle\":\"BHI Advanced Internet\"},{\"title\":\"BI Consulting Group\",\"primaryTitle\":\"BI Consulting Group\"},{\"title\":\"BIGresearch\",\"primaryTitle\":\"BIGresearch\"},{\"title\":\"BITadvisors\",\"primaryTitle\":\"BITadvisors\"},{\"title\":\"BLUE Microphones\",\"primaryTitle\":\"BLUE Microphones\"},{\"title\":\"BOC International\",\"primaryTitle\":\"BOC International\"},{\"title\":\"BOSH Global Services\",\"primaryTitle\":\"BOSH Global Services\"},{\"title\":\"BPA International\",\"primaryTitle\":\"BPA International\"},{\"title\":\"BRS Media\",\"primaryTitle\":\"BRS Media\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"799a927d00d73d6d542c24840fd4bef7\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1623,10 +1606,10 @@ "Content-Type": "application/json" } }, - "uuid": "728eeafd-8c2a-415c-8b58-eabea1e4e8fd" + "uuid": "ba9ff15a-7f67-4fa3-80a8-c397e0f6ea2c" }, { - "id": "c045781f-7ed7-4e56-90e7-ab39550c1aad", + "id": "74577b67-1312-4c20-a891-96f254a8b4eb", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_account.account&include=labels", @@ -1652,10 +1635,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c045781f-7ed7-4e56-90e7-ab39550c1aad" + "uuid": "74577b67-1312-4c20-a891-96f254a8b4eb" }, { - "id": "62395979-b5be-4762-b885-db690a75afbe", + "id": "9798fdbb-734a-4d88-9ae4-79b5a9352972", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_labels", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels?origin=ALL&filter=id%3D%3Df_city.id.cityname%2Cid%3D%3Dlabel.f_activity.subject&include=attribute", @@ -1681,10 +1664,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "62395979-b5be-4762-b885-db690a75afbe" + "uuid": "9798fdbb-734a-4d88-9ae4-79b5a9352972" }, { - "id": "1321749d-b621-4239-a39e-37e08dd9016f", + "id": "82a0509c-a1a4-49e2-8cfa-be5332bb7ba0", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_account.account&include=labels%2CdefaultView", @@ -1710,36 +1693,37 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1321749d-b621-4239-a39e-37e08dd9016f" + "uuid": "82a0509c-a1a4-49e2-8cfa-be5332bb7ba0" }, { - "id": "05cec4b5-7323-4d65-bd25-48c4c391e216", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_a12368d04894921db7d22dd95987b195971aa5326769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099", + "id": "590bf21f-62f2-4010-b953-06708eb852e2", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_9109011aa897e782743e47dedaf9aab2c93ea8103c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/a12368d04894921db7d22dd95987b195971aa532%3A6769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/9109011aa897e782743e47dedaf9aab2c93ea810%3A3c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8", "method": "GET" }, "response": { - "status": 401, - "base64Body": "L2FwcExvZ2lu", + "status": 200, + "body": "{\"data\":[0.552570093457944],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "X-Content-Type-Options": "nosniff", "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", - "Pragma": "no-cache", - "X-XSS-Protection": "0" + "X-XSS-Protection": "0", + "Content-Type": "application/json" } }, - "uuid": "05cec4b5-7323-4d65-bd25-48c4c391e216" + "uuid": "590bf21f-62f2-4010-b953-06708eb852e2" }, { - "id": "627a3297-f20f-4f9e-8215-ba08e05faa10", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f03086786b8de3188c0a490a3846e9039ccf67ee861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9", + "id": "f047e54e-07f5-45f6-ab8a-c9a2fe6ec5a2", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_cff537026ca77e6f469939da9bbe8f527cad958d7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f03086786b8de3188c0a490a3846e9039ccf67ee%3A861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/cff537026ca77e6f469939da9bbe8f527cad958d%3A7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8", "method": "GET" }, "response": { @@ -1757,7 +1741,30 @@ "Content-Type": "application/json" } }, - "uuid": "627a3297-f20f-4f9e-8215-ba08e05faa10" + "uuid": "f047e54e-07f5-45f6-ab8a-c9a2fe6ec5a2" + }, + { + "id": "6fe794ff-1862-45e6-8508-c3559f18508e", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_acb04ebf70ee4d39545985b2a75a519e364cb13eb196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/acb04ebf70ee4d39545985b2a75a519e364cb13e%3Ab196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745", + "method": "GET" + }, + "response": { + "status": 401, + "base64Body": "L2FwcExvZ2lu", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "X-Content-Type-Options": "nosniff", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "Pragma": "no-cache", + "X-XSS-Protection": "0" + } + }, + "uuid": "6fe794ff-1862-45e6-8508-c3559f18508e" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFiltersTooltips.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFiltersTooltips.spec.ts.json index a45049f9531..859f75af5dd 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFiltersTooltips.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-hideFiltersTooltips.spec.ts.json @@ -1,7 +1,38 @@ { "mappings": [ { - "id": "7c94ecf1-4d27-4cd0-9a11-4266c1b56e7b", + "id": "adc295ea-806e-4264-9180-16fca62f0047", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_best_case\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\",\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[{\"localIdentifier\":\"m_best_case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\"}],\"operator\":\"CHANGE\"}},\"format\":\"#,##0.00%\"}],\"attributes\":[],\"filters\":[{\"relativeDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"MONTH\",\"from\":0,\"to\":0}}],\"auxMeasures\":[]},\"settings\":{}}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"556664b6770cb3bac97908b113cf79c38c0aa47e:dc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c\"}}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "adc295ea-806e-4264-9180-16fca62f0047" + }, + { + "id": "9c34f651-d6c4-4ebe-b30c-0a5cc5b32161", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -22,10 +53,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7c94ecf1-4d27-4cd0-9a11-4266c1b56e7b" + "uuid": "9c34f651-d6c4-4ebe-b30c-0a5cc5b32161" }, { - "id": "586b3d82-173f-476e-8c96-eaa56383868d", + "id": "ecd128fa-d28a-4749-b39a-d7157003ec9a", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -46,10 +77,10 @@ "Content-Type": "application/json" } }, - "uuid": "586b3d82-173f-476e-8c96-eaa56383868d" + "uuid": "ecd128fa-d28a-4749-b39a-d7157003ec9a" }, { - "id": "9c6255c0-b71c-4c61-a484-7013a63e2c27", + "id": "230d0377-643f-4634-86c4-2cfa34b76a6f", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -70,10 +101,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9c6255c0-b71c-4c61-a484-7013a63e2c27" + "uuid": "230d0377-643f-4634-86c4-2cfa34b76a6f" }, { - "id": "9e9e80c4-5606-4110-967c-f2b80e9f3023", + "id": "8f21da21-3f71-4823-99a8-c0773b0cf2bd", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -94,10 +125,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9e9e80c4-5606-4110-967c-f2b80e9f3023" + "uuid": "8f21da21-3f71-4823-99a8-c0773b0cf2bd" }, { - "id": "63e392e8-1675-4a86-87db-b1c0300ee6bd", + "id": "f01c0397-81a5-43fe-9149-96e8409797a6", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -118,10 +149,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "63e392e8-1675-4a86-87db-b1c0300ee6bd" + "uuid": "f01c0397-81a5-43fe-9149-96e8409797a6" }, { - "id": "646b2daa-391e-488b-a509-3d4b1fe50739", + "id": "41199fbc-cf00-4bda-aca4-48e74e995b94", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -129,7 +160,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -147,63 +178,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "646b2daa-391e-488b-a509-3d4b1fe50739" + "uuid": "41199fbc-cf00-4bda-aca4-48e74e995b94" }, { - "id": "d1cd2526-3fca-4a4d-9300-8ed626c9e3ea", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "5c59db8b-2bee-4099-84f5-f1d58097dd48", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D62554df1-31a8-49c7-bfed-524771a83b1a%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d1cd2526-3fca-4a4d-9300-8ed626c9e3ea" + "uuid": "5c59db8b-2bee-4099-84f5-f1d58097dd48" }, { - "id": "c09c6be7-8cbd-470c-bc26-ba6c97d4004d", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", + "id": "40917c62-fcde-4335-87a4-010cbab0b854", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D62554df1-31a8-49c7-bfed-524771a83b1a%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27%3Buser.id%3D%3D%27admin%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&include=user%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%2762554df1-31a8-49c7-bfed-524771a83b1a%27%3Buser.id%3D%3D%27admin%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c09c6be7-8cbd-470c-bc26-ba6c97d4004d" + "uuid": "40917c62-fcde-4335-87a4-010cbab0b854" }, { - "id": "142ef49b-9306-4236-a4a0-cb33ee9f488a", + "id": "5ba176f7-11ab-41bd-8db1-3273eda556b6", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_62554df1-31a8-49c7-bfed-524771a83b1a", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -229,10 +260,37 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "142ef49b-9306-4236-a4a0-cb33ee9f488a" + "uuid": "5ba176f7-11ab-41bd-8db1-3273eda556b6" }, { - "id": "7a9d914d-8101-46f7-9345-a23d1cbac6b2", + "id": "89a31a8b-08d5-48e3-aabd-f5166324d368", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "GET" + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", + "headers": { + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "89a31a8b-08d5-48e3-aabd-f5166324d368" + }, + { + "id": "6ff9b986-d457-45e9-b897-7809560f2341", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -240,7 +298,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -258,37 +316,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7a9d914d-8101-46f7-9345-a23d1cbac6b2" + "uuid": "6ff9b986-d457-45e9-b897-7809560f2341" }, { - "id": "09e39eb5-7d43-41a5-8a3a-53dc782c99f5", + "id": "8cb3fd3d-7db6-4613-ae81-078db2b3afe7", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", - "method": "GET" + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "09e39eb5-7d43-41a5-8a3a-53dc782c99f5" + "uuid": "8cb3fd3d-7db6-4613-ae81-078db2b3afe7" }, { - "id": "ad3eea78-0c0f-4668-afd6-d42c990206a1", + "id": "cea656ce-f30d-460d-9add-e0f50fa238c9", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -296,7 +358,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -307,10 +369,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ad3eea78-0c0f-4668-afd6-d42c990206a1" + "uuid": "cea656ce-f30d-460d-9add-e0f50fa238c9" }, { - "id": "563dc782-4b24-494a-838f-4cce1a096f69", + "id": "d142f8c8-408a-454b-a469-1de44bfcc11d", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -334,13 +396,13 @@ "Content-Type": "application/json" } }, - "uuid": "563dc782-4b24-494a-838f-4cce1a096f69" + "uuid": "d142f8c8-408a-454b-a469-1de44bfcc11d" }, { - "id": "8a99f07f-5852-41ba-93bd-876f3186bf7b", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_a12368d04894921db7d22dd95987b195971aa5326769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099", + "id": "fbd548d5-5165-4527-9ec6-126814c39fa6", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_45b1fb63baff85db4ee6f874142216548c5a1577e6e7f32d1b70fa7ebb5a4005bcdfa858c98ba7be5c59f6f44cf31ea207f6fa05", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/a12368d04894921db7d22dd95987b195971aa532%3A6769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/45b1fb63baff85db4ee6f874142216548c5a1577%3Ae6e7f32d1b70fa7ebb5a4005bcdfa858c98ba7be5c59f6f44cf31ea207f6fa05", "method": "GET" }, "response": { @@ -358,13 +420,13 @@ "Content-Type": "application/json" } }, - "uuid": "8a99f07f-5852-41ba-93bd-876f3186bf7b" + "uuid": "fbd548d5-5165-4527-9ec6-126814c39fa6" }, { - "id": "c962344e-1c38-454f-979b-d09bb81f1cff", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f03086786b8de3188c0a490a3846e9039ccf67ee861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9", + "id": "5d22a65f-721d-4c83-a348-60a7ed971592", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_cff537026ca77e6f469939da9bbe8f527cad958d7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f03086786b8de3188c0a490a3846e9039ccf67ee%3A861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/cff537026ca77e6f469939da9bbe8f527cad958d%3A7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8", "method": "GET" }, "response": { @@ -382,18 +444,18 @@ "Content-Type": "application/json" } }, - "uuid": "c962344e-1c38-454f-979b-d09bb81f1cff" + "uuid": "5d22a65f-721d-4c83-a348-60a7ed971592" }, { - "id": "7432fe96-b639-4616-896d-e3ad2559d25b", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_75f1b00a117d00938b202f36bb94143f2603d675769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da", + "id": "088b1735-55ca-479e-8021-df7c7ca7af08", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_9109011aa897e782743e47dedaf9aab2c93ea8103c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/75f1b00a117d00938b202f36bb94143f2603d675%3A769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/9109011aa897e782743e47dedaf9aab2c93ea810%3A3c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[0.5319148936170213],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", + "body": "{\"data\":[0.552570093457944],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -406,18 +468,18 @@ "Content-Type": "application/json" } }, - "uuid": "7432fe96-b639-4616-896d-e3ad2559d25b" + "uuid": "088b1735-55ca-479e-8021-df7c7ca7af08" }, { - "id": "f5e3bd7b-adf5-462a-9e32-212f6a3777ba", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7c805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca", + "id": "13bd82e1-c878-4242-ab08-0ed784fcdb4a", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_acb04ebf70ee4d39545985b2a75a519e364cb13eb196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7%3Ac805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/acb04ebf70ee4d39545985b2a75a519e364cb13e%3Ab196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[0.552570093457944],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", + "body": "{\"data\":[0.5319148936170213],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1],\"offset\":[0],\"total\":[1]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -430,10 +492,10 @@ "Content-Type": "application/json" } }, - "uuid": "f5e3bd7b-adf5-462a-9e32-212f6a3777ba" + "uuid": "13bd82e1-c878-4242-ab08-0ed784fcdb4a" }, { - "id": "c387b8f1-0091-4a54-a6ef-0f8c9405bfdf", + "id": "e88b7fa2-20fa-401e-a70b-63091bda1e2a", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_activity.status_id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets", @@ -441,7 +503,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -459,17 +521,17 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c387b8f1-0091-4a54-a6ef-0f8c9405bfdf" + "uuid": "e88b7fa2-20fa-401e-a70b-63091bda1e2a" }, { - "id": "ecc1678b-9151-4bc2-a173-93418bea3352", + "id": "736da0b0-953f-4d9a-9509-3b35a3f911b5", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -477,7 +539,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"f03086786b8de3188c0a490a3846e9039ccf67ee:861a6a19d856fe62e69c2a934922e0d5d6e7814a24f1362434d25dbec0a98fc9\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"45b1fb63baff85db4ee6f874142216548c5a1577:e6e7f32d1b70fa7ebb5a4005bcdfa858c98ba7be5c59f6f44cf31ea207f6fa05\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -490,54 +552,49 @@ "Content-Type": "application/json" } }, - "uuid": "ecc1678b-9151-4bc2-a173-93418bea3352" + "uuid": "736da0b0-953f-4d9a-9509-3b35a3f911b5" }, { - "id": "2f946abd-165b-44ff-99de-d7fe48e10db6", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_owner.salesrep", + "id": "63cfdd25-7152-47c4-ad68-ba947c11bc65", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"cff537026ca77e6f469939da9bbe8f527cad958d:7099209ca3698a007870ac31b49e9be04519c5ba8402b63f85d5562546bebdd8\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "2f946abd-165b-44ff-99de-d7fe48e10db6" + "uuid": "63cfdd25-7152-47c4-ad68-ba947c11bc65" }, { - "id": "a7476e81-d81b-4705-bf60-1ec030565163", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", + "id": "bf7e54a5-bce5-4c50-a68c-7da8ca72e3a8", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_stage.iswon_id", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", - "method": "POST", - "bodyPatterns": [ - { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", - "ignoreArrayOrder": false, - "ignoreExtraElements": false - } - ] + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets", + "method": "GET" }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"75f1b00a117d00938b202f36bb94143f2603d675:769b9da8c785b32e58166118062d0b5bdf7c034fbec75b172f3c223d8f75b3da\"}}}", + "body": "{\"data\":{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -547,20 +604,20 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a7476e81-d81b-4705-bf60-1ec030565163" + "uuid": "bf7e54a5-bce5-4c50-a68c-7da8ca72e3a8" }, { - "id": "dc32c673-f291-4a48-983e-103d7093b126", + "id": "8d8d0a77-0980-4d37-8479-14729be4c7be", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -568,7 +625,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"a12368d04894921db7d22dd95987b195971aa532:6769ceec911828baa2e426e61a9322dcd5f1528f589ebf32294899b93f2bd099\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"9109011aa897e782743e47dedaf9aab2c93ea810:3c2305e464e519db57aae423cf03b95c04d3e1776c2a1cb67ef9112e867d62a8\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -581,17 +638,17 @@ "Content-Type": "application/json" } }, - "uuid": "dc32c673-f291-4a48-983e-103d7093b126" + "uuid": "8d8d0a77-0980-4d37-8479-14729be4c7be" }, { - "id": "95e9b3ff-7c47-482b-83fd-f9d2c76207f1", + "id": "60e2a05e-9504-47c3-8dcf-f5297b1b98cc", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}}}],\"attributes\":[],\"filters\":[{\"absoluteDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2011-01-01\",\"to\":\"2011-12-31\"}},{\"positiveAttributeFilter\":{\"label\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"in\":{\"values\":[\"Adam Bradley\"]},\"localIdentifier\":\"18ab0096778142768ccfe30dc457d468\"}}],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -599,7 +656,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"1d7ce2bc1f5c5d22090de09d60792fdd0fb425a7:c805a8d4e170e50fdc2082f6226f39a804eb9e3b5aa6217e6c82053735c245ca\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_973a14c4_acb1_45fb_ba52_5d96fa02f7ba\",\"format\":\"#,##0.0%\",\"name\":\"Win Rate\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"acb04ebf70ee4d39545985b2a75a519e364cb13e:b196408b7f5ca914c60772a04cb390675f207cddfef8afea56796436b907c745\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -612,34 +669,39 @@ "Content-Type": "application/json" } }, - "uuid": "95e9b3ff-7c47-482b-83fd-f9d2c76207f1" + "uuid": "60e2a05e-9504-47c3-8dcf-f5297b1b98cc" }, { - "id": "a0449138-1e61-4342-aa49-919a9f65f7f0", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_stage.iswon_id", + "id": "5a79cfc7-34cc-4d2c-88fb-d5ca021c150e", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_owner.salesrep", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a0449138-1e61-4342-aa49-919a9f65f7f0" + "uuid": "5a79cfc7-34cc-4d2c-88fb-d5ca021c150e" }, { - "id": "6c6e67d7-cdd8-402e-88b0-ac0bd3469966", + "id": "d64ccb02-3cbe-4219-a289-9cf6e0f8b37c", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -647,7 +709,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -665,70 +727,70 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6c6e67d7-cdd8-402e-88b0-ac0bd3469966" + "uuid": "d64ccb02-3cbe-4219-a289-9cf6e0f8b37c" }, { - "id": "af8f7de6-67b8-4e60-81e3-a69e91746300", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "daad5779-0bac-4e8d-8537-20d5b4dd2e79", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_activity.status_id&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "af8f7de6-67b8-4e60-81e3-a69e91746300" + "uuid": "daad5779-0bac-4e8d-8537-20d5b4dd2e79" }, { - "id": "9e896429-0bba-445c-b31f-7e8a8dc430ce", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "efcd6af3-08f4-4646-ad7c-4b359ec1a797", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_activity.status_id&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_activity.status_id%27&page=1&size=20\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27601c81ae-0582-42f0-9f35-a4ec2a6a8497%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9e896429-0bba-445c-b31f-7e8a8dc430ce" + "uuid": "efcd6af3-08f4-4646-ad7c-4b359ec1a797" }, { - "id": "027f7636-989e-4ffd-a4c8-1f86782a549d", + "id": "df74dffb-4017-4304-b99d-a4afb97cdbb1", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"attr.f_owner.salesrep\"}", + "equalToJson": "{\"label\":\"f_stage.iswon_id\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -736,35 +798,30 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"3822853b99eecdd9e6f716001e235253\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"43d3148382bbc8b813ae0f8b6570f2be\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "027f7636-989e-4ffd-a4c8-1f86782a549d" + "uuid": "df74dffb-4017-4304-b99d-a4afb97cdbb1" }, { - "id": "e2b0fe7e-a138-4e32-8f15-3375b2ad5125", + "id": "6ded63b2-559d-499b-a2e7-a83875a66ec5", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_stage.iswon_id\"}", + "equalToJson": "{\"label\":\"f_activity.status_id\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -772,7 +829,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"false\",\"primaryTitle\":\"false\"},{\"title\":\"true\",\"primaryTitle\":\"true\"}],\"paging\":{\"total\":2,\"count\":2,\"offset\":0,\"next\":null},\"cacheId\":\"5040cba279de060018715e619bbf982f\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"7a94806d854f77477e7b5b2dfd7ad8b5\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -785,17 +842,17 @@ "Content-Type": "application/json" } }, - "uuid": "e2b0fe7e-a138-4e32-8f15-3375b2ad5125" + "uuid": "6ded63b2-559d-499b-a2e7-a83875a66ec5" }, { - "id": "962a03d7-98c0-4731-bbec-0359b0a2933c", + "id": "7e6a7aa6-33ac-4341-a612-26ad7f99c677", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "bodyPatterns": [ { - "equalToJson": "{\"label\":\"f_activity.status_id\"}", + "equalToJson": "{\"label\":\"attr.f_owner.salesrep\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -803,23 +860,28 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Completed\",\"primaryTitle\":\"Completed\"},{\"title\":\"Deferred\",\"primaryTitle\":\"Deferred\"},{\"title\":\"In Progress\",\"primaryTitle\":\"In Progress\"},{\"title\":\"Waiting on someone else\",\"primaryTitle\":\"Waiting on someone else\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"ace65250b8b81aea3d994be463b6d85a\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"54a226be7d14a66d4f7dfcc497712d66\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "962a03d7-98c0-4731-bbec-0359b0a2933c" + "uuid": "7e6a7aa6-33ac-4341-a612-26ad7f99c677" }, { - "id": "8ae4e04d-3e2a-46b9-8b4b-47beb88f0c5c", + "id": "1ba64ffd-e947-432d-b922-fc1a4ef23e92", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", @@ -834,7 +896,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"b21d0d31f3e995ee404e61353f13a737\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"}],\"paging\":{\"total\":1,\"count\":1,\"offset\":0,\"next\":null},\"cacheId\":\"ae54ec2f594859dc9acfb5463d9e77ef\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -847,10 +909,10 @@ "Content-Type": "application/json" } }, - "uuid": "8ae4e04d-3e2a-46b9-8b4b-47beb88f0c5c" + "uuid": "1ba64ffd-e947-432d-b922-fc1a4ef23e92" }, { - "id": "dc1d24e5-7d8d-451e-a648-cdb7476540b0", + "id": "295caed4-f6e4-4e6e-8454-f1458342ec7d", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_stage.iswon_id&include=labels", @@ -876,10 +938,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "dc1d24e5-7d8d-451e-a648-cdb7476540b0" + "uuid": "295caed4-f6e4-4e6e-8454-f1458342ec7d" }, { - "id": "f2f7e8e3-ed39-4264-9bb2-5683601cb1ff", + "id": "cc6aa1c4-e208-4039-bb67-6765eaa007f4", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dattr.f_owner.salesrep&include=labels", @@ -905,10 +967,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f2f7e8e3-ed39-4264-9bb2-5683601cb1ff" + "uuid": "cc6aa1c4-e208-4039-bb67-6765eaa007f4" }, { - "id": "9cd20fc6-4301-4790-a37b-628e9c3ff909", + "id": "6500a986-bb63-4a8c-8b14-6b6c4e20163b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D601c81ae-0582-42f0-9f35-a4ec2a6a8497%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -929,10 +991,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "9cd20fc6-4301-4790-a37b-628e9c3ff909" + "uuid": "6500a986-bb63-4a8c-8b14-6b6c4e20163b" }, { - "id": "145b3a9b-974c-41b4-babb-0058f5142410", + "id": "ebefb302-2aff-498c-9d97-f0d587742249", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_601c81ae-0582-42f0-9f35-a4ec2a6a8497", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -958,10 +1020,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "145b3a9b-974c-41b4-babb-0058f5142410" + "uuid": "ebefb302-2aff-498c-9d97-f0d587742249" }, { - "id": "af5a4d27-055c-40e9-9446-3f3dd96edb87", + "id": "07729338-a609-4405-852b-fa6f05853d94", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", @@ -969,7 +1031,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -987,10 +1049,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "af5a4d27-055c-40e9-9446-3f3dd96edb87" + "uuid": "07729338-a609-4405-852b-fa6f05853d94" }, { - "id": "cdde3e1d-1286-4335-adba-475374022268", + "id": "7c693530-795f-4434-84a6-8b80941684af", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1023,10 +1085,10 @@ "Content-Type": "application/json" } }, - "uuid": "cdde3e1d-1286-4335-adba-475374022268" + "uuid": "7c693530-795f-4434-84a6-8b80941684af" }, { - "id": "8056bc45-2076-41a7-856e-5ece3755fa0c", + "id": "62ec3014-7a0d-407f-83f7-8e286f815b8b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", @@ -1052,10 +1114,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8056bc45-2076-41a7-856e-5ece3755fa0c" + "uuid": "62ec3014-7a0d-407f-83f7-8e286f815b8b" }, { - "id": "0e3fe461-358d-43de-8f66-0cfc8d294f99", + "id": "ee3713e1-87bc-4c5c-839c-ee3b7c4fe7d8", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_computevalidobjects", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/computeValidObjects", @@ -1088,13 +1150,13 @@ "Content-Type": "application/json" } }, - "uuid": "0e3fe461-358d-43de-8f66-0cfc8d294f99" + "uuid": "ee3713e1-87bc-4c5c-839c-ee3b7c4fe7d8" }, { - "id": "32b23ada-39bd-4c1b-9a42-1106ac74f506", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d8de0f632b84136c1c79646ca0a224110db3651a937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "id": "06b6eddb-36bb-480e-95ba-d8b0dbaf04fa", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_556664b6770cb3bac97908b113cf79c38c0aa47edc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d8de0f632b84136c1c79646ca0a224110db3651a%3A937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/556664b6770cb3bac97908b113cf79c38c0aa47e%3Adc3368fa6fce1ce6f282d780bf5503d7cb98c69505c4b8ba7273fafbd2dc5f8c", "method": "GET" }, "response": { @@ -1112,10 +1174,10 @@ "Content-Type": "application/json" } }, - "uuid": "32b23ada-39bd-4c1b-9a42-1106ac74f506" + "uuid": "06b6eddb-36bb-480e-95ba-d8b0dbaf04fa" }, { - "id": "50950781-07cf-4551-af73-26406a4c05f4", + "id": "81e926e1-5256-4781-8395-94a2651b21b3", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_f_city.id", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets", @@ -1123,7 +1185,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1136,41 +1198,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "50950781-07cf-4551-af73-26406a4c05f4" - }, - { - "id": "790c5352-a06e-4617-b445-c0843d9f602e", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", - "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", - "method": "POST", - "bodyPatterns": [ - { - "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_best_case\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}}},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\",\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[{\"localIdentifier\":\"m_best_case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\"}],\"operator\":\"CHANGE\"}},\"format\":\"#,##0.00%\"}],\"attributes\":[],\"filters\":[{\"relativeDateFilter\":{\"dataset\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"MONTH\",\"from\":0,\"to\":0}}],\"auxMeasures\":[]},\"settings\":{}}", - "ignoreArrayOrder": false, - "ignoreExtraElements": false - } - ] - }, - "response": { - "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_best_case\",\"format\":\"#,##0\",\"name\":\"Best Case\"},{\"localIdentifier\":\"m_e519fa2a_86c3_4e32_8313_0c03062348j3\",\"format\":\"$#,##0.00\",\"name\":\"Won\"},{\"localIdentifier\":\"m_39d769064386c7ac2e8781c6d4aa9e46\"}]}],\"localIdentifier\":\"dim_0\"}],\"links\":{\"executionResult\":\"d8de0f632b84136c1c79646ca0a224110db3651a:937d353f24547b7cd128b11e64eccccfbc7609ec4e4bef2d043a77096847edb2\"}}}", - "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", - "Referrer-Policy": "no-referrer", - "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], - "Expires": "0", - "X-XSS-Protection": "0", - "Content-Type": "application/json" - } - }, - "uuid": "790c5352-a06e-4617-b445-c0843d9f602e" + "uuid": "81e926e1-5256-4781-8395-94a2651b21b3" }, { - "id": "07d1bbf6-f30c-4fca-9d35-56b848666573", + "id": "2a647d99-08ac-4410-b3f3-660dd8b900e0", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_activity.activity", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets", @@ -1178,7 +1209,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1196,10 +1227,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "07d1bbf6-f30c-4fca-9d35-56b848666573" + "uuid": "2a647d99-08ac-4410-b3f3-660dd8b900e0" }, { - "id": "06a1ba45-2bbe-4528-a8f1-b66baea5f124", + "id": "326e089d-5fb0-482c-8eff-6a981628ac8b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_account.account", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets", @@ -1207,7 +1238,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1220,10 +1251,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "06a1ba45-2bbe-4528-a8f1-b66baea5f124" + "uuid": "326e089d-5fb0-482c-8eff-6a981628ac8b" }, { - "id": "d1a5dc0f-244b-4c10-be19-497a38805b51", + "id": "bb74fc24-3e17-4c1d-93ef-03ba597288a5", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1238,7 +1269,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"be7dd651686dbe806903a7cae57680bf\"}", + "body": "{\"primaryLabel\":{\"id\":\"f_city.id\",\"type\":\"label\"},\"elements\":[{\"title\":\"Aguadilla\",\"primaryTitle\":\"1630035605\"},{\"title\":\"Akron\",\"primaryTitle\":\"1840000791\"},{\"title\":\"Albany\",\"primaryTitle\":\"1840000417\"},{\"title\":\"Albuquerque\",\"primaryTitle\":\"1840019176\"},{\"title\":\"Alexandria\",\"primaryTitle\":\"1840003837\"},{\"title\":\"Allentown\",\"primaryTitle\":\"1840001044\"},{\"title\":\"Amarillo\",\"primaryTitle\":\"1840019156\"},{\"title\":\"Anaheim\",\"primaryTitle\":\"1840019322\"},{\"title\":\"Anchorage\",\"primaryTitle\":\"1840023385\"},{\"title\":\"Ann Arbor\",\"primaryTitle\":\"1840003172\"},{\"title\":\"Antioch\",\"primaryTitle\":\"1840018903\"},{\"title\":\"Appleton\",\"primaryTitle\":\"1840002400\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840006112\"},{\"title\":\"Arlington\",\"primaryTitle\":\"1840019422\"},{\"title\":\"Asheville\",\"primaryTitle\":\"1840013411\"},{\"title\":\"Atlanta\",\"primaryTitle\":\"1840013660\"},{\"title\":\"Atlantic City\",\"primaryTitle\":\"1840003798\"},{\"title\":\"Augusta\",\"primaryTitle\":\"1840029462\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840018794\"},{\"title\":\"Aurora\",\"primaryTitle\":\"1840007034\"},{\"title\":\"Austin\",\"primaryTitle\":\"1840019590\"},{\"title\":\"Avondale\",\"primaryTitle\":\"1840019310\"},{\"title\":\"Bakersfield\",\"primaryTitle\":\"1840019148\"},{\"title\":\"Baltimore\",\"primaryTitle\":\"1840001592\"},{\"title\":\"Baton Rouge\",\"primaryTitle\":\"1840013941\"},{\"title\":\"Bayamón\",\"primaryTitle\":\"1630035622\"},{\"title\":\"Bel Air South\",\"primaryTitle\":\"1840073592\"},{\"title\":\"Birmingham\",\"primaryTitle\":\"1840006507\"},{\"title\":\"Boise\",\"primaryTitle\":\"1840027142\"},{\"title\":\"Bonita Springs\",\"primaryTitle\":\"1840014227\"},{\"title\":\"Boston\",\"primaryTitle\":\"1840000455\"},{\"title\":\"Bremerton\",\"primaryTitle\":\"1840018410\"},{\"title\":\"Bridgeport\",\"primaryTitle\":\"1840004836\"},{\"title\":\"Bronx\",\"primaryTitle\":\"1840033999\"},{\"title\":\"Brooklyn\",\"primaryTitle\":\"1840034030\"},{\"title\":\"Brownsville\",\"primaryTitle\":\"1840019743\"},{\"title\":\"Buffalo\",\"primaryTitle\":\"1840000386\"},{\"title\":\"Canton\",\"primaryTitle\":\"1840000963\"},{\"title\":\"Cape Coral\",\"primaryTitle\":\"1840015130\"},{\"title\":\"Cary\",\"primaryTitle\":\"1840016196\"},{\"title\":\"Cedar Rapids\",\"primaryTitle\":\"1840000471\"},{\"title\":\"Champaign\",\"primaryTitle\":\"1840007239\"},{\"title\":\"Chandler\",\"primaryTitle\":\"1840019309\"},{\"title\":\"Charleston\",\"primaryTitle\":\"1840015163\"},{\"title\":\"Charlotte\",\"primaryTitle\":\"1840014557\"},{\"title\":\"Chattanooga\",\"primaryTitle\":\"1840014569\"},{\"title\":\"Chesapeake\",\"primaryTitle\":\"1840003874\"},{\"title\":\"Chicago\",\"primaryTitle\":\"1840000494\"},{\"title\":\"Chula Vista\",\"primaryTitle\":\"1840019350\"},{\"title\":\"Cincinnati\",\"primaryTitle\":\"1840003814\"},{\"title\":\"Clarksville\",\"primaryTitle\":\"1840014421\"},{\"title\":\"Cleveland\",\"primaryTitle\":\"1840000596\"},{\"title\":\"College Station\",\"primaryTitle\":\"1840019570\"},{\"title\":\"Colorado Springs\",\"primaryTitle\":\"1840018825\"},{\"title\":\"Columbia\",\"primaryTitle\":\"1840014730\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840014887\"},{\"title\":\"Columbus\",\"primaryTitle\":\"1840003760\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840018905\"},{\"title\":\"Concord\",\"primaryTitle\":\"1840014559\"},{\"title\":\"Corona\",\"primaryTitle\":\"1840019305\"},{\"title\":\"Corpus Christi\",\"primaryTitle\":\"1840019718\"},{\"title\":\"Dallas\",\"primaryTitle\":\"1840019440\"},{\"title\":\"Danbury\",\"primaryTitle\":\"1840004837\"},{\"title\":\"Davenport\",\"primaryTitle\":\"1840007081\"},{\"title\":\"Dayton\",\"primaryTitle\":\"1840034249\"},{\"title\":\"Deltona\",\"primaryTitle\":\"1840015072\"},{\"title\":\"Denton\",\"primaryTitle\":\"1840019390\"},{\"title\":\"Denver\",\"primaryTitle\":\"1840018789\"},{\"title\":\"Des Moines\",\"primaryTitle\":\"1840007069\"},{\"title\":\"Detroit\",\"primaryTitle\":\"1840003971\"},{\"title\":\"Durham\",\"primaryTitle\":\"1840013364\"},{\"title\":\"El Paso\",\"primaryTitle\":\"1840023252\"},{\"title\":\"Elk Grove\",\"primaryTitle\":\"1840020245\"},{\"title\":\"Enterprise\",\"primaryTitle\":\"1840033827\"},{\"title\":\"Erie\",\"primaryTitle\":\"1840000478\"},{\"title\":\"Escondido\",\"primaryTitle\":\"1840020620\"},{\"title\":\"Eugene\",\"primaryTitle\":\"1840020007\"},{\"title\":\"Evansville\",\"primaryTitle\":\"1840013730\"},{\"title\":\"Fargo\",\"primaryTitle\":\"1840000177\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013490\"},{\"title\":\"Fayetteville\",\"primaryTitle\":\"1840013368\"},{\"title\":\"Flint\",\"primaryTitle\":\"1840002949\"},{\"title\":\"Fontana\",\"primaryTitle\":\"1840020402\"},{\"title\":\"Fort Collins\",\"primaryTitle\":\"1840020151\"},{\"title\":\"Fort Lauderdale\",\"primaryTitle\":\"1840014236\"},{\"title\":\"Fort Wayne\",\"primaryTitle\":\"1840008261\"},{\"title\":\"Fort Worth\",\"primaryTitle\":\"1840020696\"},{\"title\":\"Frederick\",\"primaryTitle\":\"1840005710\"},{\"title\":\"Fredericksburg\",\"primaryTitle\":\"1840003845\"},{\"title\":\"Fremont\",\"primaryTitle\":\"1840020292\"},{\"title\":\"Fresno\",\"primaryTitle\":\"1840020319\"},{\"title\":\"Frisco\",\"primaryTitle\":\"1840020654\"},{\"title\":\"Gainesville\",\"primaryTitle\":\"1840014022\"},{\"title\":\"Garden Grove\",\"primaryTitle\":\"1840020577\"},{\"title\":\"Garland\",\"primaryTitle\":\"1840020707\"},{\"title\":\"Gastonia\",\"primaryTitle\":\"1840013468\"},{\"title\":\"Gilbert\",\"primaryTitle\":\"1840021947\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020563\"},{\"title\":\"Glendale\",\"primaryTitle\":\"1840020483\"},{\"title\":\"Grand Prairie\",\"primaryTitle\":\"1840020709\"},{\"title\":\"Grand Rapids\",\"primaryTitle\":\"1840002928\"},{\"title\":\"Green Bay\",\"primaryTitle\":\"1840002344\"},{\"title\":\"Greensboro\",\"primaryTitle\":\"1840013356\"},{\"title\":\"Greenville\",\"primaryTitle\":\"1840013501\"},{\"title\":\"Gulfport\",\"primaryTitle\":\"1840013947\"},{\"title\":\"Hagerstown\",\"primaryTitle\":\"1840005613\"},{\"title\":\"Harrisburg\",\"primaryTitle\":\"1840001288\"},{\"title\":\"Hartford\",\"primaryTitle\":\"1840004773\"},{\"title\":\"Hayward\",\"primaryTitle\":\"1840020293\"},{\"title\":\"Hemet\",\"primaryTitle\":\"1840020550\"},{\"title\":\"Henderson\",\"primaryTitle\":\"1840020361\"},{\"title\":\"Hialeah\",\"primaryTitle\":\"1840015157\"},{\"title\":\"Hickory\",\"primaryTitle\":\"1840014524\"},{\"title\":\"High Point\",\"primaryTitle\":\"1840014479\"},{\"title\":\"Hollywood\",\"primaryTitle\":\"1840015144\"},{\"title\":\"Honolulu\",\"primaryTitle\":\"1840013305\"},{\"title\":\"Houston\",\"primaryTitle\":\"1840020925\"},{\"title\":\"Huntington\",\"primaryTitle\":\"1840006211\"},{\"title\":\"Huntington Beach\",\"primaryTitle\":\"1840020578\"},{\"title\":\"Huntsville\",\"primaryTitle\":\"1840005061\"},{\"title\":\"Indianapolis\",\"primaryTitle\":\"1840030084\"},{\"title\":\"Indio\",\"primaryTitle\":\"1840019304\"},{\"title\":\"Irvine\",\"primaryTitle\":\"1840019325\"},{\"title\":\"Irving\",\"primaryTitle\":\"1840019438\"},{\"title\":\"Jackson\",\"primaryTitle\":\"1840014895\"},{\"title\":\"Jacksonville\",\"primaryTitle\":\"1840015031\"},{\"title\":\"Jersey City\",\"primaryTitle\":\"1840003600\"},{\"title\":\"Kalamazoo\",\"primaryTitle\":\"1840003185\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840001626\"},{\"title\":\"Kansas City\",\"primaryTitle\":\"1840008535\"},{\"title\":\"Kennewick\",\"primaryTitle\":\"1840018481\"},{\"title\":\"Killeen\",\"primaryTitle\":\"1840020854\"},{\"title\":\"Kissimmee\",\"primaryTitle\":\"1840015109\"},{\"title\":\"Knoxville\",\"primaryTitle\":\"1840014486\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840008354\"},{\"title\":\"Lafayette\",\"primaryTitle\":\"1840015044\"},{\"title\":\"Lakeland\",\"primaryTitle\":\"1840015108\"},{\"title\":\"Lakewood\",\"primaryTitle\":\"1840020198\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840003718\"},{\"title\":\"Lancaster\",\"primaryTitle\":\"1840020516\"},{\"title\":\"Lansing\",\"primaryTitle\":\"1840003102\"},{\"title\":\"Laredo\",\"primaryTitle\":\"1840021002\"},{\"title\":\"Las Vegas\",\"primaryTitle\":\"1840020364\"},{\"title\":\"Leesburg\",\"primaryTitle\":\"1840015083\"},{\"title\":\"Lexington\",\"primaryTitle\":\"1840015211\"},{\"title\":\"Lincoln\",\"primaryTitle\":\"1840009357\"},{\"title\":\"Little Rock\",\"primaryTitle\":\"1840015509\"},{\"title\":\"Long Beach\",\"primaryTitle\":\"1840020490\"},{\"title\":\"Lorain\",\"primaryTitle\":\"1840000644\"},{\"title\":\"Los Angeles\",\"primaryTitle\":\"1840020491\"},{\"title\":\"Louisville\",\"primaryTitle\":\"1840030815\"},{\"title\":\"Lubbock\",\"primaryTitle\":\"1840020604\"},{\"title\":\"Macon\",\"primaryTitle\":\"1840043455\"},{\"title\":\"Madison\",\"primaryTitle\":\"1840002915\"},{\"title\":\"Manchester\",\"primaryTitle\":\"1840002983\"},{\"title\":\"Manhattan\",\"primaryTitle\":\"1840034000\"},{\"title\":\"Marysville\",\"primaryTitle\":\"1840019789\"},{\"title\":\"Mauldin\",\"primaryTitle\":\"1840015476\"},{\"title\":\"McAllen\",\"primaryTitle\":\"1840021024\"},{\"title\":\"McKinney\",\"primaryTitle\":\"1840020657\"},{\"title\":\"Medford\",\"primaryTitle\":\"1840020076\"},{\"title\":\"Memphis\",\"primaryTitle\":\"1840015457\"},{\"title\":\"Mesa\",\"primaryTitle\":\"1840020566\"},{\"title\":\"Miami\",\"primaryTitle\":\"1840015149\"},{\"title\":\"Milwaukee\",\"primaryTitle\":\"1840003046\"},{\"title\":\"Minneapolis\",\"primaryTitle\":\"1840007830\"},{\"title\":\"Mission Viejo\",\"primaryTitle\":\"1840020580\"},{\"title\":\"Mobile\",\"primaryTitle\":\"1840006009\"},{\"title\":\"Modesto\",\"primaryTitle\":\"1840020287\"},{\"title\":\"Montgomery\",\"primaryTitle\":\"1840008353\"},{\"title\":\"Moreno Valley\",\"primaryTitle\":\"1840020552\"},{\"title\":\"Murfreesboro\",\"primaryTitle\":\"1840014495\"},{\"title\":\"Murrieta\",\"primaryTitle\":\"1840020553\"},{\"title\":\"Muskegon\",\"primaryTitle\":\"1840002870\"},{\"title\":\"Myrtle Beach\",\"primaryTitle\":\"1840014717\"},{\"title\":\"Nampa\",\"primaryTitle\":\"1840020041\"},{\"title\":\"Nashua\",\"primaryTitle\":\"1840002984\"},{\"title\":\"Nashville\",\"primaryTitle\":\"1840036155\"},{\"title\":\"Navarre\",\"primaryTitle\":\"1840027017\"},{\"title\":\"New Bedford\",\"primaryTitle\":\"1840003219\"},{\"title\":\"New Haven\",\"primaryTitle\":\"1840004850\"},{\"title\":\"New Orleans\",\"primaryTitle\":\"1840001839\"},{\"title\":\"New York\",\"primaryTitle\":\"1840034016\"},{\"title\":\"Newark\",\"primaryTitle\":\"1840002791\"},{\"title\":\"Newport News\",\"primaryTitle\":\"1840003862\"},{\"title\":\"Norfolk\",\"primaryTitle\":\"1840003869\"},{\"title\":\"North Las Vegas\",\"primaryTitle\":\"1840020363\"},{\"title\":\"North Port\",\"primaryTitle\":\"1840015120\"},{\"title\":\"Norwich\",\"primaryTitle\":\"1840004828\"},{\"title\":\"Oakland\",\"primaryTitle\":\"1840020296\"},{\"title\":\"Ocala\",\"primaryTitle\":\"1840015067\"},{\"title\":\"Oceanside\",\"primaryTitle\":\"1840020623\"},{\"title\":\"Ogden\",\"primaryTitle\":\"1840020135\"},{\"title\":\"Oklahoma City\",\"primaryTitle\":\"1840020428\"},{\"title\":\"Olympia\",\"primaryTitle\":\"1840019865\"},{\"title\":\"Omaha\",\"primaryTitle\":\"1840009315\"},{\"title\":\"Ontario\",\"primaryTitle\":\"1840020410\"},{\"title\":\"Orlando\",\"primaryTitle\":\"1840015099\"},{\"title\":\"Overland Park\",\"primaryTitle\":\"1840003834\"},{\"title\":\"Oxnard\",\"primaryTitle\":\"1840020474\"},{\"title\":\"Palm Bay\",\"primaryTitle\":\"1840015094\"},{\"title\":\"Palm Coast\",\"primaryTitle\":\"1840015064\"},{\"title\":\"Palmdale\",\"primaryTitle\":\"1840020502\"},{\"title\":\"Panama City\",\"primaryTitle\":\"1840015034\"},{\"title\":\"Paradise\",\"primaryTitle\":\"1840033743\"},{\"title\":\"Pasadena\",\"primaryTitle\":\"1840020930\"},{\"title\":\"Pembroke Pines\",\"primaryTitle\":\"1840015141\"},{\"title\":\"Pensacola\",\"primaryTitle\":\"1840015005\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840020567\"},{\"title\":\"Peoria\",\"primaryTitle\":\"1840009373\"},{\"title\":\"Philadelphia\",\"primaryTitle\":\"1840000673\"},{\"title\":\"Phoenix\",\"primaryTitle\":\"1840020568\"},{\"title\":\"Pittsburgh\",\"primaryTitle\":\"1840001254\"},{\"title\":\"Plano\",\"primaryTitle\":\"1840020662\"},{\"title\":\"Pomona\",\"primaryTitle\":\"1840020507\"},{\"title\":\"Port Arthur\",\"primaryTitle\":\"1840020919\"},{\"title\":\"Port St. Lucie\",\"primaryTitle\":\"1840015119\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840019941\"},{\"title\":\"Portland\",\"primaryTitle\":\"1840000327\"},{\"title\":\"Poughkeepsie\",\"primaryTitle\":\"1840000500\"},{\"title\":\"Providence\",\"primaryTitle\":\"1840003289\"},{\"title\":\"Provo\",\"primaryTitle\":\"1840020174\"},{\"title\":\"Queens\",\"primaryTitle\":\"1840034002\"},{\"title\":\"Raleigh\",\"primaryTitle\":\"1840014497\"},{\"title\":\"Rancho Cucamonga\",\"primaryTitle\":\"1840020411\"},{\"title\":\"Reading\",\"primaryTitle\":\"1840001185\"},{\"title\":\"Reno\",\"primaryTitle\":\"1840020121\"},{\"title\":\"Richmond\",\"primaryTitle\":\"1840001698\"},{\"title\":\"Riverside\",\"primaryTitle\":\"1840020551\"},{\"title\":\"Roanoke\",\"primaryTitle\":\"1840003858\"},{\"title\":\"Rochester\",\"primaryTitle\":\"1840000373\"},{\"title\":\"Rockford\",\"primaryTitle\":\"1840009132\"},{\"title\":\"Round Lake Beach\",\"primaryTitle\":\"1840011171\"},{\"title\":\"Sacramento\",\"primaryTitle\":\"1840021491\"},{\"title\":\"Salem\",\"primaryTitle\":\"1840021224\"},{\"title\":\"Salinas\",\"primaryTitle\":\"1840021632\"},{\"title\":\"Salt Lake City\",\"primaryTitle\":\"1840021383\"},{\"title\":\"San Antonio\",\"primaryTitle\":\"1840022220\"},{\"title\":\"San Bernardino\",\"primaryTitle\":\"1840021728\"},{\"title\":\"San Diego\",\"primaryTitle\":\"1840021990\"},{\"title\":\"San Francisco\",\"primaryTitle\":\"1840021543\"},{\"title\":\"San Jose\",\"primaryTitle\":\"1840021570\"},{\"title\":\"San Juan\",\"primaryTitle\":\"1630035577\"},{\"title\":\"Santa Ana\",\"primaryTitle\":\"1840021964\"},{\"title\":\"Santa Barbara\",\"primaryTitle\":\"1840021829\"},{\"title\":\"Santa Clarita\",\"primaryTitle\":\"1840021864\"},{\"title\":\"Santa Cruz\",\"primaryTitle\":\"1840021579\"},{\"title\":\"Santa Rosa\",\"primaryTitle\":\"1840021488\"},{\"title\":\"Sarasota\",\"primaryTitle\":\"1840015988\"},{\"title\":\"Savannah\",\"primaryTitle\":\"1840015830\"},{\"title\":\"Scottsdale\",\"primaryTitle\":\"1840021940\"},{\"title\":\"Scranton\",\"primaryTitle\":\"1840003389\"},{\"title\":\"Seattle\",\"primaryTitle\":\"1840021117\"},{\"title\":\"Shreveport\",\"primaryTitle\":\"1840015768\"},{\"title\":\"Sioux Falls\",\"primaryTitle\":\"1840002648\"},{\"title\":\"South Bend\",\"primaryTitle\":\"1840009241\"},{\"title\":\"Spartanburg\",\"primaryTitle\":\"1840015482\"},{\"title\":\"Spokane\",\"primaryTitle\":\"1840021093\"},{\"title\":\"Spring Hill\",\"primaryTitle\":\"1840014105\"},{\"title\":\"Spring Valley\",\"primaryTitle\":\"1840033832\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840000466\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009517\"},{\"title\":\"Springfield\",\"primaryTitle\":\"1840009904\"},{\"title\":\"St. Louis\",\"primaryTitle\":\"1840001651\"},{\"title\":\"St. Paul\",\"primaryTitle\":\"1840008940\"},{\"title\":\"St. Petersburg\",\"primaryTitle\":\"1840015977\"},{\"title\":\"Staten Island\",\"primaryTitle\":\"1840034032\"},{\"title\":\"Stockton\",\"primaryTitle\":\"1840021517\"},{\"title\":\"Sunnyvale\",\"primaryTitle\":\"1840021573\"},{\"title\":\"Sunrise Manor\",\"primaryTitle\":\"1840033833\"},{\"title\":\"Syracuse\",\"primaryTitle\":\"1840000378\"},{\"title\":\"Tacoma\",\"primaryTitle\":\"1840021129\"},{\"title\":\"Tallahassee\",\"primaryTitle\":\"1840015913\"},{\"title\":\"Tampa\",\"primaryTitle\":\"1840015982\"},{\"title\":\"Tempe\",\"primaryTitle\":\"1840021942\"},{\"title\":\"The Woodlands\",\"primaryTitle\":\"1840019585\"},{\"title\":\"Thousand Oaks\",\"primaryTitle\":\"1840021844\"},{\"title\":\"Toledo\",\"primaryTitle\":\"1840000572\"},{\"title\":\"Trenton\",\"primaryTitle\":\"1840001383\"},{\"title\":\"Tucson\",\"primaryTitle\":\"1840022101\"},{\"title\":\"Tulsa\",\"primaryTitle\":\"1840021672\"},{\"title\":\"Tuscaloosa\",\"primaryTitle\":\"1840005563\"},{\"title\":\"Vallejo\",\"primaryTitle\":\"1840021499\"},{\"title\":\"Vancouver\",\"primaryTitle\":\"1840021189\"},{\"title\":\"Vero Beach South\",\"primaryTitle\":\"1840073853\"},{\"title\":\"Victorville\",\"primaryTitle\":\"1840021731\"},{\"title\":\"Virginia Beach\",\"primaryTitle\":\"1840003871\"},{\"title\":\"Visalia\",\"primaryTitle\":\"1840021639\"},{\"title\":\"Waco\",\"primaryTitle\":\"1840022140\"},{\"title\":\"Warner Robins\",\"primaryTitle\":\"1840015800\"},{\"title\":\"Washington\",\"primaryTitle\":\"1840006060\"},{\"title\":\"Waterbury\",\"primaryTitle\":\"1840004851\"},{\"title\":\"Wichita\",\"primaryTitle\":\"1840001686\"},{\"title\":\"Wilmington\",\"primaryTitle\":\"1840015576\"},{\"title\":\"Winston-Salem\",\"primaryTitle\":\"1840015324\"},{\"title\":\"Winter Haven\",\"primaryTitle\":\"1840015970\"},{\"title\":\"Worcester\",\"primaryTitle\":\"1840000434\"},{\"title\":\"Yonkers\",\"primaryTitle\":\"1840003478\"},{\"title\":\"York\",\"primaryTitle\":\"1840001472\"},{\"title\":\"Youngstown\",\"primaryTitle\":\"1840003563\"}],\"paging\":{\"total\":300,\"count\":300,\"offset\":0,\"next\":null},\"cacheId\":\"90c812405bfc4c2adb7eec3e519ca67d\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1256,10 +1287,10 @@ "Content-Type": "application/json" } }, - "uuid": "d1a5dc0f-244b-4c10-be19-497a38805b51" + "uuid": "bb74fc24-3e17-4c1d-93ef-03ba597288a5" }, { - "id": "7bf5e967-8bc0-407f-9ba6-f38cfd337a02", + "id": "81c5b7fe-0c92-43e6-b1ee-c64cddcee488", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Df_city.id.cityname&include=labels", @@ -1267,7 +1298,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27f_city.id.cityname%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1285,10 +1316,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "7bf5e967-8bc0-407f-9ba6-f38cfd337a02" + "uuid": "81c5b7fe-0c92-43e6-b1ee-c64cddcee488" }, { - "id": "c5cd1e61-86e7-48c1-ad3a-fdfa28d30336", + "id": "5412cb3c-2c61-4e19-978f-68a9f843beda", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1303,7 +1334,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},\"elements\":[{\"title\":\"Email with 1000Bulbs.com on Apr-21-08\",\"primaryTitle\":\"4\"},{\"title\":\"Email with 1000Bulbs.com on Dec-14-09\",\"primaryTitle\":\"715\"},{\"title\":\"Email with 1000Bulbs.com on Dec-29-08\",\"primaryTitle\":\"77\"},{\"title\":\"Email with 1000Bulbs.com on Feb-10-09\",\"primaryTitle\":\"111\"},{\"title\":\"Email with 1000Bulbs.com on Jan-06-10\",\"primaryTitle\":\"817\"},{\"title\":\"Email with 1000Bulbs.com on Jan-29-09\",\"primaryTitle\":\"99\"},{\"title\":\"Email with 1000Bulbs.com on Jul-03-08\",\"primaryTitle\":\"9\"},{\"title\":\"Email with 1000Bulbs.com on Jul-06-10\",\"primaryTitle\":\"2884\"},{\"title\":\"Email with 1000Bulbs.com on Jul-24-10\",\"primaryTitle\":\"3338\"},{\"title\":\"Email with 1000Bulbs.com on Jun-01-10\",\"primaryTitle\":\"2293\"},{\"title\":\"Email with 1000Bulbs.com on Mar-08-10\",\"primaryTitle\":\"1206\"},{\"title\":\"Email with 1000Bulbs.com on May-23-10\",\"primaryTitle\":\"2138\"},{\"title\":\"Email with 1000Bulbs.com on May-28-09\",\"primaryTitle\":\"223\"},{\"title\":\"Email with 1000Bulbs.com on Oct-15-08\",\"primaryTitle\":\"42\"},{\"title\":\"Email with 1000Bulbs.com on Sep-13-08\",\"primaryTitle\":\"31\"},{\"title\":\"Email with 1000Bulbs.com on Sep-17-08\",\"primaryTitle\":\"32\"},{\"title\":\"Email with 101 Financial on Apr-20-10\",\"primaryTitle\":\"1651\"},{\"title\":\"Email with 101 Financial on Aug-16-08\",\"primaryTitle\":\"150353\"},{\"title\":\"Email with 101 Financial on Dec-08-08\",\"primaryTitle\":\"60\"},{\"title\":\"Email with 101 Financial on Dec-18-09\",\"primaryTitle\":\"150359\"},{\"title\":\"Email with 101 Financial on Feb-02-09\",\"primaryTitle\":\"150355\"},{\"title\":\"Email with 101 Financial on Jun-15-08\",\"primaryTitle\":\"150352\"},{\"title\":\"Email with 101 Financial on Mar-11-09\",\"primaryTitle\":\"132\"},{\"title\":\"Email with 101 Financial on Mar-15-09\",\"primaryTitle\":\"135\"},{\"title\":\"Email with 101 Financial on Mar-17-11\",\"primaryTitle\":\"150388\"},{\"title\":\"Email with 101 Financial on Mar-28-11\",\"primaryTitle\":\"150389\"},{\"title\":\"Email with 101 Financial on May-01-10\",\"primaryTitle\":\"1800\"},{\"title\":\"Email with 101 Financial on May-24-09\",\"primaryTitle\":\"217\"},{\"title\":\"Email with 101 Financial on Nov-15-09\",\"primaryTitle\":\"150358\"},{\"title\":\"Email with 101 Financial on Nov-16-08\",\"primaryTitle\":\"51\"},{\"title\":\"Email with 101 Financial on Oct-01-09\",\"primaryTitle\":\"472\"},{\"title\":\"Email with 101 Financial on Oct-15-08\",\"primaryTitle\":\"150354\"},{\"title\":\"Email with 123 Exteriors on Apr-07-10\",\"primaryTitle\":\"1518\"},{\"title\":\"Email with 123 Exteriors on Dec-13-08\",\"primaryTitle\":\"66\"},{\"title\":\"Email with 123 Exteriors on Jul-18-09\",\"primaryTitle\":\"304\"},{\"title\":\"Email with 123 Exteriors on Jul-26-09\",\"primaryTitle\":\"325\"},{\"title\":\"Email with 123 Exteriors on Jul-28-08\",\"primaryTitle\":\"16\"},{\"title\":\"Email with 123 Exteriors on Jun-22-08\",\"primaryTitle\":\"8\"},{\"title\":\"Email with 123 Exteriors on Nov-13-09\",\"primaryTitle\":\"595\"},{\"title\":\"Email with 123 Exteriors on Oct-06-09\",\"primaryTitle\":\"486\"},{\"title\":\"Email with 1-800 Postcards on Dec-06-10\",\"primaryTitle\":\"34000\"},{\"title\":\"Email with 1-800 Postcards on Dec-21-10\",\"primaryTitle\":\"34432\"},{\"title\":\"Email with 1-800 Postcards on Feb-14-11\",\"primaryTitle\":\"36297\"},{\"title\":\"Email with 1-800 Postcards on Feb-23-11\",\"primaryTitle\":\"36588\"},{\"title\":\"Email with 1-800 Postcards on Jun-09-11\",\"primaryTitle\":\"40060\"},{\"title\":\"Email with 1-800 Postcards on Oct-26-10\",\"primaryTitle\":\"32516\"},{\"title\":\"Email with 1-800 We Answer on Apr-13-09\",\"primaryTitle\":\"151091\"},{\"title\":\"Email with 1-800 We Answer on Feb-11-10\",\"primaryTitle\":\"151131\"},{\"title\":\"Email with 1-800 We Answer on Jul-14-09\",\"primaryTitle\":\"151097\"},{\"title\":\"Email with 1-800 We Answer on Mar-09-09\",\"primaryTitle\":\"151090\"},{\"title\":\"Email with 1-800 We Answer on Oct-02-09\",\"primaryTitle\":\"151109\"},{\"title\":\"Email with 1-800 We Answer on Oct-04-10\",\"primaryTitle\":\"151259\"},{\"title\":\"Email with 1-800 We Answer on Oct-17-08\",\"primaryTitle\":\"151088\"},{\"title\":\"Email with 1-800 We Answer on Oct-23-09\",\"primaryTitle\":\"151114\"},{\"title\":\"Email with 1-888-OhioComp on Aug-20-09\",\"primaryTitle\":\"140982\"},{\"title\":\"Email with 1-888-OhioComp on Dec-10-12\",\"primaryTitle\":\"142916\"},{\"title\":\"Email with 1-888-OhioComp on Jul-25-12\",\"primaryTitle\":\"142705\"},{\"title\":\"Email with 1-888-OhioComp on Jun-11-12\",\"primaryTitle\":\"142451\"},{\"title\":\"Email with 1-888-OhioComp on Mar-04-10\",\"primaryTitle\":\"140994\"},{\"title\":\"Email with 1-888-OhioComp on Oct-13-09\",\"primaryTitle\":\"140985\"},{\"title\":\"Email with 1-888-OhioComp on Sep-04-08\",\"primaryTitle\":\"140976\"},{\"title\":\"Email with 1-888-OhioComp on Sep-25-12\",\"primaryTitle\":\"142870\"},{\"title\":\"Email with 1 Source Consulting on Apr-27-08\",\"primaryTitle\":\"5\"},{\"title\":\"Email with 1 Source Consulting on Apr-29-10\",\"primaryTitle\":\"1758\"},{\"title\":\"Email with 1 Source Consulting on Dec-17-09\",\"primaryTitle\":\"729\"},{\"title\":\"Email with 1 Source Consulting on Feb-03-10\",\"primaryTitle\":\"987\"},{\"title\":\"Email with 1 Source Consulting on Jan-08-10\",\"primaryTitle\":\"832\"},{\"title\":\"Email with 1 Source Consulting on Jan-11-10\",\"primaryTitle\":\"844\"},{\"title\":\"Email with 1 Source Consulting on Jan-21-10\",\"primaryTitle\":\"898\"},{\"title\":\"Email with 1 Source Consulting on Jan-26-09\",\"primaryTitle\":\"95\"},{\"title\":\"Email with 1 Source Consulting on Jan-27-09\",\"primaryTitle\":\"98\"},{\"title\":\"Email with 1 Source Consulting on Jul-11-09\",\"primaryTitle\":\"287\"},{\"title\":\"Email with 1 Source Consulting on Jul-16-08\",\"primaryTitle\":\"11\"},{\"title\":\"Email with 1 Source Consulting on Mar-06-10\",\"primaryTitle\":\"1191\"},{\"title\":\"Email with 1 Source Consulting on Nov-01-09\",\"primaryTitle\":\"558\"},{\"title\":\"Email with 1 Source Consulting on Nov-22-09\",\"primaryTitle\":\"625\"},{\"title\":\"Email with 1 Source Consulting on Oct-07-08\",\"primaryTitle\":\"38\"},{\"title\":\"Email with 1 Source Consulting on Oct-08-08\",\"primaryTitle\":\"39\"},{\"title\":\"Email with 1Source International on Apr-03-09\",\"primaryTitle\":\"153\"},{\"title\":\"Email with 1Source International on Apr-23-10\",\"primaryTitle\":\"1689\"},{\"title\":\"Email with 1Source International on Dec-23-09\",\"primaryTitle\":\"740\"},{\"title\":\"Email with 1Source International on Jul-13-08\",\"primaryTitle\":\"10\"},{\"title\":\"Email with 1Source International on Jul-23-09\",\"primaryTitle\":\"317\"},{\"title\":\"Email with 1Source International on Mar-17-09\",\"primaryTitle\":\"137\"},{\"title\":\"Email with 1Source International on May-23-09\",\"primaryTitle\":\"216\"},{\"title\":\"Email with 1Source International on Nov-20-08\",\"primaryTitle\":\"55\"},{\"title\":\"Email with 1Source International on Oct-06-08\",\"primaryTitle\":\"37\"},{\"title\":\"Email with 1Source International on Sep-01-10\",\"primaryTitle\":\"4153\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-22-09\",\"primaryTitle\":\"90\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-24-09\",\"primaryTitle\":\"92\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-09-09\",\"primaryTitle\":\"283\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-23-09\",\"primaryTitle\":\"316\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-05-09\",\"primaryTitle\":\"128\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-14-10\",\"primaryTitle\":\"1266\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-23-09\",\"primaryTitle\":\"144\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-30-10\",\"primaryTitle\":\"1427\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Nov-05-09\",\"primaryTitle\":\"567\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Sep-27-10\",\"primaryTitle\":\"4653\"},{\"title\":\"Email with 2HB Software Designs on Apr-03-09\",\"primaryTitle\":\"152\"},{\"title\":\"Email with 2HB Software Designs on Apr-17-09\",\"primaryTitle\":\"165\"},{\"title\":\"Email with 2HB Software Designs on Apr-25-10\",\"primaryTitle\":\"1714\"},{\"title\":\"Email with 2HB Software Designs on Dec-07-08\",\"primaryTitle\":\"59\"},{\"title\":\"Email with 2HB Software Designs on Dec-30-08\",\"primaryTitle\":\"78\"},{\"title\":\"Email with 2HB Software Designs on Feb-24-10\",\"primaryTitle\":\"1124\"},{\"title\":\"Email with 2HB Software Designs on Jun-05-09\",\"primaryTitle\":\"236\"},{\"title\":\"Email with 2HB Software Designs on Jun-06-10\",\"primaryTitle\":\"2378\"},{\"title\":\"Email with 2HB Software Designs on Sep-16-09\",\"primaryTitle\":\"438\"},{\"title\":\"Email with 2HB Software Designs on Sep-26-08\",\"primaryTitle\":\"34\"},{\"title\":\"Email with 2 Wheel Bikes on Dec-01-10\",\"primaryTitle\":\"33859\"},{\"title\":\"Email with 2 Wheel Bikes on Oct-10-10\",\"primaryTitle\":\"32066\"},{\"title\":\"Email with 352 Media Group on Aug-29-09\",\"primaryTitle\":\"139608\"},{\"title\":\"Email with 352 Media Group on Dec-19-10\",\"primaryTitle\":\"139628\"},{\"title\":\"Email with 352 Media Group on Feb-27-11\",\"primaryTitle\":\"139644\"},{\"title\":\"Email with 352 Media Group on Mar-26-11\",\"primaryTitle\":\"139648\"},{\"title\":\"Email with 352 Media Group on Nov-17-11\",\"primaryTitle\":\"139754\"},{\"title\":\"Email with 352 Media Group on Oct-08-08\",\"primaryTitle\":\"139603\"},{\"title\":\"Email with 352 Media Group on Sep-02-08\",\"primaryTitle\":\"139601\"},{\"title\":\"Email with 352 Media Group on Sep-14-08\",\"primaryTitle\":\"139602\"},{\"title\":\"Email with 3balls.com on Aug-22-10\",\"primaryTitle\":\"3957\"},{\"title\":\"Email with 3balls.com on Aug-22-11\",\"primaryTitle\":\"10952\"},{\"title\":\"Email with 3balls.com on Jan-05-10\",\"primaryTitle\":\"813\"},{\"title\":\"Email with 3balls.com on Jan-26-09\",\"primaryTitle\":\"96\"},{\"title\":\"Email with 3balls.com on Jul-14-11\",\"primaryTitle\":\"10146\"},{\"title\":\"Email with 3balls.com on Nov-28-10\",\"primaryTitle\":\"5908\"},{\"title\":\"Email with 3balls.com on Oct-15-10\",\"primaryTitle\":\"4998\"},{\"title\":\"Email with 3balls.com on Sep-09-08\",\"primaryTitle\":\"27\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Dec-05-09\",\"primaryTitle\":\"679\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Feb-10-09\",\"primaryTitle\":\"112\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jan-09-09\",\"primaryTitle\":\"83\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-04-09\",\"primaryTitle\":\"276\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-20-08\",\"primaryTitle\":\"12\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jun-18-09\",\"primaryTitle\":\"252\"},{\"title\":\"Email with 3dCart Shopping Cart Software on May-22-09\",\"primaryTitle\":\"214\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Oct-25-09\",\"primaryTitle\":\"539\"},{\"title\":\"Email with 3Degrees on Aug-20-09\",\"primaryTitle\":\"376\"},{\"title\":\"Email with 3Degrees on Aug-27-10\",\"primaryTitle\":\"4041\"},{\"title\":\"Email with 3Degrees on Aug-30-09\",\"primaryTitle\":\"396\"},{\"title\":\"Email with 3Degrees on Dec-05-08\",\"primaryTitle\":\"57\"},{\"title\":\"Email with 3Degrees on Feb-07-09\",\"primaryTitle\":\"108\"},{\"title\":\"Email with 3Degrees on Jul-02-12\",\"primaryTitle\":\"146462\"},{\"title\":\"Email with 3Degrees on Jul-08-12\",\"primaryTitle\":\"146500\"},{\"title\":\"Email with 3Degrees on Jul-10-12\",\"primaryTitle\":\"146524\"},{\"title\":\"Email with 3Degrees on Jul-20-12\",\"primaryTitle\":\"146597\"},{\"title\":\"Email with 3Degrees on Jul-21-12\",\"primaryTitle\":\"146600\"},{\"title\":\"Email with 3Degrees on Jul-30-08\",\"primaryTitle\":\"17\"},{\"title\":\"Email with 3Degrees on Jun-08-12\",\"primaryTitle\":\"146298\"},{\"title\":\"Email with 3Degrees on Jun-10-12\",\"primaryTitle\":\"146310\"},{\"title\":\"Email with 3Degrees on Jun-16-12\",\"primaryTitle\":\"146356\"},{\"title\":\"Email with 3Degrees on May-06-09\",\"primaryTitle\":\"193\"},{\"title\":\"Email with 3Degrees on May-12-10\",\"primaryTitle\":\"1956\"},{\"title\":\"Email with 3E on Aug-18-09\",\"primaryTitle\":\"371\"},{\"title\":\"Email with 3E on Dec-29-09\",\"primaryTitle\":\"765\"},{\"title\":\"Email with 3E on Jan-17-10\",\"primaryTitle\":\"875\"},{\"title\":\"Email with 3E on Jan-27-09\",\"primaryTitle\":\"97\"},{\"title\":\"Email with 3E on Jun-18-10\",\"primaryTitle\":\"2593\"},{\"title\":\"Email with 3E on Jun-24-10\",\"primaryTitle\":\"2675\"},{\"title\":\"Email with 3E on May-28-09\",\"primaryTitle\":\"222\"},{\"title\":\"Email with 3E on Nov-28-10\",\"primaryTitle\":\"5922\"},{\"title\":\"Email with 49er Communications on Dec-11-09\",\"primaryTitle\":\"700\"},{\"title\":\"Email with 49er Communications on Feb-09-09\",\"primaryTitle\":\"110\"},{\"title\":\"Email with 49er Communications on Jan-04-09\",\"primaryTitle\":\"81\"},{\"title\":\"Email with 49er Communications on Jul-02-10\",\"primaryTitle\":\"2825\"},{\"title\":\"Email with 49er Communications on Mar-22-10\",\"primaryTitle\":\"1349\"},{\"title\":\"Email with 49er Communications on May-23-08\",\"primaryTitle\":\"6\"},{\"title\":\"Email with 49er Communications on Oct-01-09\",\"primaryTitle\":\"475\"},{\"title\":\"Email with 49er Communications on Oct-10-09\",\"primaryTitle\":\"498\"},{\"title\":\"Email with 4th Source on Aug-23-08\",\"primaryTitle\":\"139600\"},{\"title\":\"Email with 4th Source on Aug-27-12\",\"primaryTitle\":\"140249\"},{\"title\":\"Email with 4th Source on Feb-04-10\",\"primaryTitle\":\"139613\"},{\"title\":\"Email with 4th Source on Jan-21-11\",\"primaryTitle\":\"139631\"},{\"title\":\"Email with 4th Source on May-08-12\",\"primaryTitle\":\"140042\"},{\"title\":\"Email with 4th Source on Oct-01-11\",\"primaryTitle\":\"139714\"},{\"title\":\"Email with 4th Source on Oct-29-08\",\"primaryTitle\":\"139604\"},{\"title\":\"Email with 4th Source on Sep-03-10\",\"primaryTitle\":\"139623\"},{\"title\":\"Email with 4Wall Entertainment on Apr-11-09\",\"primaryTitle\":\"159\"},{\"title\":\"Email with 4Wall Entertainment on Aug-11-10\",\"primaryTitle\":\"3740\"},{\"title\":\"Email with 4Wall Entertainment on Dec-27-08\",\"primaryTitle\":\"74\"},{\"title\":\"Email with 4Wall Entertainment on Jul-21-08\",\"primaryTitle\":\"13\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-10\",\"primaryTitle\":\"1379\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-11\",\"primaryTitle\":\"8064\"},{\"title\":\"Email with 4Wall Entertainment on Sep-12-10\",\"primaryTitle\":\"4334\"},{\"title\":\"Email with 4Wall Entertainment on Sep-28-08\",\"primaryTitle\":\"35\"},{\"title\":\"Email with 5LINX Enterprises on Apr-03-12\",\"primaryTitle\":\"139942\"},{\"title\":\"Email with 5LINX Enterprises on Aug-19-09\",\"primaryTitle\":\"139607\"},{\"title\":\"Email with 5LINX Enterprises on Aug-26-10\",\"primaryTitle\":\"139620\"},{\"title\":\"Email with 5LINX Enterprises on Dec-09-09\",\"primaryTitle\":\"139612\"},{\"title\":\"Email with 5LINX Enterprises on Feb-18-12\",\"primaryTitle\":\"139871\"},{\"title\":\"Email with 5LINX Enterprises on Feb-21-10\",\"primaryTitle\":\"139615\"},{\"title\":\"Email with 5LINX Enterprises on Mar-04-11\",\"primaryTitle\":\"139645\"},{\"title\":\"Email with 5LINX Enterprises on Sep-27-09\",\"primaryTitle\":\"139610\"},{\"title\":\"Email with 614 Media Group on Apr-24-11\",\"primaryTitle\":\"38606\"},{\"title\":\"Email with 614 Media Group on Mar-02-11\",\"primaryTitle\":\"36938\"},{\"title\":\"Email with 614 Media Group on Sep-02-10\",\"primaryTitle\":\"31085\"},{\"title\":\"Email with 6K Systems on Aug-15-09\",\"primaryTitle\":\"139606\"},{\"title\":\"Email with 6K Systems on Dec-10-11\",\"primaryTitle\":\"139779\"},{\"title\":\"Email with 6K Systems on Dec-29-11\",\"primaryTitle\":\"139803\"},{\"title\":\"Email with 6K Systems on Feb-03-10\",\"primaryTitle\":\"989\"},{\"title\":\"Email with 6K Systems on Feb-06-10\",\"primaryTitle\":\"139614\"},{\"title\":\"Email with 6K Systems on Jan-15-10\",\"primaryTitle\":\"864\"},{\"title\":\"Email with 6K Systems on Jan-25-09\",\"primaryTitle\":\"94\"},{\"title\":\"Email with 6K Systems on Jul-07-09\",\"primaryTitle\":\"139605\"},{\"title\":\"Email with 6K Systems on Jun-15-12\",\"primaryTitle\":\"140150\"},{\"title\":\"Email with 6K Systems on May-07-09\",\"primaryTitle\":\"196\"},{\"title\":\"Email with 6K Systems on Nov-06-09\",\"primaryTitle\":\"569\"},{\"title\":\"Email with 6K Systems on Nov-25-09\",\"primaryTitle\":\"633\"},{\"title\":\"Email with 6K Systems on Oct-04-09\",\"primaryTitle\":\"477\"},{\"title\":\"Email with 6K Systems on Sep-02-10\",\"primaryTitle\":\"139622\"},{\"title\":\"Email with 6K Systems on Sep-27-09\",\"primaryTitle\":\"139609\"},{\"title\":\"Email with 6K Systems on Sep-29-08\",\"primaryTitle\":\"36\"},{\"title\":\"Email with 720 Strategies on Apr-10-10\",\"primaryTitle\":\"1545\"},{\"title\":\"Email with 720 Strategies on Aug-22-09\",\"primaryTitle\":\"381\"},{\"title\":\"Email with 720 Strategies on Dec-08-09\",\"primaryTitle\":\"688\"},{\"title\":\"Email with 720 Strategies on Dec-25-08\",\"primaryTitle\":\"73\"},{\"title\":\"Email with 720 Strategies on Jul-03-09\",\"primaryTitle\":\"274\"},{\"title\":\"Email with 720 Strategies on Jun-11-10\",\"primaryTitle\":\"2449\"},{\"title\":\"Email with 720 Strategies on May-11-10\",\"primaryTitle\":\"1930\"},{\"title\":\"Email with 720 Strategies on May-17-09\",\"primaryTitle\":\"204\"},{\"title\":\"Email with 720 Strategies on Oct-26-08\",\"primaryTitle\":\"44\"},{\"title\":\"Email with 720 Strategies on Sep-10-09\",\"primaryTitle\":\"429\"},{\"title\":\"Email with 7-Eleven on Apr-23-10\",\"primaryTitle\":\"1688\"},{\"title\":\"Email with 7-Eleven on Apr-25-10\",\"primaryTitle\":\"1718\"},{\"title\":\"Email with 7-Eleven on Dec-06-09\",\"primaryTitle\":\"683\"},{\"title\":\"Email with 7-Eleven on Mar-08-12\",\"primaryTitle\":\"14435\"},{\"title\":\"Email with 7-Eleven on Mar-21-09\",\"primaryTitle\":\"140\"},{\"title\":\"Email with 7-Eleven on Nov-16-08\",\"primaryTitle\":\"52\"},{\"title\":\"Email with 7-Eleven on Oct-29-08\",\"primaryTitle\":\"46\"},{\"title\":\"Email with 7-Eleven on Sep-23-09\",\"primaryTitle\":\"451\"},{\"title\":\"Email with 7 Medical Systems on Aug-04-09\",\"primaryTitle\":\"343\"},{\"title\":\"Email with 7 Medical Systems on Aug-28-09\",\"primaryTitle\":\"393\"},{\"title\":\"Email with 7 Medical Systems on Jun-21-09\",\"primaryTitle\":\"255\"},{\"title\":\"Email with 7 Medical Systems on Jun-29-09\",\"primaryTitle\":\"266\"},{\"title\":\"Email with 7 Medical Systems on Mar-16-09\",\"primaryTitle\":\"136\"},{\"title\":\"Email with 7 Medical Systems on Mar-29-09\",\"primaryTitle\":\"148\"},{\"title\":\"Email with 7 Medical Systems on May-09-10\",\"primaryTitle\":\"1904\"},{\"title\":\"Email with 7 Medical Systems on May-31-09\",\"primaryTitle\":\"228\"},{\"title\":\"Email with 7 Medical Systems on Oct-14-09\",\"primaryTitle\":\"512\"},{\"title\":\"Email with 7 Medical Systems on Oct-21-08\",\"primaryTitle\":\"43\"},{\"title\":\"Email with 7 Simple Machines on Apr-01-09\",\"primaryTitle\":\"149\"},{\"title\":\"Email with 7 Simple Machines on Jan-10-10\",\"primaryTitle\":\"841\"},{\"title\":\"Email with 7 Simple Machines on Jan-24-10\",\"primaryTitle\":\"922\"},{\"title\":\"Email with 7 Simple Machines on Jul-11-09\",\"primaryTitle\":\"288\"},{\"title\":\"Email with 7 Simple Machines on Jul-12-10\",\"primaryTitle\":\"3015\"},{\"title\":\"Email with 7 Simple Machines on Jul-13-09\",\"primaryTitle\":\"293\"},{\"title\":\"Email with 7 Simple Machines on May-22-10\",\"primaryTitle\":\"2130\"},{\"title\":\"Email with 7 Simple Machines on Nov-02-08\",\"primaryTitle\":\"48\"},{\"title\":\"Email with 7 Simple Machines on Nov-10-10\",\"primaryTitle\":\"5551\"},{\"title\":\"Email with 7 Simple Machines on Nov-13-08\",\"primaryTitle\":\"49\"},{\"title\":\"Email with 90octane on Apr-18-10\",\"primaryTitle\":\"151160\"},{\"title\":\"Email with 90octane on Apr-20-10\",\"primaryTitle\":\"151162\"},{\"title\":\"Email with 90octane on Aug-06-09\",\"primaryTitle\":\"151103\"},{\"title\":\"Email with 90octane on Feb-07-09\",\"primaryTitle\":\"151089\"},{\"title\":\"Email with 90octane on Jan-13-11\",\"primaryTitle\":\"151318\"},{\"title\":\"Email with 90octane on May-19-09\",\"primaryTitle\":\"151093\"},{\"title\":\"Email with 90octane on Oct-28-10\",\"primaryTitle\":\"151277\"},{\"title\":\"Email with 90octane on Sep-26-09\",\"primaryTitle\":\"151108\"},{\"title\":\"Email with 919 Marketing on Apr-22-09\",\"primaryTitle\":\"171\"},{\"title\":\"Email with 919 Marketing on Apr-22-10\",\"primaryTitle\":\"1685\"},{\"title\":\"Email with 919 Marketing on Dec-15-08\",\"primaryTitle\":\"68\"},{\"title\":\"Email with 919 Marketing on Feb-28-09\",\"primaryTitle\":\"123\"},{\"title\":\"Email with 919 Marketing on Jul-14-09\",\"primaryTitle\":\"296\"},{\"title\":\"Email with 919 Marketing on Jun-08-09\",\"primaryTitle\":\"239\"},{\"title\":\"Email with 919 Marketing on Jun-17-11\",\"primaryTitle\":\"9632\"},{\"title\":\"Email with 919 Marketing on Jun-20-10\",\"primaryTitle\":\"2626\"},{\"title\":\"Email with 919 Marketing on Jun-23-10\",\"primaryTitle\":\"2652\"},{\"title\":\"Email with 919 Marketing on Jun-27-11\",\"primaryTitle\":\"9817\"},{\"title\":\"Email with 919 Marketing on Mar-18-10\",\"primaryTitle\":\"1302\"},{\"title\":\"Email with 919 Marketing on Mar-21-11\",\"primaryTitle\":\"7998\"},{\"title\":\"Email with 919 Marketing on Mar-30-10\",\"primaryTitle\":\"1437\"},{\"title\":\"Email with 919 Marketing on May-05-09\",\"primaryTitle\":\"191\"},{\"title\":\"Email with 919 Marketing on May-17-09\",\"primaryTitle\":\"205\"},{\"title\":\"Email with 919 Marketing on May-23-10\",\"primaryTitle\":\"2140\"},{\"title\":\"Email with 919 Marketing on May-26-09\",\"primaryTitle\":\"220\"},{\"title\":\"Email with 919 Marketing on Nov-10-11\",\"primaryTitle\":\"12550\"},{\"title\":\"Email with 919 Marketing on Nov-24-09\",\"primaryTitle\":\"629\"},{\"title\":\"Email with 919 Marketing on Sep-21-08\",\"primaryTitle\":\"33\"},{\"title\":\"Email with A10 Clinical Solutions on Feb-06-11\",\"primaryTitle\":\"35982\"},{\"title\":\"Email with A10 Clinical Solutions on Jun-23-11\",\"primaryTitle\":\"40437\"},{\"title\":\"Email with A10 Clinical Solutions on May-29-11\",\"primaryTitle\":\"39797\"},{\"title\":\"Email with A10 Clinical Solutions on Oct-31-10\",\"primaryTitle\":\"32670\"},{\"title\":\"Email with A10 Networks on Aug-01-09\",\"primaryTitle\":\"336\"},{\"title\":\"Email with A10 Networks on Aug-23-09\",\"primaryTitle\":\"382\"},{\"title\":\"Email with A10 Networks on Aug-29-08\",\"primaryTitle\":\"22\"},{\"title\":\"Email with A10 Networks on Dec-01-09\",\"primaryTitle\":\"660\"},{\"title\":\"Email with A10 Networks on Jul-21-09\",\"primaryTitle\":\"313\"},{\"title\":\"Email with A10 Networks on Jul-30-09\",\"primaryTitle\":\"333\"},{\"title\":\"Email with A10 Networks on Mar-02-10\",\"primaryTitle\":\"1164\"},{\"title\":\"Email with A10 Networks on May-29-09\",\"primaryTitle\":\"224\"},{\"title\":\"Email with A1 Pool Parts on Aug-13-10\",\"primaryTitle\":\"30390\"},{\"title\":\"Email with A1 Pool Parts on Dec-21-10\",\"primaryTitle\":\"34427\"},{\"title\":\"Email with A1 Pool Parts on Nov-07-10\",\"primaryTitle\":\"32912\"},{\"title\":\"Email with A-1 Textiles on Apr-17-09\",\"primaryTitle\":\"140979\"},{\"title\":\"Email with A-1 Textiles on Feb-22-12\",\"primaryTitle\":\"141778\"},{\"title\":\"Email with A-1 Textiles on Jul-22-11\",\"primaryTitle\":\"141318\"},{\"title\":\"Email with A-1 Textiles on Jul-25-11\",\"primaryTitle\":\"141322\"},{\"title\":\"Email with A-1 Textiles on Mar-20-12\",\"primaryTitle\":\"141884\"},{\"title\":\"Email with A-1 Textiles on Nov-22-10\",\"primaryTitle\":\"141084\"},{\"title\":\"Email with A-1 Textiles on Oct-17-11\",\"primaryTitle\":\"141451\"},{\"title\":\"Email with A-1 Textiles on Oct-24-11\",\"primaryTitle\":\"141465\"},{\"title\":\"Email with AAC Enterprises on Aug-30-08\",\"primaryTitle\":\"23\"},{\"title\":\"Email with AAC Enterprises on Feb-15-09\",\"primaryTitle\":\"116\"},{\"title\":\"Email with AAC Enterprises on Jan-23-09\",\"primaryTitle\":\"91\"},{\"title\":\"Email with AAC Enterprises on Jun-01-09\",\"primaryTitle\":\"229\"},{\"title\":\"Email with AAC Enterprises on Jun-19-10\",\"primaryTitle\":\"2611\"},{\"title\":\"Email with AAC Enterprises on Jun-27-10\",\"primaryTitle\":\"2729\"},{\"title\":\"Email with AAC Enterprises on Mar-11-10\",\"primaryTitle\":\"1233\"},{\"title\":\"Email with AAC Enterprises on Mar-30-10\",\"primaryTitle\":\"1429\"},{\"title\":\"Email with AAC Enterprises on May-12-10\",\"primaryTitle\":\"1958\"},{\"title\":\"Email with AAC Enterprises on Sep-13-08\",\"primaryTitle\":\"28\"},{\"title\":\"Email with Aaron Oil Company on Apr-13-09\",\"primaryTitle\":\"161\"},{\"title\":\"Email with Aaron Oil Company on Dec-09-08\",\"primaryTitle\":\"61\"},{\"title\":\"Email with Aaron Oil Company on Dec-29-09\",\"primaryTitle\":\"770\"},{\"title\":\"Email with Aaron Oil Company on Jan-28-10\",\"primaryTitle\":\"944\"},{\"title\":\"Email with Aaron Oil Company on Jul-24-09\",\"primaryTitle\":\"318\"},{\"title\":\"Email with Aaron Oil Company on Jul-27-09\",\"primaryTitle\":\"328\"},{\"title\":\"Email with Aaron Oil Company on Jul-27-10\",\"primaryTitle\":\"3408\"},{\"title\":\"Email with Aaron Oil Company on Jun-26-10\",\"primaryTitle\":\"2704\"},{\"title\":\"Email with Aaron Oil Company on Mar-14-10\",\"primaryTitle\":\"1265\"},{\"title\":\"Email with Aaron Oil Company on Oct-14-09\",\"primaryTitle\":\"511\"},{\"title\":\"Email with Aaron's on Aug-27-12\",\"primaryTitle\":\"146792\"},{\"title\":\"Email with Aaron's on Jul-02-12\",\"primaryTitle\":\"146463\"},{\"title\":\"Email with Aaron's on Jul-13-12\",\"primaryTitle\":\"146540\"},{\"title\":\"Email with Aaron's on Jul-18-12\",\"primaryTitle\":\"146588\"},{\"title\":\"Email with Aaron's on May-04-12\",\"primaryTitle\":\"146027\"},{\"title\":\"Email with Aaron's on May-05-12\",\"primaryTitle\":\"146030\"},{\"title\":\"Email with Aaron's on May-10-12\",\"primaryTitle\":\"146072\"},{\"title\":\"Email with Aaron's on May-13-12\",\"primaryTitle\":\"146094\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Dec-11-08\",\"primaryTitle\":\"63\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Dec-30-09\",\"primaryTitle\":\"774\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Feb-05-11\",\"primaryTitle\":\"7161\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Feb-22-11\",\"primaryTitle\":\"7487\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Mar-06-10\",\"primaryTitle\":\"1185\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Oct-22-10\",\"primaryTitle\":\"5139\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Sep-13-09\",\"primaryTitle\":\"435\"},{\"title\":\"Email with Aaron's Sales and Lease Ownership on Sep-26-10\",\"primaryTitle\":\"4616\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-10-11\",\"primaryTitle\":\"149223\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-15-08\",\"primaryTitle\":\"19\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Aug-21-10\",\"primaryTitle\":\"149141\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Dec-14-08\",\"primaryTitle\":\"67\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Feb-04-09\",\"primaryTitle\":\"104\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Feb-10-09\",\"primaryTitle\":\"149121\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jan-03-12\",\"primaryTitle\":\"149272\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jul-05-11\",\"primaryTitle\":\"149218\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Jul-17-10\",\"primaryTitle\":\"3163\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Mar-14-09\",\"primaryTitle\":\"133\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on May-07-11\",\"primaryTitle\":\"8866\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on May-10-10\",\"primaryTitle\":\"1915\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Nov-27-10\",\"primaryTitle\":\"149179\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Oct-04-09\",\"primaryTitle\":\"480\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Sep-14-09\",\"primaryTitle\":\"149127\"},{\"title\":\"Email with Aaron's Sales & Lease Ownership on Sep-29-08\",\"primaryTitle\":\"149120\"},{\"title\":\"Email with AArrow Advertising on Apr-13-11\",\"primaryTitle\":\"145108\"},{\"title\":\"Email with AArrow Advertising on Aug-05-09\",\"primaryTitle\":\"151102\"},{\"title\":\"Email with AArrow Advertising on Aug-19-11\",\"primaryTitle\":\"145206\"},{\"title\":\"Email with AArrow Advertising on Dec-14-08\",\"primaryTitle\":\"144928\"},{\"title\":\"Email with AArrow Advertising on Dec-29-09\",\"primaryTitle\":\"151122\"},{\"title\":\"Email with AArrow Advertising on Jan-18-10\",\"primaryTitle\":\"144935\"},{\"title\":\"Email with AArrow Advertising on Jan-31-11\",\"primaryTitle\":\"151331\"},{\"title\":\"Email with AArrow Advertising on Jul-11-09\",\"primaryTitle\":\"144929\"},{\"title\":\"Email with AArrow Advertising on Jul-31-09\",\"primaryTitle\":\"151101\"},{\"title\":\"Email with AArrow Advertising on Jun-14-12\",\"primaryTitle\":\"146339\"},{\"title\":\"Email with AArrow Advertising on Jun-25-09\",\"primaryTitle\":\"151094\"},{\"title\":\"Email with AArrow Advertising on Mar-24-12\",\"primaryTitle\":\"145754\"},{\"title\":\"Email with AArrow Advertising on Oct-05-09\",\"primaryTitle\":\"151110\"},{\"title\":\"Email with AArrow Advertising on Oct-18-10\",\"primaryTitle\":\"151269\"},{\"title\":\"Email with AArrow Advertising on Oct-31-12\",\"primaryTitle\":\"146900\"},{\"title\":\"Email with AArrow Advertising on Sep-02-10\",\"primaryTitle\":\"151240\"},{\"title\":\"Email with Aasent Mortgage Corporation on Aug-08-09\",\"primaryTitle\":\"350\"},{\"title\":\"Email with Aasent Mortgage Corporation on Feb-10-11\",\"primaryTitle\":\"7242\"},{\"title\":\"Email with Aasent Mortgage Corporation on Feb-26-11\",\"primaryTitle\":\"7581\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-09-11\",\"primaryTitle\":\"6724\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-31-10\",\"primaryTitle\":\"964\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jan-31-10\",\"primaryTitle\":\"973\"},{\"title\":\"Email with Aasent Mortgage Corporation on Jul-30-09\",\"primaryTitle\":\"331\"},{\"title\":\"Email with Aasent Mortgage Corporation on Mar-31-10\",\"primaryTitle\":\"1445\"},{\"title\":\"Email with Aasent Mortgage Corporation on Nov-21-09\",\"primaryTitle\":\"623\"},{\"title\":\"Email with Aasent Mortgage Corporation on Oct-05-10\",\"primaryTitle\":\"4804\"},{\"title\":\"Email with Abacus Plumbing on Dec-29-08\",\"primaryTitle\":\"76\"},{\"title\":\"Email with Abacus Plumbing on Jul-01-09\",\"primaryTitle\":\"270\"},{\"title\":\"Email with Abacus Plumbing on Jul-02-10\",\"primaryTitle\":\"2822\"},{\"title\":\"Email with Abacus Plumbing on Jun-28-10\",\"primaryTitle\":\"2757\"},{\"title\":\"Email with Abacus Plumbing on Mar-06-10\",\"primaryTitle\":\"1190\"},{\"title\":\"Email with Abacus Plumbing on Mar-11-09\",\"primaryTitle\":\"131\"},{\"title\":\"Email with Abacus Plumbing on May-06-09\",\"primaryTitle\":\"194\"},{\"title\":\"Email with Abacus Plumbing on Oct-13-09\",\"primaryTitle\":\"507\"},{\"title\":\"Email with Abacus Solutions Group on Aug-17-10\",\"primaryTitle\":\"3857\"},{\"title\":\"Email with Abacus Solutions Group on Feb-17-09\",\"primaryTitle\":\"118\"},{\"title\":\"Email with Abacus Solutions Group on Jan-19-10\",\"primaryTitle\":\"887\"},{\"title\":\"Email with Abacus Solutions Group on Jul-08-09\",\"primaryTitle\":\"282\"},{\"title\":\"Email with Abacus Solutions Group on Mar-30-10\",\"primaryTitle\":\"1430\"},{\"title\":\"Email with Abacus Solutions Group on May-01-12\",\"primaryTitle\":\"14846\"},{\"title\":\"Email with Abacus Solutions Group on May-02-12\",\"primaryTitle\":\"14851\"},{\"title\":\"Email with Abacus Solutions Group on May-02-12\",\"primaryTitle\":\"14857\"},{\"title\":\"Email with Abacus Solutions Group on May-06-12\",\"primaryTitle\":\"14870\"},{\"title\":\"Email with Abacus Solutions Group on May-07-12\",\"primaryTitle\":\"14876\"},{\"title\":\"Email with Abacus Solutions Group on May-08-12\",\"primaryTitle\":\"14881\"},{\"title\":\"Email with Abacus Solutions Group on May-13-12\",\"primaryTitle\":\"14894\"},{\"title\":\"Email with Abacus Solutions Group on May-15-12\",\"primaryTitle\":\"14898\"},{\"title\":\"Email with Abacus Solutions Group on May-17-09\",\"primaryTitle\":\"207\"},{\"title\":\"Email with Abacus Solutions Group on May-17-12\",\"primaryTitle\":\"14903\"},{\"title\":\"Email with Abacus Solutions Group on May-22-12\",\"primaryTitle\":\"14908\"},{\"title\":\"Email with Abacus Solutions Group on Nov-15-09\",\"primaryTitle\":\"602\"},{\"title\":\"Email with Abacus Solutions Group on Oct-24-09\",\"primaryTitle\":\"538\"},{\"title\":\"Email with ABBTech Staffing Services on Aug-25-10\",\"primaryTitle\":\"149142\"},{\"title\":\"Email with ABBTech Staffing Services on Jun-01-09\",\"primaryTitle\":\"149124\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-08-10\",\"primaryTitle\":\"149131\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-13-09\",\"primaryTitle\":\"149122\"},{\"title\":\"Email with ABBTech Staffing Services on May-09-12\",\"primaryTitle\":\"149498\"},{\"title\":\"Email with ABBTech Staffing Services on May-31-11\",\"primaryTitle\":\"149211\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-13-11\",\"primaryTitle\":\"149231\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-30-09\",\"primaryTitle\":\"149129\"},{\"title\":\"Email with ABCOMRents.com on Dec-28-08\",\"primaryTitle\":\"75\"},{\"title\":\"Email with ABCOMRents.com on Feb-16-10\",\"primaryTitle\":\"1077\"},{\"title\":\"Email with ABCOMRents.com on Jan-10-09\",\"primaryTitle\":\"85\"},{\"title\":\"Email with ABCOMRents.com on Jul-29-10\",\"primaryTitle\":\"3449\"},{\"title\":\"Email with ABCOMRents.com on Jun-17-10\",\"primaryTitle\":\"2562\"},{\"title\":\"Email with ABCOMRents.com on Sep-18-10\",\"primaryTitle\":\"4443\"},{\"title\":\"Email with ABCOMRents.com on Sep-27-09\",\"primaryTitle\":\"462\"},{\"title\":\"Email with ABCOMRents.com on Sep-28-09\",\"primaryTitle\":\"465\"},{\"title\":\"Email with ABC Security Service on Apr-25-09\",\"primaryTitle\":\"177\"},{\"title\":\"Email with ABC Security Service on Jan-13-09\",\"primaryTitle\":\"86\"},{\"title\":\"Email with ABC Security Service on Jan-25-11\",\"primaryTitle\":\"6982\"},{\"title\":\"Email with ABC Security Service on Jul-22-11\",\"primaryTitle\":\"10323\"},{\"title\":\"Email with ABC Security Service on Mar-23-09\",\"primaryTitle\":\"143\"},{\"title\":\"Email with ABC Security Service on Nov-08-11\",\"primaryTitle\":\"147003\"},{\"title\":\"Email with ABC Security Service on Nov-15-11\",\"primaryTitle\":\"147021\"},{\"title\":\"Email with ABC Security Service on Nov-16-08\",\"primaryTitle\":\"50\"},{\"title\":\"Email with ABC Security Service on Nov-18-08\",\"primaryTitle\":\"54\"},{\"title\":\"Email with ABC Security Service on Nov-18-11\",\"primaryTitle\":\"147006\"},{\"title\":\"Email with ABC Security Service on Nov-20-11\",\"primaryTitle\":\"147015\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147000\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147009\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147018\"},{\"title\":\"Email with ABC Security Service on Oct-30-11\",\"primaryTitle\":\"147012\"},{\"title\":\"Email with ABC Security Service on Sep-10-10\",\"primaryTitle\":\"4302\"},{\"title\":\"Email with A.B. Data on Apr-04-12\",\"primaryTitle\":\"151865\"},{\"title\":\"Email with A.B. Data on Aug-02-12\",\"primaryTitle\":\"146674\"},{\"title\":\"Email with A.B. Data on Aug-05-12\",\"primaryTitle\":\"146689\"},{\"title\":\"Email with A.B. Data on Dec-31-12\",\"primaryTitle\":\"152606\"},{\"title\":\"Email with A.B. Data on Feb-23-10\",\"primaryTitle\":\"151136\"},{\"title\":\"Email with A.B. Data on Jan-12-11\",\"primaryTitle\":\"151317\"},{\"title\":\"Email with A.B. Data on Jul-14-12\",\"primaryTitle\":\"146548\"},{\"title\":\"Email with A.B. Data on Jul-18-09\",\"primaryTitle\":\"151099\"},{\"title\":\"Email with A.B. Data on Jun-08-12\",\"primaryTitle\":\"146295\"},{\"title\":\"Email with A.B. Data on Jun-10-12\",\"primaryTitle\":\"152166\"},{\"title\":\"Email with A.B. Data on Jun-23-12\",\"primaryTitle\":\"152239\"},{\"title\":\"Email with A.B. Data on Jun-26-12\",\"primaryTitle\":\"146425\"},{\"title\":\"Email with A.B. Data on Mar-24-13\",\"primaryTitle\":\"152630\"},{\"title\":\"Email with A.B. Data on May-20-12\",\"primaryTitle\":\"146151\"},{\"title\":\"Email with A.B. Data on May-22-12\",\"primaryTitle\":\"146168\"},{\"title\":\"Email with A.B. Data on May-28-12\",\"primaryTitle\":\"146217\"},{\"title\":\"Email with Able Equipment Rental on Apr-17-10\",\"primaryTitle\":\"1621\"},{\"title\":\"Email with Able Equipment Rental on Feb-06-09\",\"primaryTitle\":\"106\"},{\"title\":\"Email with Able Equipment Rental on Feb-13-09\",\"primaryTitle\":\"114\"},{\"title\":\"Email with Able Equipment Rental on Feb-19-09\",\"primaryTitle\":\"120\"},{\"title\":\"Email with Able Equipment Rental on Jun-12-10\",\"primaryTitle\":\"2478\"},{\"title\":\"Email with Able Equipment Rental on Jun-29-09\",\"primaryTitle\":\"265\"},{\"title\":\"Email with Able Equipment Rental on Mar-22-10\",\"primaryTitle\":\"1345\"},{\"title\":\"Email with Able Equipment Rental on Sep-30-09\",\"primaryTitle\":\"471\"},{\"title\":\"Email with Able Patrol and Guard on Aug-05-10\",\"primaryTitle\":\"3602\"},{\"title\":\"Email with Able Patrol and Guard on Dec-30-08\",\"primaryTitle\":\"80\"},{\"title\":\"Email with Able Patrol and Guard on Dec-30-08\",\"primaryTitle\":\"79\"},{\"title\":\"Email with Able Patrol and Guard on Feb-06-10\",\"primaryTitle\":\"1011\"},{\"title\":\"Email with Able Patrol and Guard on Jan-10-09\",\"primaryTitle\":\"84\"},{\"title\":\"Email with Able Patrol and Guard on Jun-05-10\",\"primaryTitle\":\"2367\"},{\"title\":\"Email with Able Patrol and Guard on Sep-10-09\",\"primaryTitle\":\"424\"},{\"title\":\"Email with Able Patrol and Guard on Sep-17-09\",\"primaryTitle\":\"443\"},{\"title\":\"Email with Abraxas on Aug-03-10\",\"primaryTitle\":\"3554\"},{\"title\":\"Email with Abraxas on Aug-07-09\",\"primaryTitle\":\"348\"},{\"title\":\"Email with Abraxas on Dec-23-09\",\"primaryTitle\":\"742\"},{\"title\":\"Email with Abraxas on Dec-29-09\",\"primaryTitle\":\"764\"},{\"title\":\"Email with Abraxas on Feb-23-10\",\"primaryTitle\":\"1117\"},{\"title\":\"Email with Abraxas on Jun-26-10\",\"primaryTitle\":\"2713\"},{\"title\":\"Email with Abraxas on Nov-09-09\",\"primaryTitle\":\"582\"},{\"title\":\"Email with Abraxas on Sep-16-10\",\"primaryTitle\":\"4409\"},{\"title\":\"Email with Absolute Concrete Construction on May-11-11\",\"primaryTitle\":\"39146\"},{\"title\":\"Email with Absolute Concrete Construction on Nov-03-10\",\"primaryTitle\":\"32778\"},{\"title\":\"Email with Abstract Displays on Jun-15-09\",\"primaryTitle\":\"248\"},{\"title\":\"Email with Abstract Displays on Mar-01-09\",\"primaryTitle\":\"124\"},{\"title\":\"Email with Abstract Displays on Mar-03-09\",\"primaryTitle\":\"126\"},{\"title\":\"Email with Abstract Displays on Mar-15-09\",\"primaryTitle\":\"134\"},{\"title\":\"Email with Abstract Displays on Mar-23-09\",\"primaryTitle\":\"142\"},{\"title\":\"Email with Abstract Displays on May-01-09\",\"primaryTitle\":\"184\"},{\"title\":\"Email with Abstract Displays on Nov-17-09\",\"primaryTitle\":\"612\"},{\"title\":\"Email with Abstract Displays on Oct-29-08\",\"primaryTitle\":\"47\"},{\"title\":\"Email with AcademixDirect on Apr-06-09\",\"primaryTitle\":\"154\"},{\"title\":\"Email with AcademixDirect on Apr-13-09\",\"primaryTitle\":\"162\"},{\"title\":\"Email with AcademixDirect on Apr-20-09\",\"primaryTitle\":\"168\"},{\"title\":\"Email with AcademixDirect on Apr-22-09\",\"primaryTitle\":\"170\"},{\"title\":\"Email with AcademixDirect on Dec-08-09\",\"primaryTitle\":\"690\"},{\"title\":\"Email with AcademixDirect on Dec-12-09\",\"primaryTitle\":\"708\"},{\"title\":\"Email with AcademixDirect on Feb-12-09\",\"primaryTitle\":\"113\"},{\"title\":\"Email with AcademixDirect on Feb-25-10\",\"primaryTitle\":\"1132\"},{\"title\":\"Email with AcademixDirect on Jan-20-10\",\"primaryTitle\":\"894\"},{\"title\":\"Email with AcademixDirect on Jul-14-09\",\"primaryTitle\":\"295\"},{\"title\":\"Email with AcademixDirect on Jul-21-09\",\"primaryTitle\":\"311\"},{\"title\":\"Email with AcademixDirect on Jun-07-10\",\"primaryTitle\":\"2385\"},{\"title\":\"Email with AcademixDirect on Mar-02-09\",\"primaryTitle\":\"125\"},{\"title\":\"Email with AcademixDirect on Mar-13-10\",\"primaryTitle\":\"1260\"},{\"title\":\"Email with AcademixDirect on May-30-09\",\"primaryTitle\":\"226\"},{\"title\":\"Email with AcademixDirect on Sep-18-09\",\"primaryTitle\":\"445\"}],\"paging\":{\"total\":10000,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"a84dd2d47943244b81b62777d31814bc\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},\"elements\":[{\"title\":\"Email with (add)ventures on Apr-02-08\",\"primaryTitle\":\"2\"},{\"title\":\"Email with (add)ventures on Jul-03-10\",\"primaryTitle\":\"2832\"},{\"title\":\"Email with (add)ventures on Jul-12-09\",\"primaryTitle\":\"291\"},{\"title\":\"Email with (add)ventures on Jul-21-09\",\"primaryTitle\":\"309\"},{\"title\":\"Email with (add)ventures on Jun-26-10\",\"primaryTitle\":\"2719\"},{\"title\":\"Email with (add)ventures on Mar-23-08\",\"primaryTitle\":\"1\"},{\"title\":\"Email with (add)ventures on Oct-06-09\",\"primaryTitle\":\"487\"},{\"title\":\"Email with (add)ventures on Oct-27-08\",\"primaryTitle\":\"45\"},{\"title\":\"Email with (mt) Media Temple on Apr-22-10\",\"primaryTitle\":\"1677\"},{\"title\":\"Email with (mt) Media Temple on Aug-01-10\",\"primaryTitle\":\"3531\"},{\"title\":\"Email with (mt) Media Temple on Feb-04-09\",\"primaryTitle\":\"105\"},{\"title\":\"Email with (mt) Media Temple on Jan-12-10\",\"primaryTitle\":\"848\"},{\"title\":\"Email with (mt) Media Temple on Jan-17-09\",\"primaryTitle\":\"89\"},{\"title\":\"Email with (mt) Media Temple on Mar-26-09\",\"primaryTitle\":\"146\"},{\"title\":\"Email with (mt) Media Temple on May-26-10\",\"primaryTitle\":\"2191\"},{\"title\":\"Email with (mt) Media Temple on Nov-28-08\",\"primaryTitle\":\"56\"},{\"title\":\"Email with .decimal on Aug-20-08\",\"primaryTitle\":\"20\"},{\"title\":\"Email with .decimal on Aug-30-08\",\"primaryTitle\":\"24\"},{\"title\":\"Email with .decimal on Dec-07-08\",\"primaryTitle\":\"58\"},{\"title\":\"Email with .decimal on Dec-09-09\",\"primaryTitle\":\"694\"},{\"title\":\"Email with .decimal on Jan-20-10\",\"primaryTitle\":\"892\"},{\"title\":\"Email with .decimal on May-25-10\",\"primaryTitle\":\"2176\"},{\"title\":\"Email with .decimal on Nov-14-09\",\"primaryTitle\":\"600\"},{\"title\":\"Email with .decimal on Oct-12-09\",\"primaryTitle\":\"505\"},{\"title\":\"Email with 1 Source Consulting on Apr-27-08\",\"primaryTitle\":\"5\"},{\"title\":\"Email with 1 Source Consulting on Apr-29-10\",\"primaryTitle\":\"1758\"},{\"title\":\"Email with 1 Source Consulting on Dec-17-09\",\"primaryTitle\":\"729\"},{\"title\":\"Email with 1 Source Consulting on Feb-03-10\",\"primaryTitle\":\"987\"},{\"title\":\"Email with 1 Source Consulting on Jan-08-10\",\"primaryTitle\":\"832\"},{\"title\":\"Email with 1 Source Consulting on Jan-11-10\",\"primaryTitle\":\"844\"},{\"title\":\"Email with 1 Source Consulting on Jan-21-10\",\"primaryTitle\":\"898\"},{\"title\":\"Email with 1 Source Consulting on Jan-26-09\",\"primaryTitle\":\"95\"},{\"title\":\"Email with 1 Source Consulting on Jan-27-09\",\"primaryTitle\":\"98\"},{\"title\":\"Email with 1 Source Consulting on Jul-11-09\",\"primaryTitle\":\"287\"},{\"title\":\"Email with 1 Source Consulting on Jul-16-08\",\"primaryTitle\":\"11\"},{\"title\":\"Email with 1 Source Consulting on Mar-06-10\",\"primaryTitle\":\"1191\"},{\"title\":\"Email with 1 Source Consulting on Nov-01-09\",\"primaryTitle\":\"558\"},{\"title\":\"Email with 1 Source Consulting on Nov-22-09\",\"primaryTitle\":\"625\"},{\"title\":\"Email with 1 Source Consulting on Oct-07-08\",\"primaryTitle\":\"38\"},{\"title\":\"Email with 1 Source Consulting on Oct-08-08\",\"primaryTitle\":\"39\"},{\"title\":\"Email with 1-800 Postcards on Dec-06-10\",\"primaryTitle\":\"34000\"},{\"title\":\"Email with 1-800 Postcards on Dec-21-10\",\"primaryTitle\":\"34432\"},{\"title\":\"Email with 1-800 Postcards on Feb-14-11\",\"primaryTitle\":\"36297\"},{\"title\":\"Email with 1-800 Postcards on Feb-23-11\",\"primaryTitle\":\"36588\"},{\"title\":\"Email with 1-800 Postcards on Jun-09-11\",\"primaryTitle\":\"40060\"},{\"title\":\"Email with 1-800 Postcards on Oct-26-10\",\"primaryTitle\":\"32516\"},{\"title\":\"Email with 1-800 We Answer on Apr-13-09\",\"primaryTitle\":\"151091\"},{\"title\":\"Email with 1-800 We Answer on Feb-11-10\",\"primaryTitle\":\"151131\"},{\"title\":\"Email with 1-800 We Answer on Jul-14-09\",\"primaryTitle\":\"151097\"},{\"title\":\"Email with 1-800 We Answer on Mar-09-09\",\"primaryTitle\":\"151090\"},{\"title\":\"Email with 1-800 We Answer on Oct-02-09\",\"primaryTitle\":\"151109\"},{\"title\":\"Email with 1-800 We Answer on Oct-04-10\",\"primaryTitle\":\"151259\"},{\"title\":\"Email with 1-800 We Answer on Oct-17-08\",\"primaryTitle\":\"151088\"},{\"title\":\"Email with 1-800 We Answer on Oct-23-09\",\"primaryTitle\":\"151114\"},{\"title\":\"Email with 1-888-OhioComp on Aug-20-09\",\"primaryTitle\":\"140982\"},{\"title\":\"Email with 1-888-OhioComp on Dec-10-12\",\"primaryTitle\":\"142916\"},{\"title\":\"Email with 1-888-OhioComp on Jul-25-12\",\"primaryTitle\":\"142705\"},{\"title\":\"Email with 1-888-OhioComp on Jun-11-12\",\"primaryTitle\":\"142451\"},{\"title\":\"Email with 1-888-OhioComp on Mar-04-10\",\"primaryTitle\":\"140994\"},{\"title\":\"Email with 1-888-OhioComp on Oct-13-09\",\"primaryTitle\":\"140985\"},{\"title\":\"Email with 1-888-OhioComp on Sep-04-08\",\"primaryTitle\":\"140976\"},{\"title\":\"Email with 1-888-OhioComp on Sep-25-12\",\"primaryTitle\":\"142870\"},{\"title\":\"Email with 1000Bulbs.com on Apr-21-08\",\"primaryTitle\":\"4\"},{\"title\":\"Email with 1000Bulbs.com on Dec-14-09\",\"primaryTitle\":\"715\"},{\"title\":\"Email with 1000Bulbs.com on Dec-29-08\",\"primaryTitle\":\"77\"},{\"title\":\"Email with 1000Bulbs.com on Feb-10-09\",\"primaryTitle\":\"111\"},{\"title\":\"Email with 1000Bulbs.com on Jan-06-10\",\"primaryTitle\":\"817\"},{\"title\":\"Email with 1000Bulbs.com on Jan-29-09\",\"primaryTitle\":\"99\"},{\"title\":\"Email with 1000Bulbs.com on Jul-03-08\",\"primaryTitle\":\"9\"},{\"title\":\"Email with 1000Bulbs.com on Jul-06-10\",\"primaryTitle\":\"2884\"},{\"title\":\"Email with 1000Bulbs.com on Jul-24-10\",\"primaryTitle\":\"3338\"},{\"title\":\"Email with 1000Bulbs.com on Jun-01-10\",\"primaryTitle\":\"2293\"},{\"title\":\"Email with 1000Bulbs.com on Mar-08-10\",\"primaryTitle\":\"1206\"},{\"title\":\"Email with 1000Bulbs.com on May-23-10\",\"primaryTitle\":\"2138\"},{\"title\":\"Email with 1000Bulbs.com on May-28-09\",\"primaryTitle\":\"223\"},{\"title\":\"Email with 1000Bulbs.com on Oct-15-08\",\"primaryTitle\":\"42\"},{\"title\":\"Email with 1000Bulbs.com on Sep-13-08\",\"primaryTitle\":\"31\"},{\"title\":\"Email with 1000Bulbs.com on Sep-17-08\",\"primaryTitle\":\"32\"},{\"title\":\"Email with 101 Financial on Apr-20-10\",\"primaryTitle\":\"1651\"},{\"title\":\"Email with 101 Financial on Aug-16-08\",\"primaryTitle\":\"150353\"},{\"title\":\"Email with 101 Financial on Dec-08-08\",\"primaryTitle\":\"60\"},{\"title\":\"Email with 101 Financial on Dec-18-09\",\"primaryTitle\":\"150359\"},{\"title\":\"Email with 101 Financial on Feb-02-09\",\"primaryTitle\":\"150355\"},{\"title\":\"Email with 101 Financial on Jun-15-08\",\"primaryTitle\":\"150352\"},{\"title\":\"Email with 101 Financial on Mar-11-09\",\"primaryTitle\":\"132\"},{\"title\":\"Email with 101 Financial on Mar-15-09\",\"primaryTitle\":\"135\"},{\"title\":\"Email with 101 Financial on Mar-17-11\",\"primaryTitle\":\"150388\"},{\"title\":\"Email with 101 Financial on Mar-28-11\",\"primaryTitle\":\"150389\"},{\"title\":\"Email with 101 Financial on May-01-10\",\"primaryTitle\":\"1800\"},{\"title\":\"Email with 101 Financial on May-24-09\",\"primaryTitle\":\"217\"},{\"title\":\"Email with 101 Financial on Nov-15-09\",\"primaryTitle\":\"150358\"},{\"title\":\"Email with 101 Financial on Nov-16-08\",\"primaryTitle\":\"51\"},{\"title\":\"Email with 101 Financial on Oct-01-09\",\"primaryTitle\":\"472\"},{\"title\":\"Email with 101 Financial on Oct-15-08\",\"primaryTitle\":\"150354\"},{\"title\":\"Email with 123 Exteriors on Apr-07-10\",\"primaryTitle\":\"1518\"},{\"title\":\"Email with 123 Exteriors on Dec-13-08\",\"primaryTitle\":\"66\"},{\"title\":\"Email with 123 Exteriors on Jul-18-09\",\"primaryTitle\":\"304\"},{\"title\":\"Email with 123 Exteriors on Jul-26-09\",\"primaryTitle\":\"325\"},{\"title\":\"Email with 123 Exteriors on Jul-28-08\",\"primaryTitle\":\"16\"},{\"title\":\"Email with 123 Exteriors on Jun-22-08\",\"primaryTitle\":\"8\"},{\"title\":\"Email with 123 Exteriors on Nov-13-09\",\"primaryTitle\":\"595\"},{\"title\":\"Email with 123 Exteriors on Oct-06-09\",\"primaryTitle\":\"486\"},{\"title\":\"Email with 1Source International on Apr-03-09\",\"primaryTitle\":\"153\"},{\"title\":\"Email with 1Source International on Apr-23-10\",\"primaryTitle\":\"1689\"},{\"title\":\"Email with 1Source International on Dec-23-09\",\"primaryTitle\":\"740\"},{\"title\":\"Email with 1Source International on Jul-13-08\",\"primaryTitle\":\"10\"},{\"title\":\"Email with 1Source International on Jul-23-09\",\"primaryTitle\":\"317\"},{\"title\":\"Email with 1Source International on Mar-17-09\",\"primaryTitle\":\"137\"},{\"title\":\"Email with 1Source International on May-23-09\",\"primaryTitle\":\"216\"},{\"title\":\"Email with 1Source International on Nov-20-08\",\"primaryTitle\":\"55\"},{\"title\":\"Email with 1Source International on Oct-06-08\",\"primaryTitle\":\"37\"},{\"title\":\"Email with 1Source International on Sep-01-10\",\"primaryTitle\":\"4153\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-22-09\",\"primaryTitle\":\"90\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jan-24-09\",\"primaryTitle\":\"92\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-09-09\",\"primaryTitle\":\"283\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Jul-23-09\",\"primaryTitle\":\"316\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-05-09\",\"primaryTitle\":\"128\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-14-10\",\"primaryTitle\":\"1266\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-23-09\",\"primaryTitle\":\"144\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Mar-30-10\",\"primaryTitle\":\"1427\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Nov-05-09\",\"primaryTitle\":\"567\"},{\"title\":\"Email with 1st Choice Staffing & Consulting on Sep-27-10\",\"primaryTitle\":\"4653\"},{\"title\":\"Email with 2 Wheel Bikes on Dec-01-10\",\"primaryTitle\":\"33859\"},{\"title\":\"Email with 2 Wheel Bikes on Oct-10-10\",\"primaryTitle\":\"32066\"},{\"title\":\"Email with 2HB Software Designs on Apr-03-09\",\"primaryTitle\":\"152\"},{\"title\":\"Email with 2HB Software Designs on Apr-17-09\",\"primaryTitle\":\"165\"},{\"title\":\"Email with 2HB Software Designs on Apr-25-10\",\"primaryTitle\":\"1714\"},{\"title\":\"Email with 2HB Software Designs on Dec-07-08\",\"primaryTitle\":\"59\"},{\"title\":\"Email with 2HB Software Designs on Dec-30-08\",\"primaryTitle\":\"78\"},{\"title\":\"Email with 2HB Software Designs on Feb-24-10\",\"primaryTitle\":\"1124\"},{\"title\":\"Email with 2HB Software Designs on Jun-05-09\",\"primaryTitle\":\"236\"},{\"title\":\"Email with 2HB Software Designs on Jun-06-10\",\"primaryTitle\":\"2378\"},{\"title\":\"Email with 2HB Software Designs on Sep-16-09\",\"primaryTitle\":\"438\"},{\"title\":\"Email with 2HB Software Designs on Sep-26-08\",\"primaryTitle\":\"34\"},{\"title\":\"Email with 352 Media Group on Aug-29-09\",\"primaryTitle\":\"139608\"},{\"title\":\"Email with 352 Media Group on Dec-19-10\",\"primaryTitle\":\"139628\"},{\"title\":\"Email with 352 Media Group on Feb-27-11\",\"primaryTitle\":\"139644\"},{\"title\":\"Email with 352 Media Group on Mar-26-11\",\"primaryTitle\":\"139648\"},{\"title\":\"Email with 352 Media Group on Nov-17-11\",\"primaryTitle\":\"139754\"},{\"title\":\"Email with 352 Media Group on Oct-08-08\",\"primaryTitle\":\"139603\"},{\"title\":\"Email with 352 Media Group on Sep-02-08\",\"primaryTitle\":\"139601\"},{\"title\":\"Email with 352 Media Group on Sep-14-08\",\"primaryTitle\":\"139602\"},{\"title\":\"Email with 3Degrees on Aug-20-09\",\"primaryTitle\":\"376\"},{\"title\":\"Email with 3Degrees on Aug-27-10\",\"primaryTitle\":\"4041\"},{\"title\":\"Email with 3Degrees on Aug-30-09\",\"primaryTitle\":\"396\"},{\"title\":\"Email with 3Degrees on Dec-05-08\",\"primaryTitle\":\"57\"},{\"title\":\"Email with 3Degrees on Feb-07-09\",\"primaryTitle\":\"108\"},{\"title\":\"Email with 3Degrees on Jul-02-12\",\"primaryTitle\":\"146462\"},{\"title\":\"Email with 3Degrees on Jul-08-12\",\"primaryTitle\":\"146500\"},{\"title\":\"Email with 3Degrees on Jul-10-12\",\"primaryTitle\":\"146524\"},{\"title\":\"Email with 3Degrees on Jul-20-12\",\"primaryTitle\":\"146597\"},{\"title\":\"Email with 3Degrees on Jul-21-12\",\"primaryTitle\":\"146600\"},{\"title\":\"Email with 3Degrees on Jul-30-08\",\"primaryTitle\":\"17\"},{\"title\":\"Email with 3Degrees on Jun-08-12\",\"primaryTitle\":\"146298\"},{\"title\":\"Email with 3Degrees on Jun-10-12\",\"primaryTitle\":\"146310\"},{\"title\":\"Email with 3Degrees on Jun-16-12\",\"primaryTitle\":\"146356\"},{\"title\":\"Email with 3Degrees on May-06-09\",\"primaryTitle\":\"193\"},{\"title\":\"Email with 3Degrees on May-12-10\",\"primaryTitle\":\"1956\"},{\"title\":\"Email with 3E on Aug-18-09\",\"primaryTitle\":\"371\"},{\"title\":\"Email with 3E on Dec-29-09\",\"primaryTitle\":\"765\"},{\"title\":\"Email with 3E on Jan-17-10\",\"primaryTitle\":\"875\"},{\"title\":\"Email with 3E on Jan-27-09\",\"primaryTitle\":\"97\"},{\"title\":\"Email with 3E on Jun-18-10\",\"primaryTitle\":\"2593\"},{\"title\":\"Email with 3E on Jun-24-10\",\"primaryTitle\":\"2675\"},{\"title\":\"Email with 3E on May-28-09\",\"primaryTitle\":\"222\"},{\"title\":\"Email with 3E on Nov-28-10\",\"primaryTitle\":\"5922\"},{\"title\":\"Email with 3balls.com on Aug-22-10\",\"primaryTitle\":\"3957\"},{\"title\":\"Email with 3balls.com on Aug-22-11\",\"primaryTitle\":\"10952\"},{\"title\":\"Email with 3balls.com on Jan-05-10\",\"primaryTitle\":\"813\"},{\"title\":\"Email with 3balls.com on Jan-26-09\",\"primaryTitle\":\"96\"},{\"title\":\"Email with 3balls.com on Jul-14-11\",\"primaryTitle\":\"10146\"},{\"title\":\"Email with 3balls.com on Nov-28-10\",\"primaryTitle\":\"5908\"},{\"title\":\"Email with 3balls.com on Oct-15-10\",\"primaryTitle\":\"4998\"},{\"title\":\"Email with 3balls.com on Sep-09-08\",\"primaryTitle\":\"27\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Dec-05-09\",\"primaryTitle\":\"679\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Feb-10-09\",\"primaryTitle\":\"112\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jan-09-09\",\"primaryTitle\":\"83\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-04-09\",\"primaryTitle\":\"276\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jul-20-08\",\"primaryTitle\":\"12\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Jun-18-09\",\"primaryTitle\":\"252\"},{\"title\":\"Email with 3dCart Shopping Cart Software on May-22-09\",\"primaryTitle\":\"214\"},{\"title\":\"Email with 3dCart Shopping Cart Software on Oct-25-09\",\"primaryTitle\":\"539\"},{\"title\":\"Email with 49er Communications on Dec-11-09\",\"primaryTitle\":\"700\"},{\"title\":\"Email with 49er Communications on Feb-09-09\",\"primaryTitle\":\"110\"},{\"title\":\"Email with 49er Communications on Jan-04-09\",\"primaryTitle\":\"81\"},{\"title\":\"Email with 49er Communications on Jul-02-10\",\"primaryTitle\":\"2825\"},{\"title\":\"Email with 49er Communications on Mar-22-10\",\"primaryTitle\":\"1349\"},{\"title\":\"Email with 49er Communications on May-23-08\",\"primaryTitle\":\"6\"},{\"title\":\"Email with 49er Communications on Oct-01-09\",\"primaryTitle\":\"475\"},{\"title\":\"Email with 49er Communications on Oct-10-09\",\"primaryTitle\":\"498\"},{\"title\":\"Email with 4Wall Entertainment on Apr-11-09\",\"primaryTitle\":\"159\"},{\"title\":\"Email with 4Wall Entertainment on Aug-11-10\",\"primaryTitle\":\"3740\"},{\"title\":\"Email with 4Wall Entertainment on Dec-27-08\",\"primaryTitle\":\"74\"},{\"title\":\"Email with 4Wall Entertainment on Jul-21-08\",\"primaryTitle\":\"13\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-10\",\"primaryTitle\":\"1379\"},{\"title\":\"Email with 4Wall Entertainment on Mar-25-11\",\"primaryTitle\":\"8064\"},{\"title\":\"Email with 4Wall Entertainment on Sep-12-10\",\"primaryTitle\":\"4334\"},{\"title\":\"Email with 4Wall Entertainment on Sep-28-08\",\"primaryTitle\":\"35\"},{\"title\":\"Email with 4th Source on Aug-23-08\",\"primaryTitle\":\"139600\"},{\"title\":\"Email with 4th Source on Aug-27-12\",\"primaryTitle\":\"140249\"},{\"title\":\"Email with 4th Source on Feb-04-10\",\"primaryTitle\":\"139613\"},{\"title\":\"Email with 4th Source on Jan-21-11\",\"primaryTitle\":\"139631\"},{\"title\":\"Email with 4th Source on May-08-12\",\"primaryTitle\":\"140042\"},{\"title\":\"Email with 4th Source on Oct-01-11\",\"primaryTitle\":\"139714\"},{\"title\":\"Email with 4th Source on Oct-29-08\",\"primaryTitle\":\"139604\"},{\"title\":\"Email with 4th Source on Sep-03-10\",\"primaryTitle\":\"139623\"},{\"title\":\"Email with 5LINX Enterprises on Apr-03-12\",\"primaryTitle\":\"139942\"},{\"title\":\"Email with 5LINX Enterprises on Aug-19-09\",\"primaryTitle\":\"139607\"},{\"title\":\"Email with 5LINX Enterprises on Aug-26-10\",\"primaryTitle\":\"139620\"},{\"title\":\"Email with 5LINX Enterprises on Dec-09-09\",\"primaryTitle\":\"139612\"},{\"title\":\"Email with 5LINX Enterprises on Feb-18-12\",\"primaryTitle\":\"139871\"},{\"title\":\"Email with 5LINX Enterprises on Feb-21-10\",\"primaryTitle\":\"139615\"},{\"title\":\"Email with 5LINX Enterprises on Mar-04-11\",\"primaryTitle\":\"139645\"},{\"title\":\"Email with 5LINX Enterprises on Sep-27-09\",\"primaryTitle\":\"139610\"},{\"title\":\"Email with 614 Media Group on Apr-24-11\",\"primaryTitle\":\"38606\"},{\"title\":\"Email with 614 Media Group on Mar-02-11\",\"primaryTitle\":\"36938\"},{\"title\":\"Email with 614 Media Group on Sep-02-10\",\"primaryTitle\":\"31085\"},{\"title\":\"Email with 6K Systems on Aug-15-09\",\"primaryTitle\":\"139606\"},{\"title\":\"Email with 6K Systems on Dec-10-11\",\"primaryTitle\":\"139779\"},{\"title\":\"Email with 6K Systems on Dec-29-11\",\"primaryTitle\":\"139803\"},{\"title\":\"Email with 6K Systems on Feb-03-10\",\"primaryTitle\":\"989\"},{\"title\":\"Email with 6K Systems on Feb-06-10\",\"primaryTitle\":\"139614\"},{\"title\":\"Email with 6K Systems on Jan-15-10\",\"primaryTitle\":\"864\"},{\"title\":\"Email with 6K Systems on Jan-25-09\",\"primaryTitle\":\"94\"},{\"title\":\"Email with 6K Systems on Jul-07-09\",\"primaryTitle\":\"139605\"},{\"title\":\"Email with 6K Systems on Jun-15-12\",\"primaryTitle\":\"140150\"},{\"title\":\"Email with 6K Systems on May-07-09\",\"primaryTitle\":\"196\"},{\"title\":\"Email with 6K Systems on Nov-06-09\",\"primaryTitle\":\"569\"},{\"title\":\"Email with 6K Systems on Nov-25-09\",\"primaryTitle\":\"633\"},{\"title\":\"Email with 6K Systems on Oct-04-09\",\"primaryTitle\":\"477\"},{\"title\":\"Email with 6K Systems on Sep-02-10\",\"primaryTitle\":\"139622\"},{\"title\":\"Email with 6K Systems on Sep-27-09\",\"primaryTitle\":\"139609\"},{\"title\":\"Email with 6K Systems on Sep-29-08\",\"primaryTitle\":\"36\"},{\"title\":\"Email with 7 Medical Systems on Aug-04-09\",\"primaryTitle\":\"343\"},{\"title\":\"Email with 7 Medical Systems on Aug-28-09\",\"primaryTitle\":\"393\"},{\"title\":\"Email with 7 Medical Systems on Jun-21-09\",\"primaryTitle\":\"255\"},{\"title\":\"Email with 7 Medical Systems on Jun-29-09\",\"primaryTitle\":\"266\"},{\"title\":\"Email with 7 Medical Systems on Mar-16-09\",\"primaryTitle\":\"136\"},{\"title\":\"Email with 7 Medical Systems on Mar-29-09\",\"primaryTitle\":\"148\"},{\"title\":\"Email with 7 Medical Systems on May-09-10\",\"primaryTitle\":\"1904\"},{\"title\":\"Email with 7 Medical Systems on May-31-09\",\"primaryTitle\":\"228\"},{\"title\":\"Email with 7 Medical Systems on Oct-14-09\",\"primaryTitle\":\"512\"},{\"title\":\"Email with 7 Medical Systems on Oct-21-08\",\"primaryTitle\":\"43\"},{\"title\":\"Email with 7 Simple Machines on Apr-01-09\",\"primaryTitle\":\"149\"},{\"title\":\"Email with 7 Simple Machines on Jan-10-10\",\"primaryTitle\":\"841\"},{\"title\":\"Email with 7 Simple Machines on Jan-24-10\",\"primaryTitle\":\"922\"},{\"title\":\"Email with 7 Simple Machines on Jul-11-09\",\"primaryTitle\":\"288\"},{\"title\":\"Email with 7 Simple Machines on Jul-12-10\",\"primaryTitle\":\"3015\"},{\"title\":\"Email with 7 Simple Machines on Jul-13-09\",\"primaryTitle\":\"293\"},{\"title\":\"Email with 7 Simple Machines on May-22-10\",\"primaryTitle\":\"2130\"},{\"title\":\"Email with 7 Simple Machines on Nov-02-08\",\"primaryTitle\":\"48\"},{\"title\":\"Email with 7 Simple Machines on Nov-10-10\",\"primaryTitle\":\"5551\"},{\"title\":\"Email with 7 Simple Machines on Nov-13-08\",\"primaryTitle\":\"49\"},{\"title\":\"Email with 7-Eleven on Apr-23-10\",\"primaryTitle\":\"1688\"},{\"title\":\"Email with 7-Eleven on Apr-25-10\",\"primaryTitle\":\"1718\"},{\"title\":\"Email with 7-Eleven on Dec-06-09\",\"primaryTitle\":\"683\"},{\"title\":\"Email with 7-Eleven on Mar-08-12\",\"primaryTitle\":\"14435\"},{\"title\":\"Email with 7-Eleven on Mar-21-09\",\"primaryTitle\":\"140\"},{\"title\":\"Email with 7-Eleven on Nov-16-08\",\"primaryTitle\":\"52\"},{\"title\":\"Email with 7-Eleven on Oct-29-08\",\"primaryTitle\":\"46\"},{\"title\":\"Email with 7-Eleven on Sep-23-09\",\"primaryTitle\":\"451\"},{\"title\":\"Email with 720 Strategies on Apr-10-10\",\"primaryTitle\":\"1545\"},{\"title\":\"Email with 720 Strategies on Aug-22-09\",\"primaryTitle\":\"381\"},{\"title\":\"Email with 720 Strategies on Dec-08-09\",\"primaryTitle\":\"688\"},{\"title\":\"Email with 720 Strategies on Dec-25-08\",\"primaryTitle\":\"73\"},{\"title\":\"Email with 720 Strategies on Jul-03-09\",\"primaryTitle\":\"274\"},{\"title\":\"Email with 720 Strategies on Jun-11-10\",\"primaryTitle\":\"2449\"},{\"title\":\"Email with 720 Strategies on May-11-10\",\"primaryTitle\":\"1930\"},{\"title\":\"Email with 720 Strategies on May-17-09\",\"primaryTitle\":\"204\"},{\"title\":\"Email with 720 Strategies on Oct-26-08\",\"primaryTitle\":\"44\"},{\"title\":\"Email with 720 Strategies on Sep-10-09\",\"primaryTitle\":\"429\"},{\"title\":\"Email with 90octane on Apr-18-10\",\"primaryTitle\":\"151160\"},{\"title\":\"Email with 90octane on Apr-20-10\",\"primaryTitle\":\"151162\"},{\"title\":\"Email with 90octane on Aug-06-09\",\"primaryTitle\":\"151103\"},{\"title\":\"Email with 90octane on Feb-07-09\",\"primaryTitle\":\"151089\"},{\"title\":\"Email with 90octane on Jan-13-11\",\"primaryTitle\":\"151318\"},{\"title\":\"Email with 90octane on May-19-09\",\"primaryTitle\":\"151093\"},{\"title\":\"Email with 90octane on Oct-28-10\",\"primaryTitle\":\"151277\"},{\"title\":\"Email with 90octane on Sep-26-09\",\"primaryTitle\":\"151108\"},{\"title\":\"Email with 919 Marketing on Apr-22-09\",\"primaryTitle\":\"171\"},{\"title\":\"Email with 919 Marketing on Apr-22-10\",\"primaryTitle\":\"1685\"},{\"title\":\"Email with 919 Marketing on Dec-15-08\",\"primaryTitle\":\"68\"},{\"title\":\"Email with 919 Marketing on Feb-28-09\",\"primaryTitle\":\"123\"},{\"title\":\"Email with 919 Marketing on Jul-14-09\",\"primaryTitle\":\"296\"},{\"title\":\"Email with 919 Marketing on Jun-08-09\",\"primaryTitle\":\"239\"},{\"title\":\"Email with 919 Marketing on Jun-17-11\",\"primaryTitle\":\"9632\"},{\"title\":\"Email with 919 Marketing on Jun-20-10\",\"primaryTitle\":\"2626\"},{\"title\":\"Email with 919 Marketing on Jun-23-10\",\"primaryTitle\":\"2652\"},{\"title\":\"Email with 919 Marketing on Jun-27-11\",\"primaryTitle\":\"9817\"},{\"title\":\"Email with 919 Marketing on Mar-18-10\",\"primaryTitle\":\"1302\"},{\"title\":\"Email with 919 Marketing on Mar-21-11\",\"primaryTitle\":\"7998\"},{\"title\":\"Email with 919 Marketing on Mar-30-10\",\"primaryTitle\":\"1437\"},{\"title\":\"Email with 919 Marketing on May-05-09\",\"primaryTitle\":\"191\"},{\"title\":\"Email with 919 Marketing on May-17-09\",\"primaryTitle\":\"205\"},{\"title\":\"Email with 919 Marketing on May-23-10\",\"primaryTitle\":\"2140\"},{\"title\":\"Email with 919 Marketing on May-26-09\",\"primaryTitle\":\"220\"},{\"title\":\"Email with 919 Marketing on Nov-10-11\",\"primaryTitle\":\"12550\"},{\"title\":\"Email with 919 Marketing on Nov-24-09\",\"primaryTitle\":\"629\"},{\"title\":\"Email with 919 Marketing on Sep-21-08\",\"primaryTitle\":\"33\"},{\"title\":\"Email with @properties on Apr-05-08\",\"primaryTitle\":\"3\"},{\"title\":\"Email with @properties on Aug-13-09\",\"primaryTitle\":\"358\"},{\"title\":\"Email with @properties on Aug-25-08\",\"primaryTitle\":\"21\"},{\"title\":\"Email with @properties on Dec-24-08\",\"primaryTitle\":\"70\"},{\"title\":\"Email with @properties on Feb-27-09\",\"primaryTitle\":\"122\"},{\"title\":\"Email with @properties on Jun-09-08\",\"primaryTitle\":\"7\"},{\"title\":\"Email with @properties on Jun-23-10\",\"primaryTitle\":\"2650\"},{\"title\":\"Email with @properties on Nov-25-09\",\"primaryTitle\":\"635\"},{\"title\":\"Email with A Main Hobbies on Apr-03-10\",\"primaryTitle\":\"1481\"},{\"title\":\"Email with A Main Hobbies on Apr-28-11\",\"primaryTitle\":\"8672\"},{\"title\":\"Email with A Main Hobbies on Aug-02-10\",\"primaryTitle\":\"3550\"},{\"title\":\"Email with A Main Hobbies on Aug-07-10\",\"primaryTitle\":\"3651\"},{\"title\":\"Email with A Main Hobbies on Aug-19-09\",\"primaryTitle\":\"374\"},{\"title\":\"Email with A Main Hobbies on Dec-07-09\",\"primaryTitle\":\"686\"},{\"title\":\"Email with A Main Hobbies on Dec-11-09\",\"primaryTitle\":\"703\"},{\"title\":\"Email with A Main Hobbies on Feb-18-09\",\"primaryTitle\":\"119\"},{\"title\":\"Email with A Main Hobbies on Jun-07-09\",\"primaryTitle\":\"238\"},{\"title\":\"Email with A Main Hobbies on Mar-01-10\",\"primaryTitle\":\"1158\"},{\"title\":\"Email with A Main Hobbies on Mar-03-09\",\"primaryTitle\":\"127\"},{\"title\":\"Email with A Main Hobbies on Mar-06-10\",\"primaryTitle\":\"1189\"},{\"title\":\"Email with A Main Hobbies on Nov-01-11\",\"primaryTitle\":\"12376\"},{\"title\":\"Email with A Main Hobbies on Oct-10-08\",\"primaryTitle\":\"40\"},{\"title\":\"Email with A Main Hobbies on Sep-02-09\",\"primaryTitle\":\"402\"},{\"title\":\"Email with A Main Hobbies on Sep-04-11\",\"primaryTitle\":\"11209\"},{\"title\":\"Email with A Main Hobbies on Sep-07-08\",\"primaryTitle\":\"26\"},{\"title\":\"Email with A Main Hobbies on Sep-07-08\",\"primaryTitle\":\"25\"},{\"title\":\"Email with A Main Hobbies on Sep-10-09\",\"primaryTitle\":\"427\"},{\"title\":\"Email with A Main Hobbies on Sep-25-09\",\"primaryTitle\":\"456\"},{\"title\":\"Email with A Place for Mom on Apr-18-12\",\"primaryTitle\":\"142033\"},{\"title\":\"Email with A Place for Mom on Apr-21-12\",\"primaryTitle\":\"142053\"},{\"title\":\"Email with A Place for Mom on Dec-23-08\",\"primaryTitle\":\"69\"},{\"title\":\"Email with A Place for Mom on Jan-31-09\",\"primaryTitle\":\"100\"},{\"title\":\"Email with A Place for Mom on Jul-03-12\",\"primaryTitle\":\"142585\"},{\"title\":\"Email with A Place for Mom on Jul-04-12\",\"primaryTitle\":\"142590\"},{\"title\":\"Email with A Place for Mom on Jul-29-10\",\"primaryTitle\":\"3458\"},{\"title\":\"Email with A Place for Mom on Jul-29-10\",\"primaryTitle\":\"3442\"},{\"title\":\"Email with A Place for Mom on Jun-18-12\",\"primaryTitle\":\"142503\"},{\"title\":\"Email with A Place for Mom on Mar-03-10\",\"primaryTitle\":\"1169\"},{\"title\":\"Email with A Place for Mom on Mar-24-09\",\"primaryTitle\":\"145\"},{\"title\":\"Email with A Place for Mom on May-03-12\",\"primaryTitle\":\"142152\"},{\"title\":\"Email with A Place for Mom on May-15-12\",\"primaryTitle\":\"142263\"},{\"title\":\"Email with A Place for Mom on May-24-12\",\"primaryTitle\":\"142326\"},{\"title\":\"Email with A Place for Mom on Nov-16-08\",\"primaryTitle\":\"53\"},{\"title\":\"Email with A Place for Mom on Oct-26-09\",\"primaryTitle\":\"544\"},{\"title\":\"Email with A Squared Group on Apr-30-09\",\"primaryTitle\":\"181\"},{\"title\":\"Email with A Squared Group on Dec-11-08\",\"primaryTitle\":\"64\"},{\"title\":\"Email with A Squared Group on Jan-06-10\",\"primaryTitle\":\"816\"},{\"title\":\"Email with A Squared Group on Jan-31-09\",\"primaryTitle\":\"101\"},{\"title\":\"Email with A Squared Group on May-22-10\",\"primaryTitle\":\"2117\"},{\"title\":\"Email with A Squared Group on Nov-25-10\",\"primaryTitle\":\"5860\"},{\"title\":\"Email with A Squared Group on Sep-13-08\",\"primaryTitle\":\"29\"},{\"title\":\"Email with A Squared Group on Sep-19-09\",\"primaryTitle\":\"447\"},{\"title\":\"Email with A White Orchid Wedding on Aug-06-10\",\"primaryTitle\":\"30203\"},{\"title\":\"Email with A White Orchid Wedding on Sep-02-10\",\"primaryTitle\":\"31087\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Feb-27-09\",\"primaryTitle\":\"121\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Jan-06-11\",\"primaryTitle\":\"6677\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Jul-03-09\",\"primaryTitle\":\"273\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on May-04-10\",\"primaryTitle\":\"1841\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on May-18-10\",\"primaryTitle\":\"2047\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Nov-23-10\",\"primaryTitle\":\"5815\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Sep-13-08\",\"primaryTitle\":\"30\"},{\"title\":\"Email with A&P Consulting Transportation Engineers on Sep-16-10\",\"primaryTitle\":\"4406\"},{\"title\":\"Email with A&R Tarpaulins on Dec-09-09\",\"primaryTitle\":\"692\"},{\"title\":\"Email with A&R Tarpaulins on Dec-12-08\",\"primaryTitle\":\"65\"},{\"title\":\"Email with A&R Tarpaulins on Feb-07-09\",\"primaryTitle\":\"107\"},{\"title\":\"Email with A&R Tarpaulins on Feb-09-09\",\"primaryTitle\":\"109\"},{\"title\":\"Email with A&R Tarpaulins on Jul-22-08\",\"primaryTitle\":\"14\"},{\"title\":\"Email with A&R Tarpaulins on Jul-26-08\",\"primaryTitle\":\"15\"},{\"title\":\"Email with A&R Tarpaulins on Jun-05-10\",\"primaryTitle\":\"2354\"},{\"title\":\"Email with A&R Tarpaulins on Oct-11-08\",\"primaryTitle\":\"41\"},{\"title\":\"Email with A+ Tutor U on Apr-28-11\",\"primaryTitle\":\"8669\"},{\"title\":\"Email with A+ Tutor U on Aug-05-08\",\"primaryTitle\":\"18\"},{\"title\":\"Email with A+ Tutor U on Aug-12-11\",\"primaryTitle\":\"10751\"},{\"title\":\"Email with A+ Tutor U on Jul-15-09\",\"primaryTitle\":\"299\"},{\"title\":\"Email with A+ Tutor U on Jun-20-11\",\"primaryTitle\":\"9690\"},{\"title\":\"Email with A+ Tutor U on May-31-09\",\"primaryTitle\":\"227\"},{\"title\":\"Email with A+ Tutor U on Nov-16-09\",\"primaryTitle\":\"603\"},{\"title\":\"Email with A+ Tutor U on Oct-06-09\",\"primaryTitle\":\"482\"},{\"title\":\"Email with A-1 Textiles on Apr-17-09\",\"primaryTitle\":\"140979\"},{\"title\":\"Email with A-1 Textiles on Feb-22-12\",\"primaryTitle\":\"141778\"},{\"title\":\"Email with A-1 Textiles on Jul-22-11\",\"primaryTitle\":\"141318\"},{\"title\":\"Email with A-1 Textiles on Jul-25-11\",\"primaryTitle\":\"141322\"},{\"title\":\"Email with A-1 Textiles on Mar-20-12\",\"primaryTitle\":\"141884\"},{\"title\":\"Email with A-1 Textiles on Nov-22-10\",\"primaryTitle\":\"141084\"},{\"title\":\"Email with A-1 Textiles on Oct-17-11\",\"primaryTitle\":\"141451\"},{\"title\":\"Email with A-1 Textiles on Oct-24-11\",\"primaryTitle\":\"141465\"},{\"title\":\"Email with A-Life Medical on Apr-10-10\",\"primaryTitle\":\"1543\"},{\"title\":\"Email with A-Life Medical on Dec-06-09\",\"primaryTitle\":\"681\"},{\"title\":\"Email with A-Life Medical on Jan-21-10\",\"primaryTitle\":\"903\"},{\"title\":\"Email with A-Life Medical on Jul-31-10\",\"primaryTitle\":\"3508\"},{\"title\":\"Email with A-Life Medical on May-04-10\",\"primaryTitle\":\"1837\"},{\"title\":\"Email with A-Life Medical on Sep-01-09\",\"primaryTitle\":\"400\"},{\"title\":\"Email with A-Life Medical on Sep-08-09\",\"primaryTitle\":\"417\"},{\"title\":\"Email with A-Life Medical on Sep-27-09\",\"primaryTitle\":\"461\"},{\"title\":\"Email with A-T Solutions on Apr-06-10\",\"primaryTitle\":\"1511\"},{\"title\":\"Email with A-T Solutions on Jul-12-10\",\"primaryTitle\":\"3005\"},{\"title\":\"Email with A-T Solutions on Jul-19-10\",\"primaryTitle\":\"3203\"},{\"title\":\"Email with A-T Solutions on Jul-30-10\",\"primaryTitle\":\"3474\"},{\"title\":\"Email with A-T Solutions on May-16-10\",\"primaryTitle\":\"2022\"},{\"title\":\"Email with A-T Solutions on Nov-09-10\",\"primaryTitle\":\"5519\"},{\"title\":\"Email with A-T Solutions on Nov-13-10\",\"primaryTitle\":\"5614\"},{\"title\":\"Email with A-T Solutions on Nov-19-10\",\"primaryTitle\":\"5756\"},{\"title\":\"Email with A. Pomerantz & Co. on Apr-06-09\",\"primaryTitle\":\"155\"},{\"title\":\"Email with A. Pomerantz & Co. on Dec-21-09\",\"primaryTitle\":\"733\"},{\"title\":\"Email with A. Pomerantz & Co. on Jan-22-11\",\"primaryTitle\":\"6922\"},{\"title\":\"Email with A. Pomerantz & Co. on Jun-27-11\",\"primaryTitle\":\"9805\"},{\"title\":\"Email with A. Pomerantz & Co. on May-05-09\",\"primaryTitle\":\"192\"},{\"title\":\"Email with A. Pomerantz & Co. on May-29-10\",\"primaryTitle\":\"2234\"},{\"title\":\"Email with A. Pomerantz & Co. on Nov-01-09\",\"primaryTitle\":\"559\"},{\"title\":\"Email with A. Pomerantz & Co. on Sep-20-09\",\"primaryTitle\":\"449\"},{\"title\":\"Email with A.B. Data on Apr-04-12\",\"primaryTitle\":\"151865\"},{\"title\":\"Email with A.B. Data on Aug-02-12\",\"primaryTitle\":\"146674\"},{\"title\":\"Email with A.B. Data on Aug-05-12\",\"primaryTitle\":\"146689\"},{\"title\":\"Email with A.B. Data on Dec-31-12\",\"primaryTitle\":\"152606\"},{\"title\":\"Email with A.B. Data on Feb-23-10\",\"primaryTitle\":\"151136\"},{\"title\":\"Email with A.B. Data on Jan-12-11\",\"primaryTitle\":\"151317\"},{\"title\":\"Email with A.B. Data on Jul-14-12\",\"primaryTitle\":\"146548\"},{\"title\":\"Email with A.B. Data on Jul-18-09\",\"primaryTitle\":\"151099\"},{\"title\":\"Email with A.B. Data on Jun-08-12\",\"primaryTitle\":\"146295\"},{\"title\":\"Email with A.B. Data on Jun-10-12\",\"primaryTitle\":\"152166\"},{\"title\":\"Email with A.B. Data on Jun-23-12\",\"primaryTitle\":\"152239\"},{\"title\":\"Email with A.B. Data on Jun-26-12\",\"primaryTitle\":\"146425\"},{\"title\":\"Email with A.B. Data on Mar-24-13\",\"primaryTitle\":\"152630\"},{\"title\":\"Email with A.B. Data on May-20-12\",\"primaryTitle\":\"146151\"},{\"title\":\"Email with A.B. Data on May-22-12\",\"primaryTitle\":\"146168\"},{\"title\":\"Email with A.B. Data on May-28-12\",\"primaryTitle\":\"146217\"},{\"title\":\"Email with A.R.M. Solutions on Jan-17-09\",\"primaryTitle\":\"88\"},{\"title\":\"Email with A.R.M. Solutions on Jul-15-09\",\"primaryTitle\":\"298\"},{\"title\":\"Email with A.R.M. Solutions on Mar-09-09\",\"primaryTitle\":\"129\"},{\"title\":\"Email with A.R.M. Solutions on May-07-09\",\"primaryTitle\":\"195\"},{\"title\":\"Email with A.R.M. Solutions on May-09-09\",\"primaryTitle\":\"199\"},{\"title\":\"Email with A.R.M. Solutions on May-28-10\",\"primaryTitle\":\"2223\"},{\"title\":\"Email with A.R.M. Solutions on Nov-17-10\",\"primaryTitle\":\"5706\"},{\"title\":\"Email with A.R.M. Solutions on Sep-09-09\",\"primaryTitle\":\"422\"},{\"title\":\"Email with A1 Pool Parts on Aug-13-10\",\"primaryTitle\":\"30390\"},{\"title\":\"Email with A1 Pool Parts on Dec-21-10\",\"primaryTitle\":\"34427\"},{\"title\":\"Email with A1 Pool Parts on Nov-07-10\",\"primaryTitle\":\"32912\"},{\"title\":\"Email with A10 Clinical Solutions on Feb-06-11\",\"primaryTitle\":\"35982\"},{\"title\":\"Email with A10 Clinical Solutions on Jun-23-11\",\"primaryTitle\":\"40437\"},{\"title\":\"Email with A10 Clinical Solutions on May-29-11\",\"primaryTitle\":\"39797\"},{\"title\":\"Email with A10 Clinical Solutions on Oct-31-10\",\"primaryTitle\":\"32670\"},{\"title\":\"Email with A10 Networks on Aug-01-09\",\"primaryTitle\":\"336\"},{\"title\":\"Email with A10 Networks on Aug-23-09\",\"primaryTitle\":\"382\"},{\"title\":\"Email with A10 Networks on Aug-29-08\",\"primaryTitle\":\"22\"},{\"title\":\"Email with A10 Networks on Dec-01-09\",\"primaryTitle\":\"660\"},{\"title\":\"Email with A10 Networks on Jul-21-09\",\"primaryTitle\":\"313\"},{\"title\":\"Email with A10 Networks on Jul-30-09\",\"primaryTitle\":\"333\"},{\"title\":\"Email with A10 Networks on Mar-02-10\",\"primaryTitle\":\"1164\"},{\"title\":\"Email with A10 Networks on May-29-09\",\"primaryTitle\":\"224\"},{\"title\":\"Email with AAC Enterprises on Aug-30-08\",\"primaryTitle\":\"23\"},{\"title\":\"Email with AAC Enterprises on Feb-15-09\",\"primaryTitle\":\"116\"},{\"title\":\"Email with AAC Enterprises on Jan-23-09\",\"primaryTitle\":\"91\"},{\"title\":\"Email with AAC Enterprises on Jun-01-09\",\"primaryTitle\":\"229\"},{\"title\":\"Email with AAC Enterprises on Jun-19-10\",\"primaryTitle\":\"2611\"},{\"title\":\"Email with AAC Enterprises on Jun-27-10\",\"primaryTitle\":\"2729\"},{\"title\":\"Email with AAC Enterprises on Mar-11-10\",\"primaryTitle\":\"1233\"},{\"title\":\"Email with AAC Enterprises on Mar-30-10\",\"primaryTitle\":\"1429\"},{\"title\":\"Email with AAC Enterprises on May-12-10\",\"primaryTitle\":\"1958\"},{\"title\":\"Email with AAC Enterprises on Sep-13-08\",\"primaryTitle\":\"28\"},{\"title\":\"Email with AArrow Advertising on Apr-13-11\",\"primaryTitle\":\"145108\"},{\"title\":\"Email with AArrow Advertising on Aug-05-09\",\"primaryTitle\":\"151102\"},{\"title\":\"Email with AArrow Advertising on Aug-19-11\",\"primaryTitle\":\"145206\"},{\"title\":\"Email with AArrow Advertising on Dec-14-08\",\"primaryTitle\":\"144928\"},{\"title\":\"Email with AArrow Advertising on Dec-29-09\",\"primaryTitle\":\"151122\"},{\"title\":\"Email with AArrow Advertising on Jan-18-10\",\"primaryTitle\":\"144935\"},{\"title\":\"Email with AArrow Advertising on Jan-31-11\",\"primaryTitle\":\"151331\"},{\"title\":\"Email with AArrow Advertising on Jul-11-09\",\"primaryTitle\":\"144929\"},{\"title\":\"Email with AArrow Advertising on Jul-31-09\",\"primaryTitle\":\"151101\"},{\"title\":\"Email with AArrow Advertising on Jun-14-12\",\"primaryTitle\":\"146339\"},{\"title\":\"Email with AArrow Advertising on Jun-25-09\",\"primaryTitle\":\"151094\"},{\"title\":\"Email with AArrow Advertising on Mar-24-12\",\"primaryTitle\":\"145754\"},{\"title\":\"Email with AArrow Advertising on Oct-05-09\",\"primaryTitle\":\"151110\"},{\"title\":\"Email with AArrow Advertising on Oct-18-10\",\"primaryTitle\":\"151269\"},{\"title\":\"Email with AArrow Advertising on Oct-31-12\",\"primaryTitle\":\"146900\"},{\"title\":\"Email with AArrow Advertising on Sep-02-10\",\"primaryTitle\":\"151240\"},{\"title\":\"Email with ABBTech Staffing Services on Aug-25-10\",\"primaryTitle\":\"149142\"},{\"title\":\"Email with ABBTech Staffing Services on Jun-01-09\",\"primaryTitle\":\"149124\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-08-10\",\"primaryTitle\":\"149131\"},{\"title\":\"Email with ABBTech Staffing Services on Mar-13-09\",\"primaryTitle\":\"149122\"},{\"title\":\"Email with ABBTech Staffing Services on May-09-12\",\"primaryTitle\":\"149498\"},{\"title\":\"Email with ABBTech Staffing Services on May-31-11\",\"primaryTitle\":\"149211\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-13-11\",\"primaryTitle\":\"149231\"},{\"title\":\"Email with ABBTech Staffing Services on Sep-30-09\",\"primaryTitle\":\"149129\"},{\"title\":\"Email with ABC Security Service on Apr-25-09\",\"primaryTitle\":\"177\"},{\"title\":\"Email with ABC Security Service on Jan-13-09\",\"primaryTitle\":\"86\"},{\"title\":\"Email with ABC Security Service on Jan-25-11\",\"primaryTitle\":\"6982\"},{\"title\":\"Email with ABC Security Service on Jul-22-11\",\"primaryTitle\":\"10323\"},{\"title\":\"Email with ABC Security Service on Mar-23-09\",\"primaryTitle\":\"143\"},{\"title\":\"Email with ABC Security Service on Nov-08-11\",\"primaryTitle\":\"147003\"},{\"title\":\"Email with ABC Security Service on Nov-15-11\",\"primaryTitle\":\"147021\"},{\"title\":\"Email with ABC Security Service on Nov-16-08\",\"primaryTitle\":\"50\"},{\"title\":\"Email with ABC Security Service on Nov-18-08\",\"primaryTitle\":\"54\"},{\"title\":\"Email with ABC Security Service on Nov-18-11\",\"primaryTitle\":\"147006\"},{\"title\":\"Email with ABC Security Service on Nov-20-11\",\"primaryTitle\":\"147015\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147018\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147000\"},{\"title\":\"Email with ABC Security Service on Nov-30-11\",\"primaryTitle\":\"147009\"},{\"title\":\"Email with ABC Security Service on Oct-30-11\",\"primaryTitle\":\"147012\"},{\"title\":\"Email with ABC Security Service on Sep-10-10\",\"primaryTitle\":\"4302\"},{\"title\":\"Email with ABCOMRents.com on Dec-28-08\",\"primaryTitle\":\"75\"},{\"title\":\"Email with ABCOMRents.com on Feb-16-10\",\"primaryTitle\":\"1077\"}],\"paging\":{\"total\":10000,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"d2ca8b168a91b47268332d05e2307bb6\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1321,10 +1352,10 @@ "Content-Type": "application/json" } }, - "uuid": "c5cd1e61-86e7-48c1-ad3a-fdfa28d30336" + "uuid": "5412cb3c-2c61-4e19-978f-68a9f843beda" }, { - "id": "953eb11f-d731-4491-88c8-009241255f7e", + "id": "185f3212-b75e-48fa-9b05-42a17c298fac", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -1339,7 +1370,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"adaQuest\",\"primaryTitle\":\"adaQuest\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"agencyQ\",\"primaryTitle\":\"agencyQ\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"allConnex\",\"primaryTitle\":\"allConnex\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"altE\",\"primaryTitle\":\"altE\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"aPriori\",\"primaryTitle\":\"aPriori\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"},{\"title\":\"Bamco\",\"primaryTitle\":\"Bamco\"},{\"title\":\"Bamko\",\"primaryTitle\":\"Bamko\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BancVue\",\"primaryTitle\":\"BancVue\"},{\"title\":\"BandCon\",\"primaryTitle\":\"BandCon\"},{\"title\":\"Bankers Healthcare Group\",\"primaryTitle\":\"Bankers Healthcare Group\"},{\"title\":\"BankServ\",\"primaryTitle\":\"BankServ\"},{\"title\":\"Barbara Lynch Gruppo\",\"primaryTitle\":\"Barbara Lynch Gruppo\"},{\"title\":\"Barhorst Insurance Group\",\"primaryTitle\":\"Barhorst Insurance Group\"},{\"title\":\"Barnes & Thornburg\",\"primaryTitle\":\"Barnes & Thornburg\"},{\"title\":\"Barrack's Cater Inn\",\"primaryTitle\":\"Barrack's Cater Inn\"},{\"title\":\"Barrister Global Services Network\",\"primaryTitle\":\"Barrister Global Services Network\"},{\"title\":\"Bars + Tone\",\"primaryTitle\":\"Bars + Tone\"},{\"title\":\"Baseball Rampage\",\"primaryTitle\":\"Baseball Rampage\"},{\"title\":\"Basic\",\"primaryTitle\":\"Basic\"},{\"title\":\"Basic Commerce and Industries\",\"primaryTitle\":\"Basic Commerce and Industries\"},{\"title\":\"Batteries Plus\",\"primaryTitle\":\"Batteries Plus\"},{\"title\":\"Battle Resource Management\",\"primaryTitle\":\"Battle Resource Management\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"736e74b7f30b810343b65ceefe3d0b74\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"elements\":[{\"title\":\"(add)ventures\",\"primaryTitle\":\"(add)ventures\"},{\"title\":\"(blank)\",\"primaryTitle\":\"(blank)\"},{\"title\":\"(mt) Media Temple\",\"primaryTitle\":\"(mt) Media Temple\"},{\"title\":\".decimal\",\"primaryTitle\":\".decimal\"},{\"title\":\"1 Source Consulting\",\"primaryTitle\":\"1 Source Consulting\"},{\"title\":\"1-800 Postcards\",\"primaryTitle\":\"1-800 Postcards\"},{\"title\":\"1-800 We Answer\",\"primaryTitle\":\"1-800 We Answer\"},{\"title\":\"1-888-OhioComp\",\"primaryTitle\":\"1-888-OhioComp\"},{\"title\":\"1000Bulbs.com\",\"primaryTitle\":\"1000Bulbs.com\"},{\"title\":\"101 Financial\",\"primaryTitle\":\"101 Financial\"},{\"title\":\"123 Exteriors\",\"primaryTitle\":\"123 Exteriors\"},{\"title\":\"14 West\",\"primaryTitle\":\"14 West\"},{\"title\":\"1Source International\",\"primaryTitle\":\"1Source International\"},{\"title\":\"1st Choice Staffing & Consulting\",\"primaryTitle\":\"1st Choice Staffing & Consulting\"},{\"title\":\"1st in Video - Music World\",\"primaryTitle\":\"1st in Video - Music World\"},{\"title\":\"2 Wheel Bikes\",\"primaryTitle\":\"2 Wheel Bikes\"},{\"title\":\"2HB Software Designs\",\"primaryTitle\":\"2HB Software Designs\"},{\"title\":\"352 Media Group\",\"primaryTitle\":\"352 Media Group\"},{\"title\":\"3Degrees\",\"primaryTitle\":\"3Degrees\"},{\"title\":\"3E\",\"primaryTitle\":\"3E\"},{\"title\":\"3balls.com\",\"primaryTitle\":\"3balls.com\"},{\"title\":\"3dCart Shopping Cart Software\",\"primaryTitle\":\"3dCart Shopping Cart Software\"},{\"title\":\"49er Communications\",\"primaryTitle\":\"49er Communications\"},{\"title\":\"4Wall Entertainment\",\"primaryTitle\":\"4Wall Entertainment\"},{\"title\":\"4th Source\",\"primaryTitle\":\"4th Source\"},{\"title\":\"5LINX Enterprises\",\"primaryTitle\":\"5LINX Enterprises\"},{\"title\":\"614 Media Group\",\"primaryTitle\":\"614 Media Group\"},{\"title\":\"6K Systems\",\"primaryTitle\":\"6K Systems\"},{\"title\":\"7 Medical Systems\",\"primaryTitle\":\"7 Medical Systems\"},{\"title\":\"7 Simple Machines\",\"primaryTitle\":\"7 Simple Machines\"},{\"title\":\"7-Eleven\",\"primaryTitle\":\"7-Eleven\"},{\"title\":\"720 Strategies\",\"primaryTitle\":\"720 Strategies\"},{\"title\":\"90octane\",\"primaryTitle\":\"90octane\"},{\"title\":\"919 Marketing\",\"primaryTitle\":\"919 Marketing\"},{\"title\":\"@properties\",\"primaryTitle\":\"@properties\"},{\"title\":\"A Main Hobbies\",\"primaryTitle\":\"A Main Hobbies\"},{\"title\":\"A Place for Mom\",\"primaryTitle\":\"A Place for Mom\"},{\"title\":\"A Squared Group\",\"primaryTitle\":\"A Squared Group\"},{\"title\":\"A White Orchid Wedding\",\"primaryTitle\":\"A White Orchid Wedding\"},{\"title\":\"A&C Plastics\",\"primaryTitle\":\"A&C Plastics\"},{\"title\":\"A&P Consulting Transportation Engineers\",\"primaryTitle\":\"A&P Consulting Transportation Engineers\"},{\"title\":\"A&R Tarpaulins\",\"primaryTitle\":\"A&R Tarpaulins\"},{\"title\":\"A+ Mortgage Services\",\"primaryTitle\":\"A+ Mortgage Services\"},{\"title\":\"A+ Tutor U\",\"primaryTitle\":\"A+ Tutor U\"},{\"title\":\"A-1 Textiles\",\"primaryTitle\":\"A-1 Textiles\"},{\"title\":\"A-Life Medical\",\"primaryTitle\":\"A-Life Medical\"},{\"title\":\"A-T Solutions\",\"primaryTitle\":\"A-T Solutions\"},{\"title\":\"A. Pomerantz & Co.\",\"primaryTitle\":\"A. Pomerantz & Co.\"},{\"title\":\"A.B. Data\",\"primaryTitle\":\"A.B. Data\"},{\"title\":\"A.R.M. Solutions\",\"primaryTitle\":\"A.R.M. Solutions\"},{\"title\":\"A1 Pool Parts\",\"primaryTitle\":\"A1 Pool Parts\"},{\"title\":\"A10 Clinical Solutions\",\"primaryTitle\":\"A10 Clinical Solutions\"},{\"title\":\"A10 Networks\",\"primaryTitle\":\"A10 Networks\"},{\"title\":\"AAC Enterprises\",\"primaryTitle\":\"AAC Enterprises\"},{\"title\":\"AArrow Advertising\",\"primaryTitle\":\"AArrow Advertising\"},{\"title\":\"ABBTech Staffing Services\",\"primaryTitle\":\"ABBTech Staffing Services\"},{\"title\":\"ABC Security Service\",\"primaryTitle\":\"ABC Security Service\"},{\"title\":\"ABCOMRents.com\",\"primaryTitle\":\"ABCOMRents.com\"},{\"title\":\"AC Lens\",\"primaryTitle\":\"AC Lens\"},{\"title\":\"ACAI Associates\",\"primaryTitle\":\"ACAI Associates\"},{\"title\":\"ACFN Franchised\",\"primaryTitle\":\"ACFN Franchised\"},{\"title\":\"ACTS\",\"primaryTitle\":\"ACTS\"},{\"title\":\"ADC Integrated Systems\",\"primaryTitle\":\"ADC Integrated Systems\"},{\"title\":\"ADEX Manufacturing Technologies\",\"primaryTitle\":\"ADEX Manufacturing Technologies\"},{\"title\":\"ADG Creative\",\"primaryTitle\":\"ADG Creative\"},{\"title\":\"AEEC\",\"primaryTitle\":\"AEEC\"},{\"title\":\"AEgis Technologies Group\",\"primaryTitle\":\"AEgis Technologies Group\"},{\"title\":\"AGM Container Controls\",\"primaryTitle\":\"AGM Container Controls\"},{\"title\":\"AIMS Power\",\"primaryTitle\":\"AIMS Power\"},{\"title\":\"AIRSIS\",\"primaryTitle\":\"AIRSIS\"},{\"title\":\"AIReS\",\"primaryTitle\":\"AIReS\"},{\"title\":\"AIT Laboratories\",\"primaryTitle\":\"AIT Laboratories\"},{\"title\":\"AJ Riggins\",\"primaryTitle\":\"AJ Riggins\"},{\"title\":\"AK Environmental\",\"primaryTitle\":\"AK Environmental\"},{\"title\":\"AKA Media\",\"primaryTitle\":\"AKA Media\"},{\"title\":\"AKASHA-US\",\"primaryTitle\":\"AKASHA-US\"},{\"title\":\"AKT Enterprises\",\"primaryTitle\":\"AKT Enterprises\"},{\"title\":\"ALaS Consulting\",\"primaryTitle\":\"ALaS Consulting\"},{\"title\":\"AMC Entertainment\",\"primaryTitle\":\"AMC Entertainment\"},{\"title\":\"ANDA Networks\",\"primaryTitle\":\"ANDA Networks\"},{\"title\":\"AOD Software\",\"primaryTitle\":\"AOD Software\"},{\"title\":\"APCO Worldwide\",\"primaryTitle\":\"APCO Worldwide\"},{\"title\":\"APEXteriors\",\"primaryTitle\":\"APEXteriors\"},{\"title\":\"APG\",\"primaryTitle\":\"APG\"},{\"title\":\"APT Research\",\"primaryTitle\":\"APT Research\"},{\"title\":\"AQIWO\",\"primaryTitle\":\"AQIWO\"},{\"title\":\"ARES\",\"primaryTitle\":\"ARES\"},{\"title\":\"ARGI Financial Group\",\"primaryTitle\":\"ARGI Financial Group\"},{\"title\":\"ARHD\",\"primaryTitle\":\"ARHD\"},{\"title\":\"ARK Solutions\",\"primaryTitle\":\"ARK Solutions\"},{\"title\":\"ARRC Technology\",\"primaryTitle\":\"ARRC Technology\"},{\"title\":\"ASAP\",\"primaryTitle\":\"ASAP\"},{\"title\":\"ASAP Towing & Storage\",\"primaryTitle\":\"ASAP Towing & Storage\"},{\"title\":\"ASD\",\"primaryTitle\":\"ASD\"},{\"title\":\"ASE Technology\",\"primaryTitle\":\"ASE Technology\"},{\"title\":\"ASI System Integration\",\"primaryTitle\":\"ASI System Integration\"},{\"title\":\"ASK Staffing\",\"primaryTitle\":\"ASK Staffing\"},{\"title\":\"ASP Pool and Spa\",\"primaryTitle\":\"ASP Pool and Spa\"},{\"title\":\"AT Conference\",\"primaryTitle\":\"AT Conference\"},{\"title\":\"AT HOME PERSONAL CARE\",\"primaryTitle\":\"AT HOME PERSONAL CARE\"},{\"title\":\"AVEO Pharmaceuticals\",\"primaryTitle\":\"AVEO Pharmaceuticals\"},{\"title\":\"AVID Ink\",\"primaryTitle\":\"AVID Ink\"},{\"title\":\"AVID Technical Resources\",\"primaryTitle\":\"AVID Technical Resources\"},{\"title\":\"AVT Simulation\",\"primaryTitle\":\"AVT Simulation\"},{\"title\":\"AWSI\",\"primaryTitle\":\"AWSI\"},{\"title\":\"AXIA Consulting\",\"primaryTitle\":\"AXIA Consulting\"},{\"title\":\"Aaron Oil Company\",\"primaryTitle\":\"Aaron Oil Company\"},{\"title\":\"Aaron's\",\"primaryTitle\":\"Aaron's\"},{\"title\":\"Aaron's Sales & Lease Ownership\",\"primaryTitle\":\"Aaron's Sales & Lease Ownership\"},{\"title\":\"Aaron's Sales and Lease\",\"primaryTitle\":\"Aaron's Sales and Lease\"},{\"title\":\"Aaron's Sales and Lease Ownership\",\"primaryTitle\":\"Aaron's Sales and Lease Ownership\"},{\"title\":\"Aasent Mortgage Corporation\",\"primaryTitle\":\"Aasent Mortgage Corporation\"},{\"title\":\"Abacus 24-7\",\"primaryTitle\":\"Abacus 24-7\"},{\"title\":\"Abacus Plumbing\",\"primaryTitle\":\"Abacus Plumbing\"},{\"title\":\"Abacus Solutions Group\",\"primaryTitle\":\"Abacus Solutions Group\"},{\"title\":\"Able Equipment Rental\",\"primaryTitle\":\"Able Equipment Rental\"},{\"title\":\"Able Patrol and Guard\",\"primaryTitle\":\"Able Patrol and Guard\"},{\"title\":\"Abraxas\",\"primaryTitle\":\"Abraxas\"},{\"title\":\"Absolute Concrete Construction\",\"primaryTitle\":\"Absolute Concrete Construction\"},{\"title\":\"Abstract Displays\",\"primaryTitle\":\"Abstract Displays\"},{\"title\":\"AcademixDirect\",\"primaryTitle\":\"AcademixDirect\"},{\"title\":\"Acadian Ambulance Service\",\"primaryTitle\":\"Acadian Ambulance Service\"},{\"title\":\"Accelera Solutions\",\"primaryTitle\":\"Accelera Solutions\"},{\"title\":\"Accelerated Financial Solutions\",\"primaryTitle\":\"Accelerated Financial Solutions\"},{\"title\":\"Accent Electronic Systems Integrators\",\"primaryTitle\":\"Accent Electronic Systems Integrators\"},{\"title\":\"Access America Transport\",\"primaryTitle\":\"Access America Transport\"},{\"title\":\"Access Display Group\",\"primaryTitle\":\"Access Display Group\"},{\"title\":\"Access Information Management\",\"primaryTitle\":\"Access Information Management\"},{\"title\":\"Access Insurance Holdings\",\"primaryTitle\":\"Access Insurance Holdings\"},{\"title\":\"Access Technology Solutions\",\"primaryTitle\":\"Access Technology Solutions\"},{\"title\":\"Access Worldwide\",\"primaryTitle\":\"Access Worldwide\"},{\"title\":\"Acclaim Technical Services\",\"primaryTitle\":\"Acclaim Technical Services\"},{\"title\":\"Acclaris\",\"primaryTitle\":\"Acclaris\"},{\"title\":\"Accordent\",\"primaryTitle\":\"Accordent\"},{\"title\":\"Account Control Technology\",\"primaryTitle\":\"Account Control Technology\"},{\"title\":\"AccountNow\",\"primaryTitle\":\"AccountNow\"},{\"title\":\"Accounting Management Solutions\",\"primaryTitle\":\"Accounting Management Solutions\"},{\"title\":\"Accretive Health\",\"primaryTitle\":\"Accretive Health\"},{\"title\":\"AccuCode\",\"primaryTitle\":\"AccuCode\"},{\"title\":\"Accusoft Pegasus\",\"primaryTitle\":\"Accusoft Pegasus\"},{\"title\":\"Accuvant\",\"primaryTitle\":\"Accuvant\"},{\"title\":\"Ace Underwriting Group\",\"primaryTitle\":\"Ace Underwriting Group\"},{\"title\":\"Achatz Handmade Pie\",\"primaryTitle\":\"Achatz Handmade Pie\"},{\"title\":\"Achieve3000\",\"primaryTitle\":\"Achieve3000\"},{\"title\":\"Acorn Design and Manufacturing\",\"primaryTitle\":\"Acorn Design and Manufacturing\"},{\"title\":\"Acquity Group\",\"primaryTitle\":\"Acquity Group\"},{\"title\":\"Acronis\",\"primaryTitle\":\"Acronis\"},{\"title\":\"Actio\",\"primaryTitle\":\"Actio\"},{\"title\":\"Action Envelope\",\"primaryTitle\":\"Action Envelope\"},{\"title\":\"Action Target\",\"primaryTitle\":\"Action Target\"},{\"title\":\"Active Website\",\"primaryTitle\":\"Active Website\"},{\"title\":\"Acumen Building Enterprise\",\"primaryTitle\":\"Acumen Building Enterprise\"},{\"title\":\"Acxius Strategic Consulting\",\"primaryTitle\":\"Acxius Strategic Consulting\"},{\"title\":\"Adaptik\",\"primaryTitle\":\"Adaptik\"},{\"title\":\"Adaptive Materials\",\"primaryTitle\":\"Adaptive Materials\"},{\"title\":\"Adaptive Planning\",\"primaryTitle\":\"Adaptive Planning\"},{\"title\":\"Adaptive Solutions\",\"primaryTitle\":\"Adaptive Solutions\"},{\"title\":\"Adayana\",\"primaryTitle\":\"Adayana\"},{\"title\":\"Addison Search\",\"primaryTitle\":\"Addison Search\"},{\"title\":\"Additech\",\"primaryTitle\":\"Additech\"},{\"title\":\"Addx\",\"primaryTitle\":\"Addx\"},{\"title\":\"Adept Consulting Services\",\"primaryTitle\":\"Adept Consulting Services\"},{\"title\":\"Adoresoft\",\"primaryTitle\":\"Adoresoft\"},{\"title\":\"Adperio\",\"primaryTitle\":\"Adperio\"},{\"title\":\"Advanced Brain Monitoring\",\"primaryTitle\":\"Advanced Brain Monitoring\"},{\"title\":\"Advanced Chemical Transport\",\"primaryTitle\":\"Advanced Chemical Transport\"},{\"title\":\"Advanced Educational Products\",\"primaryTitle\":\"Advanced Educational Products\"},{\"title\":\"Advanced Facial Plastic Surgery Center\",\"primaryTitle\":\"Advanced Facial Plastic Surgery Center\"},{\"title\":\"Advanced Global Communications\",\"primaryTitle\":\"Advanced Global Communications\"},{\"title\":\"Advanced Health Media\",\"primaryTitle\":\"Advanced Health Media\"},{\"title\":\"Advanced Logistics\",\"primaryTitle\":\"Advanced Logistics\"},{\"title\":\"Advanced Manufacturing Technology\",\"primaryTitle\":\"Advanced Manufacturing Technology\"},{\"title\":\"Advanced MarketPlace\",\"primaryTitle\":\"Advanced MarketPlace\"},{\"title\":\"Advanced Network Solutions\",\"primaryTitle\":\"Advanced Network Solutions\"},{\"title\":\"Advanced Processing and Imaging\",\"primaryTitle\":\"Advanced Processing and Imaging\"},{\"title\":\"Advanced Systems Engineering\",\"primaryTitle\":\"Advanced Systems Engineering\"},{\"title\":\"Advanced Technical Solutions\",\"primaryTitle\":\"Advanced Technical Solutions\"},{\"title\":\"Advanced Technology Group\",\"primaryTitle\":\"Advanced Technology Group\"},{\"title\":\"Advanced Vision Research\",\"primaryTitle\":\"Advanced Vision Research\"},{\"title\":\"Advanced Waste Services\",\"primaryTitle\":\"Advanced Waste Services\"},{\"title\":\"AdvancedMD Software\",\"primaryTitle\":\"AdvancedMD Software\"},{\"title\":\"Advantage Engineering & IT Solutions\",\"primaryTitle\":\"Advantage Engineering & IT Solutions\"},{\"title\":\"Advantage PressurePro\",\"primaryTitle\":\"Advantage PressurePro\"},{\"title\":\"AdvantageBridal.com\",\"primaryTitle\":\"AdvantageBridal.com\"},{\"title\":\"Advantedge Healthcare Solutions\",\"primaryTitle\":\"Advantedge Healthcare Solutions\"},{\"title\":\"Advanticom\",\"primaryTitle\":\"Advanticom\"},{\"title\":\"AdvenTech\",\"primaryTitle\":\"AdvenTech\"},{\"title\":\"Advent Global Solutions\",\"primaryTitle\":\"Advent Global Solutions\"},{\"title\":\"Adventure Life\",\"primaryTitle\":\"Adventure Life\"},{\"title\":\"AdvertiseDoorToDoor.com\",\"primaryTitle\":\"AdvertiseDoorToDoor.com\"},{\"title\":\"Advisors Asset Management\",\"primaryTitle\":\"Advisors Asset Management\"},{\"title\":\"Advisors Mortgage Group\",\"primaryTitle\":\"Advisors Mortgage Group\"},{\"title\":\"Advocate Media\",\"primaryTitle\":\"Advocate Media\"},{\"title\":\"Advocate Networks\",\"primaryTitle\":\"Advocate Networks\"},{\"title\":\"Advocate Radiology Billing\",\"primaryTitle\":\"Advocate Radiology Billing\"},{\"title\":\"Aeneas Internet and Telephone\",\"primaryTitle\":\"Aeneas Internet and Telephone\"},{\"title\":\"Aerial Services\",\"primaryTitle\":\"Aerial Services\"},{\"title\":\"Aero Solutions\",\"primaryTitle\":\"Aero Solutions\"},{\"title\":\"Aerodyn Engineering\",\"primaryTitle\":\"Aerodyn Engineering\"},{\"title\":\"Aerospace & Commercial Technologies\",\"primaryTitle\":\"Aerospace & Commercial Technologies\"},{\"title\":\"Affiliate Media\",\"primaryTitle\":\"Affiliate Media\"},{\"title\":\"Affinion Group Holdings\",\"primaryTitle\":\"Affinion Group Holdings\"},{\"title\":\"Affinity\",\"primaryTitle\":\"Affinity\"},{\"title\":\"Affordable Health Insurance\",\"primaryTitle\":\"Affordable Health Insurance\"},{\"title\":\"Ageatia Technology Consultancy Services\",\"primaryTitle\":\"Ageatia Technology Consultancy Services\"},{\"title\":\"Agency Consulting Group\",\"primaryTitle\":\"Agency Consulting Group\"},{\"title\":\"Agile\",\"primaryTitle\":\"Agile\"},{\"title\":\"AgileThought\",\"primaryTitle\":\"AgileThought\"},{\"title\":\"Agility Mfg\",\"primaryTitle\":\"Agility Mfg\"},{\"title\":\"Agosto\",\"primaryTitle\":\"Agosto\"},{\"title\":\"Air Innovations\",\"primaryTitle\":\"Air Innovations\"},{\"title\":\"Air Serv\",\"primaryTitle\":\"Air Serv\"},{\"title\":\"AirSplat\",\"primaryTitle\":\"AirSplat\"},{\"title\":\"Aircraft Cabin Systems\",\"primaryTitle\":\"Aircraft Cabin Systems\"},{\"title\":\"Airgun Depot\",\"primaryTitle\":\"Airgun Depot\"},{\"title\":\"Airnet Group\",\"primaryTitle\":\"Airnet Group\"},{\"title\":\"Akerman Senterfitt\",\"primaryTitle\":\"Akerman Senterfitt\"},{\"title\":\"Akraya\",\"primaryTitle\":\"Akraya\"},{\"title\":\"Alarm Team\",\"primaryTitle\":\"Alarm Team\"},{\"title\":\"Alatec\",\"primaryTitle\":\"Alatec\"},{\"title\":\"Albrecht & Co.\",\"primaryTitle\":\"Albrecht & Co.\"},{\"title\":\"Alcorn McBride\",\"primaryTitle\":\"Alcorn McBride\"},{\"title\":\"Alex and Ani\",\"primaryTitle\":\"Alex and Ani\"},{\"title\":\"Alexa's Angels\",\"primaryTitle\":\"Alexa's Angels\"},{\"title\":\"Alexander Open Systems\",\"primaryTitle\":\"Alexander Open Systems\"},{\"title\":\"Algonquin Advisors\",\"primaryTitle\":\"Algonquin Advisors\"},{\"title\":\"Ali International\",\"primaryTitle\":\"Ali International\"},{\"title\":\"Alice Ink\",\"primaryTitle\":\"Alice Ink\"},{\"title\":\"Alinean\",\"primaryTitle\":\"Alinean\"},{\"title\":\"All Access Staging & Productions\",\"primaryTitle\":\"All Access Staging & Productions\"},{\"title\":\"All Action Architectural Metal & Glass\",\"primaryTitle\":\"All Action Architectural Metal & Glass\"},{\"title\":\"All American Rentals\",\"primaryTitle\":\"All American Rentals\"},{\"title\":\"All American Swim Supply\",\"primaryTitle\":\"All American Swim Supply\"},{\"title\":\"All Copy Products\",\"primaryTitle\":\"All Copy Products\"},{\"title\":\"All Covered\",\"primaryTitle\":\"All Covered\"},{\"title\":\"All Med Medical Supply\",\"primaryTitle\":\"All Med Medical Supply\"},{\"title\":\"All Phase Security\",\"primaryTitle\":\"All Phase Security\"},{\"title\":\"All Safe Industries\",\"primaryTitle\":\"All Safe Industries\"},{\"title\":\"All Sensors Corporation\",\"primaryTitle\":\"All Sensors Corporation\"},{\"title\":\"All Star Directories\",\"primaryTitle\":\"All Star Directories\"},{\"title\":\"All Web Leads\",\"primaryTitle\":\"All Web Leads\"},{\"title\":\"All4\",\"primaryTitle\":\"All4\"},{\"title\":\"Allana Buick & Bers\",\"primaryTitle\":\"Allana Buick & Bers\"},{\"title\":\"Allconnect\",\"primaryTitle\":\"Allconnect\"},{\"title\":\"Allegiance\",\"primaryTitle\":\"Allegiance\"},{\"title\":\"Allen Corporation of America\",\"primaryTitle\":\"Allen Corporation of America\"},{\"title\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryTitle\":\"Allen Matkins Leck Gamble Mallory & Natsis\"},{\"title\":\"Alliance Benefit Group of Illinois\",\"primaryTitle\":\"Alliance Benefit Group of Illinois\"},{\"title\":\"Alliance Solutions Group\",\"primaryTitle\":\"Alliance Solutions Group\"},{\"title\":\"Alliance Technologies\",\"primaryTitle\":\"Alliance Technologies\"},{\"title\":\"Alliant Healthcare Products\",\"primaryTitle\":\"Alliant Healthcare Products\"},{\"title\":\"Alliant National Title Insurance\",\"primaryTitle\":\"Alliant National Title Insurance\"},{\"title\":\"Allied 100\",\"primaryTitle\":\"Allied 100\"},{\"title\":\"Allied Industries\",\"primaryTitle\":\"Allied Industries\"},{\"title\":\"Allmenus.com\",\"primaryTitle\":\"Allmenus.com\"},{\"title\":\"Alltrust Insurance\",\"primaryTitle\":\"Alltrust Insurance\"},{\"title\":\"Alpha Card Services\",\"primaryTitle\":\"Alpha Card Services\"},{\"title\":\"Alpha Imaging\",\"primaryTitle\":\"Alpha Imaging\"},{\"title\":\"Alpha Source\",\"primaryTitle\":\"Alpha Source\"},{\"title\":\"AlphaMetrix Group\",\"primaryTitle\":\"AlphaMetrix Group\"},{\"title\":\"Alpine Access\",\"primaryTitle\":\"Alpine Access\"},{\"title\":\"Alpine Waste & Recycling\",\"primaryTitle\":\"Alpine Waste & Recycling\"},{\"title\":\"Alps Controls\",\"primaryTitle\":\"Alps Controls\"},{\"title\":\"Alston & Bird\",\"primaryTitle\":\"Alston & Bird\"},{\"title\":\"Altec Solutions Group\",\"primaryTitle\":\"Altec Solutions Group\"},{\"title\":\"Alteris Renewables\",\"primaryTitle\":\"Alteris Renewables\"},{\"title\":\"Alternate Solutions Homecare\",\"primaryTitle\":\"Alternate Solutions Homecare\"},{\"title\":\"Altour\",\"primaryTitle\":\"Altour\"},{\"title\":\"Altum\",\"primaryTitle\":\"Altum\"},{\"title\":\"Always Best Care Senior Services\",\"primaryTitle\":\"Always Best Care Senior Services\"},{\"title\":\"Amadeus Consulting\",\"primaryTitle\":\"Amadeus Consulting\"},{\"title\":\"AmazingCharts\",\"primaryTitle\":\"AmazingCharts\"},{\"title\":\"Ambient Bamboo Floors\",\"primaryTitle\":\"Ambient Bamboo Floors\"},{\"title\":\"Ambit Energy\",\"primaryTitle\":\"Ambit Energy\"},{\"title\":\"Amcom Software\",\"primaryTitle\":\"Amcom Software\"},{\"title\":\"Amelia's\",\"primaryTitle\":\"Amelia's\"},{\"title\":\"Amensys\",\"primaryTitle\":\"Amensys\"},{\"title\":\"Ameresco\",\"primaryTitle\":\"Ameresco\"},{\"title\":\"Ameri-Kleen\",\"primaryTitle\":\"Ameri-Kleen\"},{\"title\":\"AmeriQuest Transportation Services\",\"primaryTitle\":\"AmeriQuest Transportation Services\"},{\"title\":\"America's Window\",\"primaryTitle\":\"America's Window\"},{\"title\":\"AmericaRx.com\",\"primaryTitle\":\"AmericaRx.com\"},{\"title\":\"American Bancard\",\"primaryTitle\":\"American Bancard\"},{\"title\":\"American Broadband\",\"primaryTitle\":\"American Broadband\"},{\"title\":\"American Business Solutions\",\"primaryTitle\":\"American Business Solutions\"},{\"title\":\"American Communications\",\"primaryTitle\":\"American Communications\"},{\"title\":\"American Ear Hearing & Audiology\",\"primaryTitle\":\"American Ear Hearing & Audiology\"},{\"title\":\"American Exteriors\",\"primaryTitle\":\"American Exteriors\"},{\"title\":\"American Fire Restoration\",\"primaryTitle\":\"American Fire Restoration\"},{\"title\":\"American Home Companions\",\"primaryTitle\":\"American Home Companions\"},{\"title\":\"American IT Solutions\",\"primaryTitle\":\"American IT Solutions\"},{\"title\":\"American Paper Optics\",\"primaryTitle\":\"American Paper Optics\"},{\"title\":\"American Portfolios Financial Services\",\"primaryTitle\":\"American Portfolios Financial Services\"},{\"title\":\"American Radiologist Network\",\"primaryTitle\":\"American Radiologist Network\"},{\"title\":\"American Reporting\",\"primaryTitle\":\"American Reporting\"},{\"title\":\"American Security Programs\",\"primaryTitle\":\"American Security Programs\"},{\"title\":\"American Solar Electric\",\"primaryTitle\":\"American Solar Electric\"},{\"title\":\"American Specialty Health\",\"primaryTitle\":\"American Specialty Health\"},{\"title\":\"American Swiss Products\",\"primaryTitle\":\"American Swiss Products\"},{\"title\":\"American Technologies\",\"primaryTitle\":\"American Technologies\"},{\"title\":\"American Tire Distributors\",\"primaryTitle\":\"American Tire Distributors\"},{\"title\":\"American Unit\",\"primaryTitle\":\"American Unit\"},{\"title\":\"Americollect\",\"primaryTitle\":\"Americollect\"},{\"title\":\"Amherst Partners\",\"primaryTitle\":\"Amherst Partners\"},{\"title\":\"Amigo Mobility International\",\"primaryTitle\":\"Amigo Mobility International\"},{\"title\":\"Amnet Technology Solutions\",\"primaryTitle\":\"Amnet Technology Solutions\"},{\"title\":\"Amotec\",\"primaryTitle\":\"Amotec\"},{\"title\":\"Ampcus\",\"primaryTitle\":\"Ampcus\"},{\"title\":\"Amtek Consulting\",\"primaryTitle\":\"Amtek Consulting\"},{\"title\":\"Amyx\",\"primaryTitle\":\"Amyx\"},{\"title\":\"An Amazing Organization\",\"primaryTitle\":\"An Amazing Organization\"},{\"title\":\"Anadarko Industries\",\"primaryTitle\":\"Anadarko Industries\"},{\"title\":\"Anago Cleaning Systems\",\"primaryTitle\":\"Anago Cleaning Systems\"},{\"title\":\"Anakam\",\"primaryTitle\":\"Anakam\"},{\"title\":\"Anchor Innovation\",\"primaryTitle\":\"Anchor Innovation\"},{\"title\":\"Andera\",\"primaryTitle\":\"Andera\"},{\"title\":\"Andrews & Company\",\"primaryTitle\":\"Andrews & Company\"},{\"title\":\"Andrews Kurth\",\"primaryTitle\":\"Andrews Kurth\"},{\"title\":\"Andromeda Systems\",\"primaryTitle\":\"Andromeda Systems\"},{\"title\":\"Angel Staffing\",\"primaryTitle\":\"Angel Staffing\"},{\"title\":\"AngelVision\",\"primaryTitle\":\"AngelVision\"},{\"title\":\"Angie's List\",\"primaryTitle\":\"Angie's List\"},{\"title\":\"Animax Entertainment\",\"primaryTitle\":\"Animax Entertainment\"},{\"title\":\"Annapolis Micro Systems\",\"primaryTitle\":\"Annapolis Micro Systems\"},{\"title\":\"Annese & Associates\",\"primaryTitle\":\"Annese & Associates\"},{\"title\":\"Annie's\",\"primaryTitle\":\"Annie's\"},{\"title\":\"Ansafone Contact Centers\",\"primaryTitle\":\"Ansafone Contact Centers\"},{\"title\":\"Answer Center America\",\"primaryTitle\":\"Answer Center America\"},{\"title\":\"AnswerLab\",\"primaryTitle\":\"AnswerLab\"},{\"title\":\"AnswerNet\",\"primaryTitle\":\"AnswerNet\"},{\"title\":\"Antennas Direct\",\"primaryTitle\":\"Antennas Direct\"},{\"title\":\"Anthem Media Group\",\"primaryTitle\":\"Anthem Media Group\"},{\"title\":\"AnthroTronix\",\"primaryTitle\":\"AnthroTronix\"},{\"title\":\"Anu Resources Unlimited\",\"primaryTitle\":\"Anu Resources Unlimited\"},{\"title\":\"Anulex Technologies\",\"primaryTitle\":\"Anulex Technologies\"},{\"title\":\"AnythingIT\",\"primaryTitle\":\"AnythingIT\"},{\"title\":\"Anytime Fitness\",\"primaryTitle\":\"Anytime Fitness\"},{\"title\":\"AnytimeCostumes.com\",\"primaryTitle\":\"AnytimeCostumes.com\"},{\"title\":\"Apex Instruments\",\"primaryTitle\":\"Apex Instruments\"},{\"title\":\"Apex Print Technologies\",\"primaryTitle\":\"Apex Print Technologies\"},{\"title\":\"Apex Systems\",\"primaryTitle\":\"Apex Systems\"},{\"title\":\"Apex Technology Group\",\"primaryTitle\":\"Apex Technology Group\"},{\"title\":\"AppRiver\",\"primaryTitle\":\"AppRiver\"},{\"title\":\"Apparatus\",\"primaryTitle\":\"Apparatus\"},{\"title\":\"Appia Communications\",\"primaryTitle\":\"Appia Communications\"},{\"title\":\"Apple-Metro\",\"primaryTitle\":\"Apple-Metro\"},{\"title\":\"Appletree Answering Service\",\"primaryTitle\":\"Appletree Answering Service\"},{\"title\":\"Appliance Zone\",\"primaryTitle\":\"Appliance Zone\"},{\"title\":\"Applied Analytics\",\"primaryTitle\":\"Applied Analytics\"},{\"title\":\"Applied Data\",\"primaryTitle\":\"Applied Data\"},{\"title\":\"Applied Digital Solutions\",\"primaryTitle\":\"Applied Digital Solutions\"},{\"title\":\"Applied Scientific Instrumentation\",\"primaryTitle\":\"Applied Scientific Instrumentation\"},{\"title\":\"Applied Trust\",\"primaryTitle\":\"Applied Trust\"},{\"title\":\"Apptis\",\"primaryTitle\":\"Apptis\"},{\"title\":\"Aprimo\",\"primaryTitle\":\"Aprimo\"},{\"title\":\"Aptela\",\"primaryTitle\":\"Aptela\"},{\"title\":\"Aptera Software\",\"primaryTitle\":\"Aptera Software\"},{\"title\":\"Aqua Superstore\",\"primaryTitle\":\"Aqua Superstore\"},{\"title\":\"Aquifer Solutions\",\"primaryTitle\":\"Aquifer Solutions\"},{\"title\":\"Aquire\",\"primaryTitle\":\"Aquire\"},{\"title\":\"Arbor-Nomics Turf\",\"primaryTitle\":\"Arbor-Nomics Turf\"},{\"title\":\"Arborwell\",\"primaryTitle\":\"Arborwell\"},{\"title\":\"Arc Aspicio\",\"primaryTitle\":\"Arc Aspicio\"},{\"title\":\"ArcaMax Publishing\",\"primaryTitle\":\"ArcaMax Publishing\"},{\"title\":\"ArcaTech Systems\",\"primaryTitle\":\"ArcaTech Systems\"},{\"title\":\"Arch-Con\",\"primaryTitle\":\"Arch-Con\"},{\"title\":\"Archimedes Global\",\"primaryTitle\":\"Archimedes Global\"},{\"title\":\"Archinoetics\",\"primaryTitle\":\"Archinoetics\"},{\"title\":\"Archway Marketing Services\",\"primaryTitle\":\"Archway Marketing Services\"},{\"title\":\"Archway Technology Partners\",\"primaryTitle\":\"Archway Technology Partners\"},{\"title\":\"Arcus\",\"primaryTitle\":\"Arcus\"},{\"title\":\"Area51-ESG\",\"primaryTitle\":\"Area51-ESG\"},{\"title\":\"Arent Fox\",\"primaryTitle\":\"Arent Fox\"},{\"title\":\"Argent Associates\",\"primaryTitle\":\"Argent Associates\"},{\"title\":\"Argent Capital Management\",\"primaryTitle\":\"Argent Capital Management\"},{\"title\":\"Aribex\",\"primaryTitle\":\"Aribex\"},{\"title\":\"Arizon Companies\",\"primaryTitle\":\"Arizon Companies\"},{\"title\":\"Arizona Blinds\",\"primaryTitle\":\"Arizona Blinds\"},{\"title\":\"Arkadin\",\"primaryTitle\":\"Arkadin\"},{\"title\":\"Arkadium\",\"primaryTitle\":\"Arkadium\"},{\"title\":\"Arketi Group\",\"primaryTitle\":\"Arketi Group\"},{\"title\":\"Armedia\",\"primaryTitle\":\"Armedia\"},{\"title\":\"Arnold & Porter\",\"primaryTitle\":\"Arnold & Porter\"},{\"title\":\"Aromatic Fusion\",\"primaryTitle\":\"Aromatic Fusion\"},{\"title\":\"Arona\",\"primaryTitle\":\"Arona\"},{\"title\":\"Arora Engineers\",\"primaryTitle\":\"Arora Engineers\"},{\"title\":\"Array Information Technology\",\"primaryTitle\":\"Array Information Technology\"},{\"title\":\"Arrow Glass & Mirror\",\"primaryTitle\":\"Arrow Glass & Mirror\"},{\"title\":\"Arrow Partnership\",\"primaryTitle\":\"Arrow Partnership\"},{\"title\":\"Arrow Strategies\",\"primaryTitle\":\"Arrow Strategies\"},{\"title\":\"ArrowStream\",\"primaryTitle\":\"ArrowStream\"},{\"title\":\"Arrowhead Advertising\",\"primaryTitle\":\"Arrowhead Advertising\"},{\"title\":\"Arroyo Process Equipment\",\"primaryTitle\":\"Arroyo Process Equipment\"},{\"title\":\"Arsalon Technologies\",\"primaryTitle\":\"Arsalon Technologies\"},{\"title\":\"Art & Logic\",\"primaryTitle\":\"Art & Logic\"},{\"title\":\"Artech Information Systems\",\"primaryTitle\":\"Artech Information Systems\"},{\"title\":\"Artemis Laser and Vein Center\",\"primaryTitle\":\"Artemis Laser and Vein Center\"},{\"title\":\"Ascend HR\",\"primaryTitle\":\"Ascend HR\"},{\"title\":\"Ascend One\",\"primaryTitle\":\"Ascend One\"},{\"title\":\"Ascendant Compliance Management\",\"primaryTitle\":\"Ascendant Compliance Management\"},{\"title\":\"Ascendant Technology\",\"primaryTitle\":\"Ascendant Technology\"},{\"title\":\"Ascendent Engineering & Safety Solutions\",\"primaryTitle\":\"Ascendent Engineering & Safety Solutions\"},{\"title\":\"Ascentium\",\"primaryTitle\":\"Ascentium\"},{\"title\":\"Ashland Technologies\",\"primaryTitle\":\"Ashland Technologies\"},{\"title\":\"Aspen Exteriors\",\"primaryTitle\":\"Aspen Exteriors\"},{\"title\":\"Aspen Transportation\",\"primaryTitle\":\"Aspen Transportation\"},{\"title\":\"Aspen of DC\",\"primaryTitle\":\"Aspen of DC\"},{\"title\":\"Aspire Systems\",\"primaryTitle\":\"Aspire Systems\"},{\"title\":\"AspireHR\",\"primaryTitle\":\"AspireHR\"},{\"title\":\"Asset Protection and Security Services\",\"primaryTitle\":\"Asset Protection and Security Services\"},{\"title\":\"Astek Wallcovering\",\"primaryTitle\":\"Astek Wallcovering\"},{\"title\":\"Astir IT Solutions\",\"primaryTitle\":\"Astir IT Solutions\"},{\"title\":\"Astor & Black Custom Clothiers\",\"primaryTitle\":\"Astor & Black Custom Clothiers\"},{\"title\":\"Astyra\",\"primaryTitle\":\"Astyra\"},{\"title\":\"AtLast Fulfillment\",\"primaryTitle\":\"AtLast Fulfillment\"},{\"title\":\"AtNetPlus\",\"primaryTitle\":\"AtNetPlus\"},{\"title\":\"AtTask\",\"primaryTitle\":\"AtTask\"},{\"title\":\"Atkinson-Baker\",\"primaryTitle\":\"Atkinson-Baker\"},{\"title\":\"Atlantic Business Technologies\",\"primaryTitle\":\"Atlantic Business Technologies\"},{\"title\":\"Atlantic Metro Communications\",\"primaryTitle\":\"Atlantic Metro Communications\"},{\"title\":\"Atlantic Remodeling\",\"primaryTitle\":\"Atlantic Remodeling\"},{\"title\":\"Atlas Oil Company\",\"primaryTitle\":\"Atlas Oil Company\"},{\"title\":\"Atlas Travel International\",\"primaryTitle\":\"Atlas Travel International\"},{\"title\":\"Atomic Tattoos\",\"primaryTitle\":\"Atomic Tattoos\"},{\"title\":\"Attack!\",\"primaryTitle\":\"Attack!\"},{\"title\":\"Auction Systems Auctioneers & Appraisers\",\"primaryTitle\":\"Auction Systems Auctioneers & Appraisers\"},{\"title\":\"Audigy Group\",\"primaryTitle\":\"Audigy Group\"},{\"title\":\"Audio Messaging Solutions\",\"primaryTitle\":\"Audio Messaging Solutions\"},{\"title\":\"Aurora Networks\",\"primaryTitle\":\"Aurora Networks\"},{\"title\":\"Austin GeoModeling\",\"primaryTitle\":\"Austin GeoModeling\"},{\"title\":\"Austin Ribbon & Computer\",\"primaryTitle\":\"Austin Ribbon & Computer\"},{\"title\":\"AutoAccessoriesGarage.com\",\"primaryTitle\":\"AutoAccessoriesGarage.com\"},{\"title\":\"AutoClaims Direct\",\"primaryTitle\":\"AutoClaims Direct\"},{\"title\":\"AutoRevo\",\"primaryTitle\":\"AutoRevo\"},{\"title\":\"AutoTec\",\"primaryTitle\":\"AutoTec\"},{\"title\":\"Autohaus Arizona\",\"primaryTitle\":\"Autohaus Arizona\"},{\"title\":\"Automated Voice & Data Solutions\",\"primaryTitle\":\"Automated Voice & Data Solutions\"},{\"title\":\"Automotive Events\",\"primaryTitle\":\"Automotive Events\"},{\"title\":\"Automotive Product Consultants\",\"primaryTitle\":\"Automotive Product Consultants\"},{\"title\":\"Avail-TVN\",\"primaryTitle\":\"Avail-TVN\"},{\"title\":\"Avalanche Creative Services\",\"primaryTitle\":\"Avalanche Creative Services\"},{\"title\":\"Avalara\",\"primaryTitle\":\"Avalara\"},{\"title\":\"Avalex Technologies Corporation\",\"primaryTitle\":\"Avalex Technologies Corporation\"},{\"title\":\"Avalon Consulting\",\"primaryTitle\":\"Avalon Consulting\"},{\"title\":\"Avalon Document Services\",\"primaryTitle\":\"Avalon Document Services\"},{\"title\":\"Avalon Global Solutions\",\"primaryTitle\":\"Avalon Global Solutions\"},{\"title\":\"AvantLink.com\",\"primaryTitle\":\"AvantLink.com\"},{\"title\":\"AvcomEast\",\"primaryTitle\":\"AvcomEast\"},{\"title\":\"AvePoint\",\"primaryTitle\":\"AvePoint\"},{\"title\":\"Avenue You Beauty Store\",\"primaryTitle\":\"Avenue You Beauty Store\"},{\"title\":\"Avian Engineering\",\"primaryTitle\":\"Avian Engineering\"},{\"title\":\"Avidian Technologies\",\"primaryTitle\":\"Avidian Technologies\"},{\"title\":\"Avineon\",\"primaryTitle\":\"Avineon\"},{\"title\":\"Avisena\",\"primaryTitle\":\"Avisena\"},{\"title\":\"Avondale Partners\",\"primaryTitle\":\"Avondale Partners\"},{\"title\":\"Avtec Homes\",\"primaryTitle\":\"Avtec Homes\"},{\"title\":\"Aware Web Solutions\",\"primaryTitle\":\"Aware Web Solutions\"},{\"title\":\"Axeda\",\"primaryTitle\":\"Axeda\"},{\"title\":\"Axis Teknologies\",\"primaryTitle\":\"Axis Teknologies\"},{\"title\":\"Axispoint\",\"primaryTitle\":\"Axispoint\"},{\"title\":\"Axom Technologies\",\"primaryTitle\":\"Axom Technologies\"},{\"title\":\"Axyon Consulting\",\"primaryTitle\":\"Axyon Consulting\"},{\"title\":\"Ayuda Management\",\"primaryTitle\":\"Ayuda Management\"},{\"title\":\"Azavea\",\"primaryTitle\":\"Azavea\"},{\"title\":\"Aztec Systems\",\"primaryTitle\":\"Aztec Systems\"},{\"title\":\"B Resource\",\"primaryTitle\":\"B Resource\"},{\"title\":\"B&S Electric Supply\",\"primaryTitle\":\"B&S Electric Supply\"},{\"title\":\"B2B CFO\",\"primaryTitle\":\"B2B CFO\"},{\"title\":\"BACtrack Breathalyzers\",\"primaryTitle\":\"BACtrack Breathalyzers\"},{\"title\":\"BANC3\",\"primaryTitle\":\"BANC3\"},{\"title\":\"BB&E \",\"primaryTitle\":\"BB&E \"},{\"title\":\"BBE\",\"primaryTitle\":\"BBE\"},{\"title\":\"BBH Solutions\",\"primaryTitle\":\"BBH Solutions\"},{\"title\":\"BBS Technologies\",\"primaryTitle\":\"BBS Technologies\"},{\"title\":\"BCT Consulting\",\"primaryTitle\":\"BCT Consulting\"},{\"title\":\"BEAR Data Systems\",\"primaryTitle\":\"BEAR Data Systems\"},{\"title\":\"BG Medicine\",\"primaryTitle\":\"BG Medicine\"},{\"title\":\"BHI Advanced Internet\",\"primaryTitle\":\"BHI Advanced Internet\"},{\"title\":\"BI Consulting Group\",\"primaryTitle\":\"BI Consulting Group\"},{\"title\":\"BIGresearch\",\"primaryTitle\":\"BIGresearch\"},{\"title\":\"BITadvisors\",\"primaryTitle\":\"BITadvisors\"},{\"title\":\"BLUE Microphones\",\"primaryTitle\":\"BLUE Microphones\"},{\"title\":\"BOC International\",\"primaryTitle\":\"BOC International\"},{\"title\":\"BOSH Global Services\",\"primaryTitle\":\"BOSH Global Services\"},{\"title\":\"BPA International\",\"primaryTitle\":\"BPA International\"},{\"title\":\"BRS Media\",\"primaryTitle\":\"BRS Media\"},{\"title\":\"BabyEarth\",\"primaryTitle\":\"BabyEarth\"},{\"title\":\"BackJoy Orthotics\",\"primaryTitle\":\"BackJoy Orthotics\"},{\"title\":\"BackOffice Associates\",\"primaryTitle\":\"BackOffice Associates\"},{\"title\":\"BackgroundChecks.com\",\"primaryTitle\":\"BackgroundChecks.com\"},{\"title\":\"Baggallini\",\"primaryTitle\":\"Baggallini\"},{\"title\":\"Bailey Kennedy\",\"primaryTitle\":\"Bailey Kennedy\"},{\"title\":\"Bain Medina Bain\",\"primaryTitle\":\"Bain Medina Bain\"},{\"title\":\"Baker & McKenzie\",\"primaryTitle\":\"Baker & McKenzie\"},{\"title\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryTitle\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"},{\"title\":\"BakerRisk\",\"primaryTitle\":\"BakerRisk\"},{\"title\":\"Balance Staffing\",\"primaryTitle\":\"Balance Staffing\"},{\"title\":\"BalancePoint\",\"primaryTitle\":\"BalancePoint\"},{\"title\":\"Balihoo\",\"primaryTitle\":\"Balihoo\"},{\"title\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryTitle\":\"Ballard Spahr Andrews & Ingersoll\"}],\"paging\":{\"total\":4846,\"count\":500,\"offset\":0,\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?limit=500&offset=500\"},\"cacheId\":\"799a927d00d73d6d542c24840fd4bef7\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1357,18 +1388,18 @@ "Content-Type": "application/json" } }, - "uuid": "953eb11f-d731-4491-88c8-009241255f7e" + "uuid": "185f3212-b75e-48fa-9b05-42a17c298fac" }, { - "id": "d1361f50-0bde-499e-8f00-9f2031d9113b", + "id": "d08682a6-3114-4327-8c72-7f2951fa141e", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_activity.subject&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_account.account.name&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=1&size=20\"}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -1386,63 +1417,63 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d1361f50-0bde-499e-8f00-9f2031d9113b" + "uuid": "d08682a6-3114-4327-8c72-7f2951fa141e" }, { - "id": "3e8f355d-c976-4407-9431-c277b89de4bc", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "bbb9debb-d739-4470-abc6-118e64253711", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_account.account.name&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27c4e4916e-ccc2-46d1-8202-8321249ec2a3%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_account.account.name%27&page=1&size=20\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27c4e4916e-ccc2-46d1-8202-8321249ec2a3%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "3e8f355d-c976-4407-9431-c277b89de4bc" + "uuid": "bbb9debb-d739-4470-abc6-118e64253711" }, { - "id": "4211915c-63e4-4073-8a71-ca85266318bf", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "f0a5fa9c-ca95-41ac-b126-f3711f025829", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%27c4e4916e-ccc2-46d1-8202-8321249ec2a3%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_activity.subject&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%27c4e4916e-ccc2-46d1-8202-8321249ec2a3%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_activity.subject%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4211915c-63e4-4073-8a71-ca85266318bf" + "uuid": "f0a5fa9c-ca95-41ac-b126-f3711f025829" }, { - "id": "d2f6f955-c3ed-4813-825c-64017e77eff5", + "id": "c8c56030-2e28-458f-9e5b-b9b77feb643a", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3Dc4e4916e-ccc2-46d1-8202-8321249ec2a3%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -1463,10 +1494,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d2f6f955-c3ed-4813-825c-64017e77eff5" + "uuid": "c8c56030-2e28-458f-9e5b-b9b77feb643a" }, { - "id": "a8e16579-bd2a-4eae-90cd-bfbc067401bb", + "id": "c56116a3-9067-4ef2-bab1-06ca71bf11fe", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_c4e4916e-ccc2-46d1-8202-8321249ec2a3", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", @@ -1492,7 +1523,7 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a8e16579-bd2a-4eae-90cd-bfbc067401bb" + "uuid": "c56116a3-9067-4ef2-bab1-06ca71bf11fe" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-insightOnDashboard.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-insightOnDashboard.spec.ts.json index 35d22267cc9..6659cd588f2 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-insightOnDashboard.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-insightOnDashboard.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "2a0d68dc-d7c3-4fc1-a97d-fda94d40ac61", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_67616a323495b66ad7b8fa4fcbd0982da6e9e4c3377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1", + "id": "8b63eb86-a846-4ff3-845b-e47daac8e24a", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_b5aba9a4ec7f4a897150b6e488f18c3261e44448d0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/67616a323495b66ad7b8fa4fcbd0982da6e9e4c3%3A377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/b5aba9a4ec7f4a897150b6e488f18c3261e44448%3Ad0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb", "method": "GET" }, "response": { @@ -22,10 +22,10 @@ "Content-Type": "application/json" } }, - "uuid": "2a0d68dc-d7c3-4fc1-a97d-fda94d40ac61" + "uuid": "8b63eb86-a846-4ff3-845b-e47daac8e24a" }, { - "id": "ceb44671-24d6-4a7f-9ad3-1c6fa14684dd", + "id": "a5f0b047-d0a5-4474-a72c-02a2fc2fb3af", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -45,7 +45,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"67616a323495b66ad7b8fa4fcbd0982da6e9e4c3:377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"b5aba9a4ec7f4a897150b6e488f18c3261e44448:d0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -58,10 +58,10 @@ "Content-Type": "application/json" } }, - "uuid": "ceb44671-24d6-4a7f-9ad3-1c6fa14684dd" + "uuid": "a5f0b047-d0a5-4474-a72c-02a2fc2fb3af" }, { - "id": "d6fec631-106e-43c4-adaa-7622c9f35b07", + "id": "51460922-f160-488c-a172-aff87055e589", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts&metaInclude=accessInfo", @@ -69,7 +69,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-11-28 09:18\"},\"relationships\":{\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts&metaInclude=accessInfo\"}}", + "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-12-11 19:21\"},\"relationships\":{\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -87,10 +87,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d6fec631-106e-43c4-adaa-7622c9f35b07" + "uuid": "51460922-f160-488c-a172-aff87055e589" }, { - "id": "d0447088-47b5-412c-ad7e-3d368874f841", + "id": "7d14cc64-499c-4bba-8580-7e2aec76d288", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", @@ -110,7 +110,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-11-28 09:18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"}}", + "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-12-11 19:21\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -128,10 +128,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d0447088-47b5-412c-ad7e-3d368874f841" + "uuid": "7d14cc64-499c-4bba-8580-7e2aec76d288" }, { - "id": "ac463717-e091-4eec-9f81-b832541c9e96", + "id": "61bcede5-030c-4ee8-bbca-ec6d80f4ed2b", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -139,7 +139,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -150,10 +150,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ac463717-e091-4eec-9f81-b832541c9e96" + "uuid": "61bcede5-030c-4ee8-bbca-ec6d80f4ed2b" }, { - "id": "463ee873-ae46-4fc2-995b-9853c6659c88", + "id": "1f8d5370-77ee-4be7-9f6d-fe4e0523f816", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -161,7 +161,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -179,10 +179,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "463ee873-ae46-4fc2-995b-9853c6659c88" + "uuid": "1f8d5370-77ee-4be7-9f6d-fe4e0523f816" }, { - "id": "bf2b0623-db78-4a07-8111-bc479bf492d2", + "id": "136a6c8b-9d26-4ff0-bc66-f1eef8747f16", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", @@ -203,10 +203,10 @@ "Content-Type": "application/json" } }, - "uuid": "bf2b0623-db78-4a07-8111-bc479bf492d2" + "uuid": "136a6c8b-9d26-4ff0-bc66-f1eef8747f16" }, { - "id": "59d893a8-c952-4336-9e54-492aa1abd880", + "id": "3799d766-b3af-431a-8981-9c3e30484794", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -227,10 +227,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "59d893a8-c952-4336-9e54-492aa1abd880" + "uuid": "3799d766-b3af-431a-8981-9c3e30484794" }, { - "id": "1f450563-4aa0-46f6-b36c-47b8246d0e46", + "id": "2aab3c03-1cc7-4e0c-921c-00a4683142f6", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -251,10 +251,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1f450563-4aa0-46f6-b36c-47b8246d0e46" + "uuid": "2aab3c03-1cc7-4e0c-921c-00a4683142f6" }, { - "id": "c97a1fec-1393-4e04-8054-f76e59f04b46", + "id": "262a82bb-3ecb-498c-9938-364a5beb1544", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%2746dbb7b3-468c-436f-a2ff-85fbf4e8d5ad%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", @@ -275,10 +275,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "c97a1fec-1393-4e04-8054-f76e59f04b46" + "uuid": "262a82bb-3ecb-498c-9938-364a5beb1544" }, { - "id": "23e16f4a-6501-469c-9a87-f18f8cd24128", + "id": "52f4e96e-c716-4445-87d7-33dd30fbc5e6", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -299,10 +299,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "23e16f4a-6501-469c-9a87-f18f8cd24128" + "uuid": "52f4e96e-c716-4445-87d7-33dd30fbc5e6" }, { - "id": "56331cba-dc56-4c83-a0c2-4edbd125def7", + "id": "b3275393-c70f-4a53-afdf-0c6baa6b5317", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -310,7 +310,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -328,10 +328,39 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "56331cba-dc56-4c83-a0c2-4edbd125def7" + "uuid": "b3275393-c70f-4a53-afdf-0c6baa6b5317" }, { - "id": "f2934314-5301-4c7f-aec7-a0a1cfd21bf5", + "id": "65f767db-668c-427f-9d21-c56e4553a453", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/vnd.gooddata.api+json" + } + }, + "uuid": "65f767db-668c-427f-9d21-c56e4553a453" + }, + { + "id": "a5a27e3e-4929-42ec-9094-d688b9d2cd2a", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -352,18 +381,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f2934314-5301-4c7f-aec7-a0a1cfd21bf5" + "uuid": "a5a27e3e-4929-42ec-9094-d688b9d2cd2a" }, { - "id": "26aabe11-e962-4f0e-be52-2353fa31a963", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "40d69603-2bec-4a36-8d9a-9780b875350b", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -381,18 +410,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "26aabe11-e962-4f0e-be52-2353fa31a963" + "uuid": "40d69603-2bec-4a36-8d9a-9780b875350b" }, { - "id": "99b93551-ac7a-4597-b9ef-7140b39ead0c", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad", + "id": "2b4abe2a-e1bc-4943-928b-0ae58cff6472", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"dateFilter\":{\"from\":0,\"granularity\":\"GDC.time.month\",\"to\":0,\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/882c3455-5c89-4577-a9c2-aa60ca875d19\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -410,10 +439,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "99b93551-ac7a-4597-b9ef-7140b39ead0c" + "uuid": "2b4abe2a-e1bc-4943-928b-0ae58cff6472" }, { - "id": "8a5ef6ea-d87f-45ed-aba4-199b42e5bec2", + "id": "f5b57850-bcd2-4574-8fa4-7e645e8a1737", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -421,7 +450,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -437,39 +466,46 @@ "Content-Type": "application/json" } }, - "uuid": "8a5ef6ea-d87f-45ed-aba4-199b42e5bec2" + "uuid": "f5b57850-bcd2-4574-8fa4-7e645e8a1737" }, { - "id": "acbe5ec4-623a-4364-be57-d3c3961e79a5", - "name": "api_v1_entities_workspaces", + "id": "11b329e3-79a4-4b95-9a5c-7f6edefd0397", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "headers": { + "X-GDC-TEST-NAME": { + "equalTo": "Insights-on-dashboard---It-(SEPARATE)-can-rename-an-existing-insight" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "acbe5ec4-623a-4364-be57-d3c3961e79a5" + "uuid": "11b329e3-79a4-4b95-9a5c-7f6edefd0397" }, { - "id": "3be1be83-6dd3-468a-89f0-25d6516c881e", + "id": "fc5363d4-5940-4e7b-9a02-5cd4dd438224", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -477,7 +513,7 @@ }, "response": { "status": 200, - "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", + "body": "{\"organizationId\":\"staging-automation\",\"organizationName\":\"Staging Automation, QA AWS.\",\"userId\":\"admin\",\"permissions\":[\"MANAGE\",\"SELF_CREATE_TOKEN\"],\"telemetry\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2,\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"telemetryConfig\":{\"context\":{\"deploymentId\":\"deploymentId\",\"organizationHash\":\"bea76a2929bee15d760c823b1c97612174e87fff\",\"userHash\":\"27247146f055a8f9b6786e0c525c66d878a9d9bf\"},\"services\":{\"matomo\":{\"host\":\"https://matomo.anywhere.gooddata.com/matomo.php\",\"siteId\":2},\"openTelemetry\":{\"host\":\"https://collector.stg11.intgdc.com\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/profile\",\"organization\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/admin/organizations/staging-automation\",\"user\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/users/admin\"},\"features\":{\"live\":{\"configuration\":{\"host\":\"https://flags.panther.intgdc.com\",\"key\":\"default/f0352b97-5e76-4139-9059-4bea366cc2f9/q9yyvCPq957AR7T5GqfbIHaLZXAwqRtSzKt2Rtuv\"},\"context\":{\"earlyAccessValues\":[],\"earlyAccess\":\"\"}}},\"entitlements\":[{\"name\":\"AutomationRecipientCount\",\"value\":\"10\"},{\"name\":\"Contract\",\"expiry\":\"2026-04-26\"},{\"name\":\"ScheduledActionMinimumRecurrenceMinutes\",\"value\":\"60\"},{\"name\":\"UnlimitedAutomations\"},{\"name\":\"UnlimitedDailyAlertActions\"},{\"name\":\"UnlimitedDailyScheduledActions\"},{\"name\":\"UnlimitedUsers\"},{\"name\":\"UnlimitedWorkspaces\"},{\"name\":\"CustomTheming\"},{\"name\":\"UiLocalization\"},{\"name\":\"WhiteLabeling\"},{\"name\":\"PdfExports\"}]}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -493,13 +529,13 @@ "Content-Type": "application/json" } }, - "uuid": "3be1be83-6dd3-468a-89f0-25d6516c881e" + "uuid": "fc5363d4-5940-4e7b-9a02-5cd4dd438224" }, { - "id": "5ecfc5cf-94d9-4386-8739-71bb2b292950", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_3be2ebd84cabe3797ce89ef0e820fc23eae559857463a72a75a681a87fd9410c2942fadf811ff41508e563d85fcd42fae70733a2", + "id": "12538466-f94c-41ff-9029-12c147bfa249", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_77be663f92b7cda7296699a2fe56438ffcb1f40646297d777d1738ca85a607db7b5593638e8bb8a01241a51fc5bbda7c6ac01007", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/3be2ebd84cabe3797ce89ef0e820fc23eae55985%3A7463a72a75a681a87fd9410c2942fadf811ff41508e563d85fcd42fae70733a2", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/77be663f92b7cda7296699a2fe56438ffcb1f406%3A46297d777d1738ca85a607db7b5593638e8bb8a01241a51fc5bbda7c6ac01007", "method": "GET" }, "response": { @@ -517,10 +553,10 @@ "Content-Type": "application/json" } }, - "uuid": "5ecfc5cf-94d9-4386-8739-71bb2b292950" + "uuid": "12538466-f94c-41ff-9029-12c147bfa249" }, { - "id": "b4494d45-5a8d-4891-aa6d-f35495b6c218", + "id": "052a3331-3707-4138-ae3c-73af89da43a6", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -535,7 +571,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"3be2ebd84cabe3797ce89ef0e820fc23eae55985:7463a72a75a681a87fd9410c2942fadf811ff41508e563d85fcd42fae70733a2\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"77be663f92b7cda7296699a2fe56438ffcb1f406:46297d777d1738ca85a607db7b5593638e8bb8a01241a51fc5bbda7c6ac01007\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -548,10 +584,10 @@ "Content-Type": "application/json" } }, - "uuid": "b4494d45-5a8d-4891-aa6d-f35495b6c218" + "uuid": "052a3331-3707-4138-ae3c-73af89da43a6" }, { - "id": "7ea45a86-dd83-47f3-b1ea-1e0f4e04aea5", + "id": "92fef56f-4d5a-42ad-b5a4-cbaa298780a4", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -566,7 +602,38 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"67616a323495b66ad7b8fa4fcbd0982da6e9e4c3:377b8357372cfc3b247775c63bc9b826d48803ab4b53b8217880893ddfd1b5e1\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"b5aba9a4ec7f4a897150b6e488f18c3261e44448:d0be9bae718159e2e32dfc00b58d24c3b96929a80832d3dcc8afe68fe4644bbb\"}}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "92fef56f-4d5a-42ad-b5a4-cbaa298780a4" + }, + { + "id": "14a6c8b1-e70b-4259-95bb-577aa76a4575", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -579,10 +646,10 @@ "Content-Type": "application/json" } }, - "uuid": "7ea45a86-dd83-47f3-b1ea-1e0f4e04aea5" + "uuid": "14a6c8b1-e70b-4259-95bb-577aa76a4575" }, { - "id": "e96b97a6-7fae-4e6d-ad41-2179dd0b6d87", + "id": "dbe6d248-7b0e-418a-87d9-58e864f44614", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=title%3Dcontainsic%3D%27%3Ca+href%3D%22http%3A%2F%2Fwww.w3schools.com%22%3EGo%21%3C%2Fa%3E%27&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -603,7 +670,7 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "e96b97a6-7fae-4e6d-ad41-2179dd0b6d87" + "uuid": "dbe6d248-7b0e-418a-87d9-58e864f44614" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-manyData.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-manyData.spec.ts.json index 27d19f748f9..b92ff61e46a 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-manyData.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-manyData.spec.ts.json @@ -1,15 +1,15 @@ { "mappings": [ { - "id": "4a6c17df-de8a-44ca-b583-c790a54d433a", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_bbd5facc10e7d177d9cb487f55c88687452f56f4eb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006", + "id": "3fdaa09b-9e66-49c7-bd1e-978ab67e82d6", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_bc23fd3180d82875245d02393f89af1ddb5f8b82db2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/bbd5facc10e7d177d9cb487f55c88687452f56f4%3Aeb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/bc23fd3180d82875245d02393f89af1ddb5f8b82%3Adb2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[1421087,1341064,1079646,639461,639971,639691,721627,720589,1082419,642235,649957,720325,649521,1203573,640155,1306030,641281,644970,726382,726788,643520,1212221,644996,643330,642831,1291440,645475,725507,1452143,727142,647245,643153,642552,2457448,1287073,649081,644842,3478896,1211652,646552,644695,643265,2517665,645211,643953,646556,646823,644071,644736,2380614,645979,650598,643439,645723,724273,726854,645093,1245939,1290496,644093,645082,647007,727134,643984,1167560,645418,725080,728184,1248532,647506,1300714,1085904,646014,724266,644733,644617,724741,648058,647771,645807,647365,1331188,645785,648756,644561,645757,644534,648289,725744,1208634,1087431,647527,645781,1290073,730345,644694,1291352,1290959,1294649,647661,644880,1372637,727854,646907,645648,1307349,1087953,645011,644012,725030,644521,1288879,1208382,1459513,1288805,647754,650119,644776,729934,1452704,644555,647495,646083,727061,725617,644687,643991,645787,727229,648585,727213,2670178,651227,646394,646253,1129320,1333167,650158,728776,651823,1249516,646087,645433,1334106,646150,731960,726581,647964,648915,729685,2421615,1250642,646824,645333,1169629,1290529,1330928,725968,645673,646522,652934,647640,1290885,645144,645722,727453,1456619,726070,1169934,645659,1467159,729033,645760,645244,648122,1211181,2423120,1371694,1250676,644984,654733,1291970,646965,1299751,2177349,1291528,725864,2419011,647821,1373481,646340,646225,1251707,1309353,647942,650118,645912,1088778,653102,1209993,647069,1291640,2420580,1089045,2609562,1335440,1453452,727640,1210080,2730581,647720,2419782,651210,1088637,1538857,646078,645801,646504,647078,1414297,647122,650337,1414827,2420301,646228,1089339,1374444,648272,1332483,1494328,2669962,1542586,645806,1089720,647852,646872,1210710,646230,1210788,647602,647145,5324979,2421042,646943,1089627,649203,646291,1210890,1533957,1494129,1536118,647785,2744137,1534009,1535439,1416843,648058,1536084,1413539,1535216,727472,1414115,1414178,1413777,2746370,2744743,1535593,645340,654004,2744733,2745298,1413528,1414035,1413853,646425,1538179,1537827,1415745,5670944,649629,1417054,1416060,647255,646001,645936,726785,727765,1535375,1535917,1414157,648019,1414190,649257,1535553,1535542,729889,1536233,1535747,1536877,1414555,1414953,1414414,648754,1414563,1535694,652140,731638,733454,1415654,649231,652536,729103,648584,1414490,733843,728919,1414628,1537814,1536262,1535956,649139,650405,1414560,1417483,1333188,1414662,647691,653578,1414805,648233,1421376,652756,1211028,1332639,647616,1418770,1538337,1539464,1540604,730940,730380,649589,1538412,1418650,1414735,1415161,647094,1536357,1212060,653115,650002,654538,653174,648581,1212246,728589,1539927,1539570,1415260,649469,729634,1534364,1456541,648870,1413853,647327,647076,1535888,1415413,646314,647251,649158,646532,1331235,1413601,1416723,1413488,650548,1211154,1535255,1534977,1414116,1417756,1534934,652530,1538050,1295411,1418009,1416851,648739,649303,1538753,1463634,1415486,1333587,1415531,1415505,652230,648980,607743,1212900,1416089,1536834,1540084,1538198,647427,647222,648178,1415668,1415806,650047,1415680,1415731,1537062,607509,647235,1417144,1415923,650793,652942,650076,1417068,728866,1416620,647678,1537623,648772,1213026,611254,649767,1418574,1418733,647568,1296208,1417710,1540203,1296466,650225,651843,732802,1416442,1418336,1537439,728639,1294958,650097,647808,1420247,653351,1538021,1537936,730440,1417115,650051,649517,1539824,1541335,1419108,1417191,1417301,1417185,649523,649984,1541846,1538848,647954,652775,649108,649758,1417557,1417395,1417395,1213917,653053,1539114,1417443,653802,1417465,648114,1539152,1539152,1419942,1541246,1541548,1542886,1541401,1335819,1417500,650452,1419295,1539173,731157,651426,2390417,651731,1539240,1418018,648389,1417902,1417955,730367,1542302,1417953,1420461,650747,1093386,1540844,1540216,1540961,1418655,1336725,649809,1540292,730905,1539646,1418095,651879,1420132,1418865,1540424,733956,1418248,1421458,1419156,1418922,1381241,1422115,1384221,1543251,1539722,1540596,1215867,649879,1540862,1419128,1543167,1419447,1420855,650221,1541861,654293,1419729,1215120,1424382,1336926,1336581,1335702,1418235,649718,729462,1541940,1540392,1419431,651452,1419246,1301240,2157554,1418393,1092387,1418401,1215171,1215129,1418656,649365,4252956,650037,649893,650459,654996,1420642,1542329,1464349,1541926,649616,1542282,733459,1302057,652065,650927,1542154,1542128,1542425,1215744,649742,1542420,1542642,1386262,1302144,2396031,1422629,1301592,1422061,1384083,734063,1261858,1216935,653383,1420895,649610,1342028,651727,1216167,1542838,731664,1421287,1541896,649728,1419440,655890,652172,651155,1420083,1419635,1419687,1421517,1421502,1301576,1385954,1542615,651263,650248,649898,1422218,650050,1221637,649926,1545099,1421930,1541430,1419838,1543805,1419933,1094799,650786,1541710,652591,1216551,1337958,1420457,1420773,1541854,1420357,654759,1420255,1420160,649424,651661,1420432,1541926,1420263,652066,1506412,1421111,1339155,1422463,1263353,654315,1421825,732281,1543404,1421117,1544213,1421280,651887,1421706,1543671,650068,1544364,651107,4255569,655228,1383944,1543271,655107,1544164,1421665,651562,1422485,1543850,2319980,1095561,652357,1544838,653745,1544455,1422109,4262217,652388,652563,734105,652235,1544549,734467,654265,1422155,1422325,1543940,1543940,733998,649290,650742,2397263,1423301,1422567,651425,1422120,1545083,1545628,652575,1544850,650970,654732,2398007,651301,1340034,1342793,1384021,1263475,650556,1423196,653406,1422938,1423088,654026,733267,1544303,655234,2080284,2398426,1423392,1422610,1223245,654665,1386397,1218741,1544644,2398405,653719,1544797,1545126,652297,1545143,1544974,727350,1423989,1422890,651692,651432,1385507,1426004,1343784,1425359,651009,1221734,1343627,1422890,650829,1423126,1423273,1423100,731969,1545590,651159,1423275,1181695,735565,1545256,652264,1303916,2158494,652155,652492,652624,734126,652152,734755,1545612,654043,1423555,1302477,1423645,1221769,652413,1383866,1423752,1424679,1546120,654567,1545840,1545840,1305364,651455,1423850,1545916,1423870,733341,735102,652566,653151,652430,1101249,652790,1225863,1219632,1097937,652271,1546636,652027,1341990,1424080,1096602,652237,657218,1424429,2361404,652493,1424465,655108,652979,2401643,1098225,1424772,1343761,1222207,650785,1223205,1342881,1101075,652647,652189,653112,652716,733847,1344636,1181706,1101483,654033,653338,652269,651974,1425060,2402481,653800,1425323,654037,735352,1222320,654127,1141684,1100784,652328,1223199,1224651,734289,733280,654873,2402900,1102347,1100310,1140551,656624,1222167,1221930,652966,652788,1101996,1102377,652825,1224927,1100775,653209,653035,1222368,653052,2080545,654105,655139,1099890,656193,1222263,1425480,1222140,653472,2077485,652000,1099866,1343409,735457,1101147,1222260,652187,655434,1343541,657198,1222410,1223805,655119,652357,734392,1100088,2078256,2080254,1101846,1100250,1222530,1222746,1221429,1222482,653473,652088,1102113,655697,1222707,1100397,2078745,2080023,655137,1100439,1222866,1100466,1100493,1100493,654019,1222860,1344279,1100439,1102068,734200,655729,1222935,656582,1100682,1101987,654842,653010,1223160,1101918,655600,653134,734869,652599,1100763,1100940,2081235,655588,1100892,1224315,1223190,1102386,1103754,1103277,1103757,654357,1102215,1224429,1225521,1225902,653560,735830,1344105,1100799,1222281,735090,1223391,1100922,1223304,1223388,1102248,1100979,1101027,1101006,1101078,654184,1101090,654005,1101657,1100505,1101486,1226319,1223520,1101168,655635,1101195,653275,1223601,652396,1101222,1101258,654522,1102314,656839,1225959,1222656,658660,656633,653649,1102248,655929,734763,735677,1227261,656426,1101408,655647,654059,656427,654953,653361,1102050,1101582,656442,1224237,1225083,654084,1224219,1224477,1101897,653061,657982,1226262,654339,654014,653755,2082858,1106091,1102932,1104072,656783,1102089,1101969,1102515,1102923,655355,1224450,1224828,735006,654037,656652,1224888,1102152,654214,1102167,1103070,1102194,1225125,653603,1102275,1104387,1102884,1102863,1103772,653558,1104231,654018,654046,654414,1102380,1102419,1104822,2083293,1102491,653589,1102545,1225587,1225350,655080,656263,654338,654998,1103025,655438,1228167,1104978,1226556,1227744,1228848,654623,1102836,1102734,1102734,654511,1225260,1226064,1225449,1102842,1347093,1225428,657282,736371,1104984,736463,1102950,655561,1104276,1103292,1225662,654668,1226361,1226172,1225812,654963,654040,1225887,1226073,1226100,656453,1103406,1103391,1103310,1104321,656375,655563,1227453,1103436,654787,1104936,2085384,1103436,1103478,656204,1227636,657191,1103490,655387,654309,1103619,1226130,1105743,1103517,655422,659792,655330,1103856,1103868,654016,1103652,1226310,655804,1103706,1103706,654989,737127,1105953,1104201,1227792,1104807,1103814,1103976,1105098,1225335,655120,1104930,655604,655110,1104300,1103868,655794,1106076,1228419,1103895,656113,654245,1104468,1226640,1225743,1103103,736493,1105488,2085747,656387,655520,1104828,655688,656689,1226850,1226973,1104315,1104318,1104201,656574,1227474,1228251,655113,1104381,1104528,656173,655686,1227852,654550,2088498,655493,1105707,1227318,1227261,1227285,655966,1105785,1227543,1105230,1228365,656393,657084,1104849,656180,655255,1105131,1105137,655965,655972,655864,655943,655972,655979,655683,656029,655935,1106529,1105614,1105218,737209,1228467,655678,1105407,1105407,655518,1228260,671659,656378,655082,1105374,1105542,1105542,1228518,1228560,655352,1105923,656154,656616,1106685,1105866,655454,656203,656355,656263,656249,656356,737602,657185,1228842,1105716,2088717,656467,656668,1228800,1228623,1105920,658072,656267,657316,656852,1105776,1106619,1105953,656791,656505,1106319,1229532,1228896,1106097,655719,1106055,656753,1229415,658313,657133,656242,655838,1106307,1106715,655789,1230543,1228416,1229472,655923,656858,1106163,656779,2089701,1106298,1107186,1229991,1106736,1230774,655867,1106535,656432,1229370,658337,656541,1229601,656939,656318,656881,1106541,1107408,1106706,1229958,1229460,1352061,1106730,1230363,1229763,656669,655968,1107048,1229820,1230117,1229850,657742,1230204,1106892,1107513,655070,2087547,1227510,656383,1227810,656487,1227855,1105686,1228245,1227750,2087226,1105551,656366,1107039,1230327,657179,656046,1107468,657639,1107135,656772,658548,1230039,1107120,1107027,1107060,651976,1107405,657137,658214,1107420,1107480,1230282,656938,656135,656754,657292,1107144,657111,1230540,657018,1230162,1107354,1230381,657001,1107249,657055,1107411,1230342,1230423,658019,657414,656801,1107546,1230897,1230843,1107903,656616,1107471,658716,1107888,1231206,657322,657429,657240,657487,658328,1230393,1107819,1231056,1230795,657300,1107501,657042,1108113,1107465,1107420,656909,1231035,658144,1107825,1230585,1230630,1107624,656775,1107855,1230981,656887,657272,1108038,2092332,641911,641244,1335215,719769,645065,645125,639648,639329,647443,1203576,643351,642810,641266,640826,1040259,1038434,642722,649675,646640,639881,642721,1164886,640486,642123,1201595,726382,1330975,726200,644728,645077,1084299,721449,644836,1123849,645157,645473,644728,1206951,725803,642361,646936,643820,642487,642607,722715,724873,645292,645177,643077,1211668,644409,642911,1334816,645613,646721,645943,644917,1084839,649760,645408,645355,726995,650726,725216,643652,2142195,644220,643274,727509,645428,1209123,647052,646822,1209795,725620,1250207,644097,644016,1086975,643698,647615,725664,647772,1330166,644794,648316,647019,644265,1209231,650392,726657,644833,1128328,645072,1251087,1415688,727928,644829,646268,1258342,650686,725042,1290371,644744,644528,646067,651489,645466,645290,645102,645198,644945,1212059,644321,650874,1207647,726023,643974,646062,1087050,647253,647853,647026,1334439,645161,646226,724345,644407,644577,653485,1252570,652346,645759,731181,1250126,725696,1088154,644607,647910,647656,650029,645943,644761,1250015,644837,645122,1249912,1290152,651786,652612,1208928,647611,646488,645299,1251238,645929,1292623,645381,652822,645596,645633,727038,648779,645752,728183,1332146,1088793,648399,1372163,731421,728378,648651,652251,1376279,1210653,645383,645836,645215,1332828,1291976,1293288,1336204,1372152,648635,1209939,1088919,646585,727532,1209915,1089168,645722,1250923,1494739,1250841,647224,646346,1373041,1533795,648857,727071,646345,646364,1250610,645502,650115,1496858,645465,646280,646612,647131,646722,646103,1210380,1417350,1210260,1089423,1089423,649203,1089438,645843,729703,1495344,647034,648140,651016,647863,645902,646012,1251209,1453599,1210590,648174,647033,1210851,727580,647648,648315,646833,646866,1412827,1533870,1534158,1534553,646334,1416170,652568,731847,646096,1540522,648531,648060,2383541,1413965,1534174,727100,645524,1534212,1535114,1413201,646230,647676,1539542,1416620,1537900,1536996,647408,646640,1416460,2391026,647377,648494,727705,1535767,1536875,649716,645995,1535356,727593,1534305,1501414,2383921,1535854,1537213,1414272,646888,732133,648313,648201,1414539,1536728,1536567,728449,1539862,651719,650898,1414933,646742,650093,649555,648465,1414770,1414560,652665,649189,652603,649474,1537519,647375,1211502,1536168,649553,1501602,647230,1415230,4239567,648463,648132,1420045,648249,1414749,1090359,730102,647373,1536226,1536264,651280,2316067,647014,649445,648860,647830,648521,1536584,1536340,1209615,729163,1538683,1212339,1378066,1415343,1537437,729940,1538730,649721,657079,649011,648849,1534516,1534752,646874,647148,646879,729424,1536848,1536718,1536819,1537695,1539227,646213,1416469,1415681,1415942,727825,646276,1536538,1539292,1534668,1535028,1414785,1413545,1414107,1536230,1536129,1536260,1332531,1418950,1413978,647032,1534896,1536160,1414737,647695,1332063,1415751,1331370,1413790,1416819,1092192,1538438,648119,4248099,1416726,648430,649282,731745,653085,650353,650244,1536844,729761,648564,1417428,1417369,1537198,1537062,652455,1538342,649579,647828,648288,649864,1537138,1538478,1417367,1213635,1537217,1416975,2391634,1415750,1415955,1415830,1538986,1538801,1463055,1540148,1417950,1416993,648712,1537310,728565,1416055,1420449,651322,1463237,1541259,648371,648599,649389,650763,648077,728416,1418454,1538685,649186,648556,1416020,1416606,649052,647377,1537699,1294930,650229,1416275,1416450,1416487,1416946,728848,1416496,1295088,1417382,1417252,650967,1542302,1420376,730206,651753,2388910,648579,1417185,1419537,1213845,1538876,649792,1417220,1417403,1538941,1417605,1418899,1417487,1418462,1093071,1540863,649834,1091385,1418012,1417484,650605,650041,648108,648775,650208,1214418,730603,729455,1539380,2390090,1418051,1418196,1336287,649253,1382491,1540162,730278,1539491,1539456,1336212,1417963,1418790,1420475,1542391,649155,1540930,1540320,1419896,648732,1419886,1419344,1336830,1418052,648436,1418117,1541347,1539884,1418865,651894,1381866,1418993,1214850,1539753,649701,1419001,651063,1418935,648957,1541310,1418970,649626,1419231,1419424,649352,1540852,1419317,1419177,1420200,1419318,1337328,649574,1541174,1384563,654286,648668,1418200,731668,648413,651030,1420676,653787,650933,1540178,1095090,650295,653656,1420320,1420405,2394220,649868,1542078,1542170,1420440,1420370,649550,650214,2395333,1420892,1420561,651102,1542420,1542577,650373,1420700,1542420,1542571,1420960,649542,649527,1338642,730860,731377,1263211,652387,650343,2395287,1420825,1421505,1423494,1542759,732008,1542686,1216692,2240424,656105,651969,1420971,1301685,1095714,1544873,1421035,1542838,1542851,1421070,1338813,4257015,2395518,1421070,1421070,650194,1541341,1419425,1541610,1541242,1541860,1419565,1419690,1419670,1216284,1541318,734433,730496,650065,1419635,651114,1422277,1421109,1421657,650781,731332,731240,650142,649989,650253,649863,1421587,1543229,1542414,1421507,1421668,649499,1422740,650209,1421070,1419833,649903,1541508,1420055,1420503,1094631,1300610,731570,1216767,654601,1420508,1541926,1542347,4261341,652812,652040,732675,651706,2395931,653619,1217601,1421420,652047,1338702,1140608,650192,1421843,651079,650727,1217577,1543646,1543807,1422393,1423464,651772,1217988,1544378,653597,1304524,1305347,2318388,650102,1383137,1543918,1422442,1544388,1543823,650171,651163,1421980,1422005,645645,652336,652679,652254,651137,1421875,1185504,1223830,651323,1422416,1423812,650735,1422260,651793,1422605,1544281,1544220,734465,1422341,1544282,1422754,651668,1422558,1544574,1544708,650533,651035,655802,652505,1422540,652086,732633,1424913,732625,652106,1304270,655812,1422785,653031,1544814,1423287,2398527,2398847,1423271,1303925,652015,651735,1265200,1423563,652453,651466,651798,651607,1423437,2399970,1422890,1422995,1423100,652443,651721,1545270,653470,651532,1302449,1545346,1545346,652402,2201171,1303360,1423771,1221287,1222068,1545498,650898,651819,651817,733607,651880,1545771,651698,1424945,652359,651666,1096995,654659,1545847,1305367,651353,4266195,1423774,1339998,1423749,733438,1545650,1096374,1545840,652101,1181638,2160470,1182615,1341480,1423921,1545916,1546131,1423870,1545916,652954,652490,652638,652672,1344564,1424010,2400717,733917,733284,1546296,654680,1546768,733021,1224438,652142,655478,1222390,1262770,1424465,655467,1098033,1546750,1546745,652427,655690,655005,651925,1424745,653711,651771,652215,652307,1547004,1304142,1424815,2401831,1424897,1425095,656452,1141167,1547166,733106,1547217,651569,1547335,1425252,1425018,1547318,1304189,1142143,2402539,654136,1141689,652258,733960,734878,1425199,654948,655906,651840,652676,655290,1262789,652263,1101561,1547474,1344145,1344078,1101567,1101687,652896,1101807,652191,652318,735794,1223475,652129,1100046,655472,1425445,654335,652084,1222821,653598,652760,2080413,2081592,1102578,652758,734670,734293,652161,2078178,1102005,1547664,1099818,1222053,1222764,656836,1099854,1100460,1222569,1222095,654945,1222374,653626,1100115,655344,1222944,1099443,1222440,1343961,1100478,1104084,1100304,1222641,1222560,1100304,734864,1223124,652189,1222740,1222848,1100532,1102083,1100727,1100448,1102725,1221219,652721,652384,1100574,1100601,653104,1100673,1100973,655226,1223199,734459,655289,1100733,2079066,1100682,1103913,1223223,654873,1100982,1224609,653835,1225506,1103886,1102689,2082927,652706,1100790,1100805,2079270,1344450,1100859,1100790,1100790,653408,733896,654557,1223280,655080,1100952,656577,1102464,1101006,1101006,1223835,1223427,1223352,1223340,653234,1101060,1101303,1101117,1223490,1101246,735815,655183,2080035,1101195,1101195,1224048,655099,735861,1223763,653930,1101222,1101249,654887,1222437,656089,655318,1101846,1101375,655383,1101414,652918,1102602,654229,653364,1223940,652978,655233,653744,1224597,1103403,1224150,1224150,1224285,653257,655324,1224387,655467,655254,1103802,1105104,654762,654131,736095,654042,654248,1104759,654314,1101795,1224951,736540,1102161,4282668,1101981,1102134,656750,1102005,1226079,655221,655161,655896,653685,653267,657003,1103328,1102152,653120,653595,1224693,653487,1102983,1102383,1224750,654711,1228941,1224861,1104114,655782,1103979,654303,654077,653816,655364,1102638,1103352,655755,655933,1103514,655726,1102605,1102572,1225335,1225563,1224333,655105,655068,1102707,1225230,1227672,655890,654793,1225617,1102740,1102761,1225290,1225638,1102827,654939,1102851,1103223,1103571,1103166,1226811,654875,1225455,655364,655168,2087370,1103580,735458,1225614,1225713,656761,1225680,1104720,1227216,1225869,736736,1103622,1103430,656042,655676,1103235,653844,1225866,1227972,656742,655861,1103319,1103316,1103328,1103550,1104843,1104798,1225479,655747,1226178,651930,654330,1103490,654747,1103907,1103517,1226130,736329,1103832,1104909,655372,654281,1225491,735851,1226310,1228776,1104429,1103964,736039,1103829,1103814,657008,1103814,1102692,1226490,1104756,1227234,656118,1226712,1226694,1103868,1226682,1226520,1226535,1103895,1348491,1104870,1226760,1104582,1104084,1104576,1104690,654919,1106127,1104339,657113,1226940,655826,1227774,1104927,1104300,1104525,1227081,1105005,1104522,1104462,1227315,1228311,654610,1106355,655955,655939,1227270,655093,1105104,1105542,1104597,655443,736715,2087889,658235,656912,1105110,655185,1105740,655523,1227900,1228119,1227990,1105137,655831,655867,656126,655776,656202,656062,655410,657575,1105422,656453,654992,655201,656050,656220,1228200,655819,2087940,1105530,1105389,1105407,1228488,655997,657951,1228482,1228350,1106862,1105650,658777,656636,1105989,656976,1106994,1106277,1105650,1105704,1105752,655820,656327,656117,656523,656468,1228596,1229739,1228584,1105704,656348,656524,1106463,1105809,656423,655826,656373,1105863,655843,656414,1228875,1105974,656383,1106232,1105974,1351179,656767,1106340,1229160,1229511,1106082,1106688,1106382,1106709,1107279,656844,1229310,657835,1106109,1229118,1229010,2089464,1106151,656838,658097,1106268,656498,658374,1229526,1106289,1106700,1106415,658055,657886,1106532,1106790,1106352,1106445,656785,1230075,1349223,1107531,656752,656810,657164,656188,1106526,655826,1106730,1106730,1230126,656744,1229763,1106796,657113,657653,1106811,1106838,1230000,1106853,1230162,1107039,1227540,737404,656042,1104813,655151,1106019,655019,1104909,656448,1227510,655440,656520,1104963,662019,657606,655116,1104975,1105365,1105860,1104333,657601,657710,1107579,1107519,657236,658055,656871,657699,2091132,1107183,656443,656134,1230237,657052,2091453,657101,1107108,656974,657089,1107153,657254,1107318,657017,656777,1107348,1230306,657184,656846,1107285,1107546,656539,1230417,1107360,1107801,1107858,657685,1230477,657011,656570,657374,657240,1107846,657191,657078,657490,657239,657165,657263,657107,657242,657014,1107423,657941,1230810,657433,1107870,657114,1230471,1230540,656833,657702,2092578,1107564,657326,1107948,1230798,1230564,1230909,1230516,1230660,656927,658364,658572,638912,639296,640804,1039357,641352,646802,640294,643782,645988,647117,638979,721356,725492,639140,641985,653147,645976,1120438,640604,643518,643022,641199,639982,642468,647076,721176,648632,643044,642017,642105,651578,642186,642791,643760,1204641,726066,724494,725153,644138,643269,1245791,1250575,642331,644639,642118,1083564,644362,645037,645748,644779,642339,642355,643474,644487,1167357,647404,724651,643631,645814,643323,646145,643439,645433,723284,723884,644636,648824,1333281,645206,723931,1205748,1287833,723995,724480,643673,643604,645655,726932,643598,647387,646080,647437,644394,643509,1332591,1335996,644418,645143,645566,645458,645385,647046,725967,1205832,1207776,724516,644284,646288,728871,728805,644307,645185,644544,645264,644303,2053389,645096,645464,647416,725819,1417737,1087014,728660,650453,644590,645073,726699,644587,647318,644901,1087749,725865,644767,651414,654046,1249818,1250398,644959,1207740,647406,647160,643994,728587,647103,2176347,1087194,646106,646124,724870,725299,646939,644197,644971,645756,647277,644639,645117,645238,651675,730918,726336,1252747,645367,646053,646281,645386,650607,646349,725634,726022,645324,648223,647717,647361,1168849,726947,1088709,645603,649532,645908,726894,649016,1458936,726318,645271,646778,647048,645084,728502,645101,646107,645680,1250675,1209555,726000,1251286,645783,645800,645523,1088790,652738,1455694,646347,727065,728618,1170663,646441,646052,645282,1453766,1414148,1412963,1088838,645955,646837,731129,1414801,647329,2387271,1089324,652013,1210149,647737,729534,1498011,1089099,1251744,647007,1089255,1210819,1210110,1210677,646149,728327,727783,1495050,1088721,1088637,726678,645730,727008,1331456,1170519,645505,1414322,1089342,729940,646776,728120,647337,1089261,650469,1332596,1330626,646263,726891,1210350,648759,1089504,1089504,731508,1089531,1534499,1089693,645781,647639,646706,646890,1414764,1412740,647632,648482,1538777,1536129,1533920,1330809,1417114,1415540,1535124,1210320,1534398,726798,1414241,1415427,1539089,1538261,647688,1417258,1535279,1535238,729369,1414161,1534098,1210488,1536231,648634,1416200,1417585,645936,1413382,646877,646037,646804,1535172,1535174,1332504,1414350,1414175,648430,1414175,1536074,729549,1538628,1333038,650633,1414490,1415867,1414565,1419460,648765,647931,1535770,648926,1536143,650678,1299176,647406,1415499,646675,1535808,1537315,730453,1536744,2384603,649003,652993,1537876,1535922,1210965,1537080,1536534,1416213,1415086,1540163,1538565,647966,1538907,647913,649257,1420056,1414900,649493,652333,1210983,1211880,1416866,650016,647963,647741,647249,651818,1415899,647131,1415558,1415435,1415435,1413830,1419118,1413544,1416703,1538456,1537531,649351,647044,648654,648198,648127,649152,1415488,1415140,1415279,646291,647420,728008,1413737,1413545,652791,647142,1415770,1210110,646271,730227,1540220,1413809,647033,647305,1210914,1210974,727771,1537430,1413923,652014,1536160,1413892,2383246,1416599,649700,648026,728568,608567,1538088,649848,1538131,728954,1416913,649100,1417400,647882,736360,647818,608761,1415912,1415505,1415505,1537093,1212864,654611,650076,1416905,1417836,1416964,1537138,647897,1538513,1296079,1417940,648549,1415853,649114,1538739,1295520,1420008,1417218,1417197,1418252,1420276,608597,1538031,729472,1294583,1537290,1539357,2386845,652299,652527,647555,1540450,608203,1539777,1540222,1539657,651829,1416765,649478,649039,1301077,648802,648545,1541603,1537328,1219080,1540998,607545,649480,1415995,647813,1416534,608030,730510,1213203,1416680,648122,1416865,1296857,1538588,648497,1383105,1295839,649790,661444,1418413,1417115,648818,648454,730817,649005,1541801,1418416,1417449,1417404,1538700,1538859,1538848,1538848,649823,651268,1417440,650845,1539056,1417635,1539114,653626,648177,1417548,648815,650574,1213254,1335804,650052,650345,649839,650523,1539208,729812,1417675,1417745,1419209,1417745,648440,1418070,1540225,1539228,1417855,1539228,1417885,652381,1214121,650351,1418459,1417920,1092741,651331,652250,1540262,1418620,652091,1541158,1420104,649626,649206,650889,651600,649652,1419051,2390604,1418916,1419596,651903,650152,1213716,734322,651517,652800,649367,1419304,1420164,1419893,1540862,732755,1419794,1419390,1422958,649892,1419395,651977,1214634,1418262,648919,648999,1418655,648425,650724,649864,648986,1418480,1540041,650039,652751,1540247,1420112,1420619,654063,1541926,649644,1144280,1420711,1421152,1420511,1421882,649929,1543814,651571,1420615,1421136,651828,1542420,1421373,1342026,1420748,1542762,1542592,650377,651553,650657,650290,649525,1420825,731464,1542686,1420930,1421007,1543150,653590,1542838,1095594,1338852,1421070,1421070,650831,1419460,733361,1541242,651126,1541798,1541526,730969,1421523,1421874,1422785,1302719,731469,650051,1422950,1544572,1422466,1543352,1542811,650533,1422050,649017,649776,1342156,649056,1421573,1421877,1544266,1342272,1544206,652068,1419880,1420233,1419927,1541508,731193,1094871,1216401,1216014,1419937,654394,1542158,1542236,732130,1544388,1420646,2394311,651821,1420549,1216428,1542928,1542914,1421478,649985,650383,1543349,1384790,650197,648607,1263232,1421420,1222537,1543252,1095675,651296,652423,654011,732597,651648,1543585,1221552,2279441,1339527,1339371,1422235,653651,1218165,651660,1544174,1304951,650599,1342486,1095543,1218105,1543999,1343787,650945,1424017,1543712,1424940,2397111,1422050,1422241,1422262,654046,1422879,1422050,654374,1217607,652784,653496,653858,650813,1422345,654396,1544054,1422545,2398163,1422421,1422351,1422330,653682,1422690,653420,1544312,1545611,654323,1306091,1544715,1545163,1423455,654193,1422365,650929,652351,652451,1544434,651219,1422540,1423928,1340133,651928,1544510,654629,1424229,1422645,1423221,2398438,652441,1544776,1545296,652946,651537,651127,1423033,653738,652658,1344050,652023,1465799,652538,1303461,1222807,652973,1096599,1096440,734604,733898,1544852,1423069,1422995,1217619,1545174,1545270,653236,654142,1423441,1423294,2399152,657846,1423240,1303639,1423793,1423395,1218387,654084,1423657,651279,733160,651548,652199,651859,652516,652281,1182877,1182406,652020,651554,2400018,2399847,1423822,651640,1217583,1545968,1218816,654868,1545764,653682,1423765,1141009,1545827,1546965,1097622,1101282,655071,654486,1545916,652295,1262628,652119,653135,652750,1546429,1546697,733110,1424010,2400655,652336,1424045,652451,652362,1546351,654909,1546372,1262933,653459,1424625,1424570,1219854,1546624,1546676,652868,1546829,1546714,1547605,655182,2402199,1340736,1262455,653617,1341183,1098123,733150,1547171,2401359,652132,653203,650773,1384377,652274,1344703,1098378,1546942,1424815,652559,1425060,1266271,1303867,1222917,1181377,656576,654750,2402558,1101915,1425239,1425006,1102020,1266142,1303228,1425053,655780,1342167,1425060,653280,654003,1263958,654079,1098540,1547702,653312,653482,1101708,652722,1100631,1466280,1344090,1100211,2081205,1181437,653993,1220919,1222629,653001,653021,653285,652788,654346,652559,657280,652192,1547664,1222296,652549,653487,653125,1100589,1100580,655833,1222248,1223049,1222080,652006,655120,1100175,1343559,1103271,735197,1100001,735796,1222320,1101684,1101174,1101522,653056,653086,1100307,1222527,654031,2078226,1100277,1100823,1222560,1222560,1100553,1222470,1222650,653288,1100811,1101813,653860,652692,652485,1222740,1100712,734637,1103181,2078709,2078709,1100493,1101912,1222851,1223133,1222893,654938,1100817,1100691,656411,734349,655622,1223061,654054,1100724,652785,1100907,1223196,1223070,1100790,1100871,1344468,653526,652368,1223070,734712,1223100,653809,1226799,653733,1102566,655785,1100790,1100790,653123,653550,653793,1102299,654752,653909,655770,736088,653281,1101033,1102767,654907,652800,1224663,1224366,652999,655685,1102323,1101195,1101597,1101195,655569,655390,1101249,1101249,1345305,1225731,655264,734874,653936,653692,653679,655752,653666,1101357,1223772,1102128,653163,655095,1100061,1103100,1101519,2080647,1101555,652983,653957,735727,1223940,1101678,1224372,1225101,653677,652901,1102293,1101720,1102188,1224006,736512,1224030,655371,1102296,1102359,2081262,1102563,654738,1101708,655414,654618,1101735,655113,653405,655327,1224573,2082132,1104813,1103604,1103568,735999,1225587,1225170,1102128,1101789,653767,736077,1224372,1102542,1101987,1102884,735496,1102782,1102086,655731,1229430,656133,654399,656514,653739,1224810,1102167,1102299,1225353,1224912,653617,1103697,1103319,653547,655137,654922,1227285,736287,654430,654207,654586,1102302,1103046,1102317,1224810,735595,1225392,1224870,1224975,1225020,1102554,654276,1225419,655065,653855,1102791,1102830,1102899,1103100,655969,655138,1104354,654736,1102707,1104543,653958,1228998,1225368,1225290,1103307,1103040,654982,1102725,655825,654867,654711,1102923,1103271,1106619,656392,1103010,655678,1225884,653786,735936,1103097,1103007,2084247,654685,654530,1103052,654128,1104696,655304,656417,1103811,655161,656435,1103430,1226025,1226352,656372,1226079,1226796,1104033,1103601,1103472,1227669,654452,737173,657777,659393,1226130,1103613,655056,1103706,655061,1226361,1224408,656754,1348374,2085621,1103673,654524,655765,656537,1226460,1103814,656393,657277,655937,656052,1105347,1104036,1104693,657007,736164,1226520,654674,1104021,1104522,655209,1226730,654787,1227162,1104132,656415,1227108,1226850,1104534,654725,654779,1104450,654545,1227288,1226880,1104381,656362,1104699,656549,1227120,1226589,656838,655104,655739,1105536,654559,1105638,1105833,655761,1104543,654796,657111,1104567,1228461,2087142,656261,656609,1104954,1227612,1227933,1104741,1227912,656098,656009,655890,655815,656217,656944,655974,656599,737693,656024,1106694,1105176,655307,1105521,1105482,656027,1228422,1105545,656715,1105794,656958,656341,1105569,1228476,1228500,655493,1106256,1106217,1107066,1106562,656155,1228650,1228722,1229037,656413,1105866,658523,656621,656522,656330,656519,1106016,655453,1106346,656624,657674,656620,657111,1105836,656548,1106289,1228998,656770,1229577,1228800,655367,1105758,1106013,1105956,1229010,1228860,1106001,2089215,655462,1106244,661000,1106082,1106082,1106766,1229136,1106109,657390,656818,1229028,1106136,656728,656589,1106298,655888,656853,1106589,1229253,1106532,656910,658246,1106994,651411,1106682,1106802,1229382,1349661,1350069,1106451,657753,656882,658113,656835,1106691,2090556,1106730,657865,657066,1230291,656921,1106901,2090997,1106955,656568,1230177,1106889,2090775,657932,1104786,1227672,1105047,657437,657096,737835,1227657,655434,655884,1104945,655231,1104981,1226358,1227600,1104882,1227861,655901,1105020,1104948,656155,1106301,655224,1227750,655997,1105002,656688,657395,1105785,659329,1229955,656009,738192,656927,656231,1107309,659031,1107114,1107141,1107258,1230264,1107288,1107102,1107153,656902,657550,1230525,657283,657040,657005,656887,1107546,657312,1107198,1107198,1107231,657029,661403,657975,656608,656975,656458,656752,1230753,656542,1107426,656622,658480,657418,657469,657230,657271,657172,657188,657373,657214,657476,1231017,1230837,657174,1107744,1230465,657570,656505,1107825,1107825,1107852,1107813,1230969,1107663,1107621,2091987,656945,1107759,656795,1107675,656406,1230804,657328,1107636,1914235,1170663,720777,641293,643877,646303,1243097,643509,644485,644057,648441,1256708,646270,644955,652254,1331990,643532,644015,724998,645220,649678,644303,647107,647013,643915,2052831,1088160,645271,645986,644607,1333505,644599,647312,645139,1087023,644468,1374808,1208547,1086429,646509,728096,726770,728755,649956,1128941,727019,726600,726890,652489,647755,1088199,1252656,726322,728424,728535,1454586,1375405,645611,647133,727733,729329,645481,647762,1292033,647405,645953,647131,1089144,2057187,726158,1372105,1415115,1209618,726221,1537299,647558,653356,646586,1413195,1331945,1251217,1413172,1412740,1412845,1413345,647055,647549,1414416,1210668,1413055,649226,1534174,646422,1416295,648606,1414296,1415870,1539575,730578,651187,648117,1414595,1332981,1414648,647253,1332036,646991,729762,1415509,733377,647165,1542689,1536806,655434,1418504,1417818,650351,1413290,647287,1534440,1331790,650110,647384,1415425,1535331,650052,646160,1536532,727841,1535170,648386,650492,1538102,1416695,1333974,1536872,1537006,1415788,1537062,607804,1538548,1537062,1416975,1417418,649627,1416721,1538851,1417369,1539109,647957,1541252,653575,728459,1539204,652108,1537758,1537796,1537964,649686,1419158,650109,1419040,1418378,2389441,648906,1420426,1539190,651950,1420407,1381605,1539380,1417885,651925,648614,2392518,1420314,1542570,1093146,1419135,1540520,1388306,655639,652254,650671,1540806,650184,649757,1419333,1539930,1418340,1418406,1341440,650200,649837,1420516,650173,1216713,1542116,651010,1421585,1542423,649493,652062,1543538,1216611,1420974,1422108,1420895,654950,1421855,649683,652160,1541394,650675,1422479,1421869,1541318,1419670,652314,1419994,1419856,653661,652054,1094811,1420128,1344469,1541812,653163,1420160,650236,1543354,651257,1464726,1543398,1339284,1339665,1421630,1421875,1543788,651162,1505828,650539,650540,1545255,1217964,652090,1422155,654114,733660,1545172,652433,1422750,1423966,1302933,734693,1303211,1221518,1343700,651787,1423100,733919,1545257,1423240,735242,1423380,1423560,646182,1423681,1545498,1466308,1423485,735503,732809,1097526,1423765,1424375,652889,1304618,651515,1545916,1546290,652524,652664,652333,1424045,1181388,1263418,1182054,1262480,653078,652320,1384750,653664,1546980,1222067,1425766,655970,652913,1547346,1425495,654381,652110,655571,1220988,653208,734248,1099845,653179,1099884,1222428,1222260,1100304,653885,1100181,1100391,652848,1222086,1224141,1222782,652402,653202,1222740,655051,653766,1222740,1100850,654965,1100829,734406,1100967,1226676,1103331,1105635,1100790,1223280,1224525,1227168,1223478,1101210,1223631,1223550,656969,1101195,1225608,2080944,1222329,1223928,653422,656088,1102479,736372,1224030,1101627,1102059,1101708,654409,653863,1226208,1226145,734886,1224210,1224390,1101993,1224678,734670,655148,1225596,2082783,1224843,1102329,1102722,1102476,1102275,1225032,1102719,736322,1103148,1102566,1102914,1225080,735048,1103838,655489,653509,1225464,654337,656543,1103658,1103139,653865,657792,1103862,1104435,653915,1226040,735848,655630,1103697,1226130,737021,1103862,1103598,1103829,654771,1103871,657210,655368,655276,1103688,1226460,1104276,1104084,1104819,736734,1104696,1105122,1104138,657100,1227087,1227024,1104246,1226850,655127,1104630,1106079,655928,736353,654909,1229868,656320,657636,1106754,1104570,1104570,1105386,656285,1228002,655956,738027,1106172,655920,656917,1105587,1228410,1105596,1228650,1228689,1228764,1229943,1106478,655675,1228800,656524,1228143,1106964,1106082,1229103,657128,657313,2089938,655960,1229568,656991,1106703,1229781,1106826,657145,659547,1107264,656701,656654,1105557,1104948,1106427,1227810,1105002,1105002,656867,657009,658104,658595,656474,656450,1107234,1107138,656755,657072,656986,658529,656910,1107411,657109,657128,1107687,1231089,651009,656999,1230588,656586,657617,1107834,657006,1108116,656980,657442,638064,720123,721234,724026,1248302,639307,642597,723625,1165310,722683,643183,645276,642533,1413569,645951,642929,1126631,1369920,1171192,644908,646724,1169776,2051361,644747,644626,644684,647575,1374933,725355,651053,1292334,644334,647733,645545,645966,652498,1334815,644148,727077,646537,644309,1087569,652423,727616,645309,644784,644823,1088241,730545,647556,645188,645132,726808,652628,646978,645351,646686,652315,646328,729147,648728,647086,645834,1371827,1210266,1416279,652884,645249,1414120,729574,649756,1209975,1494811,647497,1374579,1210197,727501,646165,645669,727638,726886,646098,1413068,651575,726870,646518,1331936,727455,728856,651925,647304,647495,647458,1089612,1412761,1454096,647459,646274,1413174,728265,648435,1534724,1535162,647062,1413135,649670,730325,1414329,1535501,1413090,1331334,1330380,1538875,1415525,1535276,1535475,1414402,648065,1414782,2384344,1414280,2386786,1538785,648676,647529,729576,647003,1415092,647119,1415092,647804,1417667,1537989,730967,648833,646757,1536489,1415051,648232,647866,2386250,647537,728844,648431,648627,1534364,646283,1539994,2386124,1415525,727852,647322,1534744,1415891,1413685,1332147,647946,1211154,1534934,647859,1334757,1416743,1416695,1538164,2387814,1539034,2386373,650361,650578,1416137,1538269,1538693,1415850,647758,729655,1539070,1335267,651217,1416135,648589,1539304,1543074,610473,1342156,1334316,1416602,1537654,652641,650186,730914,1541411,1418797,1538848,649047,653856,731290,1539610,1212339,730393,4247292,1542730,651200,1335417,1418339,1539378,1539228,653573,1214745,645659,1419533,1419722,1540312,1214766,1542778,648867,1336950,1421631,1419232,733908,1419223,1540762,1419390,1421493,730301,1419101,1418274,1541125,1542303,1421018,1336482,651876,1542040,1216440,1420791,653646,1543165,1464889,1420660,650081,1420825,1542655,1506168,1422849,1217172,1542876,1541749,732697,1420249,1419440,1419870,1541318,1542783,650711,649866,649940,1423279,1543390,1421595,1544783,1541356,1419880,1420257,1301911,1420102,1541898,1420406,1420160,1216632,730526,1543044,1542914,1466844,1423057,1543608,734380,731596,651326,1543799,1423708,1262726,1504809,651610,2397111,1262670,1544738,1218141,1422529,1343326,1422365,731740,1422724,1544681,1544586,1422921,1423979,655175,651706,733366,1424168,652354,1545195,651870,1545252,1423941,1423992,651002,1384925,650869,733186,654036,650813,1545612,1263683,1225012,652117,651835,651778,1423590,652062,1424306,2400002,1222971,1545878,652481,1546030,1424045,652334,1220340,1546714,732715,1546853,651763,653846,1226688,652808,1181899,1425035,734916,1425264,653925,654320,652414,1303287,654573,652844,1224147,1102236,1140791,653474,653277,1105227,653138,652672,652774,1101834,1224078,653271,656085,1222683,1102554,1100415,1100592,1100493,1222860,734770,2078913,1101285,1223091,1101672,653765,1223526,652438,1100907,652702,654206,653321,653934,653215,1100790,1345140,654302,1223433,1225662,1101090,1102986,1101195,1224546,1103352,655674,1101438,735829,653900,1223760,735597,656631,654678,1224861,1103043,1104621,654441,1102905,1103955,1101912,1101789,1225116,1221156,1224411,1102284,654808,1102098,655803,654644,1102887,656338,653357,1226412,1103022,1103763,1103898,654613,1224810,656531,653943,655980,655382,1225818,655911,1103472,653943,1103049,1225965,1103037,1103142,1103004,1103112,1104495,2084163,1103325,651928,1104861,653983,1103301,1226829,653991,1103661,1103970,1226838,1103478,1226130,1228320,1229199,736826,1103706,1227279,1226604,1227447,1103892,1103814,1103814,1226490,1227648,656273,655035,1104921,1104663,655009,1226520,2085390,655856,1103895,1226622,737119,1227087,1104516,1227600,1105629,656210,655557,656546,657282,655809,655859,1229217,1106598,1228170,1106871,1105584,736866,1228380,656377,1106397,656239,656903,1106802,655611,656027,656502,1105866,1228785,655878,657140,1229343,1105845,1228950,656115,1229403,1228515,1229496,1106250,1106136,1106136,1106193,1106763,1107507,1229790,1106520,1106946,659133,657666,1106613,656659,659360,655162,656871,656298,1105137,1227774,656847,1105299,1229994,651605,658378,1230000,1230234,657327,1230153,656750,1107375,1107432,2091723,657045,1107687,1230924,657217,657283,1230741,657427,1107471,1107501,1107897,657310,1231242,1231071,1107498,1107807,1107807,1230909,658455,1107582,1107582,641347,640565,1293260,646529,721141,641415,721980,643059,641291,642834,1082187,642614,1328847,722819,643648,725140,644753,649417,723508,725861,724804,723442,646699,642785,1085982,647310,1249208,646233,644860,646763,644795,728224,644676,1290098,646593,645383,653078,725515,644530,646143,651629,725819,727717,725524,2054823,1168893,725247,649347,644503,646034,645715,647408,647251,647064,644522,647927,1087323,651542,649457,646977,726341,1371409,651911,1453515,1292644,1415585,645519,645561,647395,646388,1332581,1372854,1252365,1372358,657106,1372075,1210182,646120,1412965,1089297,646894,645191,2221478,1211220,645838,727731,1210524,1089705,646858,731083,1413436,1331046,647115,727869,1533990,650080,1534467,731897,647157,646587,1540122,649612,650264,1534908,1211373,646799,645936,726787,1542669,1414462,646737,1414245,1535694,1332474,1416348,1535808,729083,1414665,1535960,650707,1538201,730005,1212183,1417814,1415276,1417582,728287,1416650,651771,1534421,727287,1331739,1416938,727048,647089,727302,652553,648990,647817,1413790,1331037,1295200,727143,1538249,649231,1295316,1543671,1538184,1539128,653050,1538202,2388746,649231,648148,648009,730912,1296035,732131,654169,1212579,1416485,1540594,649274,1416168,1419704,1416333,1416553,1416380,1416485,650656,651618,648229,650547,649152,731309,1419821,1418253,649292,650916,1417684,1538980,1418590,1420165,1539266,1417710,1417710,1417850,1335402,1417885,1417885,1540485,648726,733377,649408,1420911,652112,1418992,733369,1418468,2391892,1419428,1093551,1214850,1539684,1419116,1419847,1541660,656162,1420363,649129,648411,651921,729713,1540950,1423373,1420115,655849,1542154,1382316,651472,652887,1420895,1216143,1217058,1420895,1421035,1421635,651892,1541128,2392804,650011,1541692,2398493,1541479,649948,649836,1422566,1463434,649213,1542978,1422133,2397626,1341356,1383020,1541356,730662,1422523,651384,1094634,1420055,1420134,1421335,1421613,1542929,1421140,1095846,1094037,1421105,652821,1421554,1421482,1422454,649859,4255656,1339467,1336386,1421567,653691,650495,1543637,1544495,1543636,1424211,652457,2396865,651913,1543824,650674,1421971,1545315,654071,1422733,655077,1544408,651161,1095777,1545326,652226,651271,734050,651391,1545389,2399969,650981,652208,652221,1344763,733863,733501,1545773,654218,1423625,654988,1423835,652866,654051,653758,1341642,651848,654841,655068,654182,656659,1424533,654845,1546927,1546942,1262474,1226136,2118522,1425365,654984,654956,1425305,1101339,653752,1101342,651965,734087,1099839,1222482,734621,652701,1099782,653798,1262929,735266,733555,654201,1099926,1222500,734466,2078340,735164,735093,1343859,1100583,1100601,653089,1100598,652901,1223154,1100601,656230,655392,1101012,654373,1103595,1103202,653491,2079780,653381,1223490,655912,655276,654227,736608,653219,654837,657221,1101519,654270,1224066,1104255,654728,656152,1101726,1224954,654816,1225845,1102110,657042,1224612,656328,1102296,654585,1102500,735113,1227921,1226820,654294,655472,1102464,1102728,654950,653774,1224024,654942,2082840,736475,1225977,654643,1347210,656178,654084,655220,653940,1103247,1226943,655622,1226490,1103406,653970,655581,1226088,1103490,1103853,1226430,1226919,1227084,656226,1225485,1104300,2086479,655672,656375,2086854,656805,655471,1104435,1227459,655010,1104651,1228002,655992,656103,1106205,655855,656281,655738,1106139,656840,1228572,1105509,656579,1105596,1105617,656897,1230090,1107144,1105788,1106973,1106037,1228653,737447,655787,1228815,1229184,655392,1106073,656603,656853,2089929,656497,656483,1106136,1105707,1103787,1106313,1106298,1230546,1351080,656872,657494,2091042,1106649,657805,1106514,656903,656700,1106730,658009,657089,656629,1229820,1105971,1104966,656150,1105239,1104840,1227564,1105482,737552,1104951,1105452,1105002,1107441,1106976,657257,656767,656784,1107195,1107249,1230405,1107435,1107168,1107135,657031,1230657,656865,1230561,1107576,657343,657273,657683,1107468,657352,657317,657444,1107804,1230780,1107711,1107816,1107639,1230708,1230666,1230834,1230768,657335,1230657,656917,656875,1107936,1107831,1107954,658254,1230972,656854,1107981,657672,656677,1107912,656874,1107897,1107981,1107876,1107963,1108047,1107990,657492,1107969,1107936,657339,1231101,1107957,1106769,1231086,738705,1231200,653718,1107969,658423,1231104,656808,658244,1107999,656629,1108005,657897,656806,657582,1107927,1231293,1231137,1231062,656806,657679,657659,657901,657518,657715,657385,657882,657777,657431,657844,657532,657758,657673,657985,657850,657480,657886,657439,1108041,1108092,657539,656792,1108152,1106601,1106625,1231032,657740,1231200,1231182,658775,1231152,1107975,1108137,657080,1108098,1108173,1108128,1108263,659355,1231317,1231263,1231290,1108128,2093124,657428,1108110,656964,1108278,657280]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"168549\",\"primaryLabelValue\":\"168549\"}},{\"attributeHeader\":{\"labelValue\":\"168698\",\"primaryLabelValue\":\"168698\"}},{\"attributeHeader\":{\"labelValue\":\"168944\",\"primaryLabelValue\":\"168944\"}},{\"attributeHeader\":{\"labelValue\":\"955130\",\"primaryLabelValue\":\"955130\"}},{\"attributeHeader\":{\"labelValue\":\"955132\",\"primaryLabelValue\":\"955132\"}},{\"attributeHeader\":{\"labelValue\":\"955134\",\"primaryLabelValue\":\"955134\"}},{\"attributeHeader\":{\"labelValue\":\"955140\",\"primaryLabelValue\":\"955140\"}},{\"attributeHeader\":{\"labelValue\":\"955142\",\"primaryLabelValue\":\"955142\"}},{\"attributeHeader\":{\"labelValue\":\"955144\",\"primaryLabelValue\":\"955144\"}},{\"attributeHeader\":{\"labelValue\":\"955146\",\"primaryLabelValue\":\"955146\"}},{\"attributeHeader\":{\"labelValue\":\"955148\",\"primaryLabelValue\":\"955148\"}},{\"attributeHeader\":{\"labelValue\":\"955154\",\"primaryLabelValue\":\"955154\"}},{\"attributeHeader\":{\"labelValue\":\"955156\",\"primaryLabelValue\":\"955156\"}},{\"attributeHeader\":{\"labelValue\":\"955158\",\"primaryLabelValue\":\"955158\"}},{\"attributeHeader\":{\"labelValue\":\"955160\",\"primaryLabelValue\":\"955160\"}},{\"attributeHeader\":{\"labelValue\":\"955164\",\"primaryLabelValue\":\"955164\"}},{\"attributeHeader\":{\"labelValue\":\"955166\",\"primaryLabelValue\":\"955166\"}},{\"attributeHeader\":{\"labelValue\":\"955168\",\"primaryLabelValue\":\"955168\"}},{\"attributeHeader\":{\"labelValue\":\"955174\",\"primaryLabelValue\":\"955174\"}},{\"attributeHeader\":{\"labelValue\":\"955176\",\"primaryLabelValue\":\"955176\"}},{\"attributeHeader\":{\"labelValue\":\"955178\",\"primaryLabelValue\":\"955178\"}},{\"attributeHeader\":{\"labelValue\":\"955180\",\"primaryLabelValue\":\"955180\"}},{\"attributeHeader\":{\"labelValue\":\"955182\",\"primaryLabelValue\":\"955182\"}},{\"attributeHeader\":{\"labelValue\":\"955184\",\"primaryLabelValue\":\"955184\"}},{\"attributeHeader\":{\"labelValue\":\"955186\",\"primaryLabelValue\":\"955186\"}},{\"attributeHeader\":{\"labelValue\":\"955188\",\"primaryLabelValue\":\"955188\"}},{\"attributeHeader\":{\"labelValue\":\"955190\",\"primaryLabelValue\":\"955190\"}},{\"attributeHeader\":{\"labelValue\":\"955192\",\"primaryLabelValue\":\"955192\"}},{\"attributeHeader\":{\"labelValue\":\"955194\",\"primaryLabelValue\":\"955194\"}},{\"attributeHeader\":{\"labelValue\":\"955196\",\"primaryLabelValue\":\"955196\"}},{\"attributeHeader\":{\"labelValue\":\"955198\",\"primaryLabelValue\":\"955198\"}},{\"attributeHeader\":{\"labelValue\":\"955200\",\"primaryLabelValue\":\"955200\"}},{\"attributeHeader\":{\"labelValue\":\"955202\",\"primaryLabelValue\":\"955202\"}},{\"attributeHeader\":{\"labelValue\":\"955204\",\"primaryLabelValue\":\"955204\"}},{\"attributeHeader\":{\"labelValue\":\"955208\",\"primaryLabelValue\":\"955208\"}},{\"attributeHeader\":{\"labelValue\":\"955210\",\"primaryLabelValue\":\"955210\"}},{\"attributeHeader\":{\"labelValue\":\"955212\",\"primaryLabelValue\":\"955212\"}},{\"attributeHeader\":{\"labelValue\":\"955214\",\"primaryLabelValue\":\"955214\"}},{\"attributeHeader\":{\"labelValue\":\"955216\",\"primaryLabelValue\":\"955216\"}},{\"attributeHeader\":{\"labelValue\":\"955218\",\"primaryLabelValue\":\"955218\"}},{\"attributeHeader\":{\"labelValue\":\"955220\",\"primaryLabelValue\":\"955220\"}},{\"attributeHeader\":{\"labelValue\":\"955222\",\"primaryLabelValue\":\"955222\"}},{\"attributeHeader\":{\"labelValue\":\"955224\",\"primaryLabelValue\":\"955224\"}},{\"attributeHeader\":{\"labelValue\":\"955226\",\"primaryLabelValue\":\"955226\"}},{\"attributeHeader\":{\"labelValue\":\"955228\",\"primaryLabelValue\":\"955228\"}},{\"attributeHeader\":{\"labelValue\":\"955230\",\"primaryLabelValue\":\"955230\"}},{\"attributeHeader\":{\"labelValue\":\"955232\",\"primaryLabelValue\":\"955232\"}},{\"attributeHeader\":{\"labelValue\":\"955234\",\"primaryLabelValue\":\"955234\"}},{\"attributeHeader\":{\"labelValue\":\"955236\",\"primaryLabelValue\":\"955236\"}},{\"attributeHeader\":{\"labelValue\":\"955240\",\"primaryLabelValue\":\"955240\"}},{\"attributeHeader\":{\"labelValue\":\"955242\",\"primaryLabelValue\":\"955242\"}},{\"attributeHeader\":{\"labelValue\":\"955244\",\"primaryLabelValue\":\"955244\"}},{\"attributeHeader\":{\"labelValue\":\"955246\",\"primaryLabelValue\":\"955246\"}},{\"attributeHeader\":{\"labelValue\":\"955248\",\"primaryLabelValue\":\"955248\"}},{\"attributeHeader\":{\"labelValue\":\"955250\",\"primaryLabelValue\":\"955250\"}},{\"attributeHeader\":{\"labelValue\":\"955252\",\"primaryLabelValue\":\"955252\"}},{\"attributeHeader\":{\"labelValue\":\"955254\",\"primaryLabelValue\":\"955254\"}},{\"attributeHeader\":{\"labelValue\":\"955256\",\"primaryLabelValue\":\"955256\"}},{\"attributeHeader\":{\"labelValue\":\"955258\",\"primaryLabelValue\":\"955258\"}},{\"attributeHeader\":{\"labelValue\":\"955260\",\"primaryLabelValue\":\"955260\"}},{\"attributeHeader\":{\"labelValue\":\"955262\",\"primaryLabelValue\":\"955262\"}},{\"attributeHeader\":{\"labelValue\":\"955264\",\"primaryLabelValue\":\"955264\"}},{\"attributeHeader\":{\"labelValue\":\"955268\",\"primaryLabelValue\":\"955268\"}},{\"attributeHeader\":{\"labelValue\":\"955272\",\"primaryLabelValue\":\"955272\"}},{\"attributeHeader\":{\"labelValue\":\"955274\",\"primaryLabelValue\":\"955274\"}},{\"attributeHeader\":{\"labelValue\":\"955276\",\"primaryLabelValue\":\"955276\"}},{\"attributeHeader\":{\"labelValue\":\"955278\",\"primaryLabelValue\":\"955278\"}},{\"attributeHeader\":{\"labelValue\":\"955280\",\"primaryLabelValue\":\"955280\"}},{\"attributeHeader\":{\"labelValue\":\"955282\",\"primaryLabelValue\":\"955282\"}},{\"attributeHeader\":{\"labelValue\":\"955284\",\"primaryLabelValue\":\"955284\"}},{\"attributeHeader\":{\"labelValue\":\"955286\",\"primaryLabelValue\":\"955286\"}},{\"attributeHeader\":{\"labelValue\":\"955290\",\"primaryLabelValue\":\"955290\"}},{\"attributeHeader\":{\"labelValue\":\"955292\",\"primaryLabelValue\":\"955292\"}},{\"attributeHeader\":{\"labelValue\":\"955294\",\"primaryLabelValue\":\"955294\"}},{\"attributeHeader\":{\"labelValue\":\"955298\",\"primaryLabelValue\":\"955298\"}},{\"attributeHeader\":{\"labelValue\":\"955300\",\"primaryLabelValue\":\"955300\"}},{\"attributeHeader\":{\"labelValue\":\"955302\",\"primaryLabelValue\":\"955302\"}},{\"attributeHeader\":{\"labelValue\":\"955304\",\"primaryLabelValue\":\"955304\"}},{\"attributeHeader\":{\"labelValue\":\"955306\",\"primaryLabelValue\":\"955306\"}},{\"attributeHeader\":{\"labelValue\":\"955308\",\"primaryLabelValue\":\"955308\"}},{\"attributeHeader\":{\"labelValue\":\"955312\",\"primaryLabelValue\":\"955312\"}},{\"attributeHeader\":{\"labelValue\":\"955314\",\"primaryLabelValue\":\"955314\"}},{\"attributeHeader\":{\"labelValue\":\"955316\",\"primaryLabelValue\":\"955316\"}},{\"attributeHeader\":{\"labelValue\":\"955318\",\"primaryLabelValue\":\"955318\"}},{\"attributeHeader\":{\"labelValue\":\"955320\",\"primaryLabelValue\":\"955320\"}},{\"attributeHeader\":{\"labelValue\":\"955322\",\"primaryLabelValue\":\"955322\"}},{\"attributeHeader\":{\"labelValue\":\"955324\",\"primaryLabelValue\":\"955324\"}},{\"attributeHeader\":{\"labelValue\":\"955326\",\"primaryLabelValue\":\"955326\"}},{\"attributeHeader\":{\"labelValue\":\"955328\",\"primaryLabelValue\":\"955328\"}},{\"attributeHeader\":{\"labelValue\":\"955330\",\"primaryLabelValue\":\"955330\"}},{\"attributeHeader\":{\"labelValue\":\"955336\",\"primaryLabelValue\":\"955336\"}},{\"attributeHeader\":{\"labelValue\":\"955338\",\"primaryLabelValue\":\"955338\"}},{\"attributeHeader\":{\"labelValue\":\"955340\",\"primaryLabelValue\":\"955340\"}},{\"attributeHeader\":{\"labelValue\":\"955342\",\"primaryLabelValue\":\"955342\"}},{\"attributeHeader\":{\"labelValue\":\"955344\",\"primaryLabelValue\":\"955344\"}},{\"attributeHeader\":{\"labelValue\":\"955346\",\"primaryLabelValue\":\"955346\"}},{\"attributeHeader\":{\"labelValue\":\"955348\",\"primaryLabelValue\":\"955348\"}},{\"attributeHeader\":{\"labelValue\":\"955350\",\"primaryLabelValue\":\"955350\"}},{\"attributeHeader\":{\"labelValue\":\"955352\",\"primaryLabelValue\":\"955352\"}},{\"attributeHeader\":{\"labelValue\":\"955354\",\"primaryLabelValue\":\"955354\"}},{\"attributeHeader\":{\"labelValue\":\"955356\",\"primaryLabelValue\":\"955356\"}},{\"attributeHeader\":{\"labelValue\":\"955358\",\"primaryLabelValue\":\"955358\"}},{\"attributeHeader\":{\"labelValue\":\"955360\",\"primaryLabelValue\":\"955360\"}},{\"attributeHeader\":{\"labelValue\":\"955362\",\"primaryLabelValue\":\"955362\"}},{\"attributeHeader\":{\"labelValue\":\"955364\",\"primaryLabelValue\":\"955364\"}},{\"attributeHeader\":{\"labelValue\":\"955366\",\"primaryLabelValue\":\"955366\"}},{\"attributeHeader\":{\"labelValue\":\"955368\",\"primaryLabelValue\":\"955368\"}},{\"attributeHeader\":{\"labelValue\":\"955370\",\"primaryLabelValue\":\"955370\"}},{\"attributeHeader\":{\"labelValue\":\"955372\",\"primaryLabelValue\":\"955372\"}},{\"attributeHeader\":{\"labelValue\":\"955374\",\"primaryLabelValue\":\"955374\"}},{\"attributeHeader\":{\"labelValue\":\"955376\",\"primaryLabelValue\":\"955376\"}},{\"attributeHeader\":{\"labelValue\":\"955378\",\"primaryLabelValue\":\"955378\"}},{\"attributeHeader\":{\"labelValue\":\"955380\",\"primaryLabelValue\":\"955380\"}},{\"attributeHeader\":{\"labelValue\":\"955382\",\"primaryLabelValue\":\"955382\"}},{\"attributeHeader\":{\"labelValue\":\"955384\",\"primaryLabelValue\":\"955384\"}},{\"attributeHeader\":{\"labelValue\":\"955386\",\"primaryLabelValue\":\"955386\"}},{\"attributeHeader\":{\"labelValue\":\"955388\",\"primaryLabelValue\":\"955388\"}},{\"attributeHeader\":{\"labelValue\":\"955390\",\"primaryLabelValue\":\"955390\"}},{\"attributeHeader\":{\"labelValue\":\"955392\",\"primaryLabelValue\":\"955392\"}},{\"attributeHeader\":{\"labelValue\":\"955394\",\"primaryLabelValue\":\"955394\"}},{\"attributeHeader\":{\"labelValue\":\"955398\",\"primaryLabelValue\":\"955398\"}},{\"attributeHeader\":{\"labelValue\":\"955402\",\"primaryLabelValue\":\"955402\"}},{\"attributeHeader\":{\"labelValue\":\"955406\",\"primaryLabelValue\":\"955406\"}},{\"attributeHeader\":{\"labelValue\":\"955408\",\"primaryLabelValue\":\"955408\"}},{\"attributeHeader\":{\"labelValue\":\"955410\",\"primaryLabelValue\":\"955410\"}},{\"attributeHeader\":{\"labelValue\":\"955414\",\"primaryLabelValue\":\"955414\"}},{\"attributeHeader\":{\"labelValue\":\"955420\",\"primaryLabelValue\":\"955420\"}},{\"attributeHeader\":{\"labelValue\":\"955422\",\"primaryLabelValue\":\"955422\"}},{\"attributeHeader\":{\"labelValue\":\"955424\",\"primaryLabelValue\":\"955424\"}},{\"attributeHeader\":{\"labelValue\":\"955426\",\"primaryLabelValue\":\"955426\"}},{\"attributeHeader\":{\"labelValue\":\"955428\",\"primaryLabelValue\":\"955428\"}},{\"attributeHeader\":{\"labelValue\":\"955430\",\"primaryLabelValue\":\"955430\"}},{\"attributeHeader\":{\"labelValue\":\"955432\",\"primaryLabelValue\":\"955432\"}},{\"attributeHeader\":{\"labelValue\":\"955434\",\"primaryLabelValue\":\"955434\"}},{\"attributeHeader\":{\"labelValue\":\"955436\",\"primaryLabelValue\":\"955436\"}},{\"attributeHeader\":{\"labelValue\":\"955440\",\"primaryLabelValue\":\"955440\"}},{\"attributeHeader\":{\"labelValue\":\"955442\",\"primaryLabelValue\":\"955442\"}},{\"attributeHeader\":{\"labelValue\":\"955444\",\"primaryLabelValue\":\"955444\"}},{\"attributeHeader\":{\"labelValue\":\"955446\",\"primaryLabelValue\":\"955446\"}},{\"attributeHeader\":{\"labelValue\":\"955448\",\"primaryLabelValue\":\"955448\"}},{\"attributeHeader\":{\"labelValue\":\"955452\",\"primaryLabelValue\":\"955452\"}},{\"attributeHeader\":{\"labelValue\":\"955454\",\"primaryLabelValue\":\"955454\"}},{\"attributeHeader\":{\"labelValue\":\"955456\",\"primaryLabelValue\":\"955456\"}},{\"attributeHeader\":{\"labelValue\":\"955458\",\"primaryLabelValue\":\"955458\"}},{\"attributeHeader\":{\"labelValue\":\"955460\",\"primaryLabelValue\":\"955460\"}},{\"attributeHeader\":{\"labelValue\":\"955462\",\"primaryLabelValue\":\"955462\"}},{\"attributeHeader\":{\"labelValue\":\"955464\",\"primaryLabelValue\":\"955464\"}},{\"attributeHeader\":{\"labelValue\":\"955466\",\"primaryLabelValue\":\"955466\"}},{\"attributeHeader\":{\"labelValue\":\"955468\",\"primaryLabelValue\":\"955468\"}},{\"attributeHeader\":{\"labelValue\":\"955470\",\"primaryLabelValue\":\"955470\"}},{\"attributeHeader\":{\"labelValue\":\"955472\",\"primaryLabelValue\":\"955472\"}},{\"attributeHeader\":{\"labelValue\":\"955474\",\"primaryLabelValue\":\"955474\"}},{\"attributeHeader\":{\"labelValue\":\"955476\",\"primaryLabelValue\":\"955476\"}},{\"attributeHeader\":{\"labelValue\":\"955478\",\"primaryLabelValue\":\"955478\"}},{\"attributeHeader\":{\"labelValue\":\"955480\",\"primaryLabelValue\":\"955480\"}},{\"attributeHeader\":{\"labelValue\":\"955482\",\"primaryLabelValue\":\"955482\"}},{\"attributeHeader\":{\"labelValue\":\"955484\",\"primaryLabelValue\":\"955484\"}},{\"attributeHeader\":{\"labelValue\":\"955486\",\"primaryLabelValue\":\"955486\"}},{\"attributeHeader\":{\"labelValue\":\"955488\",\"primaryLabelValue\":\"955488\"}},{\"attributeHeader\":{\"labelValue\":\"955490\",\"primaryLabelValue\":\"955490\"}},{\"attributeHeader\":{\"labelValue\":\"955492\",\"primaryLabelValue\":\"955492\"}},{\"attributeHeader\":{\"labelValue\":\"955494\",\"primaryLabelValue\":\"955494\"}},{\"attributeHeader\":{\"labelValue\":\"955496\",\"primaryLabelValue\":\"955496\"}},{\"attributeHeader\":{\"labelValue\":\"955498\",\"primaryLabelValue\":\"955498\"}},{\"attributeHeader\":{\"labelValue\":\"955500\",\"primaryLabelValue\":\"955500\"}},{\"attributeHeader\":{\"labelValue\":\"955502\",\"primaryLabelValue\":\"955502\"}},{\"attributeHeader\":{\"labelValue\":\"955504\",\"primaryLabelValue\":\"955504\"}},{\"attributeHeader\":{\"labelValue\":\"955506\",\"primaryLabelValue\":\"955506\"}},{\"attributeHeader\":{\"labelValue\":\"955508\",\"primaryLabelValue\":\"955508\"}},{\"attributeHeader\":{\"labelValue\":\"955510\",\"primaryLabelValue\":\"955510\"}},{\"attributeHeader\":{\"labelValue\":\"955512\",\"primaryLabelValue\":\"955512\"}},{\"attributeHeader\":{\"labelValue\":\"955514\",\"primaryLabelValue\":\"955514\"}},{\"attributeHeader\":{\"labelValue\":\"955516\",\"primaryLabelValue\":\"955516\"}},{\"attributeHeader\":{\"labelValue\":\"955518\",\"primaryLabelValue\":\"955518\"}},{\"attributeHeader\":{\"labelValue\":\"955520\",\"primaryLabelValue\":\"955520\"}},{\"attributeHeader\":{\"labelValue\":\"955522\",\"primaryLabelValue\":\"955522\"}},{\"attributeHeader\":{\"labelValue\":\"955524\",\"primaryLabelValue\":\"955524\"}},{\"attributeHeader\":{\"labelValue\":\"955526\",\"primaryLabelValue\":\"955526\"}},{\"attributeHeader\":{\"labelValue\":\"955528\",\"primaryLabelValue\":\"955528\"}},{\"attributeHeader\":{\"labelValue\":\"955530\",\"primaryLabelValue\":\"955530\"}},{\"attributeHeader\":{\"labelValue\":\"955532\",\"primaryLabelValue\":\"955532\"}},{\"attributeHeader\":{\"labelValue\":\"955534\",\"primaryLabelValue\":\"955534\"}},{\"attributeHeader\":{\"labelValue\":\"955536\",\"primaryLabelValue\":\"955536\"}},{\"attributeHeader\":{\"labelValue\":\"955538\",\"primaryLabelValue\":\"955538\"}},{\"attributeHeader\":{\"labelValue\":\"955540\",\"primaryLabelValue\":\"955540\"}},{\"attributeHeader\":{\"labelValue\":\"955542\",\"primaryLabelValue\":\"955542\"}},{\"attributeHeader\":{\"labelValue\":\"955544\",\"primaryLabelValue\":\"955544\"}},{\"attributeHeader\":{\"labelValue\":\"955546\",\"primaryLabelValue\":\"955546\"}},{\"attributeHeader\":{\"labelValue\":\"955548\",\"primaryLabelValue\":\"955548\"}},{\"attributeHeader\":{\"labelValue\":\"955550\",\"primaryLabelValue\":\"955550\"}},{\"attributeHeader\":{\"labelValue\":\"955552\",\"primaryLabelValue\":\"955552\"}},{\"attributeHeader\":{\"labelValue\":\"955554\",\"primaryLabelValue\":\"955554\"}},{\"attributeHeader\":{\"labelValue\":\"955556\",\"primaryLabelValue\":\"955556\"}},{\"attributeHeader\":{\"labelValue\":\"955558\",\"primaryLabelValue\":\"955558\"}},{\"attributeHeader\":{\"labelValue\":\"955560\",\"primaryLabelValue\":\"955560\"}},{\"attributeHeader\":{\"labelValue\":\"955562\",\"primaryLabelValue\":\"955562\"}},{\"attributeHeader\":{\"labelValue\":\"955564\",\"primaryLabelValue\":\"955564\"}},{\"attributeHeader\":{\"labelValue\":\"955566\",\"primaryLabelValue\":\"955566\"}},{\"attributeHeader\":{\"labelValue\":\"955568\",\"primaryLabelValue\":\"955568\"}},{\"attributeHeader\":{\"labelValue\":\"955570\",\"primaryLabelValue\":\"955570\"}},{\"attributeHeader\":{\"labelValue\":\"955572\",\"primaryLabelValue\":\"955572\"}},{\"attributeHeader\":{\"labelValue\":\"955574\",\"primaryLabelValue\":\"955574\"}},{\"attributeHeader\":{\"labelValue\":\"955576\",\"primaryLabelValue\":\"955576\"}},{\"attributeHeader\":{\"labelValue\":\"955578\",\"primaryLabelValue\":\"955578\"}},{\"attributeHeader\":{\"labelValue\":\"955580\",\"primaryLabelValue\":\"955580\"}},{\"attributeHeader\":{\"labelValue\":\"955582\",\"primaryLabelValue\":\"955582\"}},{\"attributeHeader\":{\"labelValue\":\"955584\",\"primaryLabelValue\":\"955584\"}},{\"attributeHeader\":{\"labelValue\":\"955586\",\"primaryLabelValue\":\"955586\"}},{\"attributeHeader\":{\"labelValue\":\"955588\",\"primaryLabelValue\":\"955588\"}},{\"attributeHeader\":{\"labelValue\":\"955590\",\"primaryLabelValue\":\"955590\"}},{\"attributeHeader\":{\"labelValue\":\"955592\",\"primaryLabelValue\":\"955592\"}},{\"attributeHeader\":{\"labelValue\":\"955594\",\"primaryLabelValue\":\"955594\"}},{\"attributeHeader\":{\"labelValue\":\"955596\",\"primaryLabelValue\":\"955596\"}},{\"attributeHeader\":{\"labelValue\":\"955598\",\"primaryLabelValue\":\"955598\"}},{\"attributeHeader\":{\"labelValue\":\"955600\",\"primaryLabelValue\":\"955600\"}},{\"attributeHeader\":{\"labelValue\":\"955602\",\"primaryLabelValue\":\"955602\"}},{\"attributeHeader\":{\"labelValue\":\"955604\",\"primaryLabelValue\":\"955604\"}},{\"attributeHeader\":{\"labelValue\":\"955606\",\"primaryLabelValue\":\"955606\"}},{\"attributeHeader\":{\"labelValue\":\"955608\",\"primaryLabelValue\":\"955608\"}},{\"attributeHeader\":{\"labelValue\":\"955610\",\"primaryLabelValue\":\"955610\"}},{\"attributeHeader\":{\"labelValue\":\"955612\",\"primaryLabelValue\":\"955612\"}},{\"attributeHeader\":{\"labelValue\":\"955614\",\"primaryLabelValue\":\"955614\"}},{\"attributeHeader\":{\"labelValue\":\"955616\",\"primaryLabelValue\":\"955616\"}},{\"attributeHeader\":{\"labelValue\":\"955618\",\"primaryLabelValue\":\"955618\"}},{\"attributeHeader\":{\"labelValue\":\"955620\",\"primaryLabelValue\":\"955620\"}},{\"attributeHeader\":{\"labelValue\":\"955622\",\"primaryLabelValue\":\"955622\"}},{\"attributeHeader\":{\"labelValue\":\"955624\",\"primaryLabelValue\":\"955624\"}},{\"attributeHeader\":{\"labelValue\":\"955626\",\"primaryLabelValue\":\"955626\"}},{\"attributeHeader\":{\"labelValue\":\"955628\",\"primaryLabelValue\":\"955628\"}},{\"attributeHeader\":{\"labelValue\":\"955630\",\"primaryLabelValue\":\"955630\"}},{\"attributeHeader\":{\"labelValue\":\"955632\",\"primaryLabelValue\":\"955632\"}},{\"attributeHeader\":{\"labelValue\":\"955634\",\"primaryLabelValue\":\"955634\"}},{\"attributeHeader\":{\"labelValue\":\"955636\",\"primaryLabelValue\":\"955636\"}},{\"attributeHeader\":{\"labelValue\":\"955638\",\"primaryLabelValue\":\"955638\"}},{\"attributeHeader\":{\"labelValue\":\"955640\",\"primaryLabelValue\":\"955640\"}},{\"attributeHeader\":{\"labelValue\":\"955642\",\"primaryLabelValue\":\"955642\"}},{\"attributeHeader\":{\"labelValue\":\"955644\",\"primaryLabelValue\":\"955644\"}},{\"attributeHeader\":{\"labelValue\":\"955646\",\"primaryLabelValue\":\"955646\"}},{\"attributeHeader\":{\"labelValue\":\"955648\",\"primaryLabelValue\":\"955648\"}},{\"attributeHeader\":{\"labelValue\":\"955650\",\"primaryLabelValue\":\"955650\"}},{\"attributeHeader\":{\"labelValue\":\"955652\",\"primaryLabelValue\":\"955652\"}},{\"attributeHeader\":{\"labelValue\":\"955654\",\"primaryLabelValue\":\"955654\"}},{\"attributeHeader\":{\"labelValue\":\"955656\",\"primaryLabelValue\":\"955656\"}},{\"attributeHeader\":{\"labelValue\":\"955658\",\"primaryLabelValue\":\"955658\"}},{\"attributeHeader\":{\"labelValue\":\"955660\",\"primaryLabelValue\":\"955660\"}},{\"attributeHeader\":{\"labelValue\":\"955662\",\"primaryLabelValue\":\"955662\"}},{\"attributeHeader\":{\"labelValue\":\"955664\",\"primaryLabelValue\":\"955664\"}},{\"attributeHeader\":{\"labelValue\":\"955666\",\"primaryLabelValue\":\"955666\"}},{\"attributeHeader\":{\"labelValue\":\"955668\",\"primaryLabelValue\":\"955668\"}},{\"attributeHeader\":{\"labelValue\":\"955670\",\"primaryLabelValue\":\"955670\"}},{\"attributeHeader\":{\"labelValue\":\"955672\",\"primaryLabelValue\":\"955672\"}},{\"attributeHeader\":{\"labelValue\":\"955674\",\"primaryLabelValue\":\"955674\"}},{\"attributeHeader\":{\"labelValue\":\"955676\",\"primaryLabelValue\":\"955676\"}},{\"attributeHeader\":{\"labelValue\":\"955678\",\"primaryLabelValue\":\"955678\"}},{\"attributeHeader\":{\"labelValue\":\"955680\",\"primaryLabelValue\":\"955680\"}},{\"attributeHeader\":{\"labelValue\":\"955682\",\"primaryLabelValue\":\"955682\"}},{\"attributeHeader\":{\"labelValue\":\"955684\",\"primaryLabelValue\":\"955684\"}},{\"attributeHeader\":{\"labelValue\":\"955686\",\"primaryLabelValue\":\"955686\"}},{\"attributeHeader\":{\"labelValue\":\"955688\",\"primaryLabelValue\":\"955688\"}},{\"attributeHeader\":{\"labelValue\":\"955690\",\"primaryLabelValue\":\"955690\"}},{\"attributeHeader\":{\"labelValue\":\"955692\",\"primaryLabelValue\":\"955692\"}},{\"attributeHeader\":{\"labelValue\":\"955694\",\"primaryLabelValue\":\"955694\"}},{\"attributeHeader\":{\"labelValue\":\"955696\",\"primaryLabelValue\":\"955696\"}},{\"attributeHeader\":{\"labelValue\":\"955698\",\"primaryLabelValue\":\"955698\"}},{\"attributeHeader\":{\"labelValue\":\"955700\",\"primaryLabelValue\":\"955700\"}},{\"attributeHeader\":{\"labelValue\":\"955702\",\"primaryLabelValue\":\"955702\"}},{\"attributeHeader\":{\"labelValue\":\"955704\",\"primaryLabelValue\":\"955704\"}},{\"attributeHeader\":{\"labelValue\":\"955706\",\"primaryLabelValue\":\"955706\"}},{\"attributeHeader\":{\"labelValue\":\"955708\",\"primaryLabelValue\":\"955708\"}},{\"attributeHeader\":{\"labelValue\":\"955710\",\"primaryLabelValue\":\"955710\"}},{\"attributeHeader\":{\"labelValue\":\"955712\",\"primaryLabelValue\":\"955712\"}},{\"attributeHeader\":{\"labelValue\":\"955714\",\"primaryLabelValue\":\"955714\"}},{\"attributeHeader\":{\"labelValue\":\"955716\",\"primaryLabelValue\":\"955716\"}},{\"attributeHeader\":{\"labelValue\":\"955718\",\"primaryLabelValue\":\"955718\"}},{\"attributeHeader\":{\"labelValue\":\"955720\",\"primaryLabelValue\":\"955720\"}},{\"attributeHeader\":{\"labelValue\":\"955722\",\"primaryLabelValue\":\"955722\"}},{\"attributeHeader\":{\"labelValue\":\"955724\",\"primaryLabelValue\":\"955724\"}},{\"attributeHeader\":{\"labelValue\":\"955726\",\"primaryLabelValue\":\"955726\"}},{\"attributeHeader\":{\"labelValue\":\"955728\",\"primaryLabelValue\":\"955728\"}},{\"attributeHeader\":{\"labelValue\":\"955730\",\"primaryLabelValue\":\"955730\"}},{\"attributeHeader\":{\"labelValue\":\"955732\",\"primaryLabelValue\":\"955732\"}},{\"attributeHeader\":{\"labelValue\":\"955734\",\"primaryLabelValue\":\"955734\"}},{\"attributeHeader\":{\"labelValue\":\"955736\",\"primaryLabelValue\":\"955736\"}},{\"attributeHeader\":{\"labelValue\":\"955738\",\"primaryLabelValue\":\"955738\"}},{\"attributeHeader\":{\"labelValue\":\"955740\",\"primaryLabelValue\":\"955740\"}},{\"attributeHeader\":{\"labelValue\":\"955742\",\"primaryLabelValue\":\"955742\"}},{\"attributeHeader\":{\"labelValue\":\"955744\",\"primaryLabelValue\":\"955744\"}},{\"attributeHeader\":{\"labelValue\":\"955746\",\"primaryLabelValue\":\"955746\"}},{\"attributeHeader\":{\"labelValue\":\"955748\",\"primaryLabelValue\":\"955748\"}},{\"attributeHeader\":{\"labelValue\":\"955750\",\"primaryLabelValue\":\"955750\"}},{\"attributeHeader\":{\"labelValue\":\"955752\",\"primaryLabelValue\":\"955752\"}},{\"attributeHeader\":{\"labelValue\":\"955754\",\"primaryLabelValue\":\"955754\"}},{\"attributeHeader\":{\"labelValue\":\"955756\",\"primaryLabelValue\":\"955756\"}},{\"attributeHeader\":{\"labelValue\":\"955758\",\"primaryLabelValue\":\"955758\"}},{\"attributeHeader\":{\"labelValue\":\"955760\",\"primaryLabelValue\":\"955760\"}},{\"attributeHeader\":{\"labelValue\":\"955762\",\"primaryLabelValue\":\"955762\"}},{\"attributeHeader\":{\"labelValue\":\"955764\",\"primaryLabelValue\":\"955764\"}},{\"attributeHeader\":{\"labelValue\":\"955766\",\"primaryLabelValue\":\"955766\"}},{\"attributeHeader\":{\"labelValue\":\"955768\",\"primaryLabelValue\":\"955768\"}},{\"attributeHeader\":{\"labelValue\":\"955770\",\"primaryLabelValue\":\"955770\"}},{\"attributeHeader\":{\"labelValue\":\"955772\",\"primaryLabelValue\":\"955772\"}},{\"attributeHeader\":{\"labelValue\":\"955774\",\"primaryLabelValue\":\"955774\"}},{\"attributeHeader\":{\"labelValue\":\"955776\",\"primaryLabelValue\":\"955776\"}},{\"attributeHeader\":{\"labelValue\":\"955778\",\"primaryLabelValue\":\"955778\"}},{\"attributeHeader\":{\"labelValue\":\"955780\",\"primaryLabelValue\":\"955780\"}},{\"attributeHeader\":{\"labelValue\":\"955782\",\"primaryLabelValue\":\"955782\"}},{\"attributeHeader\":{\"labelValue\":\"955784\",\"primaryLabelValue\":\"955784\"}},{\"attributeHeader\":{\"labelValue\":\"955786\",\"primaryLabelValue\":\"955786\"}},{\"attributeHeader\":{\"labelValue\":\"955788\",\"primaryLabelValue\":\"955788\"}},{\"attributeHeader\":{\"labelValue\":\"955790\",\"primaryLabelValue\":\"955790\"}},{\"attributeHeader\":{\"labelValue\":\"955792\",\"primaryLabelValue\":\"955792\"}},{\"attributeHeader\":{\"labelValue\":\"955794\",\"primaryLabelValue\":\"955794\"}},{\"attributeHeader\":{\"labelValue\":\"955796\",\"primaryLabelValue\":\"955796\"}},{\"attributeHeader\":{\"labelValue\":\"955798\",\"primaryLabelValue\":\"955798\"}},{\"attributeHeader\":{\"labelValue\":\"955800\",\"primaryLabelValue\":\"955800\"}},{\"attributeHeader\":{\"labelValue\":\"955802\",\"primaryLabelValue\":\"955802\"}},{\"attributeHeader\":{\"labelValue\":\"955804\",\"primaryLabelValue\":\"955804\"}},{\"attributeHeader\":{\"labelValue\":\"955806\",\"primaryLabelValue\":\"955806\"}},{\"attributeHeader\":{\"labelValue\":\"955808\",\"primaryLabelValue\":\"955808\"}},{\"attributeHeader\":{\"labelValue\":\"955810\",\"primaryLabelValue\":\"955810\"}},{\"attributeHeader\":{\"labelValue\":\"955812\",\"primaryLabelValue\":\"955812\"}},{\"attributeHeader\":{\"labelValue\":\"955814\",\"primaryLabelValue\":\"955814\"}},{\"attributeHeader\":{\"labelValue\":\"955816\",\"primaryLabelValue\":\"955816\"}},{\"attributeHeader\":{\"labelValue\":\"955818\",\"primaryLabelValue\":\"955818\"}},{\"attributeHeader\":{\"labelValue\":\"955820\",\"primaryLabelValue\":\"955820\"}},{\"attributeHeader\":{\"labelValue\":\"955822\",\"primaryLabelValue\":\"955822\"}},{\"attributeHeader\":{\"labelValue\":\"955824\",\"primaryLabelValue\":\"955824\"}},{\"attributeHeader\":{\"labelValue\":\"955826\",\"primaryLabelValue\":\"955826\"}},{\"attributeHeader\":{\"labelValue\":\"955828\",\"primaryLabelValue\":\"955828\"}},{\"attributeHeader\":{\"labelValue\":\"955830\",\"primaryLabelValue\":\"955830\"}},{\"attributeHeader\":{\"labelValue\":\"955832\",\"primaryLabelValue\":\"955832\"}},{\"attributeHeader\":{\"labelValue\":\"955834\",\"primaryLabelValue\":\"955834\"}},{\"attributeHeader\":{\"labelValue\":\"955836\",\"primaryLabelValue\":\"955836\"}},{\"attributeHeader\":{\"labelValue\":\"955838\",\"primaryLabelValue\":\"955838\"}},{\"attributeHeader\":{\"labelValue\":\"955840\",\"primaryLabelValue\":\"955840\"}},{\"attributeHeader\":{\"labelValue\":\"955842\",\"primaryLabelValue\":\"955842\"}},{\"attributeHeader\":{\"labelValue\":\"955844\",\"primaryLabelValue\":\"955844\"}},{\"attributeHeader\":{\"labelValue\":\"955846\",\"primaryLabelValue\":\"955846\"}},{\"attributeHeader\":{\"labelValue\":\"955848\",\"primaryLabelValue\":\"955848\"}},{\"attributeHeader\":{\"labelValue\":\"955850\",\"primaryLabelValue\":\"955850\"}},{\"attributeHeader\":{\"labelValue\":\"955852\",\"primaryLabelValue\":\"955852\"}},{\"attributeHeader\":{\"labelValue\":\"955854\",\"primaryLabelValue\":\"955854\"}},{\"attributeHeader\":{\"labelValue\":\"955856\",\"primaryLabelValue\":\"955856\"}},{\"attributeHeader\":{\"labelValue\":\"955858\",\"primaryLabelValue\":\"955858\"}},{\"attributeHeader\":{\"labelValue\":\"955860\",\"primaryLabelValue\":\"955860\"}},{\"attributeHeader\":{\"labelValue\":\"955862\",\"primaryLabelValue\":\"955862\"}},{\"attributeHeader\":{\"labelValue\":\"955864\",\"primaryLabelValue\":\"955864\"}},{\"attributeHeader\":{\"labelValue\":\"955866\",\"primaryLabelValue\":\"955866\"}},{\"attributeHeader\":{\"labelValue\":\"955868\",\"primaryLabelValue\":\"955868\"}},{\"attributeHeader\":{\"labelValue\":\"955870\",\"primaryLabelValue\":\"955870\"}},{\"attributeHeader\":{\"labelValue\":\"955872\",\"primaryLabelValue\":\"955872\"}},{\"attributeHeader\":{\"labelValue\":\"955874\",\"primaryLabelValue\":\"955874\"}},{\"attributeHeader\":{\"labelValue\":\"955876\",\"primaryLabelValue\":\"955876\"}},{\"attributeHeader\":{\"labelValue\":\"955878\",\"primaryLabelValue\":\"955878\"}},{\"attributeHeader\":{\"labelValue\":\"955880\",\"primaryLabelValue\":\"955880\"}},{\"attributeHeader\":{\"labelValue\":\"955882\",\"primaryLabelValue\":\"955882\"}},{\"attributeHeader\":{\"labelValue\":\"955884\",\"primaryLabelValue\":\"955884\"}},{\"attributeHeader\":{\"labelValue\":\"955886\",\"primaryLabelValue\":\"955886\"}},{\"attributeHeader\":{\"labelValue\":\"955888\",\"primaryLabelValue\":\"955888\"}},{\"attributeHeader\":{\"labelValue\":\"955890\",\"primaryLabelValue\":\"955890\"}},{\"attributeHeader\":{\"labelValue\":\"955892\",\"primaryLabelValue\":\"955892\"}},{\"attributeHeader\":{\"labelValue\":\"955894\",\"primaryLabelValue\":\"955894\"}},{\"attributeHeader\":{\"labelValue\":\"955896\",\"primaryLabelValue\":\"955896\"}},{\"attributeHeader\":{\"labelValue\":\"955898\",\"primaryLabelValue\":\"955898\"}},{\"attributeHeader\":{\"labelValue\":\"955900\",\"primaryLabelValue\":\"955900\"}},{\"attributeHeader\":{\"labelValue\":\"955902\",\"primaryLabelValue\":\"955902\"}},{\"attributeHeader\":{\"labelValue\":\"955904\",\"primaryLabelValue\":\"955904\"}},{\"attributeHeader\":{\"labelValue\":\"955906\",\"primaryLabelValue\":\"955906\"}},{\"attributeHeader\":{\"labelValue\":\"955908\",\"primaryLabelValue\":\"955908\"}},{\"attributeHeader\":{\"labelValue\":\"955910\",\"primaryLabelValue\":\"955910\"}},{\"attributeHeader\":{\"labelValue\":\"955912\",\"primaryLabelValue\":\"955912\"}},{\"attributeHeader\":{\"labelValue\":\"955914\",\"primaryLabelValue\":\"955914\"}},{\"attributeHeader\":{\"labelValue\":\"955916\",\"primaryLabelValue\":\"955916\"}},{\"attributeHeader\":{\"labelValue\":\"955918\",\"primaryLabelValue\":\"955918\"}},{\"attributeHeader\":{\"labelValue\":\"955920\",\"primaryLabelValue\":\"955920\"}},{\"attributeHeader\":{\"labelValue\":\"955922\",\"primaryLabelValue\":\"955922\"}},{\"attributeHeader\":{\"labelValue\":\"955924\",\"primaryLabelValue\":\"955924\"}},{\"attributeHeader\":{\"labelValue\":\"955926\",\"primaryLabelValue\":\"955926\"}},{\"attributeHeader\":{\"labelValue\":\"955928\",\"primaryLabelValue\":\"955928\"}},{\"attributeHeader\":{\"labelValue\":\"955930\",\"primaryLabelValue\":\"955930\"}},{\"attributeHeader\":{\"labelValue\":\"955932\",\"primaryLabelValue\":\"955932\"}},{\"attributeHeader\":{\"labelValue\":\"955934\",\"primaryLabelValue\":\"955934\"}},{\"attributeHeader\":{\"labelValue\":\"955936\",\"primaryLabelValue\":\"955936\"}},{\"attributeHeader\":{\"labelValue\":\"955938\",\"primaryLabelValue\":\"955938\"}},{\"attributeHeader\":{\"labelValue\":\"955940\",\"primaryLabelValue\":\"955940\"}},{\"attributeHeader\":{\"labelValue\":\"955942\",\"primaryLabelValue\":\"955942\"}},{\"attributeHeader\":{\"labelValue\":\"955944\",\"primaryLabelValue\":\"955944\"}},{\"attributeHeader\":{\"labelValue\":\"955946\",\"primaryLabelValue\":\"955946\"}},{\"attributeHeader\":{\"labelValue\":\"955948\",\"primaryLabelValue\":\"955948\"}},{\"attributeHeader\":{\"labelValue\":\"955950\",\"primaryLabelValue\":\"955950\"}},{\"attributeHeader\":{\"labelValue\":\"955952\",\"primaryLabelValue\":\"955952\"}},{\"attributeHeader\":{\"labelValue\":\"955954\",\"primaryLabelValue\":\"955954\"}},{\"attributeHeader\":{\"labelValue\":\"955958\",\"primaryLabelValue\":\"955958\"}},{\"attributeHeader\":{\"labelValue\":\"955960\",\"primaryLabelValue\":\"955960\"}},{\"attributeHeader\":{\"labelValue\":\"955962\",\"primaryLabelValue\":\"955962\"}},{\"attributeHeader\":{\"labelValue\":\"955964\",\"primaryLabelValue\":\"955964\"}},{\"attributeHeader\":{\"labelValue\":\"955966\",\"primaryLabelValue\":\"955966\"}},{\"attributeHeader\":{\"labelValue\":\"955968\",\"primaryLabelValue\":\"955968\"}},{\"attributeHeader\":{\"labelValue\":\"955970\",\"primaryLabelValue\":\"955970\"}},{\"attributeHeader\":{\"labelValue\":\"955972\",\"primaryLabelValue\":\"955972\"}},{\"attributeHeader\":{\"labelValue\":\"955974\",\"primaryLabelValue\":\"955974\"}},{\"attributeHeader\":{\"labelValue\":\"955976\",\"primaryLabelValue\":\"955976\"}},{\"attributeHeader\":{\"labelValue\":\"955978\",\"primaryLabelValue\":\"955978\"}},{\"attributeHeader\":{\"labelValue\":\"955980\",\"primaryLabelValue\":\"955980\"}},{\"attributeHeader\":{\"labelValue\":\"955982\",\"primaryLabelValue\":\"955982\"}},{\"attributeHeader\":{\"labelValue\":\"955984\",\"primaryLabelValue\":\"955984\"}},{\"attributeHeader\":{\"labelValue\":\"955986\",\"primaryLabelValue\":\"955986\"}},{\"attributeHeader\":{\"labelValue\":\"955988\",\"primaryLabelValue\":\"955988\"}},{\"attributeHeader\":{\"labelValue\":\"955990\",\"primaryLabelValue\":\"955990\"}},{\"attributeHeader\":{\"labelValue\":\"955992\",\"primaryLabelValue\":\"955992\"}},{\"attributeHeader\":{\"labelValue\":\"955994\",\"primaryLabelValue\":\"955994\"}},{\"attributeHeader\":{\"labelValue\":\"955996\",\"primaryLabelValue\":\"955996\"}},{\"attributeHeader\":{\"labelValue\":\"955998\",\"primaryLabelValue\":\"955998\"}},{\"attributeHeader\":{\"labelValue\":\"956000\",\"primaryLabelValue\":\"956000\"}},{\"attributeHeader\":{\"labelValue\":\"956002\",\"primaryLabelValue\":\"956002\"}},{\"attributeHeader\":{\"labelValue\":\"956004\",\"primaryLabelValue\":\"956004\"}},{\"attributeHeader\":{\"labelValue\":\"956006\",\"primaryLabelValue\":\"956006\"}},{\"attributeHeader\":{\"labelValue\":\"956008\",\"primaryLabelValue\":\"956008\"}},{\"attributeHeader\":{\"labelValue\":\"956010\",\"primaryLabelValue\":\"956010\"}},{\"attributeHeader\":{\"labelValue\":\"956012\",\"primaryLabelValue\":\"956012\"}},{\"attributeHeader\":{\"labelValue\":\"956014\",\"primaryLabelValue\":\"956014\"}},{\"attributeHeader\":{\"labelValue\":\"956016\",\"primaryLabelValue\":\"956016\"}},{\"attributeHeader\":{\"labelValue\":\"956018\",\"primaryLabelValue\":\"956018\"}},{\"attributeHeader\":{\"labelValue\":\"956020\",\"primaryLabelValue\":\"956020\"}},{\"attributeHeader\":{\"labelValue\":\"956022\",\"primaryLabelValue\":\"956022\"}},{\"attributeHeader\":{\"labelValue\":\"956024\",\"primaryLabelValue\":\"956024\"}},{\"attributeHeader\":{\"labelValue\":\"956026\",\"primaryLabelValue\":\"956026\"}},{\"attributeHeader\":{\"labelValue\":\"956028\",\"primaryLabelValue\":\"956028\"}},{\"attributeHeader\":{\"labelValue\":\"956030\",\"primaryLabelValue\":\"956030\"}},{\"attributeHeader\":{\"labelValue\":\"956032\",\"primaryLabelValue\":\"956032\"}},{\"attributeHeader\":{\"labelValue\":\"956034\",\"primaryLabelValue\":\"956034\"}},{\"attributeHeader\":{\"labelValue\":\"956036\",\"primaryLabelValue\":\"956036\"}},{\"attributeHeader\":{\"labelValue\":\"956038\",\"primaryLabelValue\":\"956038\"}},{\"attributeHeader\":{\"labelValue\":\"956040\",\"primaryLabelValue\":\"956040\"}},{\"attributeHeader\":{\"labelValue\":\"956042\",\"primaryLabelValue\":\"956042\"}},{\"attributeHeader\":{\"labelValue\":\"956044\",\"primaryLabelValue\":\"956044\"}},{\"attributeHeader\":{\"labelValue\":\"956046\",\"primaryLabelValue\":\"956046\"}},{\"attributeHeader\":{\"labelValue\":\"956048\",\"primaryLabelValue\":\"956048\"}},{\"attributeHeader\":{\"labelValue\":\"956050\",\"primaryLabelValue\":\"956050\"}},{\"attributeHeader\":{\"labelValue\":\"956052\",\"primaryLabelValue\":\"956052\"}},{\"attributeHeader\":{\"labelValue\":\"956054\",\"primaryLabelValue\":\"956054\"}},{\"attributeHeader\":{\"labelValue\":\"956056\",\"primaryLabelValue\":\"956056\"}},{\"attributeHeader\":{\"labelValue\":\"956058\",\"primaryLabelValue\":\"956058\"}},{\"attributeHeader\":{\"labelValue\":\"956060\",\"primaryLabelValue\":\"956060\"}},{\"attributeHeader\":{\"labelValue\":\"956062\",\"primaryLabelValue\":\"956062\"}},{\"attributeHeader\":{\"labelValue\":\"956064\",\"primaryLabelValue\":\"956064\"}},{\"attributeHeader\":{\"labelValue\":\"956066\",\"primaryLabelValue\":\"956066\"}},{\"attributeHeader\":{\"labelValue\":\"956068\",\"primaryLabelValue\":\"956068\"}},{\"attributeHeader\":{\"labelValue\":\"956070\",\"primaryLabelValue\":\"956070\"}},{\"attributeHeader\":{\"labelValue\":\"956072\",\"primaryLabelValue\":\"956072\"}},{\"attributeHeader\":{\"labelValue\":\"956074\",\"primaryLabelValue\":\"956074\"}},{\"attributeHeader\":{\"labelValue\":\"956076\",\"primaryLabelValue\":\"956076\"}},{\"attributeHeader\":{\"labelValue\":\"956078\",\"primaryLabelValue\":\"956078\"}},{\"attributeHeader\":{\"labelValue\":\"956080\",\"primaryLabelValue\":\"956080\"}},{\"attributeHeader\":{\"labelValue\":\"956082\",\"primaryLabelValue\":\"956082\"}},{\"attributeHeader\":{\"labelValue\":\"956084\",\"primaryLabelValue\":\"956084\"}},{\"attributeHeader\":{\"labelValue\":\"956086\",\"primaryLabelValue\":\"956086\"}},{\"attributeHeader\":{\"labelValue\":\"956088\",\"primaryLabelValue\":\"956088\"}},{\"attributeHeader\":{\"labelValue\":\"956090\",\"primaryLabelValue\":\"956090\"}},{\"attributeHeader\":{\"labelValue\":\"956092\",\"primaryLabelValue\":\"956092\"}},{\"attributeHeader\":{\"labelValue\":\"956094\",\"primaryLabelValue\":\"956094\"}},{\"attributeHeader\":{\"labelValue\":\"956096\",\"primaryLabelValue\":\"956096\"}},{\"attributeHeader\":{\"labelValue\":\"956098\",\"primaryLabelValue\":\"956098\"}},{\"attributeHeader\":{\"labelValue\":\"956100\",\"primaryLabelValue\":\"956100\"}},{\"attributeHeader\":{\"labelValue\":\"956102\",\"primaryLabelValue\":\"956102\"}},{\"attributeHeader\":{\"labelValue\":\"956104\",\"primaryLabelValue\":\"956104\"}},{\"attributeHeader\":{\"labelValue\":\"956106\",\"primaryLabelValue\":\"956106\"}},{\"attributeHeader\":{\"labelValue\":\"956108\",\"primaryLabelValue\":\"956108\"}},{\"attributeHeader\":{\"labelValue\":\"956110\",\"primaryLabelValue\":\"956110\"}},{\"attributeHeader\":{\"labelValue\":\"956112\",\"primaryLabelValue\":\"956112\"}},{\"attributeHeader\":{\"labelValue\":\"956114\",\"primaryLabelValue\":\"956114\"}},{\"attributeHeader\":{\"labelValue\":\"956116\",\"primaryLabelValue\":\"956116\"}},{\"attributeHeader\":{\"labelValue\":\"956118\",\"primaryLabelValue\":\"956118\"}},{\"attributeHeader\":{\"labelValue\":\"956120\",\"primaryLabelValue\":\"956120\"}},{\"attributeHeader\":{\"labelValue\":\"956122\",\"primaryLabelValue\":\"956122\"}},{\"attributeHeader\":{\"labelValue\":\"956124\",\"primaryLabelValue\":\"956124\"}},{\"attributeHeader\":{\"labelValue\":\"956126\",\"primaryLabelValue\":\"956126\"}},{\"attributeHeader\":{\"labelValue\":\"956128\",\"primaryLabelValue\":\"956128\"}},{\"attributeHeader\":{\"labelValue\":\"956130\",\"primaryLabelValue\":\"956130\"}},{\"attributeHeader\":{\"labelValue\":\"956132\",\"primaryLabelValue\":\"956132\"}},{\"attributeHeader\":{\"labelValue\":\"956134\",\"primaryLabelValue\":\"956134\"}},{\"attributeHeader\":{\"labelValue\":\"956136\",\"primaryLabelValue\":\"956136\"}},{\"attributeHeader\":{\"labelValue\":\"956138\",\"primaryLabelValue\":\"956138\"}},{\"attributeHeader\":{\"labelValue\":\"956140\",\"primaryLabelValue\":\"956140\"}},{\"attributeHeader\":{\"labelValue\":\"956142\",\"primaryLabelValue\":\"956142\"}},{\"attributeHeader\":{\"labelValue\":\"956144\",\"primaryLabelValue\":\"956144\"}},{\"attributeHeader\":{\"labelValue\":\"956146\",\"primaryLabelValue\":\"956146\"}},{\"attributeHeader\":{\"labelValue\":\"956148\",\"primaryLabelValue\":\"956148\"}},{\"attributeHeader\":{\"labelValue\":\"956150\",\"primaryLabelValue\":\"956150\"}},{\"attributeHeader\":{\"labelValue\":\"956152\",\"primaryLabelValue\":\"956152\"}},{\"attributeHeader\":{\"labelValue\":\"956154\",\"primaryLabelValue\":\"956154\"}},{\"attributeHeader\":{\"labelValue\":\"956156\",\"primaryLabelValue\":\"956156\"}},{\"attributeHeader\":{\"labelValue\":\"956158\",\"primaryLabelValue\":\"956158\"}},{\"attributeHeader\":{\"labelValue\":\"956160\",\"primaryLabelValue\":\"956160\"}},{\"attributeHeader\":{\"labelValue\":\"956162\",\"primaryLabelValue\":\"956162\"}},{\"attributeHeader\":{\"labelValue\":\"956164\",\"primaryLabelValue\":\"956164\"}},{\"attributeHeader\":{\"labelValue\":\"956166\",\"primaryLabelValue\":\"956166\"}},{\"attributeHeader\":{\"labelValue\":\"956168\",\"primaryLabelValue\":\"956168\"}},{\"attributeHeader\":{\"labelValue\":\"956170\",\"primaryLabelValue\":\"956170\"}},{\"attributeHeader\":{\"labelValue\":\"956172\",\"primaryLabelValue\":\"956172\"}},{\"attributeHeader\":{\"labelValue\":\"956174\",\"primaryLabelValue\":\"956174\"}},{\"attributeHeader\":{\"labelValue\":\"956176\",\"primaryLabelValue\":\"956176\"}},{\"attributeHeader\":{\"labelValue\":\"956178\",\"primaryLabelValue\":\"956178\"}},{\"attributeHeader\":{\"labelValue\":\"956180\",\"primaryLabelValue\":\"956180\"}},{\"attributeHeader\":{\"labelValue\":\"956182\",\"primaryLabelValue\":\"956182\"}},{\"attributeHeader\":{\"labelValue\":\"956184\",\"primaryLabelValue\":\"956184\"}},{\"attributeHeader\":{\"labelValue\":\"956186\",\"primaryLabelValue\":\"956186\"}},{\"attributeHeader\":{\"labelValue\":\"956188\",\"primaryLabelValue\":\"956188\"}},{\"attributeHeader\":{\"labelValue\":\"956190\",\"primaryLabelValue\":\"956190\"}},{\"attributeHeader\":{\"labelValue\":\"956192\",\"primaryLabelValue\":\"956192\"}},{\"attributeHeader\":{\"labelValue\":\"956194\",\"primaryLabelValue\":\"956194\"}},{\"attributeHeader\":{\"labelValue\":\"956196\",\"primaryLabelValue\":\"956196\"}},{\"attributeHeader\":{\"labelValue\":\"956198\",\"primaryLabelValue\":\"956198\"}},{\"attributeHeader\":{\"labelValue\":\"956200\",\"primaryLabelValue\":\"956200\"}},{\"attributeHeader\":{\"labelValue\":\"956202\",\"primaryLabelValue\":\"956202\"}},{\"attributeHeader\":{\"labelValue\":\"956204\",\"primaryLabelValue\":\"956204\"}},{\"attributeHeader\":{\"labelValue\":\"956206\",\"primaryLabelValue\":\"956206\"}},{\"attributeHeader\":{\"labelValue\":\"956208\",\"primaryLabelValue\":\"956208\"}},{\"attributeHeader\":{\"labelValue\":\"956210\",\"primaryLabelValue\":\"956210\"}},{\"attributeHeader\":{\"labelValue\":\"956212\",\"primaryLabelValue\":\"956212\"}},{\"attributeHeader\":{\"labelValue\":\"956216\",\"primaryLabelValue\":\"956216\"}},{\"attributeHeader\":{\"labelValue\":\"956218\",\"primaryLabelValue\":\"956218\"}},{\"attributeHeader\":{\"labelValue\":\"956220\",\"primaryLabelValue\":\"956220\"}},{\"attributeHeader\":{\"labelValue\":\"956222\",\"primaryLabelValue\":\"956222\"}},{\"attributeHeader\":{\"labelValue\":\"956224\",\"primaryLabelValue\":\"956224\"}},{\"attributeHeader\":{\"labelValue\":\"956226\",\"primaryLabelValue\":\"956226\"}},{\"attributeHeader\":{\"labelValue\":\"956228\",\"primaryLabelValue\":\"956228\"}},{\"attributeHeader\":{\"labelValue\":\"956230\",\"primaryLabelValue\":\"956230\"}},{\"attributeHeader\":{\"labelValue\":\"956232\",\"primaryLabelValue\":\"956232\"}},{\"attributeHeader\":{\"labelValue\":\"956234\",\"primaryLabelValue\":\"956234\"}},{\"attributeHeader\":{\"labelValue\":\"956236\",\"primaryLabelValue\":\"956236\"}},{\"attributeHeader\":{\"labelValue\":\"956238\",\"primaryLabelValue\":\"956238\"}},{\"attributeHeader\":{\"labelValue\":\"956240\",\"primaryLabelValue\":\"956240\"}},{\"attributeHeader\":{\"labelValue\":\"956242\",\"primaryLabelValue\":\"956242\"}},{\"attributeHeader\":{\"labelValue\":\"956244\",\"primaryLabelValue\":\"956244\"}},{\"attributeHeader\":{\"labelValue\":\"956246\",\"primaryLabelValue\":\"956246\"}},{\"attributeHeader\":{\"labelValue\":\"956248\",\"primaryLabelValue\":\"956248\"}},{\"attributeHeader\":{\"labelValue\":\"956250\",\"primaryLabelValue\":\"956250\"}},{\"attributeHeader\":{\"labelValue\":\"956252\",\"primaryLabelValue\":\"956252\"}},{\"attributeHeader\":{\"labelValue\":\"956254\",\"primaryLabelValue\":\"956254\"}},{\"attributeHeader\":{\"labelValue\":\"956256\",\"primaryLabelValue\":\"956256\"}},{\"attributeHeader\":{\"labelValue\":\"956258\",\"primaryLabelValue\":\"956258\"}},{\"attributeHeader\":{\"labelValue\":\"956260\",\"primaryLabelValue\":\"956260\"}},{\"attributeHeader\":{\"labelValue\":\"956262\",\"primaryLabelValue\":\"956262\"}},{\"attributeHeader\":{\"labelValue\":\"956264\",\"primaryLabelValue\":\"956264\"}},{\"attributeHeader\":{\"labelValue\":\"956266\",\"primaryLabelValue\":\"956266\"}},{\"attributeHeader\":{\"labelValue\":\"956268\",\"primaryLabelValue\":\"956268\"}},{\"attributeHeader\":{\"labelValue\":\"956270\",\"primaryLabelValue\":\"956270\"}},{\"attributeHeader\":{\"labelValue\":\"956272\",\"primaryLabelValue\":\"956272\"}},{\"attributeHeader\":{\"labelValue\":\"956274\",\"primaryLabelValue\":\"956274\"}},{\"attributeHeader\":{\"labelValue\":\"956276\",\"primaryLabelValue\":\"956276\"}},{\"attributeHeader\":{\"labelValue\":\"956278\",\"primaryLabelValue\":\"956278\"}},{\"attributeHeader\":{\"labelValue\":\"956280\",\"primaryLabelValue\":\"956280\"}},{\"attributeHeader\":{\"labelValue\":\"956282\",\"primaryLabelValue\":\"956282\"}},{\"attributeHeader\":{\"labelValue\":\"956284\",\"primaryLabelValue\":\"956284\"}},{\"attributeHeader\":{\"labelValue\":\"956286\",\"primaryLabelValue\":\"956286\"}},{\"attributeHeader\":{\"labelValue\":\"956288\",\"primaryLabelValue\":\"956288\"}},{\"attributeHeader\":{\"labelValue\":\"956292\",\"primaryLabelValue\":\"956292\"}},{\"attributeHeader\":{\"labelValue\":\"956294\",\"primaryLabelValue\":\"956294\"}},{\"attributeHeader\":{\"labelValue\":\"956296\",\"primaryLabelValue\":\"956296\"}},{\"attributeHeader\":{\"labelValue\":\"956298\",\"primaryLabelValue\":\"956298\"}},{\"attributeHeader\":{\"labelValue\":\"956300\",\"primaryLabelValue\":\"956300\"}},{\"attributeHeader\":{\"labelValue\":\"956302\",\"primaryLabelValue\":\"956302\"}},{\"attributeHeader\":{\"labelValue\":\"956304\",\"primaryLabelValue\":\"956304\"}},{\"attributeHeader\":{\"labelValue\":\"956306\",\"primaryLabelValue\":\"956306\"}},{\"attributeHeader\":{\"labelValue\":\"956308\",\"primaryLabelValue\":\"956308\"}},{\"attributeHeader\":{\"labelValue\":\"956310\",\"primaryLabelValue\":\"956310\"}},{\"attributeHeader\":{\"labelValue\":\"956312\",\"primaryLabelValue\":\"956312\"}},{\"attributeHeader\":{\"labelValue\":\"956314\",\"primaryLabelValue\":\"956314\"}},{\"attributeHeader\":{\"labelValue\":\"956316\",\"primaryLabelValue\":\"956316\"}},{\"attributeHeader\":{\"labelValue\":\"956318\",\"primaryLabelValue\":\"956318\"}},{\"attributeHeader\":{\"labelValue\":\"956320\",\"primaryLabelValue\":\"956320\"}},{\"attributeHeader\":{\"labelValue\":\"956322\",\"primaryLabelValue\":\"956322\"}},{\"attributeHeader\":{\"labelValue\":\"956324\",\"primaryLabelValue\":\"956324\"}},{\"attributeHeader\":{\"labelValue\":\"956326\",\"primaryLabelValue\":\"956326\"}},{\"attributeHeader\":{\"labelValue\":\"956328\",\"primaryLabelValue\":\"956328\"}},{\"attributeHeader\":{\"labelValue\":\"956330\",\"primaryLabelValue\":\"956330\"}},{\"attributeHeader\":{\"labelValue\":\"956332\",\"primaryLabelValue\":\"956332\"}},{\"attributeHeader\":{\"labelValue\":\"956334\",\"primaryLabelValue\":\"956334\"}},{\"attributeHeader\":{\"labelValue\":\"956336\",\"primaryLabelValue\":\"956336\"}},{\"attributeHeader\":{\"labelValue\":\"956338\",\"primaryLabelValue\":\"956338\"}},{\"attributeHeader\":{\"labelValue\":\"956340\",\"primaryLabelValue\":\"956340\"}},{\"attributeHeader\":{\"labelValue\":\"956342\",\"primaryLabelValue\":\"956342\"}},{\"attributeHeader\":{\"labelValue\":\"956344\",\"primaryLabelValue\":\"956344\"}},{\"attributeHeader\":{\"labelValue\":\"956346\",\"primaryLabelValue\":\"956346\"}},{\"attributeHeader\":{\"labelValue\":\"956348\",\"primaryLabelValue\":\"956348\"}},{\"attributeHeader\":{\"labelValue\":\"956350\",\"primaryLabelValue\":\"956350\"}},{\"attributeHeader\":{\"labelValue\":\"956352\",\"primaryLabelValue\":\"956352\"}},{\"attributeHeader\":{\"labelValue\":\"956354\",\"primaryLabelValue\":\"956354\"}},{\"attributeHeader\":{\"labelValue\":\"956356\",\"primaryLabelValue\":\"956356\"}},{\"attributeHeader\":{\"labelValue\":\"956358\",\"primaryLabelValue\":\"956358\"}},{\"attributeHeader\":{\"labelValue\":\"956360\",\"primaryLabelValue\":\"956360\"}},{\"attributeHeader\":{\"labelValue\":\"956362\",\"primaryLabelValue\":\"956362\"}},{\"attributeHeader\":{\"labelValue\":\"956364\",\"primaryLabelValue\":\"956364\"}},{\"attributeHeader\":{\"labelValue\":\"956366\",\"primaryLabelValue\":\"956366\"}},{\"attributeHeader\":{\"labelValue\":\"956368\",\"primaryLabelValue\":\"956368\"}},{\"attributeHeader\":{\"labelValue\":\"956370\",\"primaryLabelValue\":\"956370\"}},{\"attributeHeader\":{\"labelValue\":\"956372\",\"primaryLabelValue\":\"956372\"}},{\"attributeHeader\":{\"labelValue\":\"956374\",\"primaryLabelValue\":\"956374\"}},{\"attributeHeader\":{\"labelValue\":\"956376\",\"primaryLabelValue\":\"956376\"}},{\"attributeHeader\":{\"labelValue\":\"956378\",\"primaryLabelValue\":\"956378\"}},{\"attributeHeader\":{\"labelValue\":\"956380\",\"primaryLabelValue\":\"956380\"}},{\"attributeHeader\":{\"labelValue\":\"956382\",\"primaryLabelValue\":\"956382\"}},{\"attributeHeader\":{\"labelValue\":\"956384\",\"primaryLabelValue\":\"956384\"}},{\"attributeHeader\":{\"labelValue\":\"956386\",\"primaryLabelValue\":\"956386\"}},{\"attributeHeader\":{\"labelValue\":\"956388\",\"primaryLabelValue\":\"956388\"}},{\"attributeHeader\":{\"labelValue\":\"956390\",\"primaryLabelValue\":\"956390\"}},{\"attributeHeader\":{\"labelValue\":\"956392\",\"primaryLabelValue\":\"956392\"}},{\"attributeHeader\":{\"labelValue\":\"956394\",\"primaryLabelValue\":\"956394\"}},{\"attributeHeader\":{\"labelValue\":\"956396\",\"primaryLabelValue\":\"956396\"}},{\"attributeHeader\":{\"labelValue\":\"956398\",\"primaryLabelValue\":\"956398\"}},{\"attributeHeader\":{\"labelValue\":\"956400\",\"primaryLabelValue\":\"956400\"}},{\"attributeHeader\":{\"labelValue\":\"956402\",\"primaryLabelValue\":\"956402\"}},{\"attributeHeader\":{\"labelValue\":\"956404\",\"primaryLabelValue\":\"956404\"}},{\"attributeHeader\":{\"labelValue\":\"956406\",\"primaryLabelValue\":\"956406\"}},{\"attributeHeader\":{\"labelValue\":\"956408\",\"primaryLabelValue\":\"956408\"}},{\"attributeHeader\":{\"labelValue\":\"956410\",\"primaryLabelValue\":\"956410\"}},{\"attributeHeader\":{\"labelValue\":\"956412\",\"primaryLabelValue\":\"956412\"}},{\"attributeHeader\":{\"labelValue\":\"956414\",\"primaryLabelValue\":\"956414\"}},{\"attributeHeader\":{\"labelValue\":\"956416\",\"primaryLabelValue\":\"956416\"}},{\"attributeHeader\":{\"labelValue\":\"956418\",\"primaryLabelValue\":\"956418\"}},{\"attributeHeader\":{\"labelValue\":\"956420\",\"primaryLabelValue\":\"956420\"}},{\"attributeHeader\":{\"labelValue\":\"956422\",\"primaryLabelValue\":\"956422\"}},{\"attributeHeader\":{\"labelValue\":\"956424\",\"primaryLabelValue\":\"956424\"}},{\"attributeHeader\":{\"labelValue\":\"956426\",\"primaryLabelValue\":\"956426\"}},{\"attributeHeader\":{\"labelValue\":\"956428\",\"primaryLabelValue\":\"956428\"}},{\"attributeHeader\":{\"labelValue\":\"956430\",\"primaryLabelValue\":\"956430\"}},{\"attributeHeader\":{\"labelValue\":\"956432\",\"primaryLabelValue\":\"956432\"}},{\"attributeHeader\":{\"labelValue\":\"956434\",\"primaryLabelValue\":\"956434\"}},{\"attributeHeader\":{\"labelValue\":\"956436\",\"primaryLabelValue\":\"956436\"}},{\"attributeHeader\":{\"labelValue\":\"956438\",\"primaryLabelValue\":\"956438\"}},{\"attributeHeader\":{\"labelValue\":\"956440\",\"primaryLabelValue\":\"956440\"}},{\"attributeHeader\":{\"labelValue\":\"956442\",\"primaryLabelValue\":\"956442\"}},{\"attributeHeader\":{\"labelValue\":\"956444\",\"primaryLabelValue\":\"956444\"}},{\"attributeHeader\":{\"labelValue\":\"956446\",\"primaryLabelValue\":\"956446\"}},{\"attributeHeader\":{\"labelValue\":\"956448\",\"primaryLabelValue\":\"956448\"}},{\"attributeHeader\":{\"labelValue\":\"956450\",\"primaryLabelValue\":\"956450\"}},{\"attributeHeader\":{\"labelValue\":\"956452\",\"primaryLabelValue\":\"956452\"}},{\"attributeHeader\":{\"labelValue\":\"956454\",\"primaryLabelValue\":\"956454\"}},{\"attributeHeader\":{\"labelValue\":\"956456\",\"primaryLabelValue\":\"956456\"}},{\"attributeHeader\":{\"labelValue\":\"956458\",\"primaryLabelValue\":\"956458\"}},{\"attributeHeader\":{\"labelValue\":\"956460\",\"primaryLabelValue\":\"956460\"}},{\"attributeHeader\":{\"labelValue\":\"956462\",\"primaryLabelValue\":\"956462\"}},{\"attributeHeader\":{\"labelValue\":\"956464\",\"primaryLabelValue\":\"956464\"}},{\"attributeHeader\":{\"labelValue\":\"956466\",\"primaryLabelValue\":\"956466\"}},{\"attributeHeader\":{\"labelValue\":\"956468\",\"primaryLabelValue\":\"956468\"}},{\"attributeHeader\":{\"labelValue\":\"956470\",\"primaryLabelValue\":\"956470\"}},{\"attributeHeader\":{\"labelValue\":\"956472\",\"primaryLabelValue\":\"956472\"}},{\"attributeHeader\":{\"labelValue\":\"956474\",\"primaryLabelValue\":\"956474\"}},{\"attributeHeader\":{\"labelValue\":\"956476\",\"primaryLabelValue\":\"956476\"}},{\"attributeHeader\":{\"labelValue\":\"956478\",\"primaryLabelValue\":\"956478\"}},{\"attributeHeader\":{\"labelValue\":\"956480\",\"primaryLabelValue\":\"956480\"}},{\"attributeHeader\":{\"labelValue\":\"956482\",\"primaryLabelValue\":\"956482\"}},{\"attributeHeader\":{\"labelValue\":\"956484\",\"primaryLabelValue\":\"956484\"}},{\"attributeHeader\":{\"labelValue\":\"956486\",\"primaryLabelValue\":\"956486\"}},{\"attributeHeader\":{\"labelValue\":\"956488\",\"primaryLabelValue\":\"956488\"}},{\"attributeHeader\":{\"labelValue\":\"956490\",\"primaryLabelValue\":\"956490\"}},{\"attributeHeader\":{\"labelValue\":\"956492\",\"primaryLabelValue\":\"956492\"}},{\"attributeHeader\":{\"labelValue\":\"956494\",\"primaryLabelValue\":\"956494\"}},{\"attributeHeader\":{\"labelValue\":\"956496\",\"primaryLabelValue\":\"956496\"}},{\"attributeHeader\":{\"labelValue\":\"956498\",\"primaryLabelValue\":\"956498\"}},{\"attributeHeader\":{\"labelValue\":\"956500\",\"primaryLabelValue\":\"956500\"}},{\"attributeHeader\":{\"labelValue\":\"956502\",\"primaryLabelValue\":\"956502\"}},{\"attributeHeader\":{\"labelValue\":\"956504\",\"primaryLabelValue\":\"956504\"}},{\"attributeHeader\":{\"labelValue\":\"956506\",\"primaryLabelValue\":\"956506\"}},{\"attributeHeader\":{\"labelValue\":\"956508\",\"primaryLabelValue\":\"956508\"}},{\"attributeHeader\":{\"labelValue\":\"956510\",\"primaryLabelValue\":\"956510\"}},{\"attributeHeader\":{\"labelValue\":\"956512\",\"primaryLabelValue\":\"956512\"}},{\"attributeHeader\":{\"labelValue\":\"956514\",\"primaryLabelValue\":\"956514\"}},{\"attributeHeader\":{\"labelValue\":\"956516\",\"primaryLabelValue\":\"956516\"}},{\"attributeHeader\":{\"labelValue\":\"956518\",\"primaryLabelValue\":\"956518\"}},{\"attributeHeader\":{\"labelValue\":\"956520\",\"primaryLabelValue\":\"956520\"}},{\"attributeHeader\":{\"labelValue\":\"956522\",\"primaryLabelValue\":\"956522\"}},{\"attributeHeader\":{\"labelValue\":\"956524\",\"primaryLabelValue\":\"956524\"}},{\"attributeHeader\":{\"labelValue\":\"956526\",\"primaryLabelValue\":\"956526\"}},{\"attributeHeader\":{\"labelValue\":\"956528\",\"primaryLabelValue\":\"956528\"}},{\"attributeHeader\":{\"labelValue\":\"956530\",\"primaryLabelValue\":\"956530\"}},{\"attributeHeader\":{\"labelValue\":\"956532\",\"primaryLabelValue\":\"956532\"}},{\"attributeHeader\":{\"labelValue\":\"956534\",\"primaryLabelValue\":\"956534\"}},{\"attributeHeader\":{\"labelValue\":\"956536\",\"primaryLabelValue\":\"956536\"}},{\"attributeHeader\":{\"labelValue\":\"956538\",\"primaryLabelValue\":\"956538\"}},{\"attributeHeader\":{\"labelValue\":\"956540\",\"primaryLabelValue\":\"956540\"}},{\"attributeHeader\":{\"labelValue\":\"956542\",\"primaryLabelValue\":\"956542\"}},{\"attributeHeader\":{\"labelValue\":\"956544\",\"primaryLabelValue\":\"956544\"}},{\"attributeHeader\":{\"labelValue\":\"956546\",\"primaryLabelValue\":\"956546\"}},{\"attributeHeader\":{\"labelValue\":\"956548\",\"primaryLabelValue\":\"956548\"}},{\"attributeHeader\":{\"labelValue\":\"956550\",\"primaryLabelValue\":\"956550\"}},{\"attributeHeader\":{\"labelValue\":\"956552\",\"primaryLabelValue\":\"956552\"}},{\"attributeHeader\":{\"labelValue\":\"956554\",\"primaryLabelValue\":\"956554\"}},{\"attributeHeader\":{\"labelValue\":\"956556\",\"primaryLabelValue\":\"956556\"}},{\"attributeHeader\":{\"labelValue\":\"956558\",\"primaryLabelValue\":\"956558\"}},{\"attributeHeader\":{\"labelValue\":\"956560\",\"primaryLabelValue\":\"956560\"}},{\"attributeHeader\":{\"labelValue\":\"956562\",\"primaryLabelValue\":\"956562\"}},{\"attributeHeader\":{\"labelValue\":\"956564\",\"primaryLabelValue\":\"956564\"}},{\"attributeHeader\":{\"labelValue\":\"956566\",\"primaryLabelValue\":\"956566\"}},{\"attributeHeader\":{\"labelValue\":\"956568\",\"primaryLabelValue\":\"956568\"}},{\"attributeHeader\":{\"labelValue\":\"956570\",\"primaryLabelValue\":\"956570\"}},{\"attributeHeader\":{\"labelValue\":\"956572\",\"primaryLabelValue\":\"956572\"}},{\"attributeHeader\":{\"labelValue\":\"956574\",\"primaryLabelValue\":\"956574\"}},{\"attributeHeader\":{\"labelValue\":\"956576\",\"primaryLabelValue\":\"956576\"}},{\"attributeHeader\":{\"labelValue\":\"956578\",\"primaryLabelValue\":\"956578\"}},{\"attributeHeader\":{\"labelValue\":\"956580\",\"primaryLabelValue\":\"956580\"}},{\"attributeHeader\":{\"labelValue\":\"956582\",\"primaryLabelValue\":\"956582\"}},{\"attributeHeader\":{\"labelValue\":\"956584\",\"primaryLabelValue\":\"956584\"}},{\"attributeHeader\":{\"labelValue\":\"956586\",\"primaryLabelValue\":\"956586\"}},{\"attributeHeader\":{\"labelValue\":\"956588\",\"primaryLabelValue\":\"956588\"}},{\"attributeHeader\":{\"labelValue\":\"956590\",\"primaryLabelValue\":\"956590\"}},{\"attributeHeader\":{\"labelValue\":\"956592\",\"primaryLabelValue\":\"956592\"}},{\"attributeHeader\":{\"labelValue\":\"956594\",\"primaryLabelValue\":\"956594\"}},{\"attributeHeader\":{\"labelValue\":\"956596\",\"primaryLabelValue\":\"956596\"}},{\"attributeHeader\":{\"labelValue\":\"956598\",\"primaryLabelValue\":\"956598\"}},{\"attributeHeader\":{\"labelValue\":\"956600\",\"primaryLabelValue\":\"956600\"}},{\"attributeHeader\":{\"labelValue\":\"956602\",\"primaryLabelValue\":\"956602\"}},{\"attributeHeader\":{\"labelValue\":\"956604\",\"primaryLabelValue\":\"956604\"}},{\"attributeHeader\":{\"labelValue\":\"956606\",\"primaryLabelValue\":\"956606\"}},{\"attributeHeader\":{\"labelValue\":\"956608\",\"primaryLabelValue\":\"956608\"}},{\"attributeHeader\":{\"labelValue\":\"956610\",\"primaryLabelValue\":\"956610\"}},{\"attributeHeader\":{\"labelValue\":\"956612\",\"primaryLabelValue\":\"956612\"}},{\"attributeHeader\":{\"labelValue\":\"956614\",\"primaryLabelValue\":\"956614\"}},{\"attributeHeader\":{\"labelValue\":\"956616\",\"primaryLabelValue\":\"956616\"}},{\"attributeHeader\":{\"labelValue\":\"956618\",\"primaryLabelValue\":\"956618\"}},{\"attributeHeader\":{\"labelValue\":\"956620\",\"primaryLabelValue\":\"956620\"}},{\"attributeHeader\":{\"labelValue\":\"956622\",\"primaryLabelValue\":\"956622\"}},{\"attributeHeader\":{\"labelValue\":\"956624\",\"primaryLabelValue\":\"956624\"}},{\"attributeHeader\":{\"labelValue\":\"956626\",\"primaryLabelValue\":\"956626\"}},{\"attributeHeader\":{\"labelValue\":\"956628\",\"primaryLabelValue\":\"956628\"}},{\"attributeHeader\":{\"labelValue\":\"956630\",\"primaryLabelValue\":\"956630\"}},{\"attributeHeader\":{\"labelValue\":\"956632\",\"primaryLabelValue\":\"956632\"}},{\"attributeHeader\":{\"labelValue\":\"956634\",\"primaryLabelValue\":\"956634\"}},{\"attributeHeader\":{\"labelValue\":\"956636\",\"primaryLabelValue\":\"956636\"}},{\"attributeHeader\":{\"labelValue\":\"956638\",\"primaryLabelValue\":\"956638\"}},{\"attributeHeader\":{\"labelValue\":\"956640\",\"primaryLabelValue\":\"956640\"}},{\"attributeHeader\":{\"labelValue\":\"956642\",\"primaryLabelValue\":\"956642\"}},{\"attributeHeader\":{\"labelValue\":\"956644\",\"primaryLabelValue\":\"956644\"}},{\"attributeHeader\":{\"labelValue\":\"956646\",\"primaryLabelValue\":\"956646\"}},{\"attributeHeader\":{\"labelValue\":\"956648\",\"primaryLabelValue\":\"956648\"}},{\"attributeHeader\":{\"labelValue\":\"956650\",\"primaryLabelValue\":\"956650\"}},{\"attributeHeader\":{\"labelValue\":\"956652\",\"primaryLabelValue\":\"956652\"}},{\"attributeHeader\":{\"labelValue\":\"956654\",\"primaryLabelValue\":\"956654\"}},{\"attributeHeader\":{\"labelValue\":\"956656\",\"primaryLabelValue\":\"956656\"}},{\"attributeHeader\":{\"labelValue\":\"956658\",\"primaryLabelValue\":\"956658\"}},{\"attributeHeader\":{\"labelValue\":\"956660\",\"primaryLabelValue\":\"956660\"}},{\"attributeHeader\":{\"labelValue\":\"956662\",\"primaryLabelValue\":\"956662\"}},{\"attributeHeader\":{\"labelValue\":\"956664\",\"primaryLabelValue\":\"956664\"}},{\"attributeHeader\":{\"labelValue\":\"956666\",\"primaryLabelValue\":\"956666\"}},{\"attributeHeader\":{\"labelValue\":\"956668\",\"primaryLabelValue\":\"956668\"}},{\"attributeHeader\":{\"labelValue\":\"956670\",\"primaryLabelValue\":\"956670\"}},{\"attributeHeader\":{\"labelValue\":\"956672\",\"primaryLabelValue\":\"956672\"}},{\"attributeHeader\":{\"labelValue\":\"956674\",\"primaryLabelValue\":\"956674\"}},{\"attributeHeader\":{\"labelValue\":\"956676\",\"primaryLabelValue\":\"956676\"}},{\"attributeHeader\":{\"labelValue\":\"956678\",\"primaryLabelValue\":\"956678\"}},{\"attributeHeader\":{\"labelValue\":\"956680\",\"primaryLabelValue\":\"956680\"}},{\"attributeHeader\":{\"labelValue\":\"956684\",\"primaryLabelValue\":\"956684\"}},{\"attributeHeader\":{\"labelValue\":\"956686\",\"primaryLabelValue\":\"956686\"}},{\"attributeHeader\":{\"labelValue\":\"956688\",\"primaryLabelValue\":\"956688\"}},{\"attributeHeader\":{\"labelValue\":\"956690\",\"primaryLabelValue\":\"956690\"}},{\"attributeHeader\":{\"labelValue\":\"956692\",\"primaryLabelValue\":\"956692\"}},{\"attributeHeader\":{\"labelValue\":\"956694\",\"primaryLabelValue\":\"956694\"}},{\"attributeHeader\":{\"labelValue\":\"956696\",\"primaryLabelValue\":\"956696\"}},{\"attributeHeader\":{\"labelValue\":\"956698\",\"primaryLabelValue\":\"956698\"}},{\"attributeHeader\":{\"labelValue\":\"956700\",\"primaryLabelValue\":\"956700\"}},{\"attributeHeader\":{\"labelValue\":\"956702\",\"primaryLabelValue\":\"956702\"}},{\"attributeHeader\":{\"labelValue\":\"956704\",\"primaryLabelValue\":\"956704\"}},{\"attributeHeader\":{\"labelValue\":\"956706\",\"primaryLabelValue\":\"956706\"}},{\"attributeHeader\":{\"labelValue\":\"956708\",\"primaryLabelValue\":\"956708\"}},{\"attributeHeader\":{\"labelValue\":\"956710\",\"primaryLabelValue\":\"956710\"}},{\"attributeHeader\":{\"labelValue\":\"956712\",\"primaryLabelValue\":\"956712\"}},{\"attributeHeader\":{\"labelValue\":\"956714\",\"primaryLabelValue\":\"956714\"}},{\"attributeHeader\":{\"labelValue\":\"956716\",\"primaryLabelValue\":\"956716\"}},{\"attributeHeader\":{\"labelValue\":\"956718\",\"primaryLabelValue\":\"956718\"}},{\"attributeHeader\":{\"labelValue\":\"956720\",\"primaryLabelValue\":\"956720\"}},{\"attributeHeader\":{\"labelValue\":\"956722\",\"primaryLabelValue\":\"956722\"}},{\"attributeHeader\":{\"labelValue\":\"956724\",\"primaryLabelValue\":\"956724\"}},{\"attributeHeader\":{\"labelValue\":\"956726\",\"primaryLabelValue\":\"956726\"}},{\"attributeHeader\":{\"labelValue\":\"956728\",\"primaryLabelValue\":\"956728\"}},{\"attributeHeader\":{\"labelValue\":\"956730\",\"primaryLabelValue\":\"956730\"}},{\"attributeHeader\":{\"labelValue\":\"956732\",\"primaryLabelValue\":\"956732\"}},{\"attributeHeader\":{\"labelValue\":\"956734\",\"primaryLabelValue\":\"956734\"}},{\"attributeHeader\":{\"labelValue\":\"956736\",\"primaryLabelValue\":\"956736\"}},{\"attributeHeader\":{\"labelValue\":\"956738\",\"primaryLabelValue\":\"956738\"}},{\"attributeHeader\":{\"labelValue\":\"956740\",\"primaryLabelValue\":\"956740\"}},{\"attributeHeader\":{\"labelValue\":\"956742\",\"primaryLabelValue\":\"956742\"}},{\"attributeHeader\":{\"labelValue\":\"956744\",\"primaryLabelValue\":\"956744\"}},{\"attributeHeader\":{\"labelValue\":\"956746\",\"primaryLabelValue\":\"956746\"}},{\"attributeHeader\":{\"labelValue\":\"956748\",\"primaryLabelValue\":\"956748\"}},{\"attributeHeader\":{\"labelValue\":\"956750\",\"primaryLabelValue\":\"956750\"}},{\"attributeHeader\":{\"labelValue\":\"956752\",\"primaryLabelValue\":\"956752\"}},{\"attributeHeader\":{\"labelValue\":\"956754\",\"primaryLabelValue\":\"956754\"}},{\"attributeHeader\":{\"labelValue\":\"956756\",\"primaryLabelValue\":\"956756\"}},{\"attributeHeader\":{\"labelValue\":\"956758\",\"primaryLabelValue\":\"956758\"}},{\"attributeHeader\":{\"labelValue\":\"956760\",\"primaryLabelValue\":\"956760\"}},{\"attributeHeader\":{\"labelValue\":\"956762\",\"primaryLabelValue\":\"956762\"}},{\"attributeHeader\":{\"labelValue\":\"956766\",\"primaryLabelValue\":\"956766\"}},{\"attributeHeader\":{\"labelValue\":\"956768\",\"primaryLabelValue\":\"956768\"}},{\"attributeHeader\":{\"labelValue\":\"956770\",\"primaryLabelValue\":\"956770\"}},{\"attributeHeader\":{\"labelValue\":\"956772\",\"primaryLabelValue\":\"956772\"}},{\"attributeHeader\":{\"labelValue\":\"956774\",\"primaryLabelValue\":\"956774\"}},{\"attributeHeader\":{\"labelValue\":\"956776\",\"primaryLabelValue\":\"956776\"}},{\"attributeHeader\":{\"labelValue\":\"956778\",\"primaryLabelValue\":\"956778\"}},{\"attributeHeader\":{\"labelValue\":\"956780\",\"primaryLabelValue\":\"956780\"}},{\"attributeHeader\":{\"labelValue\":\"956782\",\"primaryLabelValue\":\"956782\"}},{\"attributeHeader\":{\"labelValue\":\"956784\",\"primaryLabelValue\":\"956784\"}},{\"attributeHeader\":{\"labelValue\":\"956786\",\"primaryLabelValue\":\"956786\"}},{\"attributeHeader\":{\"labelValue\":\"956788\",\"primaryLabelValue\":\"956788\"}},{\"attributeHeader\":{\"labelValue\":\"956790\",\"primaryLabelValue\":\"956790\"}},{\"attributeHeader\":{\"labelValue\":\"956792\",\"primaryLabelValue\":\"956792\"}},{\"attributeHeader\":{\"labelValue\":\"956794\",\"primaryLabelValue\":\"956794\"}},{\"attributeHeader\":{\"labelValue\":\"956796\",\"primaryLabelValue\":\"956796\"}},{\"attributeHeader\":{\"labelValue\":\"956798\",\"primaryLabelValue\":\"956798\"}},{\"attributeHeader\":{\"labelValue\":\"956800\",\"primaryLabelValue\":\"956800\"}},{\"attributeHeader\":{\"labelValue\":\"956802\",\"primaryLabelValue\":\"956802\"}},{\"attributeHeader\":{\"labelValue\":\"956804\",\"primaryLabelValue\":\"956804\"}},{\"attributeHeader\":{\"labelValue\":\"956806\",\"primaryLabelValue\":\"956806\"}},{\"attributeHeader\":{\"labelValue\":\"956808\",\"primaryLabelValue\":\"956808\"}},{\"attributeHeader\":{\"labelValue\":\"956810\",\"primaryLabelValue\":\"956810\"}},{\"attributeHeader\":{\"labelValue\":\"956812\",\"primaryLabelValue\":\"956812\"}},{\"attributeHeader\":{\"labelValue\":\"956814\",\"primaryLabelValue\":\"956814\"}},{\"attributeHeader\":{\"labelValue\":\"956816\",\"primaryLabelValue\":\"956816\"}},{\"attributeHeader\":{\"labelValue\":\"956818\",\"primaryLabelValue\":\"956818\"}},{\"attributeHeader\":{\"labelValue\":\"956820\",\"primaryLabelValue\":\"956820\"}},{\"attributeHeader\":{\"labelValue\":\"956822\",\"primaryLabelValue\":\"956822\"}},{\"attributeHeader\":{\"labelValue\":\"956826\",\"primaryLabelValue\":\"956826\"}},{\"attributeHeader\":{\"labelValue\":\"956828\",\"primaryLabelValue\":\"956828\"}},{\"attributeHeader\":{\"labelValue\":\"956830\",\"primaryLabelValue\":\"956830\"}},{\"attributeHeader\":{\"labelValue\":\"956832\",\"primaryLabelValue\":\"956832\"}},{\"attributeHeader\":{\"labelValue\":\"956834\",\"primaryLabelValue\":\"956834\"}},{\"attributeHeader\":{\"labelValue\":\"956838\",\"primaryLabelValue\":\"956838\"}},{\"attributeHeader\":{\"labelValue\":\"956840\",\"primaryLabelValue\":\"956840\"}},{\"attributeHeader\":{\"labelValue\":\"956842\",\"primaryLabelValue\":\"956842\"}},{\"attributeHeader\":{\"labelValue\":\"956844\",\"primaryLabelValue\":\"956844\"}},{\"attributeHeader\":{\"labelValue\":\"956846\",\"primaryLabelValue\":\"956846\"}},{\"attributeHeader\":{\"labelValue\":\"956848\",\"primaryLabelValue\":\"956848\"}},{\"attributeHeader\":{\"labelValue\":\"956852\",\"primaryLabelValue\":\"956852\"}},{\"attributeHeader\":{\"labelValue\":\"956854\",\"primaryLabelValue\":\"956854\"}},{\"attributeHeader\":{\"labelValue\":\"956856\",\"primaryLabelValue\":\"956856\"}},{\"attributeHeader\":{\"labelValue\":\"956858\",\"primaryLabelValue\":\"956858\"}},{\"attributeHeader\":{\"labelValue\":\"956860\",\"primaryLabelValue\":\"956860\"}},{\"attributeHeader\":{\"labelValue\":\"956862\",\"primaryLabelValue\":\"956862\"}},{\"attributeHeader\":{\"labelValue\":\"956864\",\"primaryLabelValue\":\"956864\"}},{\"attributeHeader\":{\"labelValue\":\"956866\",\"primaryLabelValue\":\"956866\"}},{\"attributeHeader\":{\"labelValue\":\"956868\",\"primaryLabelValue\":\"956868\"}},{\"attributeHeader\":{\"labelValue\":\"956870\",\"primaryLabelValue\":\"956870\"}},{\"attributeHeader\":{\"labelValue\":\"956872\",\"primaryLabelValue\":\"956872\"}},{\"attributeHeader\":{\"labelValue\":\"956874\",\"primaryLabelValue\":\"956874\"}},{\"attributeHeader\":{\"labelValue\":\"956876\",\"primaryLabelValue\":\"956876\"}},{\"attributeHeader\":{\"labelValue\":\"956878\",\"primaryLabelValue\":\"956878\"}},{\"attributeHeader\":{\"labelValue\":\"956880\",\"primaryLabelValue\":\"956880\"}},{\"attributeHeader\":{\"labelValue\":\"956882\",\"primaryLabelValue\":\"956882\"}},{\"attributeHeader\":{\"labelValue\":\"956884\",\"primaryLabelValue\":\"956884\"}},{\"attributeHeader\":{\"labelValue\":\"956886\",\"primaryLabelValue\":\"956886\"}},{\"attributeHeader\":{\"labelValue\":\"956888\",\"primaryLabelValue\":\"956888\"}},{\"attributeHeader\":{\"labelValue\":\"956890\",\"primaryLabelValue\":\"956890\"}},{\"attributeHeader\":{\"labelValue\":\"956892\",\"primaryLabelValue\":\"956892\"}},{\"attributeHeader\":{\"labelValue\":\"956894\",\"primaryLabelValue\":\"956894\"}},{\"attributeHeader\":{\"labelValue\":\"956896\",\"primaryLabelValue\":\"956896\"}},{\"attributeHeader\":{\"labelValue\":\"956898\",\"primaryLabelValue\":\"956898\"}},{\"attributeHeader\":{\"labelValue\":\"956900\",\"primaryLabelValue\":\"956900\"}},{\"attributeHeader\":{\"labelValue\":\"956902\",\"primaryLabelValue\":\"956902\"}},{\"attributeHeader\":{\"labelValue\":\"956904\",\"primaryLabelValue\":\"956904\"}},{\"attributeHeader\":{\"labelValue\":\"956906\",\"primaryLabelValue\":\"956906\"}},{\"attributeHeader\":{\"labelValue\":\"956908\",\"primaryLabelValue\":\"956908\"}},{\"attributeHeader\":{\"labelValue\":\"956910\",\"primaryLabelValue\":\"956910\"}},{\"attributeHeader\":{\"labelValue\":\"956912\",\"primaryLabelValue\":\"956912\"}},{\"attributeHeader\":{\"labelValue\":\"956914\",\"primaryLabelValue\":\"956914\"}},{\"attributeHeader\":{\"labelValue\":\"956916\",\"primaryLabelValue\":\"956916\"}},{\"attributeHeader\":{\"labelValue\":\"956918\",\"primaryLabelValue\":\"956918\"}},{\"attributeHeader\":{\"labelValue\":\"956920\",\"primaryLabelValue\":\"956920\"}},{\"attributeHeader\":{\"labelValue\":\"956922\",\"primaryLabelValue\":\"956922\"}},{\"attributeHeader\":{\"labelValue\":\"956924\",\"primaryLabelValue\":\"956924\"}},{\"attributeHeader\":{\"labelValue\":\"956926\",\"primaryLabelValue\":\"956926\"}},{\"attributeHeader\":{\"labelValue\":\"956928\",\"primaryLabelValue\":\"956928\"}},{\"attributeHeader\":{\"labelValue\":\"956930\",\"primaryLabelValue\":\"956930\"}},{\"attributeHeader\":{\"labelValue\":\"956932\",\"primaryLabelValue\":\"956932\"}},{\"attributeHeader\":{\"labelValue\":\"956934\",\"primaryLabelValue\":\"956934\"}},{\"attributeHeader\":{\"labelValue\":\"956936\",\"primaryLabelValue\":\"956936\"}},{\"attributeHeader\":{\"labelValue\":\"956938\",\"primaryLabelValue\":\"956938\"}},{\"attributeHeader\":{\"labelValue\":\"956940\",\"primaryLabelValue\":\"956940\"}},{\"attributeHeader\":{\"labelValue\":\"956942\",\"primaryLabelValue\":\"956942\"}},{\"attributeHeader\":{\"labelValue\":\"956944\",\"primaryLabelValue\":\"956944\"}},{\"attributeHeader\":{\"labelValue\":\"956946\",\"primaryLabelValue\":\"956946\"}},{\"attributeHeader\":{\"labelValue\":\"956948\",\"primaryLabelValue\":\"956948\"}},{\"attributeHeader\":{\"labelValue\":\"956950\",\"primaryLabelValue\":\"956950\"}},{\"attributeHeader\":{\"labelValue\":\"956952\",\"primaryLabelValue\":\"956952\"}},{\"attributeHeader\":{\"labelValue\":\"956954\",\"primaryLabelValue\":\"956954\"}},{\"attributeHeader\":{\"labelValue\":\"956956\",\"primaryLabelValue\":\"956956\"}},{\"attributeHeader\":{\"labelValue\":\"956958\",\"primaryLabelValue\":\"956958\"}},{\"attributeHeader\":{\"labelValue\":\"956960\",\"primaryLabelValue\":\"956960\"}},{\"attributeHeader\":{\"labelValue\":\"956962\",\"primaryLabelValue\":\"956962\"}},{\"attributeHeader\":{\"labelValue\":\"956964\",\"primaryLabelValue\":\"956964\"}},{\"attributeHeader\":{\"labelValue\":\"956966\",\"primaryLabelValue\":\"956966\"}},{\"attributeHeader\":{\"labelValue\":\"956968\",\"primaryLabelValue\":\"956968\"}},{\"attributeHeader\":{\"labelValue\":\"956970\",\"primaryLabelValue\":\"956970\"}},{\"attributeHeader\":{\"labelValue\":\"956972\",\"primaryLabelValue\":\"956972\"}},{\"attributeHeader\":{\"labelValue\":\"956974\",\"primaryLabelValue\":\"956974\"}},{\"attributeHeader\":{\"labelValue\":\"956976\",\"primaryLabelValue\":\"956976\"}},{\"attributeHeader\":{\"labelValue\":\"956978\",\"primaryLabelValue\":\"956978\"}},{\"attributeHeader\":{\"labelValue\":\"956980\",\"primaryLabelValue\":\"956980\"}},{\"attributeHeader\":{\"labelValue\":\"956982\",\"primaryLabelValue\":\"956982\"}},{\"attributeHeader\":{\"labelValue\":\"956984\",\"primaryLabelValue\":\"956984\"}},{\"attributeHeader\":{\"labelValue\":\"956986\",\"primaryLabelValue\":\"956986\"}},{\"attributeHeader\":{\"labelValue\":\"956988\",\"primaryLabelValue\":\"956988\"}},{\"attributeHeader\":{\"labelValue\":\"956990\",\"primaryLabelValue\":\"956990\"}},{\"attributeHeader\":{\"labelValue\":\"956992\",\"primaryLabelValue\":\"956992\"}},{\"attributeHeader\":{\"labelValue\":\"956994\",\"primaryLabelValue\":\"956994\"}},{\"attributeHeader\":{\"labelValue\":\"956996\",\"primaryLabelValue\":\"956996\"}},{\"attributeHeader\":{\"labelValue\":\"956998\",\"primaryLabelValue\":\"956998\"}},{\"attributeHeader\":{\"labelValue\":\"957000\",\"primaryLabelValue\":\"957000\"}},{\"attributeHeader\":{\"labelValue\":\"957002\",\"primaryLabelValue\":\"957002\"}},{\"attributeHeader\":{\"labelValue\":\"957004\",\"primaryLabelValue\":\"957004\"}},{\"attributeHeader\":{\"labelValue\":\"957006\",\"primaryLabelValue\":\"957006\"}},{\"attributeHeader\":{\"labelValue\":\"957008\",\"primaryLabelValue\":\"957008\"}},{\"attributeHeader\":{\"labelValue\":\"957010\",\"primaryLabelValue\":\"957010\"}},{\"attributeHeader\":{\"labelValue\":\"957012\",\"primaryLabelValue\":\"957012\"}},{\"attributeHeader\":{\"labelValue\":\"957014\",\"primaryLabelValue\":\"957014\"}},{\"attributeHeader\":{\"labelValue\":\"957016\",\"primaryLabelValue\":\"957016\"}},{\"attributeHeader\":{\"labelValue\":\"957018\",\"primaryLabelValue\":\"957018\"}},{\"attributeHeader\":{\"labelValue\":\"957020\",\"primaryLabelValue\":\"957020\"}},{\"attributeHeader\":{\"labelValue\":\"957022\",\"primaryLabelValue\":\"957022\"}},{\"attributeHeader\":{\"labelValue\":\"957024\",\"primaryLabelValue\":\"957024\"}},{\"attributeHeader\":{\"labelValue\":\"957026\",\"primaryLabelValue\":\"957026\"}},{\"attributeHeader\":{\"labelValue\":\"957028\",\"primaryLabelValue\":\"957028\"}},{\"attributeHeader\":{\"labelValue\":\"957030\",\"primaryLabelValue\":\"957030\"}},{\"attributeHeader\":{\"labelValue\":\"957032\",\"primaryLabelValue\":\"957032\"}},{\"attributeHeader\":{\"labelValue\":\"957034\",\"primaryLabelValue\":\"957034\"}},{\"attributeHeader\":{\"labelValue\":\"957036\",\"primaryLabelValue\":\"957036\"}},{\"attributeHeader\":{\"labelValue\":\"957038\",\"primaryLabelValue\":\"957038\"}},{\"attributeHeader\":{\"labelValue\":\"957040\",\"primaryLabelValue\":\"957040\"}},{\"attributeHeader\":{\"labelValue\":\"957042\",\"primaryLabelValue\":\"957042\"}},{\"attributeHeader\":{\"labelValue\":\"957044\",\"primaryLabelValue\":\"957044\"}},{\"attributeHeader\":{\"labelValue\":\"957046\",\"primaryLabelValue\":\"957046\"}},{\"attributeHeader\":{\"labelValue\":\"957048\",\"primaryLabelValue\":\"957048\"}},{\"attributeHeader\":{\"labelValue\":\"957050\",\"primaryLabelValue\":\"957050\"}},{\"attributeHeader\":{\"labelValue\":\"957052\",\"primaryLabelValue\":\"957052\"}},{\"attributeHeader\":{\"labelValue\":\"957054\",\"primaryLabelValue\":\"957054\"}},{\"attributeHeader\":{\"labelValue\":\"957056\",\"primaryLabelValue\":\"957056\"}},{\"attributeHeader\":{\"labelValue\":\"957058\",\"primaryLabelValue\":\"957058\"}},{\"attributeHeader\":{\"labelValue\":\"957060\",\"primaryLabelValue\":\"957060\"}},{\"attributeHeader\":{\"labelValue\":\"957062\",\"primaryLabelValue\":\"957062\"}},{\"attributeHeader\":{\"labelValue\":\"957064\",\"primaryLabelValue\":\"957064\"}},{\"attributeHeader\":{\"labelValue\":\"957066\",\"primaryLabelValue\":\"957066\"}},{\"attributeHeader\":{\"labelValue\":\"957068\",\"primaryLabelValue\":\"957068\"}},{\"attributeHeader\":{\"labelValue\":\"957070\",\"primaryLabelValue\":\"957070\"}},{\"attributeHeader\":{\"labelValue\":\"957072\",\"primaryLabelValue\":\"957072\"}},{\"attributeHeader\":{\"labelValue\":\"957074\",\"primaryLabelValue\":\"957074\"}},{\"attributeHeader\":{\"labelValue\":\"957076\",\"primaryLabelValue\":\"957076\"}},{\"attributeHeader\":{\"labelValue\":\"957078\",\"primaryLabelValue\":\"957078\"}},{\"attributeHeader\":{\"labelValue\":\"957080\",\"primaryLabelValue\":\"957080\"}},{\"attributeHeader\":{\"labelValue\":\"957082\",\"primaryLabelValue\":\"957082\"}},{\"attributeHeader\":{\"labelValue\":\"957084\",\"primaryLabelValue\":\"957084\"}},{\"attributeHeader\":{\"labelValue\":\"957086\",\"primaryLabelValue\":\"957086\"}},{\"attributeHeader\":{\"labelValue\":\"957088\",\"primaryLabelValue\":\"957088\"}},{\"attributeHeader\":{\"labelValue\":\"957090\",\"primaryLabelValue\":\"957090\"}},{\"attributeHeader\":{\"labelValue\":\"957092\",\"primaryLabelValue\":\"957092\"}},{\"attributeHeader\":{\"labelValue\":\"957094\",\"primaryLabelValue\":\"957094\"}},{\"attributeHeader\":{\"labelValue\":\"957098\",\"primaryLabelValue\":\"957098\"}},{\"attributeHeader\":{\"labelValue\":\"957100\",\"primaryLabelValue\":\"957100\"}},{\"attributeHeader\":{\"labelValue\":\"957102\",\"primaryLabelValue\":\"957102\"}},{\"attributeHeader\":{\"labelValue\":\"957104\",\"primaryLabelValue\":\"957104\"}},{\"attributeHeader\":{\"labelValue\":\"957106\",\"primaryLabelValue\":\"957106\"}},{\"attributeHeader\":{\"labelValue\":\"957108\",\"primaryLabelValue\":\"957108\"}},{\"attributeHeader\":{\"labelValue\":\"957110\",\"primaryLabelValue\":\"957110\"}},{\"attributeHeader\":{\"labelValue\":\"957112\",\"primaryLabelValue\":\"957112\"}},{\"attributeHeader\":{\"labelValue\":\"957114\",\"primaryLabelValue\":\"957114\"}},{\"attributeHeader\":{\"labelValue\":\"957116\",\"primaryLabelValue\":\"957116\"}},{\"attributeHeader\":{\"labelValue\":\"957118\",\"primaryLabelValue\":\"957118\"}},{\"attributeHeader\":{\"labelValue\":\"957120\",\"primaryLabelValue\":\"957120\"}},{\"attributeHeader\":{\"labelValue\":\"957122\",\"primaryLabelValue\":\"957122\"}},{\"attributeHeader\":{\"labelValue\":\"957124\",\"primaryLabelValue\":\"957124\"}},{\"attributeHeader\":{\"labelValue\":\"957128\",\"primaryLabelValue\":\"957128\"}},{\"attributeHeader\":{\"labelValue\":\"957130\",\"primaryLabelValue\":\"957130\"}},{\"attributeHeader\":{\"labelValue\":\"957132\",\"primaryLabelValue\":\"957132\"}},{\"attributeHeader\":{\"labelValue\":\"957134\",\"primaryLabelValue\":\"957134\"}},{\"attributeHeader\":{\"labelValue\":\"957136\",\"primaryLabelValue\":\"957136\"}},{\"attributeHeader\":{\"labelValue\":\"957138\",\"primaryLabelValue\":\"957138\"}},{\"attributeHeader\":{\"labelValue\":\"957140\",\"primaryLabelValue\":\"957140\"}},{\"attributeHeader\":{\"labelValue\":\"957142\",\"primaryLabelValue\":\"957142\"}},{\"attributeHeader\":{\"labelValue\":\"957144\",\"primaryLabelValue\":\"957144\"}},{\"attributeHeader\":{\"labelValue\":\"957146\",\"primaryLabelValue\":\"957146\"}},{\"attributeHeader\":{\"labelValue\":\"957148\",\"primaryLabelValue\":\"957148\"}},{\"attributeHeader\":{\"labelValue\":\"957150\",\"primaryLabelValue\":\"957150\"}},{\"attributeHeader\":{\"labelValue\":\"957152\",\"primaryLabelValue\":\"957152\"}},{\"attributeHeader\":{\"labelValue\":\"957154\",\"primaryLabelValue\":\"957154\"}},{\"attributeHeader\":{\"labelValue\":\"957156\",\"primaryLabelValue\":\"957156\"}},{\"attributeHeader\":{\"labelValue\":\"957158\",\"primaryLabelValue\":\"957158\"}},{\"attributeHeader\":{\"labelValue\":\"957160\",\"primaryLabelValue\":\"957160\"}},{\"attributeHeader\":{\"labelValue\":\"957162\",\"primaryLabelValue\":\"957162\"}},{\"attributeHeader\":{\"labelValue\":\"957164\",\"primaryLabelValue\":\"957164\"}},{\"attributeHeader\":{\"labelValue\":\"957166\",\"primaryLabelValue\":\"957166\"}},{\"attributeHeader\":{\"labelValue\":\"957168\",\"primaryLabelValue\":\"957168\"}},{\"attributeHeader\":{\"labelValue\":\"957170\",\"primaryLabelValue\":\"957170\"}},{\"attributeHeader\":{\"labelValue\":\"957172\",\"primaryLabelValue\":\"957172\"}},{\"attributeHeader\":{\"labelValue\":\"957174\",\"primaryLabelValue\":\"957174\"}},{\"attributeHeader\":{\"labelValue\":\"957176\",\"primaryLabelValue\":\"957176\"}},{\"attributeHeader\":{\"labelValue\":\"957178\",\"primaryLabelValue\":\"957178\"}},{\"attributeHeader\":{\"labelValue\":\"957180\",\"primaryLabelValue\":\"957180\"}},{\"attributeHeader\":{\"labelValue\":\"957182\",\"primaryLabelValue\":\"957182\"}},{\"attributeHeader\":{\"labelValue\":\"957184\",\"primaryLabelValue\":\"957184\"}},{\"attributeHeader\":{\"labelValue\":\"957186\",\"primaryLabelValue\":\"957186\"}},{\"attributeHeader\":{\"labelValue\":\"957188\",\"primaryLabelValue\":\"957188\"}},{\"attributeHeader\":{\"labelValue\":\"957190\",\"primaryLabelValue\":\"957190\"}},{\"attributeHeader\":{\"labelValue\":\"957192\",\"primaryLabelValue\":\"957192\"}},{\"attributeHeader\":{\"labelValue\":\"957194\",\"primaryLabelValue\":\"957194\"}},{\"attributeHeader\":{\"labelValue\":\"957196\",\"primaryLabelValue\":\"957196\"}},{\"attributeHeader\":{\"labelValue\":\"957198\",\"primaryLabelValue\":\"957198\"}},{\"attributeHeader\":{\"labelValue\":\"957200\",\"primaryLabelValue\":\"957200\"}},{\"attributeHeader\":{\"labelValue\":\"957202\",\"primaryLabelValue\":\"957202\"}},{\"attributeHeader\":{\"labelValue\":\"957204\",\"primaryLabelValue\":\"957204\"}},{\"attributeHeader\":{\"labelValue\":\"957206\",\"primaryLabelValue\":\"957206\"}},{\"attributeHeader\":{\"labelValue\":\"957208\",\"primaryLabelValue\":\"957208\"}},{\"attributeHeader\":{\"labelValue\":\"957210\",\"primaryLabelValue\":\"957210\"}},{\"attributeHeader\":{\"labelValue\":\"957212\",\"primaryLabelValue\":\"957212\"}},{\"attributeHeader\":{\"labelValue\":\"957214\",\"primaryLabelValue\":\"957214\"}},{\"attributeHeader\":{\"labelValue\":\"957216\",\"primaryLabelValue\":\"957216\"}},{\"attributeHeader\":{\"labelValue\":\"957218\",\"primaryLabelValue\":\"957218\"}},{\"attributeHeader\":{\"labelValue\":\"957222\",\"primaryLabelValue\":\"957222\"}},{\"attributeHeader\":{\"labelValue\":\"957224\",\"primaryLabelValue\":\"957224\"}},{\"attributeHeader\":{\"labelValue\":\"957226\",\"primaryLabelValue\":\"957226\"}},{\"attributeHeader\":{\"labelValue\":\"957228\",\"primaryLabelValue\":\"957228\"}},{\"attributeHeader\":{\"labelValue\":\"957230\",\"primaryLabelValue\":\"957230\"}},{\"attributeHeader\":{\"labelValue\":\"957232\",\"primaryLabelValue\":\"957232\"}},{\"attributeHeader\":{\"labelValue\":\"957234\",\"primaryLabelValue\":\"957234\"}},{\"attributeHeader\":{\"labelValue\":\"957236\",\"primaryLabelValue\":\"957236\"}},{\"attributeHeader\":{\"labelValue\":\"957238\",\"primaryLabelValue\":\"957238\"}},{\"attributeHeader\":{\"labelValue\":\"957240\",\"primaryLabelValue\":\"957240\"}},{\"attributeHeader\":{\"labelValue\":\"957242\",\"primaryLabelValue\":\"957242\"}},{\"attributeHeader\":{\"labelValue\":\"957244\",\"primaryLabelValue\":\"957244\"}},{\"attributeHeader\":{\"labelValue\":\"957246\",\"primaryLabelValue\":\"957246\"}},{\"attributeHeader\":{\"labelValue\":\"957248\",\"primaryLabelValue\":\"957248\"}},{\"attributeHeader\":{\"labelValue\":\"957250\",\"primaryLabelValue\":\"957250\"}},{\"attributeHeader\":{\"labelValue\":\"957252\",\"primaryLabelValue\":\"957252\"}},{\"attributeHeader\":{\"labelValue\":\"957254\",\"primaryLabelValue\":\"957254\"}},{\"attributeHeader\":{\"labelValue\":\"957256\",\"primaryLabelValue\":\"957256\"}},{\"attributeHeader\":{\"labelValue\":\"957258\",\"primaryLabelValue\":\"957258\"}},{\"attributeHeader\":{\"labelValue\":\"957260\",\"primaryLabelValue\":\"957260\"}},{\"attributeHeader\":{\"labelValue\":\"957262\",\"primaryLabelValue\":\"957262\"}},{\"attributeHeader\":{\"labelValue\":\"957264\",\"primaryLabelValue\":\"957264\"}},{\"attributeHeader\":{\"labelValue\":\"957266\",\"primaryLabelValue\":\"957266\"}},{\"attributeHeader\":{\"labelValue\":\"957268\",\"primaryLabelValue\":\"957268\"}},{\"attributeHeader\":{\"labelValue\":\"957270\",\"primaryLabelValue\":\"957270\"}},{\"attributeHeader\":{\"labelValue\":\"957272\",\"primaryLabelValue\":\"957272\"}},{\"attributeHeader\":{\"labelValue\":\"957274\",\"primaryLabelValue\":\"957274\"}},{\"attributeHeader\":{\"labelValue\":\"957276\",\"primaryLabelValue\":\"957276\"}},{\"attributeHeader\":{\"labelValue\":\"957278\",\"primaryLabelValue\":\"957278\"}},{\"attributeHeader\":{\"labelValue\":\"957280\",\"primaryLabelValue\":\"957280\"}},{\"attributeHeader\":{\"labelValue\":\"957282\",\"primaryLabelValue\":\"957282\"}},{\"attributeHeader\":{\"labelValue\":\"957284\",\"primaryLabelValue\":\"957284\"}},{\"attributeHeader\":{\"labelValue\":\"957286\",\"primaryLabelValue\":\"957286\"}},{\"attributeHeader\":{\"labelValue\":\"957288\",\"primaryLabelValue\":\"957288\"}},{\"attributeHeader\":{\"labelValue\":\"957290\",\"primaryLabelValue\":\"957290\"}},{\"attributeHeader\":{\"labelValue\":\"957292\",\"primaryLabelValue\":\"957292\"}},{\"attributeHeader\":{\"labelValue\":\"957294\",\"primaryLabelValue\":\"957294\"}},{\"attributeHeader\":{\"labelValue\":\"957296\",\"primaryLabelValue\":\"957296\"}},{\"attributeHeader\":{\"labelValue\":\"957298\",\"primaryLabelValue\":\"957298\"}},{\"attributeHeader\":{\"labelValue\":\"957300\",\"primaryLabelValue\":\"957300\"}},{\"attributeHeader\":{\"labelValue\":\"957302\",\"primaryLabelValue\":\"957302\"}},{\"attributeHeader\":{\"labelValue\":\"957304\",\"primaryLabelValue\":\"957304\"}},{\"attributeHeader\":{\"labelValue\":\"957306\",\"primaryLabelValue\":\"957306\"}},{\"attributeHeader\":{\"labelValue\":\"957308\",\"primaryLabelValue\":\"957308\"}},{\"attributeHeader\":{\"labelValue\":\"957310\",\"primaryLabelValue\":\"957310\"}},{\"attributeHeader\":{\"labelValue\":\"957312\",\"primaryLabelValue\":\"957312\"}},{\"attributeHeader\":{\"labelValue\":\"957314\",\"primaryLabelValue\":\"957314\"}},{\"attributeHeader\":{\"labelValue\":\"957316\",\"primaryLabelValue\":\"957316\"}},{\"attributeHeader\":{\"labelValue\":\"957318\",\"primaryLabelValue\":\"957318\"}},{\"attributeHeader\":{\"labelValue\":\"957320\",\"primaryLabelValue\":\"957320\"}},{\"attributeHeader\":{\"labelValue\":\"957322\",\"primaryLabelValue\":\"957322\"}},{\"attributeHeader\":{\"labelValue\":\"957324\",\"primaryLabelValue\":\"957324\"}},{\"attributeHeader\":{\"labelValue\":\"957326\",\"primaryLabelValue\":\"957326\"}},{\"attributeHeader\":{\"labelValue\":\"957328\",\"primaryLabelValue\":\"957328\"}},{\"attributeHeader\":{\"labelValue\":\"957330\",\"primaryLabelValue\":\"957330\"}},{\"attributeHeader\":{\"labelValue\":\"957332\",\"primaryLabelValue\":\"957332\"}},{\"attributeHeader\":{\"labelValue\":\"957334\",\"primaryLabelValue\":\"957334\"}},{\"attributeHeader\":{\"labelValue\":\"957336\",\"primaryLabelValue\":\"957336\"}},{\"attributeHeader\":{\"labelValue\":\"957338\",\"primaryLabelValue\":\"957338\"}},{\"attributeHeader\":{\"labelValue\":\"957340\",\"primaryLabelValue\":\"957340\"}},{\"attributeHeader\":{\"labelValue\":\"957342\",\"primaryLabelValue\":\"957342\"}},{\"attributeHeader\":{\"labelValue\":\"957344\",\"primaryLabelValue\":\"957344\"}},{\"attributeHeader\":{\"labelValue\":\"957346\",\"primaryLabelValue\":\"957346\"}},{\"attributeHeader\":{\"labelValue\":\"957348\",\"primaryLabelValue\":\"957348\"}},{\"attributeHeader\":{\"labelValue\":\"957350\",\"primaryLabelValue\":\"957350\"}},{\"attributeHeader\":{\"labelValue\":\"957352\",\"primaryLabelValue\":\"957352\"}},{\"attributeHeader\":{\"labelValue\":\"957354\",\"primaryLabelValue\":\"957354\"}},{\"attributeHeader\":{\"labelValue\":\"957356\",\"primaryLabelValue\":\"957356\"}},{\"attributeHeader\":{\"labelValue\":\"957358\",\"primaryLabelValue\":\"957358\"}},{\"attributeHeader\":{\"labelValue\":\"957360\",\"primaryLabelValue\":\"957360\"}},{\"attributeHeader\":{\"labelValue\":\"957364\",\"primaryLabelValue\":\"957364\"}},{\"attributeHeader\":{\"labelValue\":\"957366\",\"primaryLabelValue\":\"957366\"}},{\"attributeHeader\":{\"labelValue\":\"957368\",\"primaryLabelValue\":\"957368\"}},{\"attributeHeader\":{\"labelValue\":\"957370\",\"primaryLabelValue\":\"957370\"}},{\"attributeHeader\":{\"labelValue\":\"957372\",\"primaryLabelValue\":\"957372\"}},{\"attributeHeader\":{\"labelValue\":\"957374\",\"primaryLabelValue\":\"957374\"}},{\"attributeHeader\":{\"labelValue\":\"957378\",\"primaryLabelValue\":\"957378\"}},{\"attributeHeader\":{\"labelValue\":\"957380\",\"primaryLabelValue\":\"957380\"}},{\"attributeHeader\":{\"labelValue\":\"957382\",\"primaryLabelValue\":\"957382\"}},{\"attributeHeader\":{\"labelValue\":\"957384\",\"primaryLabelValue\":\"957384\"}},{\"attributeHeader\":{\"labelValue\":\"957386\",\"primaryLabelValue\":\"957386\"}},{\"attributeHeader\":{\"labelValue\":\"957388\",\"primaryLabelValue\":\"957388\"}},{\"attributeHeader\":{\"labelValue\":\"957390\",\"primaryLabelValue\":\"957390\"}},{\"attributeHeader\":{\"labelValue\":\"957392\",\"primaryLabelValue\":\"957392\"}},{\"attributeHeader\":{\"labelValue\":\"957394\",\"primaryLabelValue\":\"957394\"}},{\"attributeHeader\":{\"labelValue\":\"957396\",\"primaryLabelValue\":\"957396\"}},{\"attributeHeader\":{\"labelValue\":\"957398\",\"primaryLabelValue\":\"957398\"}},{\"attributeHeader\":{\"labelValue\":\"957400\",\"primaryLabelValue\":\"957400\"}},{\"attributeHeader\":{\"labelValue\":\"957402\",\"primaryLabelValue\":\"957402\"}},{\"attributeHeader\":{\"labelValue\":\"957404\",\"primaryLabelValue\":\"957404\"}},{\"attributeHeader\":{\"labelValue\":\"957406\",\"primaryLabelValue\":\"957406\"}},{\"attributeHeader\":{\"labelValue\":\"957408\",\"primaryLabelValue\":\"957408\"}},{\"attributeHeader\":{\"labelValue\":\"957410\",\"primaryLabelValue\":\"957410\"}},{\"attributeHeader\":{\"labelValue\":\"957412\",\"primaryLabelValue\":\"957412\"}},{\"attributeHeader\":{\"labelValue\":\"957414\",\"primaryLabelValue\":\"957414\"}},{\"attributeHeader\":{\"labelValue\":\"957416\",\"primaryLabelValue\":\"957416\"}},{\"attributeHeader\":{\"labelValue\":\"957418\",\"primaryLabelValue\":\"957418\"}},{\"attributeHeader\":{\"labelValue\":\"957420\",\"primaryLabelValue\":\"957420\"}},{\"attributeHeader\":{\"labelValue\":\"957422\",\"primaryLabelValue\":\"957422\"}},{\"attributeHeader\":{\"labelValue\":\"957424\",\"primaryLabelValue\":\"957424\"}},{\"attributeHeader\":{\"labelValue\":\"957426\",\"primaryLabelValue\":\"957426\"}},{\"attributeHeader\":{\"labelValue\":\"957428\",\"primaryLabelValue\":\"957428\"}},{\"attributeHeader\":{\"labelValue\":\"957430\",\"primaryLabelValue\":\"957430\"}},{\"attributeHeader\":{\"labelValue\":\"957432\",\"primaryLabelValue\":\"957432\"}},{\"attributeHeader\":{\"labelValue\":\"957434\",\"primaryLabelValue\":\"957434\"}},{\"attributeHeader\":{\"labelValue\":\"957436\",\"primaryLabelValue\":\"957436\"}},{\"attributeHeader\":{\"labelValue\":\"957438\",\"primaryLabelValue\":\"957438\"}},{\"attributeHeader\":{\"labelValue\":\"957440\",\"primaryLabelValue\":\"957440\"}},{\"attributeHeader\":{\"labelValue\":\"957442\",\"primaryLabelValue\":\"957442\"}},{\"attributeHeader\":{\"labelValue\":\"957446\",\"primaryLabelValue\":\"957446\"}},{\"attributeHeader\":{\"labelValue\":\"957448\",\"primaryLabelValue\":\"957448\"}},{\"attributeHeader\":{\"labelValue\":\"957450\",\"primaryLabelValue\":\"957450\"}},{\"attributeHeader\":{\"labelValue\":\"957452\",\"primaryLabelValue\":\"957452\"}},{\"attributeHeader\":{\"labelValue\":\"957454\",\"primaryLabelValue\":\"957454\"}},{\"attributeHeader\":{\"labelValue\":\"957456\",\"primaryLabelValue\":\"957456\"}},{\"attributeHeader\":{\"labelValue\":\"957458\",\"primaryLabelValue\":\"957458\"}},{\"attributeHeader\":{\"labelValue\":\"957460\",\"primaryLabelValue\":\"957460\"}},{\"attributeHeader\":{\"labelValue\":\"957462\",\"primaryLabelValue\":\"957462\"}},{\"attributeHeader\":{\"labelValue\":\"957464\",\"primaryLabelValue\":\"957464\"}},{\"attributeHeader\":{\"labelValue\":\"957466\",\"primaryLabelValue\":\"957466\"}},{\"attributeHeader\":{\"labelValue\":\"957468\",\"primaryLabelValue\":\"957468\"}},{\"attributeHeader\":{\"labelValue\":\"957470\",\"primaryLabelValue\":\"957470\"}},{\"attributeHeader\":{\"labelValue\":\"957472\",\"primaryLabelValue\":\"957472\"}},{\"attributeHeader\":{\"labelValue\":\"957474\",\"primaryLabelValue\":\"957474\"}},{\"attributeHeader\":{\"labelValue\":\"957476\",\"primaryLabelValue\":\"957476\"}},{\"attributeHeader\":{\"labelValue\":\"957478\",\"primaryLabelValue\":\"957478\"}},{\"attributeHeader\":{\"labelValue\":\"957480\",\"primaryLabelValue\":\"957480\"}},{\"attributeHeader\":{\"labelValue\":\"957482\",\"primaryLabelValue\":\"957482\"}},{\"attributeHeader\":{\"labelValue\":\"957484\",\"primaryLabelValue\":\"957484\"}},{\"attributeHeader\":{\"labelValue\":\"957486\",\"primaryLabelValue\":\"957486\"}},{\"attributeHeader\":{\"labelValue\":\"957488\",\"primaryLabelValue\":\"957488\"}},{\"attributeHeader\":{\"labelValue\":\"957490\",\"primaryLabelValue\":\"957490\"}},{\"attributeHeader\":{\"labelValue\":\"957492\",\"primaryLabelValue\":\"957492\"}},{\"attributeHeader\":{\"labelValue\":\"957494\",\"primaryLabelValue\":\"957494\"}},{\"attributeHeader\":{\"labelValue\":\"957496\",\"primaryLabelValue\":\"957496\"}},{\"attributeHeader\":{\"labelValue\":\"957498\",\"primaryLabelValue\":\"957498\"}},{\"attributeHeader\":{\"labelValue\":\"957500\",\"primaryLabelValue\":\"957500\"}},{\"attributeHeader\":{\"labelValue\":\"957502\",\"primaryLabelValue\":\"957502\"}},{\"attributeHeader\":{\"labelValue\":\"957504\",\"primaryLabelValue\":\"957504\"}},{\"attributeHeader\":{\"labelValue\":\"957506\",\"primaryLabelValue\":\"957506\"}},{\"attributeHeader\":{\"labelValue\":\"957508\",\"primaryLabelValue\":\"957508\"}},{\"attributeHeader\":{\"labelValue\":\"957510\",\"primaryLabelValue\":\"957510\"}},{\"attributeHeader\":{\"labelValue\":\"957512\",\"primaryLabelValue\":\"957512\"}},{\"attributeHeader\":{\"labelValue\":\"957514\",\"primaryLabelValue\":\"957514\"}},{\"attributeHeader\":{\"labelValue\":\"957516\",\"primaryLabelValue\":\"957516\"}},{\"attributeHeader\":{\"labelValue\":\"957518\",\"primaryLabelValue\":\"957518\"}},{\"attributeHeader\":{\"labelValue\":\"957520\",\"primaryLabelValue\":\"957520\"}},{\"attributeHeader\":{\"labelValue\":\"957522\",\"primaryLabelValue\":\"957522\"}},{\"attributeHeader\":{\"labelValue\":\"957524\",\"primaryLabelValue\":\"957524\"}},{\"attributeHeader\":{\"labelValue\":\"957526\",\"primaryLabelValue\":\"957526\"}},{\"attributeHeader\":{\"labelValue\":\"957528\",\"primaryLabelValue\":\"957528\"}},{\"attributeHeader\":{\"labelValue\":\"957530\",\"primaryLabelValue\":\"957530\"}},{\"attributeHeader\":{\"labelValue\":\"957532\",\"primaryLabelValue\":\"957532\"}},{\"attributeHeader\":{\"labelValue\":\"957534\",\"primaryLabelValue\":\"957534\"}},{\"attributeHeader\":{\"labelValue\":\"957536\",\"primaryLabelValue\":\"957536\"}},{\"attributeHeader\":{\"labelValue\":\"957538\",\"primaryLabelValue\":\"957538\"}},{\"attributeHeader\":{\"labelValue\":\"957540\",\"primaryLabelValue\":\"957540\"}},{\"attributeHeader\":{\"labelValue\":\"957542\",\"primaryLabelValue\":\"957542\"}},{\"attributeHeader\":{\"labelValue\":\"957544\",\"primaryLabelValue\":\"957544\"}},{\"attributeHeader\":{\"labelValue\":\"957546\",\"primaryLabelValue\":\"957546\"}},{\"attributeHeader\":{\"labelValue\":\"957548\",\"primaryLabelValue\":\"957548\"}},{\"attributeHeader\":{\"labelValue\":\"957550\",\"primaryLabelValue\":\"957550\"}},{\"attributeHeader\":{\"labelValue\":\"957552\",\"primaryLabelValue\":\"957552\"}},{\"attributeHeader\":{\"labelValue\":\"957554\",\"primaryLabelValue\":\"957554\"}},{\"attributeHeader\":{\"labelValue\":\"957556\",\"primaryLabelValue\":\"957556\"}},{\"attributeHeader\":{\"labelValue\":\"957558\",\"primaryLabelValue\":\"957558\"}},{\"attributeHeader\":{\"labelValue\":\"957560\",\"primaryLabelValue\":\"957560\"}},{\"attributeHeader\":{\"labelValue\":\"957562\",\"primaryLabelValue\":\"957562\"}},{\"attributeHeader\":{\"labelValue\":\"957564\",\"primaryLabelValue\":\"957564\"}},{\"attributeHeader\":{\"labelValue\":\"957566\",\"primaryLabelValue\":\"957566\"}},{\"attributeHeader\":{\"labelValue\":\"957568\",\"primaryLabelValue\":\"957568\"}},{\"attributeHeader\":{\"labelValue\":\"957570\",\"primaryLabelValue\":\"957570\"}},{\"attributeHeader\":{\"labelValue\":\"957572\",\"primaryLabelValue\":\"957572\"}},{\"attributeHeader\":{\"labelValue\":\"957574\",\"primaryLabelValue\":\"957574\"}},{\"attributeHeader\":{\"labelValue\":\"957576\",\"primaryLabelValue\":\"957576\"}},{\"attributeHeader\":{\"labelValue\":\"957578\",\"primaryLabelValue\":\"957578\"}},{\"attributeHeader\":{\"labelValue\":\"957580\",\"primaryLabelValue\":\"957580\"}},{\"attributeHeader\":{\"labelValue\":\"957582\",\"primaryLabelValue\":\"957582\"}},{\"attributeHeader\":{\"labelValue\":\"957584\",\"primaryLabelValue\":\"957584\"}},{\"attributeHeader\":{\"labelValue\":\"957586\",\"primaryLabelValue\":\"957586\"}},{\"attributeHeader\":{\"labelValue\":\"957588\",\"primaryLabelValue\":\"957588\"}},{\"attributeHeader\":{\"labelValue\":\"957590\",\"primaryLabelValue\":\"957590\"}},{\"attributeHeader\":{\"labelValue\":\"957592\",\"primaryLabelValue\":\"957592\"}},{\"attributeHeader\":{\"labelValue\":\"957594\",\"primaryLabelValue\":\"957594\"}},{\"attributeHeader\":{\"labelValue\":\"957596\",\"primaryLabelValue\":\"957596\"}},{\"attributeHeader\":{\"labelValue\":\"957598\",\"primaryLabelValue\":\"957598\"}},{\"attributeHeader\":{\"labelValue\":\"957600\",\"primaryLabelValue\":\"957600\"}},{\"attributeHeader\":{\"labelValue\":\"957602\",\"primaryLabelValue\":\"957602\"}},{\"attributeHeader\":{\"labelValue\":\"957604\",\"primaryLabelValue\":\"957604\"}},{\"attributeHeader\":{\"labelValue\":\"957606\",\"primaryLabelValue\":\"957606\"}},{\"attributeHeader\":{\"labelValue\":\"957608\",\"primaryLabelValue\":\"957608\"}},{\"attributeHeader\":{\"labelValue\":\"957610\",\"primaryLabelValue\":\"957610\"}},{\"attributeHeader\":{\"labelValue\":\"957612\",\"primaryLabelValue\":\"957612\"}},{\"attributeHeader\":{\"labelValue\":\"957614\",\"primaryLabelValue\":\"957614\"}},{\"attributeHeader\":{\"labelValue\":\"957616\",\"primaryLabelValue\":\"957616\"}},{\"attributeHeader\":{\"labelValue\":\"957618\",\"primaryLabelValue\":\"957618\"}},{\"attributeHeader\":{\"labelValue\":\"957620\",\"primaryLabelValue\":\"957620\"}},{\"attributeHeader\":{\"labelValue\":\"957622\",\"primaryLabelValue\":\"957622\"}},{\"attributeHeader\":{\"labelValue\":\"957624\",\"primaryLabelValue\":\"957624\"}},{\"attributeHeader\":{\"labelValue\":\"957626\",\"primaryLabelValue\":\"957626\"}},{\"attributeHeader\":{\"labelValue\":\"957632\",\"primaryLabelValue\":\"957632\"}},{\"attributeHeader\":{\"labelValue\":\"957634\",\"primaryLabelValue\":\"957634\"}},{\"attributeHeader\":{\"labelValue\":\"957636\",\"primaryLabelValue\":\"957636\"}},{\"attributeHeader\":{\"labelValue\":\"957638\",\"primaryLabelValue\":\"957638\"}},{\"attributeHeader\":{\"labelValue\":\"957640\",\"primaryLabelValue\":\"957640\"}},{\"attributeHeader\":{\"labelValue\":\"957642\",\"primaryLabelValue\":\"957642\"}},{\"attributeHeader\":{\"labelValue\":\"957644\",\"primaryLabelValue\":\"957644\"}},{\"attributeHeader\":{\"labelValue\":\"957646\",\"primaryLabelValue\":\"957646\"}},{\"attributeHeader\":{\"labelValue\":\"957648\",\"primaryLabelValue\":\"957648\"}},{\"attributeHeader\":{\"labelValue\":\"957650\",\"primaryLabelValue\":\"957650\"}},{\"attributeHeader\":{\"labelValue\":\"957652\",\"primaryLabelValue\":\"957652\"}},{\"attributeHeader\":{\"labelValue\":\"957654\",\"primaryLabelValue\":\"957654\"}},{\"attributeHeader\":{\"labelValue\":\"957656\",\"primaryLabelValue\":\"957656\"}},{\"attributeHeader\":{\"labelValue\":\"957658\",\"primaryLabelValue\":\"957658\"}},{\"attributeHeader\":{\"labelValue\":\"957660\",\"primaryLabelValue\":\"957660\"}},{\"attributeHeader\":{\"labelValue\":\"957664\",\"primaryLabelValue\":\"957664\"}},{\"attributeHeader\":{\"labelValue\":\"957666\",\"primaryLabelValue\":\"957666\"}},{\"attributeHeader\":{\"labelValue\":\"957668\",\"primaryLabelValue\":\"957668\"}},{\"attributeHeader\":{\"labelValue\":\"957674\",\"primaryLabelValue\":\"957674\"}},{\"attributeHeader\":{\"labelValue\":\"957676\",\"primaryLabelValue\":\"957676\"}},{\"attributeHeader\":{\"labelValue\":\"957678\",\"primaryLabelValue\":\"957678\"}},{\"attributeHeader\":{\"labelValue\":\"957680\",\"primaryLabelValue\":\"957680\"}},{\"attributeHeader\":{\"labelValue\":\"957682\",\"primaryLabelValue\":\"957682\"}},{\"attributeHeader\":{\"labelValue\":\"957684\",\"primaryLabelValue\":\"957684\"}},{\"attributeHeader\":{\"labelValue\":\"957688\",\"primaryLabelValue\":\"957688\"}},{\"attributeHeader\":{\"labelValue\":\"957690\",\"primaryLabelValue\":\"957690\"}},{\"attributeHeader\":{\"labelValue\":\"957692\",\"primaryLabelValue\":\"957692\"}},{\"attributeHeader\":{\"labelValue\":\"957694\",\"primaryLabelValue\":\"957694\"}},{\"attributeHeader\":{\"labelValue\":\"957696\",\"primaryLabelValue\":\"957696\"}},{\"attributeHeader\":{\"labelValue\":\"957698\",\"primaryLabelValue\":\"957698\"}},{\"attributeHeader\":{\"labelValue\":\"957702\",\"primaryLabelValue\":\"957702\"}},{\"attributeHeader\":{\"labelValue\":\"957704\",\"primaryLabelValue\":\"957704\"}},{\"attributeHeader\":{\"labelValue\":\"957708\",\"primaryLabelValue\":\"957708\"}},{\"attributeHeader\":{\"labelValue\":\"957710\",\"primaryLabelValue\":\"957710\"}},{\"attributeHeader\":{\"labelValue\":\"957712\",\"primaryLabelValue\":\"957712\"}},{\"attributeHeader\":{\"labelValue\":\"957714\",\"primaryLabelValue\":\"957714\"}},{\"attributeHeader\":{\"labelValue\":\"957716\",\"primaryLabelValue\":\"957716\"}},{\"attributeHeader\":{\"labelValue\":\"957718\",\"primaryLabelValue\":\"957718\"}},{\"attributeHeader\":{\"labelValue\":\"957720\",\"primaryLabelValue\":\"957720\"}},{\"attributeHeader\":{\"labelValue\":\"957722\",\"primaryLabelValue\":\"957722\"}},{\"attributeHeader\":{\"labelValue\":\"957724\",\"primaryLabelValue\":\"957724\"}},{\"attributeHeader\":{\"labelValue\":\"957726\",\"primaryLabelValue\":\"957726\"}},{\"attributeHeader\":{\"labelValue\":\"957728\",\"primaryLabelValue\":\"957728\"}},{\"attributeHeader\":{\"labelValue\":\"957730\",\"primaryLabelValue\":\"957730\"}},{\"attributeHeader\":{\"labelValue\":\"957732\",\"primaryLabelValue\":\"957732\"}},{\"attributeHeader\":{\"labelValue\":\"957734\",\"primaryLabelValue\":\"957734\"}},{\"attributeHeader\":{\"labelValue\":\"957736\",\"primaryLabelValue\":\"957736\"}},{\"attributeHeader\":{\"labelValue\":\"957738\",\"primaryLabelValue\":\"957738\"}},{\"attributeHeader\":{\"labelValue\":\"957740\",\"primaryLabelValue\":\"957740\"}},{\"attributeHeader\":{\"labelValue\":\"957742\",\"primaryLabelValue\":\"957742\"}},{\"attributeHeader\":{\"labelValue\":\"957744\",\"primaryLabelValue\":\"957744\"}},{\"attributeHeader\":{\"labelValue\":\"957746\",\"primaryLabelValue\":\"957746\"}},{\"attributeHeader\":{\"labelValue\":\"957748\",\"primaryLabelValue\":\"957748\"}},{\"attributeHeader\":{\"labelValue\":\"957750\",\"primaryLabelValue\":\"957750\"}},{\"attributeHeader\":{\"labelValue\":\"957752\",\"primaryLabelValue\":\"957752\"}},{\"attributeHeader\":{\"labelValue\":\"957754\",\"primaryLabelValue\":\"957754\"}},{\"attributeHeader\":{\"labelValue\":\"957756\",\"primaryLabelValue\":\"957756\"}},{\"attributeHeader\":{\"labelValue\":\"957758\",\"primaryLabelValue\":\"957758\"}},{\"attributeHeader\":{\"labelValue\":\"957760\",\"primaryLabelValue\":\"957760\"}},{\"attributeHeader\":{\"labelValue\":\"957762\",\"primaryLabelValue\":\"957762\"}},{\"attributeHeader\":{\"labelValue\":\"957764\",\"primaryLabelValue\":\"957764\"}},{\"attributeHeader\":{\"labelValue\":\"957766\",\"primaryLabelValue\":\"957766\"}},{\"attributeHeader\":{\"labelValue\":\"957772\",\"primaryLabelValue\":\"957772\"}},{\"attributeHeader\":{\"labelValue\":\"957774\",\"primaryLabelValue\":\"957774\"}},{\"attributeHeader\":{\"labelValue\":\"957776\",\"primaryLabelValue\":\"957776\"}},{\"attributeHeader\":{\"labelValue\":\"957778\",\"primaryLabelValue\":\"957778\"}},{\"attributeHeader\":{\"labelValue\":\"957780\",\"primaryLabelValue\":\"957780\"}},{\"attributeHeader\":{\"labelValue\":\"957782\",\"primaryLabelValue\":\"957782\"}},{\"attributeHeader\":{\"labelValue\":\"957784\",\"primaryLabelValue\":\"957784\"}},{\"attributeHeader\":{\"labelValue\":\"957788\",\"primaryLabelValue\":\"957788\"}},{\"attributeHeader\":{\"labelValue\":\"957790\",\"primaryLabelValue\":\"957790\"}},{\"attributeHeader\":{\"labelValue\":\"957792\",\"primaryLabelValue\":\"957792\"}},{\"attributeHeader\":{\"labelValue\":\"957794\",\"primaryLabelValue\":\"957794\"}},{\"attributeHeader\":{\"labelValue\":\"957796\",\"primaryLabelValue\":\"957796\"}},{\"attributeHeader\":{\"labelValue\":\"957798\",\"primaryLabelValue\":\"957798\"}},{\"attributeHeader\":{\"labelValue\":\"957800\",\"primaryLabelValue\":\"957800\"}},{\"attributeHeader\":{\"labelValue\":\"957802\",\"primaryLabelValue\":\"957802\"}},{\"attributeHeader\":{\"labelValue\":\"957804\",\"primaryLabelValue\":\"957804\"}},{\"attributeHeader\":{\"labelValue\":\"957806\",\"primaryLabelValue\":\"957806\"}},{\"attributeHeader\":{\"labelValue\":\"957808\",\"primaryLabelValue\":\"957808\"}},{\"attributeHeader\":{\"labelValue\":\"957812\",\"primaryLabelValue\":\"957812\"}},{\"attributeHeader\":{\"labelValue\":\"957814\",\"primaryLabelValue\":\"957814\"}},{\"attributeHeader\":{\"labelValue\":\"957816\",\"primaryLabelValue\":\"957816\"}},{\"attributeHeader\":{\"labelValue\":\"957818\",\"primaryLabelValue\":\"957818\"}},{\"attributeHeader\":{\"labelValue\":\"957820\",\"primaryLabelValue\":\"957820\"}},{\"attributeHeader\":{\"labelValue\":\"957822\",\"primaryLabelValue\":\"957822\"}},{\"attributeHeader\":{\"labelValue\":\"957824\",\"primaryLabelValue\":\"957824\"}},{\"attributeHeader\":{\"labelValue\":\"957826\",\"primaryLabelValue\":\"957826\"}},{\"attributeHeader\":{\"labelValue\":\"957828\",\"primaryLabelValue\":\"957828\"}},{\"attributeHeader\":{\"labelValue\":\"957830\",\"primaryLabelValue\":\"957830\"}},{\"attributeHeader\":{\"labelValue\":\"957832\",\"primaryLabelValue\":\"957832\"}},{\"attributeHeader\":{\"labelValue\":\"957834\",\"primaryLabelValue\":\"957834\"}},{\"attributeHeader\":{\"labelValue\":\"957836\",\"primaryLabelValue\":\"957836\"}},{\"attributeHeader\":{\"labelValue\":\"957838\",\"primaryLabelValue\":\"957838\"}},{\"attributeHeader\":{\"labelValue\":\"957842\",\"primaryLabelValue\":\"957842\"}},{\"attributeHeader\":{\"labelValue\":\"957844\",\"primaryLabelValue\":\"957844\"}},{\"attributeHeader\":{\"labelValue\":\"957846\",\"primaryLabelValue\":\"957846\"}},{\"attributeHeader\":{\"labelValue\":\"957848\",\"primaryLabelValue\":\"957848\"}},{\"attributeHeader\":{\"labelValue\":\"957850\",\"primaryLabelValue\":\"957850\"}},{\"attributeHeader\":{\"labelValue\":\"957852\",\"primaryLabelValue\":\"957852\"}},{\"attributeHeader\":{\"labelValue\":\"957854\",\"primaryLabelValue\":\"957854\"}},{\"attributeHeader\":{\"labelValue\":\"957856\",\"primaryLabelValue\":\"957856\"}},{\"attributeHeader\":{\"labelValue\":\"957858\",\"primaryLabelValue\":\"957858\"}},{\"attributeHeader\":{\"labelValue\":\"957860\",\"primaryLabelValue\":\"957860\"}},{\"attributeHeader\":{\"labelValue\":\"957862\",\"primaryLabelValue\":\"957862\"}},{\"attributeHeader\":{\"labelValue\":\"957864\",\"primaryLabelValue\":\"957864\"}},{\"attributeHeader\":{\"labelValue\":\"957866\",\"primaryLabelValue\":\"957866\"}},{\"attributeHeader\":{\"labelValue\":\"957870\",\"primaryLabelValue\":\"957870\"}},{\"attributeHeader\":{\"labelValue\":\"957874\",\"primaryLabelValue\":\"957874\"}},{\"attributeHeader\":{\"labelValue\":\"957876\",\"primaryLabelValue\":\"957876\"}},{\"attributeHeader\":{\"labelValue\":\"957878\",\"primaryLabelValue\":\"957878\"}},{\"attributeHeader\":{\"labelValue\":\"957880\",\"primaryLabelValue\":\"957880\"}},{\"attributeHeader\":{\"labelValue\":\"957882\",\"primaryLabelValue\":\"957882\"}},{\"attributeHeader\":{\"labelValue\":\"957884\",\"primaryLabelValue\":\"957884\"}},{\"attributeHeader\":{\"labelValue\":\"957886\",\"primaryLabelValue\":\"957886\"}},{\"attributeHeader\":{\"labelValue\":\"957888\",\"primaryLabelValue\":\"957888\"}},{\"attributeHeader\":{\"labelValue\":\"957890\",\"primaryLabelValue\":\"957890\"}},{\"attributeHeader\":{\"labelValue\":\"957892\",\"primaryLabelValue\":\"957892\"}},{\"attributeHeader\":{\"labelValue\":\"957894\",\"primaryLabelValue\":\"957894\"}},{\"attributeHeader\":{\"labelValue\":\"957896\",\"primaryLabelValue\":\"957896\"}},{\"attributeHeader\":{\"labelValue\":\"957898\",\"primaryLabelValue\":\"957898\"}},{\"attributeHeader\":{\"labelValue\":\"957900\",\"primaryLabelValue\":\"957900\"}},{\"attributeHeader\":{\"labelValue\":\"957904\",\"primaryLabelValue\":\"957904\"}},{\"attributeHeader\":{\"labelValue\":\"957906\",\"primaryLabelValue\":\"957906\"}},{\"attributeHeader\":{\"labelValue\":\"957908\",\"primaryLabelValue\":\"957908\"}},{\"attributeHeader\":{\"labelValue\":\"957910\",\"primaryLabelValue\":\"957910\"}},{\"attributeHeader\":{\"labelValue\":\"957912\",\"primaryLabelValue\":\"957912\"}},{\"attributeHeader\":{\"labelValue\":\"957914\",\"primaryLabelValue\":\"957914\"}},{\"attributeHeader\":{\"labelValue\":\"957916\",\"primaryLabelValue\":\"957916\"}},{\"attributeHeader\":{\"labelValue\":\"957918\",\"primaryLabelValue\":\"957918\"}},{\"attributeHeader\":{\"labelValue\":\"957920\",\"primaryLabelValue\":\"957920\"}},{\"attributeHeader\":{\"labelValue\":\"957922\",\"primaryLabelValue\":\"957922\"}},{\"attributeHeader\":{\"labelValue\":\"957924\",\"primaryLabelValue\":\"957924\"}},{\"attributeHeader\":{\"labelValue\":\"957926\",\"primaryLabelValue\":\"957926\"}},{\"attributeHeader\":{\"labelValue\":\"957928\",\"primaryLabelValue\":\"957928\"}},{\"attributeHeader\":{\"labelValue\":\"957930\",\"primaryLabelValue\":\"957930\"}},{\"attributeHeader\":{\"labelValue\":\"957934\",\"primaryLabelValue\":\"957934\"}},{\"attributeHeader\":{\"labelValue\":\"957936\",\"primaryLabelValue\":\"957936\"}},{\"attributeHeader\":{\"labelValue\":\"957938\",\"primaryLabelValue\":\"957938\"}},{\"attributeHeader\":{\"labelValue\":\"957940\",\"primaryLabelValue\":\"957940\"}},{\"attributeHeader\":{\"labelValue\":\"957942\",\"primaryLabelValue\":\"957942\"}},{\"attributeHeader\":{\"labelValue\":\"957944\",\"primaryLabelValue\":\"957944\"}},{\"attributeHeader\":{\"labelValue\":\"957946\",\"primaryLabelValue\":\"957946\"}},{\"attributeHeader\":{\"labelValue\":\"957948\",\"primaryLabelValue\":\"957948\"}},{\"attributeHeader\":{\"labelValue\":\"957950\",\"primaryLabelValue\":\"957950\"}},{\"attributeHeader\":{\"labelValue\":\"957952\",\"primaryLabelValue\":\"957952\"}},{\"attributeHeader\":{\"labelValue\":\"957954\",\"primaryLabelValue\":\"957954\"}},{\"attributeHeader\":{\"labelValue\":\"957958\",\"primaryLabelValue\":\"957958\"}},{\"attributeHeader\":{\"labelValue\":\"957960\",\"primaryLabelValue\":\"957960\"}},{\"attributeHeader\":{\"labelValue\":\"957962\",\"primaryLabelValue\":\"957962\"}},{\"attributeHeader\":{\"labelValue\":\"957964\",\"primaryLabelValue\":\"957964\"}},{\"attributeHeader\":{\"labelValue\":\"957966\",\"primaryLabelValue\":\"957966\"}},{\"attributeHeader\":{\"labelValue\":\"957970\",\"primaryLabelValue\":\"957970\"}},{\"attributeHeader\":{\"labelValue\":\"957972\",\"primaryLabelValue\":\"957972\"}},{\"attributeHeader\":{\"labelValue\":\"957974\",\"primaryLabelValue\":\"957974\"}},{\"attributeHeader\":{\"labelValue\":\"957978\",\"primaryLabelValue\":\"957978\"}},{\"attributeHeader\":{\"labelValue\":\"957980\",\"primaryLabelValue\":\"957980\"}},{\"attributeHeader\":{\"labelValue\":\"957982\",\"primaryLabelValue\":\"957982\"}},{\"attributeHeader\":{\"labelValue\":\"957984\",\"primaryLabelValue\":\"957984\"}},{\"attributeHeader\":{\"labelValue\":\"957986\",\"primaryLabelValue\":\"957986\"}},{\"attributeHeader\":{\"labelValue\":\"957988\",\"primaryLabelValue\":\"957988\"}},{\"attributeHeader\":{\"labelValue\":\"957992\",\"primaryLabelValue\":\"957992\"}},{\"attributeHeader\":{\"labelValue\":\"957996\",\"primaryLabelValue\":\"957996\"}},{\"attributeHeader\":{\"labelValue\":\"957998\",\"primaryLabelValue\":\"957998\"}},{\"attributeHeader\":{\"labelValue\":\"958000\",\"primaryLabelValue\":\"958000\"}},{\"attributeHeader\":{\"labelValue\":\"958002\",\"primaryLabelValue\":\"958002\"}},{\"attributeHeader\":{\"labelValue\":\"958004\",\"primaryLabelValue\":\"958004\"}},{\"attributeHeader\":{\"labelValue\":\"958006\",\"primaryLabelValue\":\"958006\"}},{\"attributeHeader\":{\"labelValue\":\"958008\",\"primaryLabelValue\":\"958008\"}},{\"attributeHeader\":{\"labelValue\":\"958010\",\"primaryLabelValue\":\"958010\"}},{\"attributeHeader\":{\"labelValue\":\"958012\",\"primaryLabelValue\":\"958012\"}},{\"attributeHeader\":{\"labelValue\":\"958014\",\"primaryLabelValue\":\"958014\"}},{\"attributeHeader\":{\"labelValue\":\"958016\",\"primaryLabelValue\":\"958016\"}},{\"attributeHeader\":{\"labelValue\":\"958018\",\"primaryLabelValue\":\"958018\"}},{\"attributeHeader\":{\"labelValue\":\"958022\",\"primaryLabelValue\":\"958022\"}},{\"attributeHeader\":{\"labelValue\":\"958024\",\"primaryLabelValue\":\"958024\"}},{\"attributeHeader\":{\"labelValue\":\"958026\",\"primaryLabelValue\":\"958026\"}},{\"attributeHeader\":{\"labelValue\":\"958028\",\"primaryLabelValue\":\"958028\"}},{\"attributeHeader\":{\"labelValue\":\"958030\",\"primaryLabelValue\":\"958030\"}},{\"attributeHeader\":{\"labelValue\":\"958032\",\"primaryLabelValue\":\"958032\"}},{\"attributeHeader\":{\"labelValue\":\"958034\",\"primaryLabelValue\":\"958034\"}},{\"attributeHeader\":{\"labelValue\":\"958036\",\"primaryLabelValue\":\"958036\"}},{\"attributeHeader\":{\"labelValue\":\"958038\",\"primaryLabelValue\":\"958038\"}},{\"attributeHeader\":{\"labelValue\":\"958042\",\"primaryLabelValue\":\"958042\"}},{\"attributeHeader\":{\"labelValue\":\"958044\",\"primaryLabelValue\":\"958044\"}},{\"attributeHeader\":{\"labelValue\":\"958046\",\"primaryLabelValue\":\"958046\"}},{\"attributeHeader\":{\"labelValue\":\"958048\",\"primaryLabelValue\":\"958048\"}},{\"attributeHeader\":{\"labelValue\":\"958050\",\"primaryLabelValue\":\"958050\"}},{\"attributeHeader\":{\"labelValue\":\"958052\",\"primaryLabelValue\":\"958052\"}},{\"attributeHeader\":{\"labelValue\":\"958054\",\"primaryLabelValue\":\"958054\"}},{\"attributeHeader\":{\"labelValue\":\"958056\",\"primaryLabelValue\":\"958056\"}},{\"attributeHeader\":{\"labelValue\":\"958058\",\"primaryLabelValue\":\"958058\"}},{\"attributeHeader\":{\"labelValue\":\"958060\",\"primaryLabelValue\":\"958060\"}},{\"attributeHeader\":{\"labelValue\":\"958062\",\"primaryLabelValue\":\"958062\"}},{\"attributeHeader\":{\"labelValue\":\"958064\",\"primaryLabelValue\":\"958064\"}},{\"attributeHeader\":{\"labelValue\":\"958066\",\"primaryLabelValue\":\"958066\"}},{\"attributeHeader\":{\"labelValue\":\"958070\",\"primaryLabelValue\":\"958070\"}},{\"attributeHeader\":{\"labelValue\":\"958072\",\"primaryLabelValue\":\"958072\"}},{\"attributeHeader\":{\"labelValue\":\"958074\",\"primaryLabelValue\":\"958074\"}},{\"attributeHeader\":{\"labelValue\":\"958076\",\"primaryLabelValue\":\"958076\"}},{\"attributeHeader\":{\"labelValue\":\"958078\",\"primaryLabelValue\":\"958078\"}},{\"attributeHeader\":{\"labelValue\":\"958080\",\"primaryLabelValue\":\"958080\"}},{\"attributeHeader\":{\"labelValue\":\"958088\",\"primaryLabelValue\":\"958088\"}},{\"attributeHeader\":{\"labelValue\":\"958090\",\"primaryLabelValue\":\"958090\"}},{\"attributeHeader\":{\"labelValue\":\"958094\",\"primaryLabelValue\":\"958094\"}},{\"attributeHeader\":{\"labelValue\":\"958096\",\"primaryLabelValue\":\"958096\"}},{\"attributeHeader\":{\"labelValue\":\"958098\",\"primaryLabelValue\":\"958098\"}},{\"attributeHeader\":{\"labelValue\":\"958100\",\"primaryLabelValue\":\"958100\"}},{\"attributeHeader\":{\"labelValue\":\"958104\",\"primaryLabelValue\":\"958104\"}},{\"attributeHeader\":{\"labelValue\":\"958106\",\"primaryLabelValue\":\"958106\"}},{\"attributeHeader\":{\"labelValue\":\"958108\",\"primaryLabelValue\":\"958108\"}},{\"attributeHeader\":{\"labelValue\":\"958110\",\"primaryLabelValue\":\"958110\"}},{\"attributeHeader\":{\"labelValue\":\"958112\",\"primaryLabelValue\":\"958112\"}},{\"attributeHeader\":{\"labelValue\":\"958114\",\"primaryLabelValue\":\"958114\"}},{\"attributeHeader\":{\"labelValue\":\"958116\",\"primaryLabelValue\":\"958116\"}},{\"attributeHeader\":{\"labelValue\":\"958118\",\"primaryLabelValue\":\"958118\"}},{\"attributeHeader\":{\"labelValue\":\"958120\",\"primaryLabelValue\":\"958120\"}},{\"attributeHeader\":{\"labelValue\":\"958124\",\"primaryLabelValue\":\"958124\"}},{\"attributeHeader\":{\"labelValue\":\"958126\",\"primaryLabelValue\":\"958126\"}},{\"attributeHeader\":{\"labelValue\":\"958128\",\"primaryLabelValue\":\"958128\"}},{\"attributeHeader\":{\"labelValue\":\"958130\",\"primaryLabelValue\":\"958130\"}},{\"attributeHeader\":{\"labelValue\":\"958132\",\"primaryLabelValue\":\"958132\"}},{\"attributeHeader\":{\"labelValue\":\"958134\",\"primaryLabelValue\":\"958134\"}},{\"attributeHeader\":{\"labelValue\":\"958136\",\"primaryLabelValue\":\"958136\"}},{\"attributeHeader\":{\"labelValue\":\"958138\",\"primaryLabelValue\":\"958138\"}},{\"attributeHeader\":{\"labelValue\":\"958140\",\"primaryLabelValue\":\"958140\"}},{\"attributeHeader\":{\"labelValue\":\"958150\",\"primaryLabelValue\":\"958150\"}},{\"attributeHeader\":{\"labelValue\":\"958152\",\"primaryLabelValue\":\"958152\"}},{\"attributeHeader\":{\"labelValue\":\"958156\",\"primaryLabelValue\":\"958156\"}},{\"attributeHeader\":{\"labelValue\":\"958158\",\"primaryLabelValue\":\"958158\"}},{\"attributeHeader\":{\"labelValue\":\"958162\",\"primaryLabelValue\":\"958162\"}},{\"attributeHeader\":{\"labelValue\":\"958166\",\"primaryLabelValue\":\"958166\"}},{\"attributeHeader\":{\"labelValue\":\"958168\",\"primaryLabelValue\":\"958168\"}},{\"attributeHeader\":{\"labelValue\":\"958172\",\"primaryLabelValue\":\"958172\"}},{\"attributeHeader\":{\"labelValue\":\"958174\",\"primaryLabelValue\":\"958174\"}},{\"attributeHeader\":{\"labelValue\":\"958176\",\"primaryLabelValue\":\"958176\"}},{\"attributeHeader\":{\"labelValue\":\"958180\",\"primaryLabelValue\":\"958180\"}},{\"attributeHeader\":{\"labelValue\":\"958184\",\"primaryLabelValue\":\"958184\"}},{\"attributeHeader\":{\"labelValue\":\"958186\",\"primaryLabelValue\":\"958186\"}},{\"attributeHeader\":{\"labelValue\":\"958188\",\"primaryLabelValue\":\"958188\"}},{\"attributeHeader\":{\"labelValue\":\"958190\",\"primaryLabelValue\":\"958190\"}},{\"attributeHeader\":{\"labelValue\":\"958192\",\"primaryLabelValue\":\"958192\"}},{\"attributeHeader\":{\"labelValue\":\"958194\",\"primaryLabelValue\":\"958194\"}},{\"attributeHeader\":{\"labelValue\":\"958196\",\"primaryLabelValue\":\"958196\"}},{\"attributeHeader\":{\"labelValue\":\"958198\",\"primaryLabelValue\":\"958198\"}},{\"attributeHeader\":{\"labelValue\":\"958200\",\"primaryLabelValue\":\"958200\"}},{\"attributeHeader\":{\"labelValue\":\"958202\",\"primaryLabelValue\":\"958202\"}},{\"attributeHeader\":{\"labelValue\":\"958204\",\"primaryLabelValue\":\"958204\"}},{\"attributeHeader\":{\"labelValue\":\"958206\",\"primaryLabelValue\":\"958206\"}},{\"attributeHeader\":{\"labelValue\":\"958208\",\"primaryLabelValue\":\"958208\"}},{\"attributeHeader\":{\"labelValue\":\"958210\",\"primaryLabelValue\":\"958210\"}},{\"attributeHeader\":{\"labelValue\":\"958212\",\"primaryLabelValue\":\"958212\"}},{\"attributeHeader\":{\"labelValue\":\"958214\",\"primaryLabelValue\":\"958214\"}},{\"attributeHeader\":{\"labelValue\":\"958216\",\"primaryLabelValue\":\"958216\"}},{\"attributeHeader\":{\"labelValue\":\"958218\",\"primaryLabelValue\":\"958218\"}},{\"attributeHeader\":{\"labelValue\":\"958220\",\"primaryLabelValue\":\"958220\"}},{\"attributeHeader\":{\"labelValue\":\"958222\",\"primaryLabelValue\":\"958222\"}},{\"attributeHeader\":{\"labelValue\":\"958224\",\"primaryLabelValue\":\"958224\"}},{\"attributeHeader\":{\"labelValue\":\"958226\",\"primaryLabelValue\":\"958226\"}},{\"attributeHeader\":{\"labelValue\":\"958228\",\"primaryLabelValue\":\"958228\"}},{\"attributeHeader\":{\"labelValue\":\"958230\",\"primaryLabelValue\":\"958230\"}},{\"attributeHeader\":{\"labelValue\":\"958232\",\"primaryLabelValue\":\"958232\"}},{\"attributeHeader\":{\"labelValue\":\"958234\",\"primaryLabelValue\":\"958234\"}},{\"attributeHeader\":{\"labelValue\":\"958236\",\"primaryLabelValue\":\"958236\"}},{\"attributeHeader\":{\"labelValue\":\"958238\",\"primaryLabelValue\":\"958238\"}},{\"attributeHeader\":{\"labelValue\":\"958240\",\"primaryLabelValue\":\"958240\"}},{\"attributeHeader\":{\"labelValue\":\"958242\",\"primaryLabelValue\":\"958242\"}},{\"attributeHeader\":{\"labelValue\":\"958244\",\"primaryLabelValue\":\"958244\"}},{\"attributeHeader\":{\"labelValue\":\"958246\",\"primaryLabelValue\":\"958246\"}},{\"attributeHeader\":{\"labelValue\":\"958248\",\"primaryLabelValue\":\"958248\"}},{\"attributeHeader\":{\"labelValue\":\"958250\",\"primaryLabelValue\":\"958250\"}},{\"attributeHeader\":{\"labelValue\":\"958252\",\"primaryLabelValue\":\"958252\"}},{\"attributeHeader\":{\"labelValue\":\"958254\",\"primaryLabelValue\":\"958254\"}},{\"attributeHeader\":{\"labelValue\":\"958256\",\"primaryLabelValue\":\"958256\"}},{\"attributeHeader\":{\"labelValue\":\"958258\",\"primaryLabelValue\":\"958258\"}},{\"attributeHeader\":{\"labelValue\":\"958260\",\"primaryLabelValue\":\"958260\"}},{\"attributeHeader\":{\"labelValue\":\"958262\",\"primaryLabelValue\":\"958262\"}},{\"attributeHeader\":{\"labelValue\":\"958266\",\"primaryLabelValue\":\"958266\"}},{\"attributeHeader\":{\"labelValue\":\"958268\",\"primaryLabelValue\":\"958268\"}},{\"attributeHeader\":{\"labelValue\":\"958270\",\"primaryLabelValue\":\"958270\"}},{\"attributeHeader\":{\"labelValue\":\"958272\",\"primaryLabelValue\":\"958272\"}},{\"attributeHeader\":{\"labelValue\":\"958274\",\"primaryLabelValue\":\"958274\"}},{\"attributeHeader\":{\"labelValue\":\"958276\",\"primaryLabelValue\":\"958276\"}},{\"attributeHeader\":{\"labelValue\":\"958278\",\"primaryLabelValue\":\"958278\"}},{\"attributeHeader\":{\"labelValue\":\"958280\",\"primaryLabelValue\":\"958280\"}},{\"attributeHeader\":{\"labelValue\":\"958282\",\"primaryLabelValue\":\"958282\"}},{\"attributeHeader\":{\"labelValue\":\"958284\",\"primaryLabelValue\":\"958284\"}},{\"attributeHeader\":{\"labelValue\":\"958286\",\"primaryLabelValue\":\"958286\"}},{\"attributeHeader\":{\"labelValue\":\"958288\",\"primaryLabelValue\":\"958288\"}},{\"attributeHeader\":{\"labelValue\":\"958290\",\"primaryLabelValue\":\"958290\"}},{\"attributeHeader\":{\"labelValue\":\"958292\",\"primaryLabelValue\":\"958292\"}},{\"attributeHeader\":{\"labelValue\":\"958296\",\"primaryLabelValue\":\"958296\"}},{\"attributeHeader\":{\"labelValue\":\"958298\",\"primaryLabelValue\":\"958298\"}},{\"attributeHeader\":{\"labelValue\":\"958300\",\"primaryLabelValue\":\"958300\"}},{\"attributeHeader\":{\"labelValue\":\"958302\",\"primaryLabelValue\":\"958302\"}},{\"attributeHeader\":{\"labelValue\":\"958304\",\"primaryLabelValue\":\"958304\"}},{\"attributeHeader\":{\"labelValue\":\"958306\",\"primaryLabelValue\":\"958306\"}},{\"attributeHeader\":{\"labelValue\":\"958308\",\"primaryLabelValue\":\"958308\"}},{\"attributeHeader\":{\"labelValue\":\"958310\",\"primaryLabelValue\":\"958310\"}},{\"attributeHeader\":{\"labelValue\":\"958312\",\"primaryLabelValue\":\"958312\"}},{\"attributeHeader\":{\"labelValue\":\"958314\",\"primaryLabelValue\":\"958314\"}},{\"attributeHeader\":{\"labelValue\":\"958316\",\"primaryLabelValue\":\"958316\"}},{\"attributeHeader\":{\"labelValue\":\"958318\",\"primaryLabelValue\":\"958318\"}},{\"attributeHeader\":{\"labelValue\":\"958322\",\"primaryLabelValue\":\"958322\"}},{\"attributeHeader\":{\"labelValue\":\"958324\",\"primaryLabelValue\":\"958324\"}},{\"attributeHeader\":{\"labelValue\":\"958326\",\"primaryLabelValue\":\"958326\"}},{\"attributeHeader\":{\"labelValue\":\"958328\",\"primaryLabelValue\":\"958328\"}},{\"attributeHeader\":{\"labelValue\":\"958330\",\"primaryLabelValue\":\"958330\"}},{\"attributeHeader\":{\"labelValue\":\"958332\",\"primaryLabelValue\":\"958332\"}},{\"attributeHeader\":{\"labelValue\":\"958334\",\"primaryLabelValue\":\"958334\"}},{\"attributeHeader\":{\"labelValue\":\"958336\",\"primaryLabelValue\":\"958336\"}},{\"attributeHeader\":{\"labelValue\":\"958338\",\"primaryLabelValue\":\"958338\"}},{\"attributeHeader\":{\"labelValue\":\"958340\",\"primaryLabelValue\":\"958340\"}},{\"attributeHeader\":{\"labelValue\":\"958342\",\"primaryLabelValue\":\"958342\"}},{\"attributeHeader\":{\"labelValue\":\"958344\",\"primaryLabelValue\":\"958344\"}},{\"attributeHeader\":{\"labelValue\":\"958346\",\"primaryLabelValue\":\"958346\"}},{\"attributeHeader\":{\"labelValue\":\"958348\",\"primaryLabelValue\":\"958348\"}},{\"attributeHeader\":{\"labelValue\":\"958350\",\"primaryLabelValue\":\"958350\"}},{\"attributeHeader\":{\"labelValue\":\"958354\",\"primaryLabelValue\":\"958354\"}},{\"attributeHeader\":{\"labelValue\":\"958356\",\"primaryLabelValue\":\"958356\"}},{\"attributeHeader\":{\"labelValue\":\"958360\",\"primaryLabelValue\":\"958360\"}},{\"attributeHeader\":{\"labelValue\":\"958364\",\"primaryLabelValue\":\"958364\"}},{\"attributeHeader\":{\"labelValue\":\"958366\",\"primaryLabelValue\":\"958366\"}},{\"attributeHeader\":{\"labelValue\":\"958368\",\"primaryLabelValue\":\"958368\"}},{\"attributeHeader\":{\"labelValue\":\"958370\",\"primaryLabelValue\":\"958370\"}},{\"attributeHeader\":{\"labelValue\":\"958372\",\"primaryLabelValue\":\"958372\"}},{\"attributeHeader\":{\"labelValue\":\"958374\",\"primaryLabelValue\":\"958374\"}},{\"attributeHeader\":{\"labelValue\":\"958376\",\"primaryLabelValue\":\"958376\"}},{\"attributeHeader\":{\"labelValue\":\"958378\",\"primaryLabelValue\":\"958378\"}},{\"attributeHeader\":{\"labelValue\":\"958380\",\"primaryLabelValue\":\"958380\"}},{\"attributeHeader\":{\"labelValue\":\"958382\",\"primaryLabelValue\":\"958382\"}},{\"attributeHeader\":{\"labelValue\":\"958384\",\"primaryLabelValue\":\"958384\"}},{\"attributeHeader\":{\"labelValue\":\"958386\",\"primaryLabelValue\":\"958386\"}},{\"attributeHeader\":{\"labelValue\":\"958388\",\"primaryLabelValue\":\"958388\"}},{\"attributeHeader\":{\"labelValue\":\"958390\",\"primaryLabelValue\":\"958390\"}},{\"attributeHeader\":{\"labelValue\":\"958392\",\"primaryLabelValue\":\"958392\"}},{\"attributeHeader\":{\"labelValue\":\"958396\",\"primaryLabelValue\":\"958396\"}},{\"attributeHeader\":{\"labelValue\":\"958398\",\"primaryLabelValue\":\"958398\"}},{\"attributeHeader\":{\"labelValue\":\"958400\",\"primaryLabelValue\":\"958400\"}},{\"attributeHeader\":{\"labelValue\":\"958402\",\"primaryLabelValue\":\"958402\"}},{\"attributeHeader\":{\"labelValue\":\"958404\",\"primaryLabelValue\":\"958404\"}},{\"attributeHeader\":{\"labelValue\":\"958406\",\"primaryLabelValue\":\"958406\"}},{\"attributeHeader\":{\"labelValue\":\"958408\",\"primaryLabelValue\":\"958408\"}},{\"attributeHeader\":{\"labelValue\":\"958410\",\"primaryLabelValue\":\"958410\"}},{\"attributeHeader\":{\"labelValue\":\"958412\",\"primaryLabelValue\":\"958412\"}},{\"attributeHeader\":{\"labelValue\":\"958414\",\"primaryLabelValue\":\"958414\"}},{\"attributeHeader\":{\"labelValue\":\"958416\",\"primaryLabelValue\":\"958416\"}},{\"attributeHeader\":{\"labelValue\":\"958418\",\"primaryLabelValue\":\"958418\"}},{\"attributeHeader\":{\"labelValue\":\"958420\",\"primaryLabelValue\":\"958420\"}},{\"attributeHeader\":{\"labelValue\":\"958424\",\"primaryLabelValue\":\"958424\"}},{\"attributeHeader\":{\"labelValue\":\"958426\",\"primaryLabelValue\":\"958426\"}},{\"attributeHeader\":{\"labelValue\":\"958428\",\"primaryLabelValue\":\"958428\"}},{\"attributeHeader\":{\"labelValue\":\"958430\",\"primaryLabelValue\":\"958430\"}},{\"attributeHeader\":{\"labelValue\":\"958432\",\"primaryLabelValue\":\"958432\"}},{\"attributeHeader\":{\"labelValue\":\"958434\",\"primaryLabelValue\":\"958434\"}},{\"attributeHeader\":{\"labelValue\":\"958436\",\"primaryLabelValue\":\"958436\"}},{\"attributeHeader\":{\"labelValue\":\"958438\",\"primaryLabelValue\":\"958438\"}},{\"attributeHeader\":{\"labelValue\":\"958440\",\"primaryLabelValue\":\"958440\"}},{\"attributeHeader\":{\"labelValue\":\"958442\",\"primaryLabelValue\":\"958442\"}},{\"attributeHeader\":{\"labelValue\":\"958444\",\"primaryLabelValue\":\"958444\"}},{\"attributeHeader\":{\"labelValue\":\"958446\",\"primaryLabelValue\":\"958446\"}},{\"attributeHeader\":{\"labelValue\":\"958448\",\"primaryLabelValue\":\"958448\"}},{\"attributeHeader\":{\"labelValue\":\"958450\",\"primaryLabelValue\":\"958450\"}},{\"attributeHeader\":{\"labelValue\":\"958452\",\"primaryLabelValue\":\"958452\"}},{\"attributeHeader\":{\"labelValue\":\"958454\",\"primaryLabelValue\":\"958454\"}},{\"attributeHeader\":{\"labelValue\":\"958456\",\"primaryLabelValue\":\"958456\"}},{\"attributeHeader\":{\"labelValue\":\"958458\",\"primaryLabelValue\":\"958458\"}},{\"attributeHeader\":{\"labelValue\":\"958460\",\"primaryLabelValue\":\"958460\"}},{\"attributeHeader\":{\"labelValue\":\"958462\",\"primaryLabelValue\":\"958462\"}},{\"attributeHeader\":{\"labelValue\":\"958464\",\"primaryLabelValue\":\"958464\"}},{\"attributeHeader\":{\"labelValue\":\"958466\",\"primaryLabelValue\":\"958466\"}},{\"attributeHeader\":{\"labelValue\":\"958468\",\"primaryLabelValue\":\"958468\"}},{\"attributeHeader\":{\"labelValue\":\"958472\",\"primaryLabelValue\":\"958472\"}},{\"attributeHeader\":{\"labelValue\":\"958474\",\"primaryLabelValue\":\"958474\"}},{\"attributeHeader\":{\"labelValue\":\"958476\",\"primaryLabelValue\":\"958476\"}},{\"attributeHeader\":{\"labelValue\":\"958478\",\"primaryLabelValue\":\"958478\"}},{\"attributeHeader\":{\"labelValue\":\"958480\",\"primaryLabelValue\":\"958480\"}},{\"attributeHeader\":{\"labelValue\":\"958482\",\"primaryLabelValue\":\"958482\"}},{\"attributeHeader\":{\"labelValue\":\"958484\",\"primaryLabelValue\":\"958484\"}},{\"attributeHeader\":{\"labelValue\":\"958486\",\"primaryLabelValue\":\"958486\"}},{\"attributeHeader\":{\"labelValue\":\"958488\",\"primaryLabelValue\":\"958488\"}},{\"attributeHeader\":{\"labelValue\":\"958490\",\"primaryLabelValue\":\"958490\"}},{\"attributeHeader\":{\"labelValue\":\"958492\",\"primaryLabelValue\":\"958492\"}},{\"attributeHeader\":{\"labelValue\":\"958494\",\"primaryLabelValue\":\"958494\"}},{\"attributeHeader\":{\"labelValue\":\"958496\",\"primaryLabelValue\":\"958496\"}},{\"attributeHeader\":{\"labelValue\":\"958498\",\"primaryLabelValue\":\"958498\"}},{\"attributeHeader\":{\"labelValue\":\"958504\",\"primaryLabelValue\":\"958504\"}},{\"attributeHeader\":{\"labelValue\":\"958506\",\"primaryLabelValue\":\"958506\"}},{\"attributeHeader\":{\"labelValue\":\"958510\",\"primaryLabelValue\":\"958510\"}},{\"attributeHeader\":{\"labelValue\":\"958512\",\"primaryLabelValue\":\"958512\"}},{\"attributeHeader\":{\"labelValue\":\"958514\",\"primaryLabelValue\":\"958514\"}},{\"attributeHeader\":{\"labelValue\":\"958516\",\"primaryLabelValue\":\"958516\"}},{\"attributeHeader\":{\"labelValue\":\"958518\",\"primaryLabelValue\":\"958518\"}},{\"attributeHeader\":{\"labelValue\":\"958520\",\"primaryLabelValue\":\"958520\"}},{\"attributeHeader\":{\"labelValue\":\"958522\",\"primaryLabelValue\":\"958522\"}},{\"attributeHeader\":{\"labelValue\":\"958524\",\"primaryLabelValue\":\"958524\"}},{\"attributeHeader\":{\"labelValue\":\"958526\",\"primaryLabelValue\":\"958526\"}},{\"attributeHeader\":{\"labelValue\":\"958528\",\"primaryLabelValue\":\"958528\"}},{\"attributeHeader\":{\"labelValue\":\"958530\",\"primaryLabelValue\":\"958530\"}},{\"attributeHeader\":{\"labelValue\":\"958532\",\"primaryLabelValue\":\"958532\"}},{\"attributeHeader\":{\"labelValue\":\"958534\",\"primaryLabelValue\":\"958534\"}},{\"attributeHeader\":{\"labelValue\":\"958536\",\"primaryLabelValue\":\"958536\"}},{\"attributeHeader\":{\"labelValue\":\"958538\",\"primaryLabelValue\":\"958538\"}},{\"attributeHeader\":{\"labelValue\":\"958540\",\"primaryLabelValue\":\"958540\"}},{\"attributeHeader\":{\"labelValue\":\"958542\",\"primaryLabelValue\":\"958542\"}},{\"attributeHeader\":{\"labelValue\":\"958544\",\"primaryLabelValue\":\"958544\"}},{\"attributeHeader\":{\"labelValue\":\"958546\",\"primaryLabelValue\":\"958546\"}},{\"attributeHeader\":{\"labelValue\":\"958548\",\"primaryLabelValue\":\"958548\"}},{\"attributeHeader\":{\"labelValue\":\"958550\",\"primaryLabelValue\":\"958550\"}},{\"attributeHeader\":{\"labelValue\":\"958552\",\"primaryLabelValue\":\"958552\"}},{\"attributeHeader\":{\"labelValue\":\"958554\",\"primaryLabelValue\":\"958554\"}},{\"attributeHeader\":{\"labelValue\":\"958556\",\"primaryLabelValue\":\"958556\"}},{\"attributeHeader\":{\"labelValue\":\"958558\",\"primaryLabelValue\":\"958558\"}},{\"attributeHeader\":{\"labelValue\":\"958560\",\"primaryLabelValue\":\"958560\"}},{\"attributeHeader\":{\"labelValue\":\"958564\",\"primaryLabelValue\":\"958564\"}},{\"attributeHeader\":{\"labelValue\":\"958566\",\"primaryLabelValue\":\"958566\"}},{\"attributeHeader\":{\"labelValue\":\"958568\",\"primaryLabelValue\":\"958568\"}},{\"attributeHeader\":{\"labelValue\":\"958570\",\"primaryLabelValue\":\"958570\"}},{\"attributeHeader\":{\"labelValue\":\"958572\",\"primaryLabelValue\":\"958572\"}},{\"attributeHeader\":{\"labelValue\":\"958574\",\"primaryLabelValue\":\"958574\"}},{\"attributeHeader\":{\"labelValue\":\"958576\",\"primaryLabelValue\":\"958576\"}},{\"attributeHeader\":{\"labelValue\":\"958578\",\"primaryLabelValue\":\"958578\"}},{\"attributeHeader\":{\"labelValue\":\"958580\",\"primaryLabelValue\":\"958580\"}},{\"attributeHeader\":{\"labelValue\":\"958582\",\"primaryLabelValue\":\"958582\"}},{\"attributeHeader\":{\"labelValue\":\"958584\",\"primaryLabelValue\":\"958584\"}},{\"attributeHeader\":{\"labelValue\":\"958586\",\"primaryLabelValue\":\"958586\"}},{\"attributeHeader\":{\"labelValue\":\"958588\",\"primaryLabelValue\":\"958588\"}},{\"attributeHeader\":{\"labelValue\":\"958590\",\"primaryLabelValue\":\"958590\"}},{\"attributeHeader\":{\"labelValue\":\"958592\",\"primaryLabelValue\":\"958592\"}},{\"attributeHeader\":{\"labelValue\":\"958594\",\"primaryLabelValue\":\"958594\"}},{\"attributeHeader\":{\"labelValue\":\"958596\",\"primaryLabelValue\":\"958596\"}},{\"attributeHeader\":{\"labelValue\":\"958598\",\"primaryLabelValue\":\"958598\"}},{\"attributeHeader\":{\"labelValue\":\"958600\",\"primaryLabelValue\":\"958600\"}},{\"attributeHeader\":{\"labelValue\":\"958602\",\"primaryLabelValue\":\"958602\"}},{\"attributeHeader\":{\"labelValue\":\"958604\",\"primaryLabelValue\":\"958604\"}},{\"attributeHeader\":{\"labelValue\":\"958606\",\"primaryLabelValue\":\"958606\"}},{\"attributeHeader\":{\"labelValue\":\"958608\",\"primaryLabelValue\":\"958608\"}},{\"attributeHeader\":{\"labelValue\":\"958610\",\"primaryLabelValue\":\"958610\"}},{\"attributeHeader\":{\"labelValue\":\"958612\",\"primaryLabelValue\":\"958612\"}},{\"attributeHeader\":{\"labelValue\":\"958614\",\"primaryLabelValue\":\"958614\"}},{\"attributeHeader\":{\"labelValue\":\"958616\",\"primaryLabelValue\":\"958616\"}},{\"attributeHeader\":{\"labelValue\":\"958618\",\"primaryLabelValue\":\"958618\"}},{\"attributeHeader\":{\"labelValue\":\"958620\",\"primaryLabelValue\":\"958620\"}},{\"attributeHeader\":{\"labelValue\":\"958622\",\"primaryLabelValue\":\"958622\"}},{\"attributeHeader\":{\"labelValue\":\"958624\",\"primaryLabelValue\":\"958624\"}},{\"attributeHeader\":{\"labelValue\":\"958626\",\"primaryLabelValue\":\"958626\"}},{\"attributeHeader\":{\"labelValue\":\"958628\",\"primaryLabelValue\":\"958628\"}},{\"attributeHeader\":{\"labelValue\":\"958630\",\"primaryLabelValue\":\"958630\"}},{\"attributeHeader\":{\"labelValue\":\"958632\",\"primaryLabelValue\":\"958632\"}},{\"attributeHeader\":{\"labelValue\":\"958634\",\"primaryLabelValue\":\"958634\"}},{\"attributeHeader\":{\"labelValue\":\"958636\",\"primaryLabelValue\":\"958636\"}},{\"attributeHeader\":{\"labelValue\":\"958638\",\"primaryLabelValue\":\"958638\"}},{\"attributeHeader\":{\"labelValue\":\"958640\",\"primaryLabelValue\":\"958640\"}},{\"attributeHeader\":{\"labelValue\":\"958642\",\"primaryLabelValue\":\"958642\"}},{\"attributeHeader\":{\"labelValue\":\"958644\",\"primaryLabelValue\":\"958644\"}},{\"attributeHeader\":{\"labelValue\":\"958646\",\"primaryLabelValue\":\"958646\"}},{\"attributeHeader\":{\"labelValue\":\"958648\",\"primaryLabelValue\":\"958648\"}},{\"attributeHeader\":{\"labelValue\":\"958650\",\"primaryLabelValue\":\"958650\"}},{\"attributeHeader\":{\"labelValue\":\"958652\",\"primaryLabelValue\":\"958652\"}},{\"attributeHeader\":{\"labelValue\":\"958654\",\"primaryLabelValue\":\"958654\"}},{\"attributeHeader\":{\"labelValue\":\"958656\",\"primaryLabelValue\":\"958656\"}},{\"attributeHeader\":{\"labelValue\":\"958658\",\"primaryLabelValue\":\"958658\"}},{\"attributeHeader\":{\"labelValue\":\"958660\",\"primaryLabelValue\":\"958660\"}},{\"attributeHeader\":{\"labelValue\":\"958662\",\"primaryLabelValue\":\"958662\"}},{\"attributeHeader\":{\"labelValue\":\"958664\",\"primaryLabelValue\":\"958664\"}},{\"attributeHeader\":{\"labelValue\":\"958666\",\"primaryLabelValue\":\"958666\"}},{\"attributeHeader\":{\"labelValue\":\"958668\",\"primaryLabelValue\":\"958668\"}},{\"attributeHeader\":{\"labelValue\":\"958670\",\"primaryLabelValue\":\"958670\"}},{\"attributeHeader\":{\"labelValue\":\"958672\",\"primaryLabelValue\":\"958672\"}},{\"attributeHeader\":{\"labelValue\":\"958674\",\"primaryLabelValue\":\"958674\"}},{\"attributeHeader\":{\"labelValue\":\"958676\",\"primaryLabelValue\":\"958676\"}},{\"attributeHeader\":{\"labelValue\":\"958678\",\"primaryLabelValue\":\"958678\"}},{\"attributeHeader\":{\"labelValue\":\"958680\",\"primaryLabelValue\":\"958680\"}},{\"attributeHeader\":{\"labelValue\":\"958682\",\"primaryLabelValue\":\"958682\"}},{\"attributeHeader\":{\"labelValue\":\"958684\",\"primaryLabelValue\":\"958684\"}},{\"attributeHeader\":{\"labelValue\":\"958686\",\"primaryLabelValue\":\"958686\"}},{\"attributeHeader\":{\"labelValue\":\"958688\",\"primaryLabelValue\":\"958688\"}},{\"attributeHeader\":{\"labelValue\":\"958690\",\"primaryLabelValue\":\"958690\"}},{\"attributeHeader\":{\"labelValue\":\"958692\",\"primaryLabelValue\":\"958692\"}},{\"attributeHeader\":{\"labelValue\":\"958694\",\"primaryLabelValue\":\"958694\"}},{\"attributeHeader\":{\"labelValue\":\"958696\",\"primaryLabelValue\":\"958696\"}},{\"attributeHeader\":{\"labelValue\":\"958698\",\"primaryLabelValue\":\"958698\"}},{\"attributeHeader\":{\"labelValue\":\"958700\",\"primaryLabelValue\":\"958700\"}},{\"attributeHeader\":{\"labelValue\":\"958702\",\"primaryLabelValue\":\"958702\"}},{\"attributeHeader\":{\"labelValue\":\"958704\",\"primaryLabelValue\":\"958704\"}},{\"attributeHeader\":{\"labelValue\":\"958706\",\"primaryLabelValue\":\"958706\"}},{\"attributeHeader\":{\"labelValue\":\"958708\",\"primaryLabelValue\":\"958708\"}},{\"attributeHeader\":{\"labelValue\":\"958710\",\"primaryLabelValue\":\"958710\"}},{\"attributeHeader\":{\"labelValue\":\"958712\",\"primaryLabelValue\":\"958712\"}},{\"attributeHeader\":{\"labelValue\":\"958714\",\"primaryLabelValue\":\"958714\"}},{\"attributeHeader\":{\"labelValue\":\"958716\",\"primaryLabelValue\":\"958716\"}},{\"attributeHeader\":{\"labelValue\":\"958718\",\"primaryLabelValue\":\"958718\"}},{\"attributeHeader\":{\"labelValue\":\"958720\",\"primaryLabelValue\":\"958720\"}},{\"attributeHeader\":{\"labelValue\":\"958722\",\"primaryLabelValue\":\"958722\"}},{\"attributeHeader\":{\"labelValue\":\"958724\",\"primaryLabelValue\":\"958724\"}},{\"attributeHeader\":{\"labelValue\":\"958726\",\"primaryLabelValue\":\"958726\"}},{\"attributeHeader\":{\"labelValue\":\"958728\",\"primaryLabelValue\":\"958728\"}},{\"attributeHeader\":{\"labelValue\":\"958730\",\"primaryLabelValue\":\"958730\"}},{\"attributeHeader\":{\"labelValue\":\"958732\",\"primaryLabelValue\":\"958732\"}},{\"attributeHeader\":{\"labelValue\":\"958734\",\"primaryLabelValue\":\"958734\"}},{\"attributeHeader\":{\"labelValue\":\"958736\",\"primaryLabelValue\":\"958736\"}},{\"attributeHeader\":{\"labelValue\":\"958738\",\"primaryLabelValue\":\"958738\"}},{\"attributeHeader\":{\"labelValue\":\"958740\",\"primaryLabelValue\":\"958740\"}},{\"attributeHeader\":{\"labelValue\":\"958742\",\"primaryLabelValue\":\"958742\"}},{\"attributeHeader\":{\"labelValue\":\"958744\",\"primaryLabelValue\":\"958744\"}},{\"attributeHeader\":{\"labelValue\":\"958746\",\"primaryLabelValue\":\"958746\"}},{\"attributeHeader\":{\"labelValue\":\"958748\",\"primaryLabelValue\":\"958748\"}},{\"attributeHeader\":{\"labelValue\":\"958750\",\"primaryLabelValue\":\"958750\"}},{\"attributeHeader\":{\"labelValue\":\"958752\",\"primaryLabelValue\":\"958752\"}},{\"attributeHeader\":{\"labelValue\":\"958754\",\"primaryLabelValue\":\"958754\"}},{\"attributeHeader\":{\"labelValue\":\"958756\",\"primaryLabelValue\":\"958756\"}},{\"attributeHeader\":{\"labelValue\":\"958758\",\"primaryLabelValue\":\"958758\"}},{\"attributeHeader\":{\"labelValue\":\"958760\",\"primaryLabelValue\":\"958760\"}},{\"attributeHeader\":{\"labelValue\":\"958762\",\"primaryLabelValue\":\"958762\"}},{\"attributeHeader\":{\"labelValue\":\"958764\",\"primaryLabelValue\":\"958764\"}},{\"attributeHeader\":{\"labelValue\":\"958766\",\"primaryLabelValue\":\"958766\"}},{\"attributeHeader\":{\"labelValue\":\"958768\",\"primaryLabelValue\":\"958768\"}},{\"attributeHeader\":{\"labelValue\":\"958770\",\"primaryLabelValue\":\"958770\"}},{\"attributeHeader\":{\"labelValue\":\"958772\",\"primaryLabelValue\":\"958772\"}},{\"attributeHeader\":{\"labelValue\":\"958774\",\"primaryLabelValue\":\"958774\"}},{\"attributeHeader\":{\"labelValue\":\"958776\",\"primaryLabelValue\":\"958776\"}},{\"attributeHeader\":{\"labelValue\":\"958778\",\"primaryLabelValue\":\"958778\"}},{\"attributeHeader\":{\"labelValue\":\"958780\",\"primaryLabelValue\":\"958780\"}},{\"attributeHeader\":{\"labelValue\":\"958782\",\"primaryLabelValue\":\"958782\"}},{\"attributeHeader\":{\"labelValue\":\"958784\",\"primaryLabelValue\":\"958784\"}},{\"attributeHeader\":{\"labelValue\":\"958786\",\"primaryLabelValue\":\"958786\"}},{\"attributeHeader\":{\"labelValue\":\"958788\",\"primaryLabelValue\":\"958788\"}},{\"attributeHeader\":{\"labelValue\":\"958790\",\"primaryLabelValue\":\"958790\"}},{\"attributeHeader\":{\"labelValue\":\"958792\",\"primaryLabelValue\":\"958792\"}},{\"attributeHeader\":{\"labelValue\":\"958794\",\"primaryLabelValue\":\"958794\"}},{\"attributeHeader\":{\"labelValue\":\"958796\",\"primaryLabelValue\":\"958796\"}},{\"attributeHeader\":{\"labelValue\":\"958798\",\"primaryLabelValue\":\"958798\"}},{\"attributeHeader\":{\"labelValue\":\"958800\",\"primaryLabelValue\":\"958800\"}},{\"attributeHeader\":{\"labelValue\":\"958802\",\"primaryLabelValue\":\"958802\"}},{\"attributeHeader\":{\"labelValue\":\"958804\",\"primaryLabelValue\":\"958804\"}},{\"attributeHeader\":{\"labelValue\":\"958806\",\"primaryLabelValue\":\"958806\"}},{\"attributeHeader\":{\"labelValue\":\"958808\",\"primaryLabelValue\":\"958808\"}},{\"attributeHeader\":{\"labelValue\":\"958810\",\"primaryLabelValue\":\"958810\"}},{\"attributeHeader\":{\"labelValue\":\"958812\",\"primaryLabelValue\":\"958812\"}},{\"attributeHeader\":{\"labelValue\":\"958814\",\"primaryLabelValue\":\"958814\"}},{\"attributeHeader\":{\"labelValue\":\"958816\",\"primaryLabelValue\":\"958816\"}},{\"attributeHeader\":{\"labelValue\":\"958818\",\"primaryLabelValue\":\"958818\"}},{\"attributeHeader\":{\"labelValue\":\"958820\",\"primaryLabelValue\":\"958820\"}},{\"attributeHeader\":{\"labelValue\":\"958822\",\"primaryLabelValue\":\"958822\"}},{\"attributeHeader\":{\"labelValue\":\"958824\",\"primaryLabelValue\":\"958824\"}},{\"attributeHeader\":{\"labelValue\":\"958826\",\"primaryLabelValue\":\"958826\"}},{\"attributeHeader\":{\"labelValue\":\"958828\",\"primaryLabelValue\":\"958828\"}},{\"attributeHeader\":{\"labelValue\":\"958830\",\"primaryLabelValue\":\"958830\"}},{\"attributeHeader\":{\"labelValue\":\"958834\",\"primaryLabelValue\":\"958834\"}},{\"attributeHeader\":{\"labelValue\":\"958836\",\"primaryLabelValue\":\"958836\"}},{\"attributeHeader\":{\"labelValue\":\"958838\",\"primaryLabelValue\":\"958838\"}},{\"attributeHeader\":{\"labelValue\":\"958840\",\"primaryLabelValue\":\"958840\"}},{\"attributeHeader\":{\"labelValue\":\"958842\",\"primaryLabelValue\":\"958842\"}},{\"attributeHeader\":{\"labelValue\":\"958844\",\"primaryLabelValue\":\"958844\"}},{\"attributeHeader\":{\"labelValue\":\"958846\",\"primaryLabelValue\":\"958846\"}},{\"attributeHeader\":{\"labelValue\":\"958848\",\"primaryLabelValue\":\"958848\"}},{\"attributeHeader\":{\"labelValue\":\"958850\",\"primaryLabelValue\":\"958850\"}},{\"attributeHeader\":{\"labelValue\":\"958852\",\"primaryLabelValue\":\"958852\"}},{\"attributeHeader\":{\"labelValue\":\"958854\",\"primaryLabelValue\":\"958854\"}},{\"attributeHeader\":{\"labelValue\":\"958856\",\"primaryLabelValue\":\"958856\"}},{\"attributeHeader\":{\"labelValue\":\"958858\",\"primaryLabelValue\":\"958858\"}},{\"attributeHeader\":{\"labelValue\":\"958860\",\"primaryLabelValue\":\"958860\"}},{\"attributeHeader\":{\"labelValue\":\"958862\",\"primaryLabelValue\":\"958862\"}},{\"attributeHeader\":{\"labelValue\":\"958864\",\"primaryLabelValue\":\"958864\"}},{\"attributeHeader\":{\"labelValue\":\"958866\",\"primaryLabelValue\":\"958866\"}},{\"attributeHeader\":{\"labelValue\":\"958868\",\"primaryLabelValue\":\"958868\"}},{\"attributeHeader\":{\"labelValue\":\"958870\",\"primaryLabelValue\":\"958870\"}},{\"attributeHeader\":{\"labelValue\":\"958872\",\"primaryLabelValue\":\"958872\"}},{\"attributeHeader\":{\"labelValue\":\"958874\",\"primaryLabelValue\":\"958874\"}},{\"attributeHeader\":{\"labelValue\":\"958876\",\"primaryLabelValue\":\"958876\"}},{\"attributeHeader\":{\"labelValue\":\"958878\",\"primaryLabelValue\":\"958878\"}},{\"attributeHeader\":{\"labelValue\":\"958880\",\"primaryLabelValue\":\"958880\"}},{\"attributeHeader\":{\"labelValue\":\"958882\",\"primaryLabelValue\":\"958882\"}},{\"attributeHeader\":{\"labelValue\":\"958884\",\"primaryLabelValue\":\"958884\"}},{\"attributeHeader\":{\"labelValue\":\"958886\",\"primaryLabelValue\":\"958886\"}},{\"attributeHeader\":{\"labelValue\":\"958888\",\"primaryLabelValue\":\"958888\"}},{\"attributeHeader\":{\"labelValue\":\"958890\",\"primaryLabelValue\":\"958890\"}},{\"attributeHeader\":{\"labelValue\":\"958892\",\"primaryLabelValue\":\"958892\"}},{\"attributeHeader\":{\"labelValue\":\"958894\",\"primaryLabelValue\":\"958894\"}},{\"attributeHeader\":{\"labelValue\":\"958896\",\"primaryLabelValue\":\"958896\"}},{\"attributeHeader\":{\"labelValue\":\"958898\",\"primaryLabelValue\":\"958898\"}},{\"attributeHeader\":{\"labelValue\":\"958900\",\"primaryLabelValue\":\"958900\"}},{\"attributeHeader\":{\"labelValue\":\"958902\",\"primaryLabelValue\":\"958902\"}},{\"attributeHeader\":{\"labelValue\":\"958904\",\"primaryLabelValue\":\"958904\"}},{\"attributeHeader\":{\"labelValue\":\"958906\",\"primaryLabelValue\":\"958906\"}},{\"attributeHeader\":{\"labelValue\":\"958908\",\"primaryLabelValue\":\"958908\"}},{\"attributeHeader\":{\"labelValue\":\"958910\",\"primaryLabelValue\":\"958910\"}},{\"attributeHeader\":{\"labelValue\":\"958912\",\"primaryLabelValue\":\"958912\"}},{\"attributeHeader\":{\"labelValue\":\"958914\",\"primaryLabelValue\":\"958914\"}},{\"attributeHeader\":{\"labelValue\":\"958916\",\"primaryLabelValue\":\"958916\"}},{\"attributeHeader\":{\"labelValue\":\"958918\",\"primaryLabelValue\":\"958918\"}},{\"attributeHeader\":{\"labelValue\":\"958920\",\"primaryLabelValue\":\"958920\"}},{\"attributeHeader\":{\"labelValue\":\"958922\",\"primaryLabelValue\":\"958922\"}},{\"attributeHeader\":{\"labelValue\":\"958924\",\"primaryLabelValue\":\"958924\"}},{\"attributeHeader\":{\"labelValue\":\"958926\",\"primaryLabelValue\":\"958926\"}},{\"attributeHeader\":{\"labelValue\":\"958928\",\"primaryLabelValue\":\"958928\"}},{\"attributeHeader\":{\"labelValue\":\"958930\",\"primaryLabelValue\":\"958930\"}},{\"attributeHeader\":{\"labelValue\":\"958932\",\"primaryLabelValue\":\"958932\"}},{\"attributeHeader\":{\"labelValue\":\"958934\",\"primaryLabelValue\":\"958934\"}},{\"attributeHeader\":{\"labelValue\":\"958936\",\"primaryLabelValue\":\"958936\"}},{\"attributeHeader\":{\"labelValue\":\"958938\",\"primaryLabelValue\":\"958938\"}},{\"attributeHeader\":{\"labelValue\":\"958940\",\"primaryLabelValue\":\"958940\"}},{\"attributeHeader\":{\"labelValue\":\"958942\",\"primaryLabelValue\":\"958942\"}},{\"attributeHeader\":{\"labelValue\":\"958944\",\"primaryLabelValue\":\"958944\"}},{\"attributeHeader\":{\"labelValue\":\"958946\",\"primaryLabelValue\":\"958946\"}},{\"attributeHeader\":{\"labelValue\":\"958948\",\"primaryLabelValue\":\"958948\"}},{\"attributeHeader\":{\"labelValue\":\"958950\",\"primaryLabelValue\":\"958950\"}},{\"attributeHeader\":{\"labelValue\":\"958952\",\"primaryLabelValue\":\"958952\"}},{\"attributeHeader\":{\"labelValue\":\"958954\",\"primaryLabelValue\":\"958954\"}},{\"attributeHeader\":{\"labelValue\":\"958956\",\"primaryLabelValue\":\"958956\"}},{\"attributeHeader\":{\"labelValue\":\"958958\",\"primaryLabelValue\":\"958958\"}},{\"attributeHeader\":{\"labelValue\":\"958960\",\"primaryLabelValue\":\"958960\"}},{\"attributeHeader\":{\"labelValue\":\"958962\",\"primaryLabelValue\":\"958962\"}},{\"attributeHeader\":{\"labelValue\":\"958964\",\"primaryLabelValue\":\"958964\"}},{\"attributeHeader\":{\"labelValue\":\"958966\",\"primaryLabelValue\":\"958966\"}},{\"attributeHeader\":{\"labelValue\":\"958968\",\"primaryLabelValue\":\"958968\"}},{\"attributeHeader\":{\"labelValue\":\"958970\",\"primaryLabelValue\":\"958970\"}},{\"attributeHeader\":{\"labelValue\":\"958972\",\"primaryLabelValue\":\"958972\"}},{\"attributeHeader\":{\"labelValue\":\"958974\",\"primaryLabelValue\":\"958974\"}},{\"attributeHeader\":{\"labelValue\":\"958976\",\"primaryLabelValue\":\"958976\"}},{\"attributeHeader\":{\"labelValue\":\"958978\",\"primaryLabelValue\":\"958978\"}},{\"attributeHeader\":{\"labelValue\":\"958980\",\"primaryLabelValue\":\"958980\"}},{\"attributeHeader\":{\"labelValue\":\"958982\",\"primaryLabelValue\":\"958982\"}},{\"attributeHeader\":{\"labelValue\":\"958984\",\"primaryLabelValue\":\"958984\"}},{\"attributeHeader\":{\"labelValue\":\"958986\",\"primaryLabelValue\":\"958986\"}},{\"attributeHeader\":{\"labelValue\":\"958988\",\"primaryLabelValue\":\"958988\"}},{\"attributeHeader\":{\"labelValue\":\"958990\",\"primaryLabelValue\":\"958990\"}},{\"attributeHeader\":{\"labelValue\":\"958992\",\"primaryLabelValue\":\"958992\"}},{\"attributeHeader\":{\"labelValue\":\"958994\",\"primaryLabelValue\":\"958994\"}},{\"attributeHeader\":{\"labelValue\":\"958996\",\"primaryLabelValue\":\"958996\"}},{\"attributeHeader\":{\"labelValue\":\"958998\",\"primaryLabelValue\":\"958998\"}},{\"attributeHeader\":{\"labelValue\":\"959000\",\"primaryLabelValue\":\"959000\"}},{\"attributeHeader\":{\"labelValue\":\"959002\",\"primaryLabelValue\":\"959002\"}},{\"attributeHeader\":{\"labelValue\":\"959004\",\"primaryLabelValue\":\"959004\"}},{\"attributeHeader\":{\"labelValue\":\"959006\",\"primaryLabelValue\":\"959006\"}},{\"attributeHeader\":{\"labelValue\":\"959008\",\"primaryLabelValue\":\"959008\"}},{\"attributeHeader\":{\"labelValue\":\"959010\",\"primaryLabelValue\":\"959010\"}},{\"attributeHeader\":{\"labelValue\":\"959012\",\"primaryLabelValue\":\"959012\"}},{\"attributeHeader\":{\"labelValue\":\"959014\",\"primaryLabelValue\":\"959014\"}},{\"attributeHeader\":{\"labelValue\":\"959016\",\"primaryLabelValue\":\"959016\"}},{\"attributeHeader\":{\"labelValue\":\"959018\",\"primaryLabelValue\":\"959018\"}},{\"attributeHeader\":{\"labelValue\":\"959020\",\"primaryLabelValue\":\"959020\"}},{\"attributeHeader\":{\"labelValue\":\"959022\",\"primaryLabelValue\":\"959022\"}},{\"attributeHeader\":{\"labelValue\":\"959024\",\"primaryLabelValue\":\"959024\"}},{\"attributeHeader\":{\"labelValue\":\"959026\",\"primaryLabelValue\":\"959026\"}},{\"attributeHeader\":{\"labelValue\":\"959028\",\"primaryLabelValue\":\"959028\"}},{\"attributeHeader\":{\"labelValue\":\"959030\",\"primaryLabelValue\":\"959030\"}},{\"attributeHeader\":{\"labelValue\":\"959032\",\"primaryLabelValue\":\"959032\"}},{\"attributeHeader\":{\"labelValue\":\"959034\",\"primaryLabelValue\":\"959034\"}},{\"attributeHeader\":{\"labelValue\":\"959036\",\"primaryLabelValue\":\"959036\"}},{\"attributeHeader\":{\"labelValue\":\"959038\",\"primaryLabelValue\":\"959038\"}},{\"attributeHeader\":{\"labelValue\":\"959040\",\"primaryLabelValue\":\"959040\"}},{\"attributeHeader\":{\"labelValue\":\"959042\",\"primaryLabelValue\":\"959042\"}},{\"attributeHeader\":{\"labelValue\":\"959044\",\"primaryLabelValue\":\"959044\"}},{\"attributeHeader\":{\"labelValue\":\"959046\",\"primaryLabelValue\":\"959046\"}},{\"attributeHeader\":{\"labelValue\":\"959048\",\"primaryLabelValue\":\"959048\"}},{\"attributeHeader\":{\"labelValue\":\"959050\",\"primaryLabelValue\":\"959050\"}},{\"attributeHeader\":{\"labelValue\":\"959052\",\"primaryLabelValue\":\"959052\"}},{\"attributeHeader\":{\"labelValue\":\"959054\",\"primaryLabelValue\":\"959054\"}},{\"attributeHeader\":{\"labelValue\":\"959056\",\"primaryLabelValue\":\"959056\"}},{\"attributeHeader\":{\"labelValue\":\"959058\",\"primaryLabelValue\":\"959058\"}},{\"attributeHeader\":{\"labelValue\":\"959060\",\"primaryLabelValue\":\"959060\"}},{\"attributeHeader\":{\"labelValue\":\"959062\",\"primaryLabelValue\":\"959062\"}},{\"attributeHeader\":{\"labelValue\":\"959064\",\"primaryLabelValue\":\"959064\"}},{\"attributeHeader\":{\"labelValue\":\"959066\",\"primaryLabelValue\":\"959066\"}},{\"attributeHeader\":{\"labelValue\":\"959068\",\"primaryLabelValue\":\"959068\"}},{\"attributeHeader\":{\"labelValue\":\"959070\",\"primaryLabelValue\":\"959070\"}},{\"attributeHeader\":{\"labelValue\":\"959072\",\"primaryLabelValue\":\"959072\"}},{\"attributeHeader\":{\"labelValue\":\"959074\",\"primaryLabelValue\":\"959074\"}},{\"attributeHeader\":{\"labelValue\":\"959076\",\"primaryLabelValue\":\"959076\"}},{\"attributeHeader\":{\"labelValue\":\"959078\",\"primaryLabelValue\":\"959078\"}},{\"attributeHeader\":{\"labelValue\":\"959080\",\"primaryLabelValue\":\"959080\"}},{\"attributeHeader\":{\"labelValue\":\"959082\",\"primaryLabelValue\":\"959082\"}},{\"attributeHeader\":{\"labelValue\":\"959084\",\"primaryLabelValue\":\"959084\"}},{\"attributeHeader\":{\"labelValue\":\"959086\",\"primaryLabelValue\":\"959086\"}},{\"attributeHeader\":{\"labelValue\":\"959088\",\"primaryLabelValue\":\"959088\"}},{\"attributeHeader\":{\"labelValue\":\"959090\",\"primaryLabelValue\":\"959090\"}},{\"attributeHeader\":{\"labelValue\":\"959092\",\"primaryLabelValue\":\"959092\"}},{\"attributeHeader\":{\"labelValue\":\"959094\",\"primaryLabelValue\":\"959094\"}},{\"attributeHeader\":{\"labelValue\":\"959096\",\"primaryLabelValue\":\"959096\"}},{\"attributeHeader\":{\"labelValue\":\"959098\",\"primaryLabelValue\":\"959098\"}},{\"attributeHeader\":{\"labelValue\":\"959100\",\"primaryLabelValue\":\"959100\"}},{\"attributeHeader\":{\"labelValue\":\"959102\",\"primaryLabelValue\":\"959102\"}},{\"attributeHeader\":{\"labelValue\":\"959104\",\"primaryLabelValue\":\"959104\"}},{\"attributeHeader\":{\"labelValue\":\"959106\",\"primaryLabelValue\":\"959106\"}},{\"attributeHeader\":{\"labelValue\":\"959108\",\"primaryLabelValue\":\"959108\"}},{\"attributeHeader\":{\"labelValue\":\"959110\",\"primaryLabelValue\":\"959110\"}},{\"attributeHeader\":{\"labelValue\":\"959112\",\"primaryLabelValue\":\"959112\"}},{\"attributeHeader\":{\"labelValue\":\"959114\",\"primaryLabelValue\":\"959114\"}},{\"attributeHeader\":{\"labelValue\":\"959116\",\"primaryLabelValue\":\"959116\"}},{\"attributeHeader\":{\"labelValue\":\"959118\",\"primaryLabelValue\":\"959118\"}},{\"attributeHeader\":{\"labelValue\":\"959120\",\"primaryLabelValue\":\"959120\"}},{\"attributeHeader\":{\"labelValue\":\"959122\",\"primaryLabelValue\":\"959122\"}},{\"attributeHeader\":{\"labelValue\":\"959124\",\"primaryLabelValue\":\"959124\"}},{\"attributeHeader\":{\"labelValue\":\"959126\",\"primaryLabelValue\":\"959126\"}},{\"attributeHeader\":{\"labelValue\":\"959128\",\"primaryLabelValue\":\"959128\"}},{\"attributeHeader\":{\"labelValue\":\"959130\",\"primaryLabelValue\":\"959130\"}},{\"attributeHeader\":{\"labelValue\":\"959132\",\"primaryLabelValue\":\"959132\"}},{\"attributeHeader\":{\"labelValue\":\"959134\",\"primaryLabelValue\":\"959134\"}},{\"attributeHeader\":{\"labelValue\":\"959136\",\"primaryLabelValue\":\"959136\"}},{\"attributeHeader\":{\"labelValue\":\"959138\",\"primaryLabelValue\":\"959138\"}},{\"attributeHeader\":{\"labelValue\":\"959140\",\"primaryLabelValue\":\"959140\"}},{\"attributeHeader\":{\"labelValue\":\"959142\",\"primaryLabelValue\":\"959142\"}},{\"attributeHeader\":{\"labelValue\":\"959144\",\"primaryLabelValue\":\"959144\"}},{\"attributeHeader\":{\"labelValue\":\"959146\",\"primaryLabelValue\":\"959146\"}},{\"attributeHeader\":{\"labelValue\":\"959148\",\"primaryLabelValue\":\"959148\"}},{\"attributeHeader\":{\"labelValue\":\"959150\",\"primaryLabelValue\":\"959150\"}},{\"attributeHeader\":{\"labelValue\":\"959152\",\"primaryLabelValue\":\"959152\"}},{\"attributeHeader\":{\"labelValue\":\"959154\",\"primaryLabelValue\":\"959154\"}},{\"attributeHeader\":{\"labelValue\":\"959156\",\"primaryLabelValue\":\"959156\"}},{\"attributeHeader\":{\"labelValue\":\"959158\",\"primaryLabelValue\":\"959158\"}},{\"attributeHeader\":{\"labelValue\":\"959160\",\"primaryLabelValue\":\"959160\"}},{\"attributeHeader\":{\"labelValue\":\"959162\",\"primaryLabelValue\":\"959162\"}},{\"attributeHeader\":{\"labelValue\":\"959164\",\"primaryLabelValue\":\"959164\"}},{\"attributeHeader\":{\"labelValue\":\"959166\",\"primaryLabelValue\":\"959166\"}},{\"attributeHeader\":{\"labelValue\":\"959168\",\"primaryLabelValue\":\"959168\"}},{\"attributeHeader\":{\"labelValue\":\"959170\",\"primaryLabelValue\":\"959170\"}},{\"attributeHeader\":{\"labelValue\":\"959172\",\"primaryLabelValue\":\"959172\"}},{\"attributeHeader\":{\"labelValue\":\"959174\",\"primaryLabelValue\":\"959174\"}},{\"attributeHeader\":{\"labelValue\":\"959176\",\"primaryLabelValue\":\"959176\"}},{\"attributeHeader\":{\"labelValue\":\"959178\",\"primaryLabelValue\":\"959178\"}},{\"attributeHeader\":{\"labelValue\":\"959180\",\"primaryLabelValue\":\"959180\"}},{\"attributeHeader\":{\"labelValue\":\"959182\",\"primaryLabelValue\":\"959182\"}},{\"attributeHeader\":{\"labelValue\":\"959184\",\"primaryLabelValue\":\"959184\"}},{\"attributeHeader\":{\"labelValue\":\"959186\",\"primaryLabelValue\":\"959186\"}},{\"attributeHeader\":{\"labelValue\":\"959188\",\"primaryLabelValue\":\"959188\"}},{\"attributeHeader\":{\"labelValue\":\"959190\",\"primaryLabelValue\":\"959190\"}},{\"attributeHeader\":{\"labelValue\":\"959192\",\"primaryLabelValue\":\"959192\"}},{\"attributeHeader\":{\"labelValue\":\"959194\",\"primaryLabelValue\":\"959194\"}},{\"attributeHeader\":{\"labelValue\":\"959196\",\"primaryLabelValue\":\"959196\"}},{\"attributeHeader\":{\"labelValue\":\"959198\",\"primaryLabelValue\":\"959198\"}},{\"attributeHeader\":{\"labelValue\":\"959200\",\"primaryLabelValue\":\"959200\"}},{\"attributeHeader\":{\"labelValue\":\"959202\",\"primaryLabelValue\":\"959202\"}},{\"attributeHeader\":{\"labelValue\":\"959204\",\"primaryLabelValue\":\"959204\"}},{\"attributeHeader\":{\"labelValue\":\"959206\",\"primaryLabelValue\":\"959206\"}},{\"attributeHeader\":{\"labelValue\":\"959208\",\"primaryLabelValue\":\"959208\"}},{\"attributeHeader\":{\"labelValue\":\"959210\",\"primaryLabelValue\":\"959210\"}},{\"attributeHeader\":{\"labelValue\":\"959212\",\"primaryLabelValue\":\"959212\"}},{\"attributeHeader\":{\"labelValue\":\"959214\",\"primaryLabelValue\":\"959214\"}},{\"attributeHeader\":{\"labelValue\":\"959216\",\"primaryLabelValue\":\"959216\"}},{\"attributeHeader\":{\"labelValue\":\"959218\",\"primaryLabelValue\":\"959218\"}},{\"attributeHeader\":{\"labelValue\":\"959220\",\"primaryLabelValue\":\"959220\"}},{\"attributeHeader\":{\"labelValue\":\"959222\",\"primaryLabelValue\":\"959222\"}},{\"attributeHeader\":{\"labelValue\":\"959224\",\"primaryLabelValue\":\"959224\"}},{\"attributeHeader\":{\"labelValue\":\"959226\",\"primaryLabelValue\":\"959226\"}},{\"attributeHeader\":{\"labelValue\":\"959228\",\"primaryLabelValue\":\"959228\"}},{\"attributeHeader\":{\"labelValue\":\"959230\",\"primaryLabelValue\":\"959230\"}},{\"attributeHeader\":{\"labelValue\":\"959232\",\"primaryLabelValue\":\"959232\"}},{\"attributeHeader\":{\"labelValue\":\"959234\",\"primaryLabelValue\":\"959234\"}},{\"attributeHeader\":{\"labelValue\":\"959236\",\"primaryLabelValue\":\"959236\"}},{\"attributeHeader\":{\"labelValue\":\"959238\",\"primaryLabelValue\":\"959238\"}},{\"attributeHeader\":{\"labelValue\":\"959239\",\"primaryLabelValue\":\"959239\"}},{\"attributeHeader\":{\"labelValue\":\"959241\",\"primaryLabelValue\":\"959241\"}},{\"attributeHeader\":{\"labelValue\":\"959243\",\"primaryLabelValue\":\"959243\"}},{\"attributeHeader\":{\"labelValue\":\"959245\",\"primaryLabelValue\":\"959245\"}},{\"attributeHeader\":{\"labelValue\":\"959247\",\"primaryLabelValue\":\"959247\"}},{\"attributeHeader\":{\"labelValue\":\"959249\",\"primaryLabelValue\":\"959249\"}},{\"attributeHeader\":{\"labelValue\":\"959251\",\"primaryLabelValue\":\"959251\"}},{\"attributeHeader\":{\"labelValue\":\"959253\",\"primaryLabelValue\":\"959253\"}},{\"attributeHeader\":{\"labelValue\":\"959255\",\"primaryLabelValue\":\"959255\"}},{\"attributeHeader\":{\"labelValue\":\"959257\",\"primaryLabelValue\":\"959257\"}},{\"attributeHeader\":{\"labelValue\":\"959259\",\"primaryLabelValue\":\"959259\"}},{\"attributeHeader\":{\"labelValue\":\"959261\",\"primaryLabelValue\":\"959261\"}},{\"attributeHeader\":{\"labelValue\":\"959263\",\"primaryLabelValue\":\"959263\"}},{\"attributeHeader\":{\"labelValue\":\"959265\",\"primaryLabelValue\":\"959265\"}},{\"attributeHeader\":{\"labelValue\":\"959267\",\"primaryLabelValue\":\"959267\"}},{\"attributeHeader\":{\"labelValue\":\"959269\",\"primaryLabelValue\":\"959269\"}},{\"attributeHeader\":{\"labelValue\":\"959271\",\"primaryLabelValue\":\"959271\"}},{\"attributeHeader\":{\"labelValue\":\"959275\",\"primaryLabelValue\":\"959275\"}},{\"attributeHeader\":{\"labelValue\":\"959277\",\"primaryLabelValue\":\"959277\"}},{\"attributeHeader\":{\"labelValue\":\"959279\",\"primaryLabelValue\":\"959279\"}},{\"attributeHeader\":{\"labelValue\":\"959281\",\"primaryLabelValue\":\"959281\"}},{\"attributeHeader\":{\"labelValue\":\"959283\",\"primaryLabelValue\":\"959283\"}},{\"attributeHeader\":{\"labelValue\":\"959285\",\"primaryLabelValue\":\"959285\"}},{\"attributeHeader\":{\"labelValue\":\"959287\",\"primaryLabelValue\":\"959287\"}},{\"attributeHeader\":{\"labelValue\":\"959289\",\"primaryLabelValue\":\"959289\"}},{\"attributeHeader\":{\"labelValue\":\"959291\",\"primaryLabelValue\":\"959291\"}},{\"attributeHeader\":{\"labelValue\":\"959293\",\"primaryLabelValue\":\"959293\"}},{\"attributeHeader\":{\"labelValue\":\"959295\",\"primaryLabelValue\":\"959295\"}},{\"attributeHeader\":{\"labelValue\":\"959297\",\"primaryLabelValue\":\"959297\"}},{\"attributeHeader\":{\"labelValue\":\"959299\",\"primaryLabelValue\":\"959299\"}},{\"attributeHeader\":{\"labelValue\":\"959301\",\"primaryLabelValue\":\"959301\"}},{\"attributeHeader\":{\"labelValue\":\"959303\",\"primaryLabelValue\":\"959303\"}},{\"attributeHeader\":{\"labelValue\":\"959305\",\"primaryLabelValue\":\"959305\"}},{\"attributeHeader\":{\"labelValue\":\"959307\",\"primaryLabelValue\":\"959307\"}},{\"attributeHeader\":{\"labelValue\":\"959309\",\"primaryLabelValue\":\"959309\"}},{\"attributeHeader\":{\"labelValue\":\"959311\",\"primaryLabelValue\":\"959311\"}},{\"attributeHeader\":{\"labelValue\":\"959313\",\"primaryLabelValue\":\"959313\"}},{\"attributeHeader\":{\"labelValue\":\"959315\",\"primaryLabelValue\":\"959315\"}},{\"attributeHeader\":{\"labelValue\":\"959317\",\"primaryLabelValue\":\"959317\"}},{\"attributeHeader\":{\"labelValue\":\"959319\",\"primaryLabelValue\":\"959319\"}},{\"attributeHeader\":{\"labelValue\":\"959321\",\"primaryLabelValue\":\"959321\"}},{\"attributeHeader\":{\"labelValue\":\"959323\",\"primaryLabelValue\":\"959323\"}},{\"attributeHeader\":{\"labelValue\":\"959325\",\"primaryLabelValue\":\"959325\"}},{\"attributeHeader\":{\"labelValue\":\"959327\",\"primaryLabelValue\":\"959327\"}},{\"attributeHeader\":{\"labelValue\":\"959329\",\"primaryLabelValue\":\"959329\"}},{\"attributeHeader\":{\"labelValue\":\"959331\",\"primaryLabelValue\":\"959331\"}},{\"attributeHeader\":{\"labelValue\":\"959333\",\"primaryLabelValue\":\"959333\"}},{\"attributeHeader\":{\"labelValue\":\"959335\",\"primaryLabelValue\":\"959335\"}},{\"attributeHeader\":{\"labelValue\":\"959337\",\"primaryLabelValue\":\"959337\"}},{\"attributeHeader\":{\"labelValue\":\"959339\",\"primaryLabelValue\":\"959339\"}},{\"attributeHeader\":{\"labelValue\":\"959341\",\"primaryLabelValue\":\"959341\"}},{\"attributeHeader\":{\"labelValue\":\"959343\",\"primaryLabelValue\":\"959343\"}},{\"attributeHeader\":{\"labelValue\":\"959345\",\"primaryLabelValue\":\"959345\"}},{\"attributeHeader\":{\"labelValue\":\"959347\",\"primaryLabelValue\":\"959347\"}},{\"attributeHeader\":{\"labelValue\":\"959349\",\"primaryLabelValue\":\"959349\"}},{\"attributeHeader\":{\"labelValue\":\"959351\",\"primaryLabelValue\":\"959351\"}},{\"attributeHeader\":{\"labelValue\":\"959353\",\"primaryLabelValue\":\"959353\"}},{\"attributeHeader\":{\"labelValue\":\"959355\",\"primaryLabelValue\":\"959355\"}},{\"attributeHeader\":{\"labelValue\":\"959357\",\"primaryLabelValue\":\"959357\"}},{\"attributeHeader\":{\"labelValue\":\"959359\",\"primaryLabelValue\":\"959359\"}},{\"attributeHeader\":{\"labelValue\":\"959361\",\"primaryLabelValue\":\"959361\"}},{\"attributeHeader\":{\"labelValue\":\"959363\",\"primaryLabelValue\":\"959363\"}},{\"attributeHeader\":{\"labelValue\":\"959365\",\"primaryLabelValue\":\"959365\"}},{\"attributeHeader\":{\"labelValue\":\"959367\",\"primaryLabelValue\":\"959367\"}},{\"attributeHeader\":{\"labelValue\":\"959369\",\"primaryLabelValue\":\"959369\"}},{\"attributeHeader\":{\"labelValue\":\"959371\",\"primaryLabelValue\":\"959371\"}},{\"attributeHeader\":{\"labelValue\":\"959373\",\"primaryLabelValue\":\"959373\"}},{\"attributeHeader\":{\"labelValue\":\"959375\",\"primaryLabelValue\":\"959375\"}},{\"attributeHeader\":{\"labelValue\":\"959377\",\"primaryLabelValue\":\"959377\"}},{\"attributeHeader\":{\"labelValue\":\"959379\",\"primaryLabelValue\":\"959379\"}},{\"attributeHeader\":{\"labelValue\":\"959381\",\"primaryLabelValue\":\"959381\"}},{\"attributeHeader\":{\"labelValue\":\"959383\",\"primaryLabelValue\":\"959383\"}},{\"attributeHeader\":{\"labelValue\":\"959385\",\"primaryLabelValue\":\"959385\"}},{\"attributeHeader\":{\"labelValue\":\"959387\",\"primaryLabelValue\":\"959387\"}},{\"attributeHeader\":{\"labelValue\":\"959389\",\"primaryLabelValue\":\"959389\"}},{\"attributeHeader\":{\"labelValue\":\"959391\",\"primaryLabelValue\":\"959391\"}},{\"attributeHeader\":{\"labelValue\":\"959393\",\"primaryLabelValue\":\"959393\"}},{\"attributeHeader\":{\"labelValue\":\"959395\",\"primaryLabelValue\":\"959395\"}},{\"attributeHeader\":{\"labelValue\":\"959397\",\"primaryLabelValue\":\"959397\"}},{\"attributeHeader\":{\"labelValue\":\"959399\",\"primaryLabelValue\":\"959399\"}},{\"attributeHeader\":{\"labelValue\":\"959401\",\"primaryLabelValue\":\"959401\"}},{\"attributeHeader\":{\"labelValue\":\"959403\",\"primaryLabelValue\":\"959403\"}},{\"attributeHeader\":{\"labelValue\":\"959405\",\"primaryLabelValue\":\"959405\"}},{\"attributeHeader\":{\"labelValue\":\"959407\",\"primaryLabelValue\":\"959407\"}},{\"attributeHeader\":{\"labelValue\":\"959409\",\"primaryLabelValue\":\"959409\"}},{\"attributeHeader\":{\"labelValue\":\"959411\",\"primaryLabelValue\":\"959411\"}},{\"attributeHeader\":{\"labelValue\":\"959413\",\"primaryLabelValue\":\"959413\"}},{\"attributeHeader\":{\"labelValue\":\"959415\",\"primaryLabelValue\":\"959415\"}},{\"attributeHeader\":{\"labelValue\":\"959417\",\"primaryLabelValue\":\"959417\"}},{\"attributeHeader\":{\"labelValue\":\"959419\",\"primaryLabelValue\":\"959419\"}},{\"attributeHeader\":{\"labelValue\":\"959421\",\"primaryLabelValue\":\"959421\"}},{\"attributeHeader\":{\"labelValue\":\"959423\",\"primaryLabelValue\":\"959423\"}},{\"attributeHeader\":{\"labelValue\":\"959425\",\"primaryLabelValue\":\"959425\"}},{\"attributeHeader\":{\"labelValue\":\"959427\",\"primaryLabelValue\":\"959427\"}},{\"attributeHeader\":{\"labelValue\":\"959429\",\"primaryLabelValue\":\"959429\"}},{\"attributeHeader\":{\"labelValue\":\"959431\",\"primaryLabelValue\":\"959431\"}},{\"attributeHeader\":{\"labelValue\":\"959433\",\"primaryLabelValue\":\"959433\"}},{\"attributeHeader\":{\"labelValue\":\"959435\",\"primaryLabelValue\":\"959435\"}},{\"attributeHeader\":{\"labelValue\":\"959437\",\"primaryLabelValue\":\"959437\"}},{\"attributeHeader\":{\"labelValue\":\"959439\",\"primaryLabelValue\":\"959439\"}},{\"attributeHeader\":{\"labelValue\":\"959441\",\"primaryLabelValue\":\"959441\"}},{\"attributeHeader\":{\"labelValue\":\"959443\",\"primaryLabelValue\":\"959443\"}},{\"attributeHeader\":{\"labelValue\":\"959445\",\"primaryLabelValue\":\"959445\"}},{\"attributeHeader\":{\"labelValue\":\"959447\",\"primaryLabelValue\":\"959447\"}},{\"attributeHeader\":{\"labelValue\":\"959449\",\"primaryLabelValue\":\"959449\"}},{\"attributeHeader\":{\"labelValue\":\"959451\",\"primaryLabelValue\":\"959451\"}},{\"attributeHeader\":{\"labelValue\":\"959453\",\"primaryLabelValue\":\"959453\"}},{\"attributeHeader\":{\"labelValue\":\"959455\",\"primaryLabelValue\":\"959455\"}},{\"attributeHeader\":{\"labelValue\":\"959457\",\"primaryLabelValue\":\"959457\"}},{\"attributeHeader\":{\"labelValue\":\"959459\",\"primaryLabelValue\":\"959459\"}},{\"attributeHeader\":{\"labelValue\":\"959461\",\"primaryLabelValue\":\"959461\"}},{\"attributeHeader\":{\"labelValue\":\"959463\",\"primaryLabelValue\":\"959463\"}},{\"attributeHeader\":{\"labelValue\":\"959465\",\"primaryLabelValue\":\"959465\"}},{\"attributeHeader\":{\"labelValue\":\"959467\",\"primaryLabelValue\":\"959467\"}},{\"attributeHeader\":{\"labelValue\":\"959469\",\"primaryLabelValue\":\"959469\"}},{\"attributeHeader\":{\"labelValue\":\"959471\",\"primaryLabelValue\":\"959471\"}},{\"attributeHeader\":{\"labelValue\":\"959473\",\"primaryLabelValue\":\"959473\"}},{\"attributeHeader\":{\"labelValue\":\"959475\",\"primaryLabelValue\":\"959475\"}},{\"attributeHeader\":{\"labelValue\":\"959477\",\"primaryLabelValue\":\"959477\"}},{\"attributeHeader\":{\"labelValue\":\"959479\",\"primaryLabelValue\":\"959479\"}},{\"attributeHeader\":{\"labelValue\":\"959481\",\"primaryLabelValue\":\"959481\"}},{\"attributeHeader\":{\"labelValue\":\"959485\",\"primaryLabelValue\":\"959485\"}},{\"attributeHeader\":{\"labelValue\":\"959487\",\"primaryLabelValue\":\"959487\"}},{\"attributeHeader\":{\"labelValue\":\"959489\",\"primaryLabelValue\":\"959489\"}},{\"attributeHeader\":{\"labelValue\":\"959491\",\"primaryLabelValue\":\"959491\"}},{\"attributeHeader\":{\"labelValue\":\"959493\",\"primaryLabelValue\":\"959493\"}},{\"attributeHeader\":{\"labelValue\":\"959495\",\"primaryLabelValue\":\"959495\"}},{\"attributeHeader\":{\"labelValue\":\"959497\",\"primaryLabelValue\":\"959497\"}},{\"attributeHeader\":{\"labelValue\":\"959499\",\"primaryLabelValue\":\"959499\"}},{\"attributeHeader\":{\"labelValue\":\"959501\",\"primaryLabelValue\":\"959501\"}},{\"attributeHeader\":{\"labelValue\":\"959503\",\"primaryLabelValue\":\"959503\"}},{\"attributeHeader\":{\"labelValue\":\"959505\",\"primaryLabelValue\":\"959505\"}},{\"attributeHeader\":{\"labelValue\":\"959507\",\"primaryLabelValue\":\"959507\"}},{\"attributeHeader\":{\"labelValue\":\"959509\",\"primaryLabelValue\":\"959509\"}},{\"attributeHeader\":{\"labelValue\":\"959511\",\"primaryLabelValue\":\"959511\"}},{\"attributeHeader\":{\"labelValue\":\"959513\",\"primaryLabelValue\":\"959513\"}},{\"attributeHeader\":{\"labelValue\":\"959515\",\"primaryLabelValue\":\"959515\"}},{\"attributeHeader\":{\"labelValue\":\"959517\",\"primaryLabelValue\":\"959517\"}},{\"attributeHeader\":{\"labelValue\":\"959519\",\"primaryLabelValue\":\"959519\"}},{\"attributeHeader\":{\"labelValue\":\"959521\",\"primaryLabelValue\":\"959521\"}},{\"attributeHeader\":{\"labelValue\":\"959523\",\"primaryLabelValue\":\"959523\"}},{\"attributeHeader\":{\"labelValue\":\"959525\",\"primaryLabelValue\":\"959525\"}},{\"attributeHeader\":{\"labelValue\":\"959527\",\"primaryLabelValue\":\"959527\"}},{\"attributeHeader\":{\"labelValue\":\"959531\",\"primaryLabelValue\":\"959531\"}},{\"attributeHeader\":{\"labelValue\":\"959533\",\"primaryLabelValue\":\"959533\"}},{\"attributeHeader\":{\"labelValue\":\"959535\",\"primaryLabelValue\":\"959535\"}},{\"attributeHeader\":{\"labelValue\":\"959537\",\"primaryLabelValue\":\"959537\"}},{\"attributeHeader\":{\"labelValue\":\"959539\",\"primaryLabelValue\":\"959539\"}},{\"attributeHeader\":{\"labelValue\":\"959541\",\"primaryLabelValue\":\"959541\"}},{\"attributeHeader\":{\"labelValue\":\"959543\",\"primaryLabelValue\":\"959543\"}},{\"attributeHeader\":{\"labelValue\":\"959545\",\"primaryLabelValue\":\"959545\"}},{\"attributeHeader\":{\"labelValue\":\"959547\",\"primaryLabelValue\":\"959547\"}},{\"attributeHeader\":{\"labelValue\":\"959549\",\"primaryLabelValue\":\"959549\"}},{\"attributeHeader\":{\"labelValue\":\"959551\",\"primaryLabelValue\":\"959551\"}},{\"attributeHeader\":{\"labelValue\":\"959553\",\"primaryLabelValue\":\"959553\"}},{\"attributeHeader\":{\"labelValue\":\"959555\",\"primaryLabelValue\":\"959555\"}},{\"attributeHeader\":{\"labelValue\":\"959557\",\"primaryLabelValue\":\"959557\"}},{\"attributeHeader\":{\"labelValue\":\"959559\",\"primaryLabelValue\":\"959559\"}},{\"attributeHeader\":{\"labelValue\":\"959561\",\"primaryLabelValue\":\"959561\"}},{\"attributeHeader\":{\"labelValue\":\"959563\",\"primaryLabelValue\":\"959563\"}},{\"attributeHeader\":{\"labelValue\":\"959565\",\"primaryLabelValue\":\"959565\"}},{\"attributeHeader\":{\"labelValue\":\"959567\",\"primaryLabelValue\":\"959567\"}},{\"attributeHeader\":{\"labelValue\":\"959569\",\"primaryLabelValue\":\"959569\"}},{\"attributeHeader\":{\"labelValue\":\"959571\",\"primaryLabelValue\":\"959571\"}},{\"attributeHeader\":{\"labelValue\":\"959573\",\"primaryLabelValue\":\"959573\"}},{\"attributeHeader\":{\"labelValue\":\"959575\",\"primaryLabelValue\":\"959575\"}},{\"attributeHeader\":{\"labelValue\":\"959577\",\"primaryLabelValue\":\"959577\"}},{\"attributeHeader\":{\"labelValue\":\"959579\",\"primaryLabelValue\":\"959579\"}},{\"attributeHeader\":{\"labelValue\":\"959581\",\"primaryLabelValue\":\"959581\"}},{\"attributeHeader\":{\"labelValue\":\"959583\",\"primaryLabelValue\":\"959583\"}},{\"attributeHeader\":{\"labelValue\":\"959585\",\"primaryLabelValue\":\"959585\"}},{\"attributeHeader\":{\"labelValue\":\"959587\",\"primaryLabelValue\":\"959587\"}},{\"attributeHeader\":{\"labelValue\":\"959589\",\"primaryLabelValue\":\"959589\"}},{\"attributeHeader\":{\"labelValue\":\"959591\",\"primaryLabelValue\":\"959591\"}},{\"attributeHeader\":{\"labelValue\":\"959593\",\"primaryLabelValue\":\"959593\"}},{\"attributeHeader\":{\"labelValue\":\"959595\",\"primaryLabelValue\":\"959595\"}},{\"attributeHeader\":{\"labelValue\":\"959597\",\"primaryLabelValue\":\"959597\"}},{\"attributeHeader\":{\"labelValue\":\"959599\",\"primaryLabelValue\":\"959599\"}},{\"attributeHeader\":{\"labelValue\":\"959601\",\"primaryLabelValue\":\"959601\"}},{\"attributeHeader\":{\"labelValue\":\"959603\",\"primaryLabelValue\":\"959603\"}},{\"attributeHeader\":{\"labelValue\":\"959605\",\"primaryLabelValue\":\"959605\"}},{\"attributeHeader\":{\"labelValue\":\"959607\",\"primaryLabelValue\":\"959607\"}},{\"attributeHeader\":{\"labelValue\":\"959609\",\"primaryLabelValue\":\"959609\"}},{\"attributeHeader\":{\"labelValue\":\"959611\",\"primaryLabelValue\":\"959611\"}},{\"attributeHeader\":{\"labelValue\":\"959613\",\"primaryLabelValue\":\"959613\"}},{\"attributeHeader\":{\"labelValue\":\"959615\",\"primaryLabelValue\":\"959615\"}},{\"attributeHeader\":{\"labelValue\":\"959617\",\"primaryLabelValue\":\"959617\"}},{\"attributeHeader\":{\"labelValue\":\"959619\",\"primaryLabelValue\":\"959619\"}},{\"attributeHeader\":{\"labelValue\":\"959621\",\"primaryLabelValue\":\"959621\"}},{\"attributeHeader\":{\"labelValue\":\"959623\",\"primaryLabelValue\":\"959623\"}},{\"attributeHeader\":{\"labelValue\":\"959625\",\"primaryLabelValue\":\"959625\"}},{\"attributeHeader\":{\"labelValue\":\"959627\",\"primaryLabelValue\":\"959627\"}},{\"attributeHeader\":{\"labelValue\":\"959629\",\"primaryLabelValue\":\"959629\"}},{\"attributeHeader\":{\"labelValue\":\"959631\",\"primaryLabelValue\":\"959631\"}},{\"attributeHeader\":{\"labelValue\":\"959633\",\"primaryLabelValue\":\"959633\"}},{\"attributeHeader\":{\"labelValue\":\"959635\",\"primaryLabelValue\":\"959635\"}},{\"attributeHeader\":{\"labelValue\":\"959637\",\"primaryLabelValue\":\"959637\"}},{\"attributeHeader\":{\"labelValue\":\"959639\",\"primaryLabelValue\":\"959639\"}},{\"attributeHeader\":{\"labelValue\":\"959641\",\"primaryLabelValue\":\"959641\"}},{\"attributeHeader\":{\"labelValue\":\"959643\",\"primaryLabelValue\":\"959643\"}},{\"attributeHeader\":{\"labelValue\":\"959645\",\"primaryLabelValue\":\"959645\"}},{\"attributeHeader\":{\"labelValue\":\"959647\",\"primaryLabelValue\":\"959647\"}},{\"attributeHeader\":{\"labelValue\":\"959649\",\"primaryLabelValue\":\"959649\"}},{\"attributeHeader\":{\"labelValue\":\"959651\",\"primaryLabelValue\":\"959651\"}},{\"attributeHeader\":{\"labelValue\":\"959653\",\"primaryLabelValue\":\"959653\"}},{\"attributeHeader\":{\"labelValue\":\"959655\",\"primaryLabelValue\":\"959655\"}},{\"attributeHeader\":{\"labelValue\":\"959657\",\"primaryLabelValue\":\"959657\"}},{\"attributeHeader\":{\"labelValue\":\"959659\",\"primaryLabelValue\":\"959659\"}},{\"attributeHeader\":{\"labelValue\":\"959661\",\"primaryLabelValue\":\"959661\"}},{\"attributeHeader\":{\"labelValue\":\"959663\",\"primaryLabelValue\":\"959663\"}},{\"attributeHeader\":{\"labelValue\":\"959665\",\"primaryLabelValue\":\"959665\"}},{\"attributeHeader\":{\"labelValue\":\"959667\",\"primaryLabelValue\":\"959667\"}},{\"attributeHeader\":{\"labelValue\":\"959671\",\"primaryLabelValue\":\"959671\"}},{\"attributeHeader\":{\"labelValue\":\"959673\",\"primaryLabelValue\":\"959673\"}},{\"attributeHeader\":{\"labelValue\":\"959675\",\"primaryLabelValue\":\"959675\"}},{\"attributeHeader\":{\"labelValue\":\"959677\",\"primaryLabelValue\":\"959677\"}},{\"attributeHeader\":{\"labelValue\":\"959679\",\"primaryLabelValue\":\"959679\"}},{\"attributeHeader\":{\"labelValue\":\"959681\",\"primaryLabelValue\":\"959681\"}},{\"attributeHeader\":{\"labelValue\":\"959683\",\"primaryLabelValue\":\"959683\"}},{\"attributeHeader\":{\"labelValue\":\"959685\",\"primaryLabelValue\":\"959685\"}},{\"attributeHeader\":{\"labelValue\":\"959687\",\"primaryLabelValue\":\"959687\"}},{\"attributeHeader\":{\"labelValue\":\"959689\",\"primaryLabelValue\":\"959689\"}},{\"attributeHeader\":{\"labelValue\":\"959691\",\"primaryLabelValue\":\"959691\"}},{\"attributeHeader\":{\"labelValue\":\"959693\",\"primaryLabelValue\":\"959693\"}},{\"attributeHeader\":{\"labelValue\":\"959695\",\"primaryLabelValue\":\"959695\"}},{\"attributeHeader\":{\"labelValue\":\"959697\",\"primaryLabelValue\":\"959697\"}},{\"attributeHeader\":{\"labelValue\":\"959699\",\"primaryLabelValue\":\"959699\"}},{\"attributeHeader\":{\"labelValue\":\"959701\",\"primaryLabelValue\":\"959701\"}},{\"attributeHeader\":{\"labelValue\":\"959703\",\"primaryLabelValue\":\"959703\"}},{\"attributeHeader\":{\"labelValue\":\"959705\",\"primaryLabelValue\":\"959705\"}},{\"attributeHeader\":{\"labelValue\":\"959707\",\"primaryLabelValue\":\"959707\"}},{\"attributeHeader\":{\"labelValue\":\"959709\",\"primaryLabelValue\":\"959709\"}},{\"attributeHeader\":{\"labelValue\":\"959711\",\"primaryLabelValue\":\"959711\"}},{\"attributeHeader\":{\"labelValue\":\"959713\",\"primaryLabelValue\":\"959713\"}},{\"attributeHeader\":{\"labelValue\":\"959715\",\"primaryLabelValue\":\"959715\"}},{\"attributeHeader\":{\"labelValue\":\"959717\",\"primaryLabelValue\":\"959717\"}},{\"attributeHeader\":{\"labelValue\":\"959719\",\"primaryLabelValue\":\"959719\"}},{\"attributeHeader\":{\"labelValue\":\"959721\",\"primaryLabelValue\":\"959721\"}},{\"attributeHeader\":{\"labelValue\":\"959723\",\"primaryLabelValue\":\"959723\"}},{\"attributeHeader\":{\"labelValue\":\"959725\",\"primaryLabelValue\":\"959725\"}},{\"attributeHeader\":{\"labelValue\":\"959727\",\"primaryLabelValue\":\"959727\"}},{\"attributeHeader\":{\"labelValue\":\"959729\",\"primaryLabelValue\":\"959729\"}},{\"attributeHeader\":{\"labelValue\":\"959731\",\"primaryLabelValue\":\"959731\"}},{\"attributeHeader\":{\"labelValue\":\"959733\",\"primaryLabelValue\":\"959733\"}},{\"attributeHeader\":{\"labelValue\":\"959735\",\"primaryLabelValue\":\"959735\"}},{\"attributeHeader\":{\"labelValue\":\"959737\",\"primaryLabelValue\":\"959737\"}},{\"attributeHeader\":{\"labelValue\":\"959739\",\"primaryLabelValue\":\"959739\"}},{\"attributeHeader\":{\"labelValue\":\"959741\",\"primaryLabelValue\":\"959741\"}},{\"attributeHeader\":{\"labelValue\":\"959743\",\"primaryLabelValue\":\"959743\"}},{\"attributeHeader\":{\"labelValue\":\"959745\",\"primaryLabelValue\":\"959745\"}},{\"attributeHeader\":{\"labelValue\":\"959747\",\"primaryLabelValue\":\"959747\"}},{\"attributeHeader\":{\"labelValue\":\"959749\",\"primaryLabelValue\":\"959749\"}},{\"attributeHeader\":{\"labelValue\":\"959751\",\"primaryLabelValue\":\"959751\"}},{\"attributeHeader\":{\"labelValue\":\"959753\",\"primaryLabelValue\":\"959753\"}},{\"attributeHeader\":{\"labelValue\":\"959755\",\"primaryLabelValue\":\"959755\"}},{\"attributeHeader\":{\"labelValue\":\"959757\",\"primaryLabelValue\":\"959757\"}},{\"attributeHeader\":{\"labelValue\":\"959759\",\"primaryLabelValue\":\"959759\"}},{\"attributeHeader\":{\"labelValue\":\"959761\",\"primaryLabelValue\":\"959761\"}},{\"attributeHeader\":{\"labelValue\":\"959763\",\"primaryLabelValue\":\"959763\"}},{\"attributeHeader\":{\"labelValue\":\"959765\",\"primaryLabelValue\":\"959765\"}},{\"attributeHeader\":{\"labelValue\":\"959767\",\"primaryLabelValue\":\"959767\"}},{\"attributeHeader\":{\"labelValue\":\"959769\",\"primaryLabelValue\":\"959769\"}},{\"attributeHeader\":{\"labelValue\":\"959771\",\"primaryLabelValue\":\"959771\"}},{\"attributeHeader\":{\"labelValue\":\"959773\",\"primaryLabelValue\":\"959773\"}},{\"attributeHeader\":{\"labelValue\":\"959775\",\"primaryLabelValue\":\"959775\"}},{\"attributeHeader\":{\"labelValue\":\"959777\",\"primaryLabelValue\":\"959777\"}},{\"attributeHeader\":{\"labelValue\":\"959779\",\"primaryLabelValue\":\"959779\"}},{\"attributeHeader\":{\"labelValue\":\"959781\",\"primaryLabelValue\":\"959781\"}},{\"attributeHeader\":{\"labelValue\":\"959783\",\"primaryLabelValue\":\"959783\"}},{\"attributeHeader\":{\"labelValue\":\"959785\",\"primaryLabelValue\":\"959785\"}},{\"attributeHeader\":{\"labelValue\":\"959787\",\"primaryLabelValue\":\"959787\"}},{\"attributeHeader\":{\"labelValue\":\"959789\",\"primaryLabelValue\":\"959789\"}},{\"attributeHeader\":{\"labelValue\":\"959791\",\"primaryLabelValue\":\"959791\"}},{\"attributeHeader\":{\"labelValue\":\"959795\",\"primaryLabelValue\":\"959795\"}},{\"attributeHeader\":{\"labelValue\":\"959797\",\"primaryLabelValue\":\"959797\"}},{\"attributeHeader\":{\"labelValue\":\"959799\",\"primaryLabelValue\":\"959799\"}},{\"attributeHeader\":{\"labelValue\":\"959801\",\"primaryLabelValue\":\"959801\"}},{\"attributeHeader\":{\"labelValue\":\"959803\",\"primaryLabelValue\":\"959803\"}},{\"attributeHeader\":{\"labelValue\":\"959805\",\"primaryLabelValue\":\"959805\"}},{\"attributeHeader\":{\"labelValue\":\"959807\",\"primaryLabelValue\":\"959807\"}},{\"attributeHeader\":{\"labelValue\":\"959809\",\"primaryLabelValue\":\"959809\"}},{\"attributeHeader\":{\"labelValue\":\"959811\",\"primaryLabelValue\":\"959811\"}},{\"attributeHeader\":{\"labelValue\":\"959813\",\"primaryLabelValue\":\"959813\"}},{\"attributeHeader\":{\"labelValue\":\"959815\",\"primaryLabelValue\":\"959815\"}},{\"attributeHeader\":{\"labelValue\":\"959817\",\"primaryLabelValue\":\"959817\"}},{\"attributeHeader\":{\"labelValue\":\"959819\",\"primaryLabelValue\":\"959819\"}},{\"attributeHeader\":{\"labelValue\":\"959821\",\"primaryLabelValue\":\"959821\"}},{\"attributeHeader\":{\"labelValue\":\"959823\",\"primaryLabelValue\":\"959823\"}},{\"attributeHeader\":{\"labelValue\":\"959825\",\"primaryLabelValue\":\"959825\"}},{\"attributeHeader\":{\"labelValue\":\"959827\",\"primaryLabelValue\":\"959827\"}},{\"attributeHeader\":{\"labelValue\":\"959829\",\"primaryLabelValue\":\"959829\"}},{\"attributeHeader\":{\"labelValue\":\"959831\",\"primaryLabelValue\":\"959831\"}},{\"attributeHeader\":{\"labelValue\":\"959833\",\"primaryLabelValue\":\"959833\"}},{\"attributeHeader\":{\"labelValue\":\"959837\",\"primaryLabelValue\":\"959837\"}},{\"attributeHeader\":{\"labelValue\":\"959839\",\"primaryLabelValue\":\"959839\"}},{\"attributeHeader\":{\"labelValue\":\"959841\",\"primaryLabelValue\":\"959841\"}},{\"attributeHeader\":{\"labelValue\":\"959843\",\"primaryLabelValue\":\"959843\"}},{\"attributeHeader\":{\"labelValue\":\"959845\",\"primaryLabelValue\":\"959845\"}},{\"attributeHeader\":{\"labelValue\":\"959847\",\"primaryLabelValue\":\"959847\"}},{\"attributeHeader\":{\"labelValue\":\"959849\",\"primaryLabelValue\":\"959849\"}},{\"attributeHeader\":{\"labelValue\":\"959851\",\"primaryLabelValue\":\"959851\"}},{\"attributeHeader\":{\"labelValue\":\"959853\",\"primaryLabelValue\":\"959853\"}},{\"attributeHeader\":{\"labelValue\":\"959855\",\"primaryLabelValue\":\"959855\"}},{\"attributeHeader\":{\"labelValue\":\"959857\",\"primaryLabelValue\":\"959857\"}},{\"attributeHeader\":{\"labelValue\":\"959859\",\"primaryLabelValue\":\"959859\"}},{\"attributeHeader\":{\"labelValue\":\"959861\",\"primaryLabelValue\":\"959861\"}},{\"attributeHeader\":{\"labelValue\":\"959863\",\"primaryLabelValue\":\"959863\"}},{\"attributeHeader\":{\"labelValue\":\"959865\",\"primaryLabelValue\":\"959865\"}},{\"attributeHeader\":{\"labelValue\":\"959867\",\"primaryLabelValue\":\"959867\"}},{\"attributeHeader\":{\"labelValue\":\"959869\",\"primaryLabelValue\":\"959869\"}},{\"attributeHeader\":{\"labelValue\":\"959871\",\"primaryLabelValue\":\"959871\"}},{\"attributeHeader\":{\"labelValue\":\"959873\",\"primaryLabelValue\":\"959873\"}},{\"attributeHeader\":{\"labelValue\":\"959875\",\"primaryLabelValue\":\"959875\"}},{\"attributeHeader\":{\"labelValue\":\"959877\",\"primaryLabelValue\":\"959877\"}},{\"attributeHeader\":{\"labelValue\":\"959879\",\"primaryLabelValue\":\"959879\"}},{\"attributeHeader\":{\"labelValue\":\"959881\",\"primaryLabelValue\":\"959881\"}},{\"attributeHeader\":{\"labelValue\":\"959883\",\"primaryLabelValue\":\"959883\"}},{\"attributeHeader\":{\"labelValue\":\"959885\",\"primaryLabelValue\":\"959885\"}},{\"attributeHeader\":{\"labelValue\":\"959887\",\"primaryLabelValue\":\"959887\"}},{\"attributeHeader\":{\"labelValue\":\"959889\",\"primaryLabelValue\":\"959889\"}},{\"attributeHeader\":{\"labelValue\":\"959891\",\"primaryLabelValue\":\"959891\"}},{\"attributeHeader\":{\"labelValue\":\"959893\",\"primaryLabelValue\":\"959893\"}},{\"attributeHeader\":{\"labelValue\":\"959895\",\"primaryLabelValue\":\"959895\"}},{\"attributeHeader\":{\"labelValue\":\"959897\",\"primaryLabelValue\":\"959897\"}},{\"attributeHeader\":{\"labelValue\":\"959899\",\"primaryLabelValue\":\"959899\"}},{\"attributeHeader\":{\"labelValue\":\"959901\",\"primaryLabelValue\":\"959901\"}},{\"attributeHeader\":{\"labelValue\":\"959903\",\"primaryLabelValue\":\"959903\"}},{\"attributeHeader\":{\"labelValue\":\"959905\",\"primaryLabelValue\":\"959905\"}},{\"attributeHeader\":{\"labelValue\":\"959907\",\"primaryLabelValue\":\"959907\"}},{\"attributeHeader\":{\"labelValue\":\"959909\",\"primaryLabelValue\":\"959909\"}},{\"attributeHeader\":{\"labelValue\":\"959911\",\"primaryLabelValue\":\"959911\"}},{\"attributeHeader\":{\"labelValue\":\"959913\",\"primaryLabelValue\":\"959913\"}},{\"attributeHeader\":{\"labelValue\":\"959915\",\"primaryLabelValue\":\"959915\"}},{\"attributeHeader\":{\"labelValue\":\"959917\",\"primaryLabelValue\":\"959917\"}},{\"attributeHeader\":{\"labelValue\":\"959919\",\"primaryLabelValue\":\"959919\"}},{\"attributeHeader\":{\"labelValue\":\"959921\",\"primaryLabelValue\":\"959921\"}},{\"attributeHeader\":{\"labelValue\":\"959923\",\"primaryLabelValue\":\"959923\"}},{\"attributeHeader\":{\"labelValue\":\"959925\",\"primaryLabelValue\":\"959925\"}},{\"attributeHeader\":{\"labelValue\":\"959929\",\"primaryLabelValue\":\"959929\"}},{\"attributeHeader\":{\"labelValue\":\"959931\",\"primaryLabelValue\":\"959931\"}},{\"attributeHeader\":{\"labelValue\":\"959933\",\"primaryLabelValue\":\"959933\"}},{\"attributeHeader\":{\"labelValue\":\"959935\",\"primaryLabelValue\":\"959935\"}},{\"attributeHeader\":{\"labelValue\":\"959937\",\"primaryLabelValue\":\"959937\"}},{\"attributeHeader\":{\"labelValue\":\"959939\",\"primaryLabelValue\":\"959939\"}},{\"attributeHeader\":{\"labelValue\":\"959941\",\"primaryLabelValue\":\"959941\"}},{\"attributeHeader\":{\"labelValue\":\"959943\",\"primaryLabelValue\":\"959943\"}},{\"attributeHeader\":{\"labelValue\":\"959945\",\"primaryLabelValue\":\"959945\"}},{\"attributeHeader\":{\"labelValue\":\"959947\",\"primaryLabelValue\":\"959947\"}},{\"attributeHeader\":{\"labelValue\":\"959949\",\"primaryLabelValue\":\"959949\"}},{\"attributeHeader\":{\"labelValue\":\"959951\",\"primaryLabelValue\":\"959951\"}},{\"attributeHeader\":{\"labelValue\":\"959953\",\"primaryLabelValue\":\"959953\"}},{\"attributeHeader\":{\"labelValue\":\"959955\",\"primaryLabelValue\":\"959955\"}},{\"attributeHeader\":{\"labelValue\":\"959957\",\"primaryLabelValue\":\"959957\"}},{\"attributeHeader\":{\"labelValue\":\"959959\",\"primaryLabelValue\":\"959959\"}},{\"attributeHeader\":{\"labelValue\":\"959961\",\"primaryLabelValue\":\"959961\"}},{\"attributeHeader\":{\"labelValue\":\"959963\",\"primaryLabelValue\":\"959963\"}},{\"attributeHeader\":{\"labelValue\":\"959965\",\"primaryLabelValue\":\"959965\"}},{\"attributeHeader\":{\"labelValue\":\"959967\",\"primaryLabelValue\":\"959967\"}},{\"attributeHeader\":{\"labelValue\":\"959969\",\"primaryLabelValue\":\"959969\"}},{\"attributeHeader\":{\"labelValue\":\"959973\",\"primaryLabelValue\":\"959973\"}},{\"attributeHeader\":{\"labelValue\":\"959975\",\"primaryLabelValue\":\"959975\"}},{\"attributeHeader\":{\"labelValue\":\"959977\",\"primaryLabelValue\":\"959977\"}},{\"attributeHeader\":{\"labelValue\":\"959979\",\"primaryLabelValue\":\"959979\"}},{\"attributeHeader\":{\"labelValue\":\"959981\",\"primaryLabelValue\":\"959981\"}},{\"attributeHeader\":{\"labelValue\":\"959983\",\"primaryLabelValue\":\"959983\"}},{\"attributeHeader\":{\"labelValue\":\"959985\",\"primaryLabelValue\":\"959985\"}},{\"attributeHeader\":{\"labelValue\":\"959987\",\"primaryLabelValue\":\"959987\"}},{\"attributeHeader\":{\"labelValue\":\"959989\",\"primaryLabelValue\":\"959989\"}},{\"attributeHeader\":{\"labelValue\":\"959991\",\"primaryLabelValue\":\"959991\"}},{\"attributeHeader\":{\"labelValue\":\"959993\",\"primaryLabelValue\":\"959993\"}},{\"attributeHeader\":{\"labelValue\":\"959995\",\"primaryLabelValue\":\"959995\"}},{\"attributeHeader\":{\"labelValue\":\"959997\",\"primaryLabelValue\":\"959997\"}},{\"attributeHeader\":{\"labelValue\":\"959999\",\"primaryLabelValue\":\"959999\"}},{\"attributeHeader\":{\"labelValue\":\"960001\",\"primaryLabelValue\":\"960001\"}},{\"attributeHeader\":{\"labelValue\":\"960003\",\"primaryLabelValue\":\"960003\"}},{\"attributeHeader\":{\"labelValue\":\"960005\",\"primaryLabelValue\":\"960005\"}},{\"attributeHeader\":{\"labelValue\":\"960007\",\"primaryLabelValue\":\"960007\"}},{\"attributeHeader\":{\"labelValue\":\"960009\",\"primaryLabelValue\":\"960009\"}},{\"attributeHeader\":{\"labelValue\":\"960011\",\"primaryLabelValue\":\"960011\"}},{\"attributeHeader\":{\"labelValue\":\"960013\",\"primaryLabelValue\":\"960013\"}},{\"attributeHeader\":{\"labelValue\":\"960015\",\"primaryLabelValue\":\"960015\"}},{\"attributeHeader\":{\"labelValue\":\"960017\",\"primaryLabelValue\":\"960017\"}},{\"attributeHeader\":{\"labelValue\":\"960019\",\"primaryLabelValue\":\"960019\"}},{\"attributeHeader\":{\"labelValue\":\"960021\",\"primaryLabelValue\":\"960021\"}},{\"attributeHeader\":{\"labelValue\":\"960023\",\"primaryLabelValue\":\"960023\"}},{\"attributeHeader\":{\"labelValue\":\"960025\",\"primaryLabelValue\":\"960025\"}},{\"attributeHeader\":{\"labelValue\":\"960027\",\"primaryLabelValue\":\"960027\"}},{\"attributeHeader\":{\"labelValue\":\"960029\",\"primaryLabelValue\":\"960029\"}},{\"attributeHeader\":{\"labelValue\":\"960031\",\"primaryLabelValue\":\"960031\"}},{\"attributeHeader\":{\"labelValue\":\"960033\",\"primaryLabelValue\":\"960033\"}},{\"attributeHeader\":{\"labelValue\":\"960035\",\"primaryLabelValue\":\"960035\"}},{\"attributeHeader\":{\"labelValue\":\"960037\",\"primaryLabelValue\":\"960037\"}},{\"attributeHeader\":{\"labelValue\":\"960039\",\"primaryLabelValue\":\"960039\"}},{\"attributeHeader\":{\"labelValue\":\"960041\",\"primaryLabelValue\":\"960041\"}},{\"attributeHeader\":{\"labelValue\":\"960043\",\"primaryLabelValue\":\"960043\"}},{\"attributeHeader\":{\"labelValue\":\"960045\",\"primaryLabelValue\":\"960045\"}},{\"attributeHeader\":{\"labelValue\":\"960047\",\"primaryLabelValue\":\"960047\"}},{\"attributeHeader\":{\"labelValue\":\"960049\",\"primaryLabelValue\":\"960049\"}},{\"attributeHeader\":{\"labelValue\":\"960051\",\"primaryLabelValue\":\"960051\"}},{\"attributeHeader\":{\"labelValue\":\"960053\",\"primaryLabelValue\":\"960053\"}},{\"attributeHeader\":{\"labelValue\":\"960055\",\"primaryLabelValue\":\"960055\"}},{\"attributeHeader\":{\"labelValue\":\"960057\",\"primaryLabelValue\":\"960057\"}},{\"attributeHeader\":{\"labelValue\":\"960059\",\"primaryLabelValue\":\"960059\"}},{\"attributeHeader\":{\"labelValue\":\"960061\",\"primaryLabelValue\":\"960061\"}},{\"attributeHeader\":{\"labelValue\":\"960063\",\"primaryLabelValue\":\"960063\"}},{\"attributeHeader\":{\"labelValue\":\"960065\",\"primaryLabelValue\":\"960065\"}},{\"attributeHeader\":{\"labelValue\":\"960067\",\"primaryLabelValue\":\"960067\"}},{\"attributeHeader\":{\"labelValue\":\"960069\",\"primaryLabelValue\":\"960069\"}},{\"attributeHeader\":{\"labelValue\":\"960071\",\"primaryLabelValue\":\"960071\"}},{\"attributeHeader\":{\"labelValue\":\"960073\",\"primaryLabelValue\":\"960073\"}},{\"attributeHeader\":{\"labelValue\":\"960075\",\"primaryLabelValue\":\"960075\"}},{\"attributeHeader\":{\"labelValue\":\"960077\",\"primaryLabelValue\":\"960077\"}},{\"attributeHeader\":{\"labelValue\":\"960079\",\"primaryLabelValue\":\"960079\"}},{\"attributeHeader\":{\"labelValue\":\"960081\",\"primaryLabelValue\":\"960081\"}},{\"attributeHeader\":{\"labelValue\":\"960083\",\"primaryLabelValue\":\"960083\"}},{\"attributeHeader\":{\"labelValue\":\"960085\",\"primaryLabelValue\":\"960085\"}},{\"attributeHeader\":{\"labelValue\":\"960087\",\"primaryLabelValue\":\"960087\"}},{\"attributeHeader\":{\"labelValue\":\"960089\",\"primaryLabelValue\":\"960089\"}},{\"attributeHeader\":{\"labelValue\":\"960091\",\"primaryLabelValue\":\"960091\"}},{\"attributeHeader\":{\"labelValue\":\"960093\",\"primaryLabelValue\":\"960093\"}},{\"attributeHeader\":{\"labelValue\":\"960095\",\"primaryLabelValue\":\"960095\"}},{\"attributeHeader\":{\"labelValue\":\"960097\",\"primaryLabelValue\":\"960097\"}},{\"attributeHeader\":{\"labelValue\":\"960099\",\"primaryLabelValue\":\"960099\"}},{\"attributeHeader\":{\"labelValue\":\"960101\",\"primaryLabelValue\":\"960101\"}},{\"attributeHeader\":{\"labelValue\":\"960103\",\"primaryLabelValue\":\"960103\"}},{\"attributeHeader\":{\"labelValue\":\"960105\",\"primaryLabelValue\":\"960105\"}},{\"attributeHeader\":{\"labelValue\":\"960107\",\"primaryLabelValue\":\"960107\"}},{\"attributeHeader\":{\"labelValue\":\"960109\",\"primaryLabelValue\":\"960109\"}},{\"attributeHeader\":{\"labelValue\":\"960111\",\"primaryLabelValue\":\"960111\"}},{\"attributeHeader\":{\"labelValue\":\"960113\",\"primaryLabelValue\":\"960113\"}},{\"attributeHeader\":{\"labelValue\":\"960115\",\"primaryLabelValue\":\"960115\"}},{\"attributeHeader\":{\"labelValue\":\"960117\",\"primaryLabelValue\":\"960117\"}},{\"attributeHeader\":{\"labelValue\":\"960119\",\"primaryLabelValue\":\"960119\"}},{\"attributeHeader\":{\"labelValue\":\"960121\",\"primaryLabelValue\":\"960121\"}},{\"attributeHeader\":{\"labelValue\":\"960123\",\"primaryLabelValue\":\"960123\"}},{\"attributeHeader\":{\"labelValue\":\"960125\",\"primaryLabelValue\":\"960125\"}},{\"attributeHeader\":{\"labelValue\":\"960127\",\"primaryLabelValue\":\"960127\"}},{\"attributeHeader\":{\"labelValue\":\"960129\",\"primaryLabelValue\":\"960129\"}},{\"attributeHeader\":{\"labelValue\":\"960131\",\"primaryLabelValue\":\"960131\"}},{\"attributeHeader\":{\"labelValue\":\"960133\",\"primaryLabelValue\":\"960133\"}},{\"attributeHeader\":{\"labelValue\":\"960135\",\"primaryLabelValue\":\"960135\"}},{\"attributeHeader\":{\"labelValue\":\"960137\",\"primaryLabelValue\":\"960137\"}},{\"attributeHeader\":{\"labelValue\":\"960139\",\"primaryLabelValue\":\"960139\"}},{\"attributeHeader\":{\"labelValue\":\"960141\",\"primaryLabelValue\":\"960141\"}},{\"attributeHeader\":{\"labelValue\":\"960143\",\"primaryLabelValue\":\"960143\"}},{\"attributeHeader\":{\"labelValue\":\"960145\",\"primaryLabelValue\":\"960145\"}},{\"attributeHeader\":{\"labelValue\":\"960147\",\"primaryLabelValue\":\"960147\"}},{\"attributeHeader\":{\"labelValue\":\"960149\",\"primaryLabelValue\":\"960149\"}},{\"attributeHeader\":{\"labelValue\":\"960151\",\"primaryLabelValue\":\"960151\"}},{\"attributeHeader\":{\"labelValue\":\"960153\",\"primaryLabelValue\":\"960153\"}},{\"attributeHeader\":{\"labelValue\":\"960155\",\"primaryLabelValue\":\"960155\"}},{\"attributeHeader\":{\"labelValue\":\"960157\",\"primaryLabelValue\":\"960157\"}},{\"attributeHeader\":{\"labelValue\":\"960159\",\"primaryLabelValue\":\"960159\"}},{\"attributeHeader\":{\"labelValue\":\"960161\",\"primaryLabelValue\":\"960161\"}},{\"attributeHeader\":{\"labelValue\":\"960163\",\"primaryLabelValue\":\"960163\"}},{\"attributeHeader\":{\"labelValue\":\"960165\",\"primaryLabelValue\":\"960165\"}},{\"attributeHeader\":{\"labelValue\":\"960167\",\"primaryLabelValue\":\"960167\"}},{\"attributeHeader\":{\"labelValue\":\"960169\",\"primaryLabelValue\":\"960169\"}},{\"attributeHeader\":{\"labelValue\":\"960171\",\"primaryLabelValue\":\"960171\"}},{\"attributeHeader\":{\"labelValue\":\"960173\",\"primaryLabelValue\":\"960173\"}},{\"attributeHeader\":{\"labelValue\":\"960175\",\"primaryLabelValue\":\"960175\"}},{\"attributeHeader\":{\"labelValue\":\"960177\",\"primaryLabelValue\":\"960177\"}},{\"attributeHeader\":{\"labelValue\":\"960179\",\"primaryLabelValue\":\"960179\"}},{\"attributeHeader\":{\"labelValue\":\"960181\",\"primaryLabelValue\":\"960181\"}},{\"attributeHeader\":{\"labelValue\":\"960183\",\"primaryLabelValue\":\"960183\"}},{\"attributeHeader\":{\"labelValue\":\"960185\",\"primaryLabelValue\":\"960185\"}},{\"attributeHeader\":{\"labelValue\":\"960187\",\"primaryLabelValue\":\"960187\"}},{\"attributeHeader\":{\"labelValue\":\"960189\",\"primaryLabelValue\":\"960189\"}},{\"attributeHeader\":{\"labelValue\":\"960191\",\"primaryLabelValue\":\"960191\"}},{\"attributeHeader\":{\"labelValue\":\"960193\",\"primaryLabelValue\":\"960193\"}},{\"attributeHeader\":{\"labelValue\":\"960195\",\"primaryLabelValue\":\"960195\"}},{\"attributeHeader\":{\"labelValue\":\"960197\",\"primaryLabelValue\":\"960197\"}},{\"attributeHeader\":{\"labelValue\":\"960199\",\"primaryLabelValue\":\"960199\"}},{\"attributeHeader\":{\"labelValue\":\"960201\",\"primaryLabelValue\":\"960201\"}},{\"attributeHeader\":{\"labelValue\":\"960203\",\"primaryLabelValue\":\"960203\"}},{\"attributeHeader\":{\"labelValue\":\"960205\",\"primaryLabelValue\":\"960205\"}},{\"attributeHeader\":{\"labelValue\":\"960207\",\"primaryLabelValue\":\"960207\"}},{\"attributeHeader\":{\"labelValue\":\"960209\",\"primaryLabelValue\":\"960209\"}},{\"attributeHeader\":{\"labelValue\":\"960211\",\"primaryLabelValue\":\"960211\"}},{\"attributeHeader\":{\"labelValue\":\"960213\",\"primaryLabelValue\":\"960213\"}},{\"attributeHeader\":{\"labelValue\":\"960215\",\"primaryLabelValue\":\"960215\"}},{\"attributeHeader\":{\"labelValue\":\"960217\",\"primaryLabelValue\":\"960217\"}},{\"attributeHeader\":{\"labelValue\":\"960219\",\"primaryLabelValue\":\"960219\"}},{\"attributeHeader\":{\"labelValue\":\"960221\",\"primaryLabelValue\":\"960221\"}},{\"attributeHeader\":{\"labelValue\":\"960223\",\"primaryLabelValue\":\"960223\"}},{\"attributeHeader\":{\"labelValue\":\"960225\",\"primaryLabelValue\":\"960225\"}},{\"attributeHeader\":{\"labelValue\":\"960227\",\"primaryLabelValue\":\"960227\"}},{\"attributeHeader\":{\"labelValue\":\"960229\",\"primaryLabelValue\":\"960229\"}},{\"attributeHeader\":{\"labelValue\":\"960231\",\"primaryLabelValue\":\"960231\"}},{\"attributeHeader\":{\"labelValue\":\"960233\",\"primaryLabelValue\":\"960233\"}},{\"attributeHeader\":{\"labelValue\":\"960235\",\"primaryLabelValue\":\"960235\"}},{\"attributeHeader\":{\"labelValue\":\"960237\",\"primaryLabelValue\":\"960237\"}},{\"attributeHeader\":{\"labelValue\":\"960239\",\"primaryLabelValue\":\"960239\"}},{\"attributeHeader\":{\"labelValue\":\"960241\",\"primaryLabelValue\":\"960241\"}},{\"attributeHeader\":{\"labelValue\":\"960243\",\"primaryLabelValue\":\"960243\"}},{\"attributeHeader\":{\"labelValue\":\"960245\",\"primaryLabelValue\":\"960245\"}},{\"attributeHeader\":{\"labelValue\":\"960247\",\"primaryLabelValue\":\"960247\"}},{\"attributeHeader\":{\"labelValue\":\"960249\",\"primaryLabelValue\":\"960249\"}},{\"attributeHeader\":{\"labelValue\":\"960251\",\"primaryLabelValue\":\"960251\"}},{\"attributeHeader\":{\"labelValue\":\"960253\",\"primaryLabelValue\":\"960253\"}},{\"attributeHeader\":{\"labelValue\":\"960255\",\"primaryLabelValue\":\"960255\"}},{\"attributeHeader\":{\"labelValue\":\"960257\",\"primaryLabelValue\":\"960257\"}},{\"attributeHeader\":{\"labelValue\":\"960259\",\"primaryLabelValue\":\"960259\"}},{\"attributeHeader\":{\"labelValue\":\"960261\",\"primaryLabelValue\":\"960261\"}},{\"attributeHeader\":{\"labelValue\":\"960263\",\"primaryLabelValue\":\"960263\"}},{\"attributeHeader\":{\"labelValue\":\"960265\",\"primaryLabelValue\":\"960265\"}},{\"attributeHeader\":{\"labelValue\":\"960267\",\"primaryLabelValue\":\"960267\"}},{\"attributeHeader\":{\"labelValue\":\"960269\",\"primaryLabelValue\":\"960269\"}},{\"attributeHeader\":{\"labelValue\":\"960271\",\"primaryLabelValue\":\"960271\"}},{\"attributeHeader\":{\"labelValue\":\"960273\",\"primaryLabelValue\":\"960273\"}},{\"attributeHeader\":{\"labelValue\":\"960275\",\"primaryLabelValue\":\"960275\"}},{\"attributeHeader\":{\"labelValue\":\"960277\",\"primaryLabelValue\":\"960277\"}},{\"attributeHeader\":{\"labelValue\":\"960279\",\"primaryLabelValue\":\"960279\"}},{\"attributeHeader\":{\"labelValue\":\"960283\",\"primaryLabelValue\":\"960283\"}},{\"attributeHeader\":{\"labelValue\":\"960285\",\"primaryLabelValue\":\"960285\"}},{\"attributeHeader\":{\"labelValue\":\"960287\",\"primaryLabelValue\":\"960287\"}},{\"attributeHeader\":{\"labelValue\":\"960289\",\"primaryLabelValue\":\"960289\"}},{\"attributeHeader\":{\"labelValue\":\"960291\",\"primaryLabelValue\":\"960291\"}},{\"attributeHeader\":{\"labelValue\":\"960293\",\"primaryLabelValue\":\"960293\"}},{\"attributeHeader\":{\"labelValue\":\"960295\",\"primaryLabelValue\":\"960295\"}},{\"attributeHeader\":{\"labelValue\":\"960297\",\"primaryLabelValue\":\"960297\"}},{\"attributeHeader\":{\"labelValue\":\"960299\",\"primaryLabelValue\":\"960299\"}},{\"attributeHeader\":{\"labelValue\":\"960301\",\"primaryLabelValue\":\"960301\"}},{\"attributeHeader\":{\"labelValue\":\"960303\",\"primaryLabelValue\":\"960303\"}},{\"attributeHeader\":{\"labelValue\":\"960305\",\"primaryLabelValue\":\"960305\"}},{\"attributeHeader\":{\"labelValue\":\"960307\",\"primaryLabelValue\":\"960307\"}},{\"attributeHeader\":{\"labelValue\":\"960309\",\"primaryLabelValue\":\"960309\"}},{\"attributeHeader\":{\"labelValue\":\"960311\",\"primaryLabelValue\":\"960311\"}},{\"attributeHeader\":{\"labelValue\":\"960313\",\"primaryLabelValue\":\"960313\"}},{\"attributeHeader\":{\"labelValue\":\"960315\",\"primaryLabelValue\":\"960315\"}},{\"attributeHeader\":{\"labelValue\":\"960317\",\"primaryLabelValue\":\"960317\"}},{\"attributeHeader\":{\"labelValue\":\"960319\",\"primaryLabelValue\":\"960319\"}},{\"attributeHeader\":{\"labelValue\":\"960321\",\"primaryLabelValue\":\"960321\"}},{\"attributeHeader\":{\"labelValue\":\"960323\",\"primaryLabelValue\":\"960323\"}},{\"attributeHeader\":{\"labelValue\":\"960325\",\"primaryLabelValue\":\"960325\"}},{\"attributeHeader\":{\"labelValue\":\"960327\",\"primaryLabelValue\":\"960327\"}},{\"attributeHeader\":{\"labelValue\":\"960329\",\"primaryLabelValue\":\"960329\"}},{\"attributeHeader\":{\"labelValue\":\"960331\",\"primaryLabelValue\":\"960331\"}},{\"attributeHeader\":{\"labelValue\":\"960333\",\"primaryLabelValue\":\"960333\"}},{\"attributeHeader\":{\"labelValue\":\"960335\",\"primaryLabelValue\":\"960335\"}},{\"attributeHeader\":{\"labelValue\":\"960337\",\"primaryLabelValue\":\"960337\"}},{\"attributeHeader\":{\"labelValue\":\"960339\",\"primaryLabelValue\":\"960339\"}},{\"attributeHeader\":{\"labelValue\":\"960341\",\"primaryLabelValue\":\"960341\"}},{\"attributeHeader\":{\"labelValue\":\"960343\",\"primaryLabelValue\":\"960343\"}},{\"attributeHeader\":{\"labelValue\":\"960345\",\"primaryLabelValue\":\"960345\"}},{\"attributeHeader\":{\"labelValue\":\"960347\",\"primaryLabelValue\":\"960347\"}},{\"attributeHeader\":{\"labelValue\":\"960349\",\"primaryLabelValue\":\"960349\"}},{\"attributeHeader\":{\"labelValue\":\"960351\",\"primaryLabelValue\":\"960351\"}},{\"attributeHeader\":{\"labelValue\":\"960353\",\"primaryLabelValue\":\"960353\"}},{\"attributeHeader\":{\"labelValue\":\"960355\",\"primaryLabelValue\":\"960355\"}},{\"attributeHeader\":{\"labelValue\":\"960357\",\"primaryLabelValue\":\"960357\"}},{\"attributeHeader\":{\"labelValue\":\"960359\",\"primaryLabelValue\":\"960359\"}},{\"attributeHeader\":{\"labelValue\":\"960361\",\"primaryLabelValue\":\"960361\"}},{\"attributeHeader\":{\"labelValue\":\"960363\",\"primaryLabelValue\":\"960363\"}},{\"attributeHeader\":{\"labelValue\":\"960365\",\"primaryLabelValue\":\"960365\"}},{\"attributeHeader\":{\"labelValue\":\"960367\",\"primaryLabelValue\":\"960367\"}},{\"attributeHeader\":{\"labelValue\":\"960369\",\"primaryLabelValue\":\"960369\"}},{\"attributeHeader\":{\"labelValue\":\"960371\",\"primaryLabelValue\":\"960371\"}},{\"attributeHeader\":{\"labelValue\":\"960373\",\"primaryLabelValue\":\"960373\"}},{\"attributeHeader\":{\"labelValue\":\"960375\",\"primaryLabelValue\":\"960375\"}},{\"attributeHeader\":{\"labelValue\":\"960377\",\"primaryLabelValue\":\"960377\"}},{\"attributeHeader\":{\"labelValue\":\"960379\",\"primaryLabelValue\":\"960379\"}},{\"attributeHeader\":{\"labelValue\":\"960381\",\"primaryLabelValue\":\"960381\"}},{\"attributeHeader\":{\"labelValue\":\"960383\",\"primaryLabelValue\":\"960383\"}},{\"attributeHeader\":{\"labelValue\":\"960385\",\"primaryLabelValue\":\"960385\"}},{\"attributeHeader\":{\"labelValue\":\"960387\",\"primaryLabelValue\":\"960387\"}},{\"attributeHeader\":{\"labelValue\":\"960389\",\"primaryLabelValue\":\"960389\"}},{\"attributeHeader\":{\"labelValue\":\"960391\",\"primaryLabelValue\":\"960391\"}},{\"attributeHeader\":{\"labelValue\":\"960393\",\"primaryLabelValue\":\"960393\"}},{\"attributeHeader\":{\"labelValue\":\"960395\",\"primaryLabelValue\":\"960395\"}},{\"attributeHeader\":{\"labelValue\":\"960397\",\"primaryLabelValue\":\"960397\"}},{\"attributeHeader\":{\"labelValue\":\"960399\",\"primaryLabelValue\":\"960399\"}},{\"attributeHeader\":{\"labelValue\":\"960401\",\"primaryLabelValue\":\"960401\"}},{\"attributeHeader\":{\"labelValue\":\"960403\",\"primaryLabelValue\":\"960403\"}},{\"attributeHeader\":{\"labelValue\":\"960405\",\"primaryLabelValue\":\"960405\"}},{\"attributeHeader\":{\"labelValue\":\"960407\",\"primaryLabelValue\":\"960407\"}},{\"attributeHeader\":{\"labelValue\":\"960409\",\"primaryLabelValue\":\"960409\"}},{\"attributeHeader\":{\"labelValue\":\"960411\",\"primaryLabelValue\":\"960411\"}},{\"attributeHeader\":{\"labelValue\":\"960413\",\"primaryLabelValue\":\"960413\"}},{\"attributeHeader\":{\"labelValue\":\"960415\",\"primaryLabelValue\":\"960415\"}},{\"attributeHeader\":{\"labelValue\":\"960417\",\"primaryLabelValue\":\"960417\"}},{\"attributeHeader\":{\"labelValue\":\"960419\",\"primaryLabelValue\":\"960419\"}},{\"attributeHeader\":{\"labelValue\":\"960421\",\"primaryLabelValue\":\"960421\"}},{\"attributeHeader\":{\"labelValue\":\"960423\",\"primaryLabelValue\":\"960423\"}},{\"attributeHeader\":{\"labelValue\":\"960425\",\"primaryLabelValue\":\"960425\"}},{\"attributeHeader\":{\"labelValue\":\"960427\",\"primaryLabelValue\":\"960427\"}},{\"attributeHeader\":{\"labelValue\":\"960429\",\"primaryLabelValue\":\"960429\"}},{\"attributeHeader\":{\"labelValue\":\"960431\",\"primaryLabelValue\":\"960431\"}},{\"attributeHeader\":{\"labelValue\":\"960433\",\"primaryLabelValue\":\"960433\"}},{\"attributeHeader\":{\"labelValue\":\"960435\",\"primaryLabelValue\":\"960435\"}},{\"attributeHeader\":{\"labelValue\":\"960437\",\"primaryLabelValue\":\"960437\"}},{\"attributeHeader\":{\"labelValue\":\"960439\",\"primaryLabelValue\":\"960439\"}},{\"attributeHeader\":{\"labelValue\":\"960441\",\"primaryLabelValue\":\"960441\"}},{\"attributeHeader\":{\"labelValue\":\"960443\",\"primaryLabelValue\":\"960443\"}},{\"attributeHeader\":{\"labelValue\":\"960445\",\"primaryLabelValue\":\"960445\"}},{\"attributeHeader\":{\"labelValue\":\"960447\",\"primaryLabelValue\":\"960447\"}},{\"attributeHeader\":{\"labelValue\":\"960449\",\"primaryLabelValue\":\"960449\"}},{\"attributeHeader\":{\"labelValue\":\"960451\",\"primaryLabelValue\":\"960451\"}},{\"attributeHeader\":{\"labelValue\":\"960453\",\"primaryLabelValue\":\"960453\"}},{\"attributeHeader\":{\"labelValue\":\"960455\",\"primaryLabelValue\":\"960455\"}},{\"attributeHeader\":{\"labelValue\":\"960457\",\"primaryLabelValue\":\"960457\"}},{\"attributeHeader\":{\"labelValue\":\"960459\",\"primaryLabelValue\":\"960459\"}},{\"attributeHeader\":{\"labelValue\":\"960461\",\"primaryLabelValue\":\"960461\"}},{\"attributeHeader\":{\"labelValue\":\"960463\",\"primaryLabelValue\":\"960463\"}},{\"attributeHeader\":{\"labelValue\":\"960465\",\"primaryLabelValue\":\"960465\"}},{\"attributeHeader\":{\"labelValue\":\"960467\",\"primaryLabelValue\":\"960467\"}},{\"attributeHeader\":{\"labelValue\":\"960469\",\"primaryLabelValue\":\"960469\"}},{\"attributeHeader\":{\"labelValue\":\"960471\",\"primaryLabelValue\":\"960471\"}},{\"attributeHeader\":{\"labelValue\":\"960473\",\"primaryLabelValue\":\"960473\"}},{\"attributeHeader\":{\"labelValue\":\"960475\",\"primaryLabelValue\":\"960475\"}},{\"attributeHeader\":{\"labelValue\":\"960477\",\"primaryLabelValue\":\"960477\"}},{\"attributeHeader\":{\"labelValue\":\"960479\",\"primaryLabelValue\":\"960479\"}},{\"attributeHeader\":{\"labelValue\":\"960481\",\"primaryLabelValue\":\"960481\"}},{\"attributeHeader\":{\"labelValue\":\"960483\",\"primaryLabelValue\":\"960483\"}},{\"attributeHeader\":{\"labelValue\":\"960485\",\"primaryLabelValue\":\"960485\"}},{\"attributeHeader\":{\"labelValue\":\"960487\",\"primaryLabelValue\":\"960487\"}},{\"attributeHeader\":{\"labelValue\":\"960489\",\"primaryLabelValue\":\"960489\"}},{\"attributeHeader\":{\"labelValue\":\"960491\",\"primaryLabelValue\":\"960491\"}},{\"attributeHeader\":{\"labelValue\":\"960493\",\"primaryLabelValue\":\"960493\"}},{\"attributeHeader\":{\"labelValue\":\"960497\",\"primaryLabelValue\":\"960497\"}},{\"attributeHeader\":{\"labelValue\":\"960499\",\"primaryLabelValue\":\"960499\"}},{\"attributeHeader\":{\"labelValue\":\"960501\",\"primaryLabelValue\":\"960501\"}},{\"attributeHeader\":{\"labelValue\":\"960503\",\"primaryLabelValue\":\"960503\"}},{\"attributeHeader\":{\"labelValue\":\"960505\",\"primaryLabelValue\":\"960505\"}},{\"attributeHeader\":{\"labelValue\":\"960507\",\"primaryLabelValue\":\"960507\"}},{\"attributeHeader\":{\"labelValue\":\"960509\",\"primaryLabelValue\":\"960509\"}},{\"attributeHeader\":{\"labelValue\":\"960511\",\"primaryLabelValue\":\"960511\"}},{\"attributeHeader\":{\"labelValue\":\"960513\",\"primaryLabelValue\":\"960513\"}},{\"attributeHeader\":{\"labelValue\":\"960515\",\"primaryLabelValue\":\"960515\"}},{\"attributeHeader\":{\"labelValue\":\"960517\",\"primaryLabelValue\":\"960517\"}},{\"attributeHeader\":{\"labelValue\":\"960519\",\"primaryLabelValue\":\"960519\"}},{\"attributeHeader\":{\"labelValue\":\"960521\",\"primaryLabelValue\":\"960521\"}},{\"attributeHeader\":{\"labelValue\":\"960527\",\"primaryLabelValue\":\"960527\"}},{\"attributeHeader\":{\"labelValue\":\"960529\",\"primaryLabelValue\":\"960529\"}},{\"attributeHeader\":{\"labelValue\":\"960531\",\"primaryLabelValue\":\"960531\"}},{\"attributeHeader\":{\"labelValue\":\"960533\",\"primaryLabelValue\":\"960533\"}},{\"attributeHeader\":{\"labelValue\":\"960535\",\"primaryLabelValue\":\"960535\"}},{\"attributeHeader\":{\"labelValue\":\"960537\",\"primaryLabelValue\":\"960537\"}},{\"attributeHeader\":{\"labelValue\":\"960539\",\"primaryLabelValue\":\"960539\"}},{\"attributeHeader\":{\"labelValue\":\"960541\",\"primaryLabelValue\":\"960541\"}},{\"attributeHeader\":{\"labelValue\":\"960543\",\"primaryLabelValue\":\"960543\"}},{\"attributeHeader\":{\"labelValue\":\"960545\",\"primaryLabelValue\":\"960545\"}},{\"attributeHeader\":{\"labelValue\":\"960547\",\"primaryLabelValue\":\"960547\"}},{\"attributeHeader\":{\"labelValue\":\"960549\",\"primaryLabelValue\":\"960549\"}},{\"attributeHeader\":{\"labelValue\":\"960551\",\"primaryLabelValue\":\"960551\"}},{\"attributeHeader\":{\"labelValue\":\"960553\",\"primaryLabelValue\":\"960553\"}},{\"attributeHeader\":{\"labelValue\":\"960555\",\"primaryLabelValue\":\"960555\"}},{\"attributeHeader\":{\"labelValue\":\"960557\",\"primaryLabelValue\":\"960557\"}},{\"attributeHeader\":{\"labelValue\":\"960559\",\"primaryLabelValue\":\"960559\"}},{\"attributeHeader\":{\"labelValue\":\"960561\",\"primaryLabelValue\":\"960561\"}},{\"attributeHeader\":{\"labelValue\":\"960563\",\"primaryLabelValue\":\"960563\"}},{\"attributeHeader\":{\"labelValue\":\"960567\",\"primaryLabelValue\":\"960567\"}},{\"attributeHeader\":{\"labelValue\":\"960569\",\"primaryLabelValue\":\"960569\"}},{\"attributeHeader\":{\"labelValue\":\"960571\",\"primaryLabelValue\":\"960571\"}},{\"attributeHeader\":{\"labelValue\":\"960573\",\"primaryLabelValue\":\"960573\"}},{\"attributeHeader\":{\"labelValue\":\"960575\",\"primaryLabelValue\":\"960575\"}},{\"attributeHeader\":{\"labelValue\":\"960577\",\"primaryLabelValue\":\"960577\"}},{\"attributeHeader\":{\"labelValue\":\"960579\",\"primaryLabelValue\":\"960579\"}},{\"attributeHeader\":{\"labelValue\":\"960581\",\"primaryLabelValue\":\"960581\"}},{\"attributeHeader\":{\"labelValue\":\"960583\",\"primaryLabelValue\":\"960583\"}},{\"attributeHeader\":{\"labelValue\":\"960585\",\"primaryLabelValue\":\"960585\"}},{\"attributeHeader\":{\"labelValue\":\"960587\",\"primaryLabelValue\":\"960587\"}},{\"attributeHeader\":{\"labelValue\":\"960589\",\"primaryLabelValue\":\"960589\"}},{\"attributeHeader\":{\"labelValue\":\"960591\",\"primaryLabelValue\":\"960591\"}},{\"attributeHeader\":{\"labelValue\":\"960593\",\"primaryLabelValue\":\"960593\"}},{\"attributeHeader\":{\"labelValue\":\"960595\",\"primaryLabelValue\":\"960595\"}},{\"attributeHeader\":{\"labelValue\":\"960597\",\"primaryLabelValue\":\"960597\"}},{\"attributeHeader\":{\"labelValue\":\"960601\",\"primaryLabelValue\":\"960601\"}},{\"attributeHeader\":{\"labelValue\":\"960605\",\"primaryLabelValue\":\"960605\"}},{\"attributeHeader\":{\"labelValue\":\"960607\",\"primaryLabelValue\":\"960607\"}},{\"attributeHeader\":{\"labelValue\":\"960609\",\"primaryLabelValue\":\"960609\"}},{\"attributeHeader\":{\"labelValue\":\"960611\",\"primaryLabelValue\":\"960611\"}},{\"attributeHeader\":{\"labelValue\":\"960613\",\"primaryLabelValue\":\"960613\"}},{\"attributeHeader\":{\"labelValue\":\"960615\",\"primaryLabelValue\":\"960615\"}},{\"attributeHeader\":{\"labelValue\":\"960617\",\"primaryLabelValue\":\"960617\"}},{\"attributeHeader\":{\"labelValue\":\"960619\",\"primaryLabelValue\":\"960619\"}},{\"attributeHeader\":{\"labelValue\":\"960621\",\"primaryLabelValue\":\"960621\"}},{\"attributeHeader\":{\"labelValue\":\"960623\",\"primaryLabelValue\":\"960623\"}},{\"attributeHeader\":{\"labelValue\":\"960625\",\"primaryLabelValue\":\"960625\"}},{\"attributeHeader\":{\"labelValue\":\"960627\",\"primaryLabelValue\":\"960627\"}},{\"attributeHeader\":{\"labelValue\":\"960629\",\"primaryLabelValue\":\"960629\"}},{\"attributeHeader\":{\"labelValue\":\"960631\",\"primaryLabelValue\":\"960631\"}},{\"attributeHeader\":{\"labelValue\":\"960633\",\"primaryLabelValue\":\"960633\"}},{\"attributeHeader\":{\"labelValue\":\"960635\",\"primaryLabelValue\":\"960635\"}},{\"attributeHeader\":{\"labelValue\":\"960637\",\"primaryLabelValue\":\"960637\"}},{\"attributeHeader\":{\"labelValue\":\"960639\",\"primaryLabelValue\":\"960639\"}},{\"attributeHeader\":{\"labelValue\":\"960641\",\"primaryLabelValue\":\"960641\"}},{\"attributeHeader\":{\"labelValue\":\"960643\",\"primaryLabelValue\":\"960643\"}},{\"attributeHeader\":{\"labelValue\":\"960645\",\"primaryLabelValue\":\"960645\"}},{\"attributeHeader\":{\"labelValue\":\"960647\",\"primaryLabelValue\":\"960647\"}},{\"attributeHeader\":{\"labelValue\":\"960649\",\"primaryLabelValue\":\"960649\"}},{\"attributeHeader\":{\"labelValue\":\"960651\",\"primaryLabelValue\":\"960651\"}},{\"attributeHeader\":{\"labelValue\":\"960653\",\"primaryLabelValue\":\"960653\"}},{\"attributeHeader\":{\"labelValue\":\"960655\",\"primaryLabelValue\":\"960655\"}},{\"attributeHeader\":{\"labelValue\":\"960661\",\"primaryLabelValue\":\"960661\"}},{\"attributeHeader\":{\"labelValue\":\"960663\",\"primaryLabelValue\":\"960663\"}},{\"attributeHeader\":{\"labelValue\":\"960665\",\"primaryLabelValue\":\"960665\"}},{\"attributeHeader\":{\"labelValue\":\"960667\",\"primaryLabelValue\":\"960667\"}},{\"attributeHeader\":{\"labelValue\":\"960669\",\"primaryLabelValue\":\"960669\"}},{\"attributeHeader\":{\"labelValue\":\"960671\",\"primaryLabelValue\":\"960671\"}},{\"attributeHeader\":{\"labelValue\":\"960675\",\"primaryLabelValue\":\"960675\"}},{\"attributeHeader\":{\"labelValue\":\"960677\",\"primaryLabelValue\":\"960677\"}},{\"attributeHeader\":{\"labelValue\":\"960679\",\"primaryLabelValue\":\"960679\"}},{\"attributeHeader\":{\"labelValue\":\"960681\",\"primaryLabelValue\":\"960681\"}},{\"attributeHeader\":{\"labelValue\":\"960683\",\"primaryLabelValue\":\"960683\"}},{\"attributeHeader\":{\"labelValue\":\"960685\",\"primaryLabelValue\":\"960685\"}},{\"attributeHeader\":{\"labelValue\":\"960687\",\"primaryLabelValue\":\"960687\"}},{\"attributeHeader\":{\"labelValue\":\"960689\",\"primaryLabelValue\":\"960689\"}},{\"attributeHeader\":{\"labelValue\":\"960691\",\"primaryLabelValue\":\"960691\"}},{\"attributeHeader\":{\"labelValue\":\"960693\",\"primaryLabelValue\":\"960693\"}},{\"attributeHeader\":{\"labelValue\":\"960695\",\"primaryLabelValue\":\"960695\"}},{\"attributeHeader\":{\"labelValue\":\"960697\",\"primaryLabelValue\":\"960697\"}},{\"attributeHeader\":{\"labelValue\":\"960699\",\"primaryLabelValue\":\"960699\"}},{\"attributeHeader\":{\"labelValue\":\"960701\",\"primaryLabelValue\":\"960701\"}},{\"attributeHeader\":{\"labelValue\":\"960703\",\"primaryLabelValue\":\"960703\"}},{\"attributeHeader\":{\"labelValue\":\"960705\",\"primaryLabelValue\":\"960705\"}},{\"attributeHeader\":{\"labelValue\":\"960707\",\"primaryLabelValue\":\"960707\"}},{\"attributeHeader\":{\"labelValue\":\"960709\",\"primaryLabelValue\":\"960709\"}},{\"attributeHeader\":{\"labelValue\":\"960711\",\"primaryLabelValue\":\"960711\"}},{\"attributeHeader\":{\"labelValue\":\"960713\",\"primaryLabelValue\":\"960713\"}},{\"attributeHeader\":{\"labelValue\":\"960715\",\"primaryLabelValue\":\"960715\"}},{\"attributeHeader\":{\"labelValue\":\"960717\",\"primaryLabelValue\":\"960717\"}},{\"attributeHeader\":{\"labelValue\":\"960719\",\"primaryLabelValue\":\"960719\"}},{\"attributeHeader\":{\"labelValue\":\"960721\",\"primaryLabelValue\":\"960721\"}},{\"attributeHeader\":{\"labelValue\":\"960723\",\"primaryLabelValue\":\"960723\"}},{\"attributeHeader\":{\"labelValue\":\"960727\",\"primaryLabelValue\":\"960727\"}},{\"attributeHeader\":{\"labelValue\":\"960729\",\"primaryLabelValue\":\"960729\"}},{\"attributeHeader\":{\"labelValue\":\"960731\",\"primaryLabelValue\":\"960731\"}},{\"attributeHeader\":{\"labelValue\":\"960733\",\"primaryLabelValue\":\"960733\"}},{\"attributeHeader\":{\"labelValue\":\"960735\",\"primaryLabelValue\":\"960735\"}},{\"attributeHeader\":{\"labelValue\":\"960737\",\"primaryLabelValue\":\"960737\"}},{\"attributeHeader\":{\"labelValue\":\"960739\",\"primaryLabelValue\":\"960739\"}},{\"attributeHeader\":{\"labelValue\":\"960741\",\"primaryLabelValue\":\"960741\"}},{\"attributeHeader\":{\"labelValue\":\"960743\",\"primaryLabelValue\":\"960743\"}},{\"attributeHeader\":{\"labelValue\":\"960745\",\"primaryLabelValue\":\"960745\"}},{\"attributeHeader\":{\"labelValue\":\"960747\",\"primaryLabelValue\":\"960747\"}},{\"attributeHeader\":{\"labelValue\":\"960749\",\"primaryLabelValue\":\"960749\"}},{\"attributeHeader\":{\"labelValue\":\"960751\",\"primaryLabelValue\":\"960751\"}},{\"attributeHeader\":{\"labelValue\":\"960753\",\"primaryLabelValue\":\"960753\"}},{\"attributeHeader\":{\"labelValue\":\"960755\",\"primaryLabelValue\":\"960755\"}},{\"attributeHeader\":{\"labelValue\":\"960757\",\"primaryLabelValue\":\"960757\"}},{\"attributeHeader\":{\"labelValue\":\"960759\",\"primaryLabelValue\":\"960759\"}},{\"attributeHeader\":{\"labelValue\":\"960761\",\"primaryLabelValue\":\"960761\"}},{\"attributeHeader\":{\"labelValue\":\"960763\",\"primaryLabelValue\":\"960763\"}},{\"attributeHeader\":{\"labelValue\":\"960765\",\"primaryLabelValue\":\"960765\"}},{\"attributeHeader\":{\"labelValue\":\"960767\",\"primaryLabelValue\":\"960767\"}},{\"attributeHeader\":{\"labelValue\":\"960769\",\"primaryLabelValue\":\"960769\"}},{\"attributeHeader\":{\"labelValue\":\"960771\",\"primaryLabelValue\":\"960771\"}},{\"attributeHeader\":{\"labelValue\":\"960773\",\"primaryLabelValue\":\"960773\"}},{\"attributeHeader\":{\"labelValue\":\"960775\",\"primaryLabelValue\":\"960775\"}},{\"attributeHeader\":{\"labelValue\":\"960777\",\"primaryLabelValue\":\"960777\"}},{\"attributeHeader\":{\"labelValue\":\"960779\",\"primaryLabelValue\":\"960779\"}},{\"attributeHeader\":{\"labelValue\":\"960781\",\"primaryLabelValue\":\"960781\"}},{\"attributeHeader\":{\"labelValue\":\"960783\",\"primaryLabelValue\":\"960783\"}},{\"attributeHeader\":{\"labelValue\":\"960785\",\"primaryLabelValue\":\"960785\"}},{\"attributeHeader\":{\"labelValue\":\"960787\",\"primaryLabelValue\":\"960787\"}},{\"attributeHeader\":{\"labelValue\":\"960789\",\"primaryLabelValue\":\"960789\"}},{\"attributeHeader\":{\"labelValue\":\"960791\",\"primaryLabelValue\":\"960791\"}},{\"attributeHeader\":{\"labelValue\":\"960793\",\"primaryLabelValue\":\"960793\"}},{\"attributeHeader\":{\"labelValue\":\"960795\",\"primaryLabelValue\":\"960795\"}},{\"attributeHeader\":{\"labelValue\":\"960797\",\"primaryLabelValue\":\"960797\"}},{\"attributeHeader\":{\"labelValue\":\"960799\",\"primaryLabelValue\":\"960799\"}},{\"attributeHeader\":{\"labelValue\":\"960801\",\"primaryLabelValue\":\"960801\"}},{\"attributeHeader\":{\"labelValue\":\"960803\",\"primaryLabelValue\":\"960803\"}},{\"attributeHeader\":{\"labelValue\":\"960805\",\"primaryLabelValue\":\"960805\"}},{\"attributeHeader\":{\"labelValue\":\"960809\",\"primaryLabelValue\":\"960809\"}},{\"attributeHeader\":{\"labelValue\":\"960811\",\"primaryLabelValue\":\"960811\"}},{\"attributeHeader\":{\"labelValue\":\"960813\",\"primaryLabelValue\":\"960813\"}},{\"attributeHeader\":{\"labelValue\":\"960815\",\"primaryLabelValue\":\"960815\"}},{\"attributeHeader\":{\"labelValue\":\"960817\",\"primaryLabelValue\":\"960817\"}},{\"attributeHeader\":{\"labelValue\":\"960819\",\"primaryLabelValue\":\"960819\"}},{\"attributeHeader\":{\"labelValue\":\"960821\",\"primaryLabelValue\":\"960821\"}},{\"attributeHeader\":{\"labelValue\":\"960823\",\"primaryLabelValue\":\"960823\"}},{\"attributeHeader\":{\"labelValue\":\"960825\",\"primaryLabelValue\":\"960825\"}},{\"attributeHeader\":{\"labelValue\":\"960827\",\"primaryLabelValue\":\"960827\"}},{\"attributeHeader\":{\"labelValue\":\"960829\",\"primaryLabelValue\":\"960829\"}},{\"attributeHeader\":{\"labelValue\":\"960831\",\"primaryLabelValue\":\"960831\"}},{\"attributeHeader\":{\"labelValue\":\"960833\",\"primaryLabelValue\":\"960833\"}},{\"attributeHeader\":{\"labelValue\":\"960835\",\"primaryLabelValue\":\"960835\"}},{\"attributeHeader\":{\"labelValue\":\"960839\",\"primaryLabelValue\":\"960839\"}},{\"attributeHeader\":{\"labelValue\":\"960841\",\"primaryLabelValue\":\"960841\"}},{\"attributeHeader\":{\"labelValue\":\"960843\",\"primaryLabelValue\":\"960843\"}},{\"attributeHeader\":{\"labelValue\":\"960845\",\"primaryLabelValue\":\"960845\"}},{\"attributeHeader\":{\"labelValue\":\"960847\",\"primaryLabelValue\":\"960847\"}},{\"attributeHeader\":{\"labelValue\":\"960849\",\"primaryLabelValue\":\"960849\"}},{\"attributeHeader\":{\"labelValue\":\"960853\",\"primaryLabelValue\":\"960853\"}},{\"attributeHeader\":{\"labelValue\":\"960855\",\"primaryLabelValue\":\"960855\"}},{\"attributeHeader\":{\"labelValue\":\"960857\",\"primaryLabelValue\":\"960857\"}},{\"attributeHeader\":{\"labelValue\":\"960859\",\"primaryLabelValue\":\"960859\"}},{\"attributeHeader\":{\"labelValue\":\"960861\",\"primaryLabelValue\":\"960861\"}},{\"attributeHeader\":{\"labelValue\":\"960863\",\"primaryLabelValue\":\"960863\"}},{\"attributeHeader\":{\"labelValue\":\"960865\",\"primaryLabelValue\":\"960865\"}},{\"attributeHeader\":{\"labelValue\":\"960867\",\"primaryLabelValue\":\"960867\"}},{\"attributeHeader\":{\"labelValue\":\"960869\",\"primaryLabelValue\":\"960869\"}},{\"attributeHeader\":{\"labelValue\":\"960871\",\"primaryLabelValue\":\"960871\"}},{\"attributeHeader\":{\"labelValue\":\"960875\",\"primaryLabelValue\":\"960875\"}},{\"attributeHeader\":{\"labelValue\":\"960877\",\"primaryLabelValue\":\"960877\"}},{\"attributeHeader\":{\"labelValue\":\"960879\",\"primaryLabelValue\":\"960879\"}},{\"attributeHeader\":{\"labelValue\":\"960881\",\"primaryLabelValue\":\"960881\"}},{\"attributeHeader\":{\"labelValue\":\"960883\",\"primaryLabelValue\":\"960883\"}},{\"attributeHeader\":{\"labelValue\":\"960887\",\"primaryLabelValue\":\"960887\"}},{\"attributeHeader\":{\"labelValue\":\"960889\",\"primaryLabelValue\":\"960889\"}},{\"attributeHeader\":{\"labelValue\":\"960891\",\"primaryLabelValue\":\"960891\"}},{\"attributeHeader\":{\"labelValue\":\"960895\",\"primaryLabelValue\":\"960895\"}},{\"attributeHeader\":{\"labelValue\":\"960897\",\"primaryLabelValue\":\"960897\"}},{\"attributeHeader\":{\"labelValue\":\"960899\",\"primaryLabelValue\":\"960899\"}},{\"attributeHeader\":{\"labelValue\":\"960901\",\"primaryLabelValue\":\"960901\"}},{\"attributeHeader\":{\"labelValue\":\"960903\",\"primaryLabelValue\":\"960903\"}},{\"attributeHeader\":{\"labelValue\":\"960905\",\"primaryLabelValue\":\"960905\"}},{\"attributeHeader\":{\"labelValue\":\"960907\",\"primaryLabelValue\":\"960907\"}},{\"attributeHeader\":{\"labelValue\":\"960909\",\"primaryLabelValue\":\"960909\"}},{\"attributeHeader\":{\"labelValue\":\"960913\",\"primaryLabelValue\":\"960913\"}},{\"attributeHeader\":{\"labelValue\":\"960915\",\"primaryLabelValue\":\"960915\"}},{\"attributeHeader\":{\"labelValue\":\"960917\",\"primaryLabelValue\":\"960917\"}},{\"attributeHeader\":{\"labelValue\":\"960919\",\"primaryLabelValue\":\"960919\"}},{\"attributeHeader\":{\"labelValue\":\"960921\",\"primaryLabelValue\":\"960921\"}},{\"attributeHeader\":{\"labelValue\":\"960923\",\"primaryLabelValue\":\"960923\"}},{\"attributeHeader\":{\"labelValue\":\"960925\",\"primaryLabelValue\":\"960925\"}},{\"attributeHeader\":{\"labelValue\":\"960926\",\"primaryLabelValue\":\"960926\"}},{\"attributeHeader\":{\"labelValue\":\"960928\",\"primaryLabelValue\":\"960928\"}},{\"attributeHeader\":{\"labelValue\":\"960929\",\"primaryLabelValue\":\"960929\"}},{\"attributeHeader\":{\"labelValue\":\"960931\",\"primaryLabelValue\":\"960931\"}},{\"attributeHeader\":{\"labelValue\":\"960933\",\"primaryLabelValue\":\"960933\"}},{\"attributeHeader\":{\"labelValue\":\"960935\",\"primaryLabelValue\":\"960935\"}},{\"attributeHeader\":{\"labelValue\":\"960937\",\"primaryLabelValue\":\"960937\"}},{\"attributeHeader\":{\"labelValue\":\"960939\",\"primaryLabelValue\":\"960939\"}},{\"attributeHeader\":{\"labelValue\":\"960941\",\"primaryLabelValue\":\"960941\"}},{\"attributeHeader\":{\"labelValue\":\"960943\",\"primaryLabelValue\":\"960943\"}},{\"attributeHeader\":{\"labelValue\":\"960945\",\"primaryLabelValue\":\"960945\"}},{\"attributeHeader\":{\"labelValue\":\"960947\",\"primaryLabelValue\":\"960947\"}},{\"attributeHeader\":{\"labelValue\":\"960949\",\"primaryLabelValue\":\"960949\"}},{\"attributeHeader\":{\"labelValue\":\"960951\",\"primaryLabelValue\":\"960951\"}},{\"attributeHeader\":{\"labelValue\":\"960953\",\"primaryLabelValue\":\"960953\"}},{\"attributeHeader\":{\"labelValue\":\"960955\",\"primaryLabelValue\":\"960955\"}},{\"attributeHeader\":{\"labelValue\":\"960957\",\"primaryLabelValue\":\"960957\"}},{\"attributeHeader\":{\"labelValue\":\"960959\",\"primaryLabelValue\":\"960959\"}},{\"attributeHeader\":{\"labelValue\":\"960963\",\"primaryLabelValue\":\"960963\"}},{\"attributeHeader\":{\"labelValue\":\"960965\",\"primaryLabelValue\":\"960965\"}},{\"attributeHeader\":{\"labelValue\":\"960967\",\"primaryLabelValue\":\"960967\"}},{\"attributeHeader\":{\"labelValue\":\"960969\",\"primaryLabelValue\":\"960969\"}},{\"attributeHeader\":{\"labelValue\":\"960971\",\"primaryLabelValue\":\"960971\"}},{\"attributeHeader\":{\"labelValue\":\"960973\",\"primaryLabelValue\":\"960973\"}},{\"attributeHeader\":{\"labelValue\":\"960975\",\"primaryLabelValue\":\"960975\"}},{\"attributeHeader\":{\"labelValue\":\"960977\",\"primaryLabelValue\":\"960977\"}},{\"attributeHeader\":{\"labelValue\":\"960979\",\"primaryLabelValue\":\"960979\"}},{\"attributeHeader\":{\"labelValue\":\"960981\",\"primaryLabelValue\":\"960981\"}},{\"attributeHeader\":{\"labelValue\":\"960983\",\"primaryLabelValue\":\"960983\"}},{\"attributeHeader\":{\"labelValue\":\"960985\",\"primaryLabelValue\":\"960985\"}},{\"attributeHeader\":{\"labelValue\":\"960987\",\"primaryLabelValue\":\"960987\"}},{\"attributeHeader\":{\"labelValue\":\"960989\",\"primaryLabelValue\":\"960989\"}},{\"attributeHeader\":{\"labelValue\":\"960991\",\"primaryLabelValue\":\"960991\"}},{\"attributeHeader\":{\"labelValue\":\"960993\",\"primaryLabelValue\":\"960993\"}},{\"attributeHeader\":{\"labelValue\":\"960995\",\"primaryLabelValue\":\"960995\"}},{\"attributeHeader\":{\"labelValue\":\"960997\",\"primaryLabelValue\":\"960997\"}},{\"attributeHeader\":{\"labelValue\":\"960999\",\"primaryLabelValue\":\"960999\"}},{\"attributeHeader\":{\"labelValue\":\"961001\",\"primaryLabelValue\":\"961001\"}},{\"attributeHeader\":{\"labelValue\":\"961003\",\"primaryLabelValue\":\"961003\"}},{\"attributeHeader\":{\"labelValue\":\"961005\",\"primaryLabelValue\":\"961005\"}},{\"attributeHeader\":{\"labelValue\":\"961007\",\"primaryLabelValue\":\"961007\"}},{\"attributeHeader\":{\"labelValue\":\"961009\",\"primaryLabelValue\":\"961009\"}},{\"attributeHeader\":{\"labelValue\":\"961011\",\"primaryLabelValue\":\"961011\"}},{\"attributeHeader\":{\"labelValue\":\"961013\",\"primaryLabelValue\":\"961013\"}},{\"attributeHeader\":{\"labelValue\":\"961015\",\"primaryLabelValue\":\"961015\"}},{\"attributeHeader\":{\"labelValue\":\"961017\",\"primaryLabelValue\":\"961017\"}},{\"attributeHeader\":{\"labelValue\":\"961019\",\"primaryLabelValue\":\"961019\"}},{\"attributeHeader\":{\"labelValue\":\"961021\",\"primaryLabelValue\":\"961021\"}},{\"attributeHeader\":{\"labelValue\":\"961023\",\"primaryLabelValue\":\"961023\"}},{\"attributeHeader\":{\"labelValue\":\"961025\",\"primaryLabelValue\":\"961025\"}},{\"attributeHeader\":{\"labelValue\":\"961027\",\"primaryLabelValue\":\"961027\"}},{\"attributeHeader\":{\"labelValue\":\"961031\",\"primaryLabelValue\":\"961031\"}},{\"attributeHeader\":{\"labelValue\":\"961033\",\"primaryLabelValue\":\"961033\"}},{\"attributeHeader\":{\"labelValue\":\"961035\",\"primaryLabelValue\":\"961035\"}},{\"attributeHeader\":{\"labelValue\":\"961037\",\"primaryLabelValue\":\"961037\"}},{\"attributeHeader\":{\"labelValue\":\"961039\",\"primaryLabelValue\":\"961039\"}},{\"attributeHeader\":{\"labelValue\":\"961041\",\"primaryLabelValue\":\"961041\"}},{\"attributeHeader\":{\"labelValue\":\"961043\",\"primaryLabelValue\":\"961043\"}},{\"attributeHeader\":{\"labelValue\":\"961045\",\"primaryLabelValue\":\"961045\"}},{\"attributeHeader\":{\"labelValue\":\"961047\",\"primaryLabelValue\":\"961047\"}},{\"attributeHeader\":{\"labelValue\":\"961055\",\"primaryLabelValue\":\"961055\"}},{\"attributeHeader\":{\"labelValue\":\"961057\",\"primaryLabelValue\":\"961057\"}},{\"attributeHeader\":{\"labelValue\":\"961059\",\"primaryLabelValue\":\"961059\"}},{\"attributeHeader\":{\"labelValue\":\"961061\",\"primaryLabelValue\":\"961061\"}},{\"attributeHeader\":{\"labelValue\":\"961063\",\"primaryLabelValue\":\"961063\"}},{\"attributeHeader\":{\"labelValue\":\"961065\",\"primaryLabelValue\":\"961065\"}},{\"attributeHeader\":{\"labelValue\":\"961067\",\"primaryLabelValue\":\"961067\"}},{\"attributeHeader\":{\"labelValue\":\"961069\",\"primaryLabelValue\":\"961069\"}},{\"attributeHeader\":{\"labelValue\":\"961071\",\"primaryLabelValue\":\"961071\"}},{\"attributeHeader\":{\"labelValue\":\"961073\",\"primaryLabelValue\":\"961073\"}},{\"attributeHeader\":{\"labelValue\":\"961075\",\"primaryLabelValue\":\"961075\"}},{\"attributeHeader\":{\"labelValue\":\"961077\",\"primaryLabelValue\":\"961077\"}},{\"attributeHeader\":{\"labelValue\":\"961081\",\"primaryLabelValue\":\"961081\"}},{\"attributeHeader\":{\"labelValue\":\"961083\",\"primaryLabelValue\":\"961083\"}},{\"attributeHeader\":{\"labelValue\":\"961085\",\"primaryLabelValue\":\"961085\"}},{\"attributeHeader\":{\"labelValue\":\"961087\",\"primaryLabelValue\":\"961087\"}},{\"attributeHeader\":{\"labelValue\":\"961089\",\"primaryLabelValue\":\"961089\"}},{\"attributeHeader\":{\"labelValue\":\"961091\",\"primaryLabelValue\":\"961091\"}},{\"attributeHeader\":{\"labelValue\":\"961093\",\"primaryLabelValue\":\"961093\"}},{\"attributeHeader\":{\"labelValue\":\"961095\",\"primaryLabelValue\":\"961095\"}},{\"attributeHeader\":{\"labelValue\":\"961097\",\"primaryLabelValue\":\"961097\"}},{\"attributeHeader\":{\"labelValue\":\"961099\",\"primaryLabelValue\":\"961099\"}},{\"attributeHeader\":{\"labelValue\":\"961101\",\"primaryLabelValue\":\"961101\"}},{\"attributeHeader\":{\"labelValue\":\"961103\",\"primaryLabelValue\":\"961103\"}},{\"attributeHeader\":{\"labelValue\":\"961105\",\"primaryLabelValue\":\"961105\"}},{\"attributeHeader\":{\"labelValue\":\"961107\",\"primaryLabelValue\":\"961107\"}},{\"attributeHeader\":{\"labelValue\":\"961109\",\"primaryLabelValue\":\"961109\"}},{\"attributeHeader\":{\"labelValue\":\"961111\",\"primaryLabelValue\":\"961111\"}},{\"attributeHeader\":{\"labelValue\":\"961113\",\"primaryLabelValue\":\"961113\"}},{\"attributeHeader\":{\"labelValue\":\"961115\",\"primaryLabelValue\":\"961115\"}},{\"attributeHeader\":{\"labelValue\":\"961117\",\"primaryLabelValue\":\"961117\"}},{\"attributeHeader\":{\"labelValue\":\"961119\",\"primaryLabelValue\":\"961119\"}},{\"attributeHeader\":{\"labelValue\":\"961121\",\"primaryLabelValue\":\"961121\"}},{\"attributeHeader\":{\"labelValue\":\"961123\",\"primaryLabelValue\":\"961123\"}},{\"attributeHeader\":{\"labelValue\":\"961125\",\"primaryLabelValue\":\"961125\"}},{\"attributeHeader\":{\"labelValue\":\"961127\",\"primaryLabelValue\":\"961127\"}},{\"attributeHeader\":{\"labelValue\":\"961129\",\"primaryLabelValue\":\"961129\"}},{\"attributeHeader\":{\"labelValue\":\"961131\",\"primaryLabelValue\":\"961131\"}},{\"attributeHeader\":{\"labelValue\":\"961133\",\"primaryLabelValue\":\"961133\"}},{\"attributeHeader\":{\"labelValue\":\"961135\",\"primaryLabelValue\":\"961135\"}},{\"attributeHeader\":{\"labelValue\":\"961137\",\"primaryLabelValue\":\"961137\"}},{\"attributeHeader\":{\"labelValue\":\"961139\",\"primaryLabelValue\":\"961139\"}},{\"attributeHeader\":{\"labelValue\":\"961141\",\"primaryLabelValue\":\"961141\"}},{\"attributeHeader\":{\"labelValue\":\"961143\",\"primaryLabelValue\":\"961143\"}},{\"attributeHeader\":{\"labelValue\":\"961145\",\"primaryLabelValue\":\"961145\"}},{\"attributeHeader\":{\"labelValue\":\"961147\",\"primaryLabelValue\":\"961147\"}},{\"attributeHeader\":{\"labelValue\":\"961149\",\"primaryLabelValue\":\"961149\"}},{\"attributeHeader\":{\"labelValue\":\"961151\",\"primaryLabelValue\":\"961151\"}},{\"attributeHeader\":{\"labelValue\":\"961153\",\"primaryLabelValue\":\"961153\"}},{\"attributeHeader\":{\"labelValue\":\"961155\",\"primaryLabelValue\":\"961155\"}},{\"attributeHeader\":{\"labelValue\":\"961157\",\"primaryLabelValue\":\"961157\"}},{\"attributeHeader\":{\"labelValue\":\"961159\",\"primaryLabelValue\":\"961159\"}},{\"attributeHeader\":{\"labelValue\":\"961161\",\"primaryLabelValue\":\"961161\"}},{\"attributeHeader\":{\"labelValue\":\"961163\",\"primaryLabelValue\":\"961163\"}},{\"attributeHeader\":{\"labelValue\":\"961165\",\"primaryLabelValue\":\"961165\"}},{\"attributeHeader\":{\"labelValue\":\"961167\",\"primaryLabelValue\":\"961167\"}},{\"attributeHeader\":{\"labelValue\":\"961169\",\"primaryLabelValue\":\"961169\"}},{\"attributeHeader\":{\"labelValue\":\"961171\",\"primaryLabelValue\":\"961171\"}},{\"attributeHeader\":{\"labelValue\":\"961173\",\"primaryLabelValue\":\"961173\"}},{\"attributeHeader\":{\"labelValue\":\"961175\",\"primaryLabelValue\":\"961175\"}},{\"attributeHeader\":{\"labelValue\":\"961177\",\"primaryLabelValue\":\"961177\"}},{\"attributeHeader\":{\"labelValue\":\"961179\",\"primaryLabelValue\":\"961179\"}},{\"attributeHeader\":{\"labelValue\":\"961181\",\"primaryLabelValue\":\"961181\"}},{\"attributeHeader\":{\"labelValue\":\"961183\",\"primaryLabelValue\":\"961183\"}},{\"attributeHeader\":{\"labelValue\":\"961185\",\"primaryLabelValue\":\"961185\"}},{\"attributeHeader\":{\"labelValue\":\"961187\",\"primaryLabelValue\":\"961187\"}},{\"attributeHeader\":{\"labelValue\":\"961189\",\"primaryLabelValue\":\"961189\"}},{\"attributeHeader\":{\"labelValue\":\"961191\",\"primaryLabelValue\":\"961191\"}},{\"attributeHeader\":{\"labelValue\":\"961193\",\"primaryLabelValue\":\"961193\"}},{\"attributeHeader\":{\"labelValue\":\"961195\",\"primaryLabelValue\":\"961195\"}},{\"attributeHeader\":{\"labelValue\":\"961197\",\"primaryLabelValue\":\"961197\"}},{\"attributeHeader\":{\"labelValue\":\"961199\",\"primaryLabelValue\":\"961199\"}},{\"attributeHeader\":{\"labelValue\":\"961201\",\"primaryLabelValue\":\"961201\"}},{\"attributeHeader\":{\"labelValue\":\"961203\",\"primaryLabelValue\":\"961203\"}},{\"attributeHeader\":{\"labelValue\":\"961205\",\"primaryLabelValue\":\"961205\"}},{\"attributeHeader\":{\"labelValue\":\"961207\",\"primaryLabelValue\":\"961207\"}},{\"attributeHeader\":{\"labelValue\":\"961209\",\"primaryLabelValue\":\"961209\"}},{\"attributeHeader\":{\"labelValue\":\"961211\",\"primaryLabelValue\":\"961211\"}},{\"attributeHeader\":{\"labelValue\":\"961213\",\"primaryLabelValue\":\"961213\"}},{\"attributeHeader\":{\"labelValue\":\"961215\",\"primaryLabelValue\":\"961215\"}},{\"attributeHeader\":{\"labelValue\":\"961217\",\"primaryLabelValue\":\"961217\"}},{\"attributeHeader\":{\"labelValue\":\"961219\",\"primaryLabelValue\":\"961219\"}},{\"attributeHeader\":{\"labelValue\":\"961221\",\"primaryLabelValue\":\"961221\"}},{\"attributeHeader\":{\"labelValue\":\"961223\",\"primaryLabelValue\":\"961223\"}},{\"attributeHeader\":{\"labelValue\":\"961225\",\"primaryLabelValue\":\"961225\"}},{\"attributeHeader\":{\"labelValue\":\"961227\",\"primaryLabelValue\":\"961227\"}},{\"attributeHeader\":{\"labelValue\":\"961229\",\"primaryLabelValue\":\"961229\"}},{\"attributeHeader\":{\"labelValue\":\"961231\",\"primaryLabelValue\":\"961231\"}},{\"attributeHeader\":{\"labelValue\":\"961233\",\"primaryLabelValue\":\"961233\"}},{\"attributeHeader\":{\"labelValue\":\"961235\",\"primaryLabelValue\":\"961235\"}},{\"attributeHeader\":{\"labelValue\":\"961237\",\"primaryLabelValue\":\"961237\"}},{\"attributeHeader\":{\"labelValue\":\"961241\",\"primaryLabelValue\":\"961241\"}},{\"attributeHeader\":{\"labelValue\":\"961243\",\"primaryLabelValue\":\"961243\"}},{\"attributeHeader\":{\"labelValue\":\"961245\",\"primaryLabelValue\":\"961245\"}},{\"attributeHeader\":{\"labelValue\":\"961247\",\"primaryLabelValue\":\"961247\"}},{\"attributeHeader\":{\"labelValue\":\"961249\",\"primaryLabelValue\":\"961249\"}},{\"attributeHeader\":{\"labelValue\":\"961251\",\"primaryLabelValue\":\"961251\"}},{\"attributeHeader\":{\"labelValue\":\"961253\",\"primaryLabelValue\":\"961253\"}},{\"attributeHeader\":{\"labelValue\":\"961255\",\"primaryLabelValue\":\"961255\"}},{\"attributeHeader\":{\"labelValue\":\"961257\",\"primaryLabelValue\":\"961257\"}},{\"attributeHeader\":{\"labelValue\":\"961259\",\"primaryLabelValue\":\"961259\"}},{\"attributeHeader\":{\"labelValue\":\"961261\",\"primaryLabelValue\":\"961261\"}},{\"attributeHeader\":{\"labelValue\":\"961263\",\"primaryLabelValue\":\"961263\"}},{\"attributeHeader\":{\"labelValue\":\"961265\",\"primaryLabelValue\":\"961265\"}},{\"attributeHeader\":{\"labelValue\":\"961267\",\"primaryLabelValue\":\"961267\"}},{\"attributeHeader\":{\"labelValue\":\"961269\",\"primaryLabelValue\":\"961269\"}},{\"attributeHeader\":{\"labelValue\":\"961271\",\"primaryLabelValue\":\"961271\"}},{\"attributeHeader\":{\"labelValue\":\"961273\",\"primaryLabelValue\":\"961273\"}},{\"attributeHeader\":{\"labelValue\":\"961275\",\"primaryLabelValue\":\"961275\"}},{\"attributeHeader\":{\"labelValue\":\"961277\",\"primaryLabelValue\":\"961277\"}},{\"attributeHeader\":{\"labelValue\":\"961279\",\"primaryLabelValue\":\"961279\"}},{\"attributeHeader\":{\"labelValue\":\"961281\",\"primaryLabelValue\":\"961281\"}},{\"attributeHeader\":{\"labelValue\":\"961283\",\"primaryLabelValue\":\"961283\"}},{\"attributeHeader\":{\"labelValue\":\"961285\",\"primaryLabelValue\":\"961285\"}},{\"attributeHeader\":{\"labelValue\":\"961287\",\"primaryLabelValue\":\"961287\"}},{\"attributeHeader\":{\"labelValue\":\"961289\",\"primaryLabelValue\":\"961289\"}},{\"attributeHeader\":{\"labelValue\":\"961291\",\"primaryLabelValue\":\"961291\"}},{\"attributeHeader\":{\"labelValue\":\"961293\",\"primaryLabelValue\":\"961293\"}},{\"attributeHeader\":{\"labelValue\":\"961295\",\"primaryLabelValue\":\"961295\"}},{\"attributeHeader\":{\"labelValue\":\"961297\",\"primaryLabelValue\":\"961297\"}},{\"attributeHeader\":{\"labelValue\":\"961299\",\"primaryLabelValue\":\"961299\"}},{\"attributeHeader\":{\"labelValue\":\"961301\",\"primaryLabelValue\":\"961301\"}},{\"attributeHeader\":{\"labelValue\":\"961303\",\"primaryLabelValue\":\"961303\"}},{\"attributeHeader\":{\"labelValue\":\"961305\",\"primaryLabelValue\":\"961305\"}},{\"attributeHeader\":{\"labelValue\":\"961307\",\"primaryLabelValue\":\"961307\"}},{\"attributeHeader\":{\"labelValue\":\"961309\",\"primaryLabelValue\":\"961309\"}},{\"attributeHeader\":{\"labelValue\":\"961311\",\"primaryLabelValue\":\"961311\"}},{\"attributeHeader\":{\"labelValue\":\"961317\",\"primaryLabelValue\":\"961317\"}},{\"attributeHeader\":{\"labelValue\":\"961319\",\"primaryLabelValue\":\"961319\"}},{\"attributeHeader\":{\"labelValue\":\"961321\",\"primaryLabelValue\":\"961321\"}},{\"attributeHeader\":{\"labelValue\":\"961323\",\"primaryLabelValue\":\"961323\"}},{\"attributeHeader\":{\"labelValue\":\"961325\",\"primaryLabelValue\":\"961325\"}},{\"attributeHeader\":{\"labelValue\":\"961327\",\"primaryLabelValue\":\"961327\"}},{\"attributeHeader\":{\"labelValue\":\"961329\",\"primaryLabelValue\":\"961329\"}},{\"attributeHeader\":{\"labelValue\":\"961331\",\"primaryLabelValue\":\"961331\"}},{\"attributeHeader\":{\"labelValue\":\"961333\",\"primaryLabelValue\":\"961333\"}},{\"attributeHeader\":{\"labelValue\":\"961335\",\"primaryLabelValue\":\"961335\"}},{\"attributeHeader\":{\"labelValue\":\"961337\",\"primaryLabelValue\":\"961337\"}},{\"attributeHeader\":{\"labelValue\":\"961339\",\"primaryLabelValue\":\"961339\"}},{\"attributeHeader\":{\"labelValue\":\"961341\",\"primaryLabelValue\":\"961341\"}},{\"attributeHeader\":{\"labelValue\":\"961343\",\"primaryLabelValue\":\"961343\"}},{\"attributeHeader\":{\"labelValue\":\"961345\",\"primaryLabelValue\":\"961345\"}},{\"attributeHeader\":{\"labelValue\":\"961349\",\"primaryLabelValue\":\"961349\"}},{\"attributeHeader\":{\"labelValue\":\"961353\",\"primaryLabelValue\":\"961353\"}},{\"attributeHeader\":{\"labelValue\":\"961355\",\"primaryLabelValue\":\"961355\"}},{\"attributeHeader\":{\"labelValue\":\"961357\",\"primaryLabelValue\":\"961357\"}},{\"attributeHeader\":{\"labelValue\":\"961363\",\"primaryLabelValue\":\"961363\"}},{\"attributeHeader\":{\"labelValue\":\"961365\",\"primaryLabelValue\":\"961365\"}},{\"attributeHeader\":{\"labelValue\":\"961367\",\"primaryLabelValue\":\"961367\"}},{\"attributeHeader\":{\"labelValue\":\"961369\",\"primaryLabelValue\":\"961369\"}},{\"attributeHeader\":{\"labelValue\":\"961371\",\"primaryLabelValue\":\"961371\"}},{\"attributeHeader\":{\"labelValue\":\"961373\",\"primaryLabelValue\":\"961373\"}},{\"attributeHeader\":{\"labelValue\":\"961375\",\"primaryLabelValue\":\"961375\"}},{\"attributeHeader\":{\"labelValue\":\"961377\",\"primaryLabelValue\":\"961377\"}},{\"attributeHeader\":{\"labelValue\":\"961379\",\"primaryLabelValue\":\"961379\"}},{\"attributeHeader\":{\"labelValue\":\"961381\",\"primaryLabelValue\":\"961381\"}},{\"attributeHeader\":{\"labelValue\":\"961383\",\"primaryLabelValue\":\"961383\"}},{\"attributeHeader\":{\"labelValue\":\"961385\",\"primaryLabelValue\":\"961385\"}},{\"attributeHeader\":{\"labelValue\":\"961387\",\"primaryLabelValue\":\"961387\"}},{\"attributeHeader\":{\"labelValue\":\"961389\",\"primaryLabelValue\":\"961389\"}},{\"attributeHeader\":{\"labelValue\":\"961391\",\"primaryLabelValue\":\"961391\"}},{\"attributeHeader\":{\"labelValue\":\"961393\",\"primaryLabelValue\":\"961393\"}},{\"attributeHeader\":{\"labelValue\":\"961395\",\"primaryLabelValue\":\"961395\"}},{\"attributeHeader\":{\"labelValue\":\"961397\",\"primaryLabelValue\":\"961397\"}},{\"attributeHeader\":{\"labelValue\":\"961399\",\"primaryLabelValue\":\"961399\"}},{\"attributeHeader\":{\"labelValue\":\"961401\",\"primaryLabelValue\":\"961401\"}},{\"attributeHeader\":{\"labelValue\":\"961403\",\"primaryLabelValue\":\"961403\"}},{\"attributeHeader\":{\"labelValue\":\"961405\",\"primaryLabelValue\":\"961405\"}},{\"attributeHeader\":{\"labelValue\":\"961407\",\"primaryLabelValue\":\"961407\"}},{\"attributeHeader\":{\"labelValue\":\"961409\",\"primaryLabelValue\":\"961409\"}},{\"attributeHeader\":{\"labelValue\":\"961411\",\"primaryLabelValue\":\"961411\"}},{\"attributeHeader\":{\"labelValue\":\"961413\",\"primaryLabelValue\":\"961413\"}},{\"attributeHeader\":{\"labelValue\":\"961415\",\"primaryLabelValue\":\"961415\"}},{\"attributeHeader\":{\"labelValue\":\"961417\",\"primaryLabelValue\":\"961417\"}},{\"attributeHeader\":{\"labelValue\":\"961419\",\"primaryLabelValue\":\"961419\"}},{\"attributeHeader\":{\"labelValue\":\"961421\",\"primaryLabelValue\":\"961421\"}},{\"attributeHeader\":{\"labelValue\":\"961423\",\"primaryLabelValue\":\"961423\"}},{\"attributeHeader\":{\"labelValue\":\"961425\",\"primaryLabelValue\":\"961425\"}},{\"attributeHeader\":{\"labelValue\":\"961427\",\"primaryLabelValue\":\"961427\"}},{\"attributeHeader\":{\"labelValue\":\"961429\",\"primaryLabelValue\":\"961429\"}},{\"attributeHeader\":{\"labelValue\":\"961431\",\"primaryLabelValue\":\"961431\"}},{\"attributeHeader\":{\"labelValue\":\"961433\",\"primaryLabelValue\":\"961433\"}},{\"attributeHeader\":{\"labelValue\":\"961435\",\"primaryLabelValue\":\"961435\"}},{\"attributeHeader\":{\"labelValue\":\"961437\",\"primaryLabelValue\":\"961437\"}},{\"attributeHeader\":{\"labelValue\":\"961439\",\"primaryLabelValue\":\"961439\"}},{\"attributeHeader\":{\"labelValue\":\"961441\",\"primaryLabelValue\":\"961441\"}},{\"attributeHeader\":{\"labelValue\":\"961443\",\"primaryLabelValue\":\"961443\"}},{\"attributeHeader\":{\"labelValue\":\"961445\",\"primaryLabelValue\":\"961445\"}},{\"attributeHeader\":{\"labelValue\":\"961447\",\"primaryLabelValue\":\"961447\"}},{\"attributeHeader\":{\"labelValue\":\"961449\",\"primaryLabelValue\":\"961449\"}},{\"attributeHeader\":{\"labelValue\":\"961451\",\"primaryLabelValue\":\"961451\"}},{\"attributeHeader\":{\"labelValue\":\"961453\",\"primaryLabelValue\":\"961453\"}},{\"attributeHeader\":{\"labelValue\":\"961455\",\"primaryLabelValue\":\"961455\"}},{\"attributeHeader\":{\"labelValue\":\"961457\",\"primaryLabelValue\":\"961457\"}},{\"attributeHeader\":{\"labelValue\":\"961459\",\"primaryLabelValue\":\"961459\"}},{\"attributeHeader\":{\"labelValue\":\"961461\",\"primaryLabelValue\":\"961461\"}},{\"attributeHeader\":{\"labelValue\":\"961463\",\"primaryLabelValue\":\"961463\"}},{\"attributeHeader\":{\"labelValue\":\"961465\",\"primaryLabelValue\":\"961465\"}},{\"attributeHeader\":{\"labelValue\":\"961471\",\"primaryLabelValue\":\"961471\"}},{\"attributeHeader\":{\"labelValue\":\"961473\",\"primaryLabelValue\":\"961473\"}},{\"attributeHeader\":{\"labelValue\":\"961477\",\"primaryLabelValue\":\"961477\"}},{\"attributeHeader\":{\"labelValue\":\"961479\",\"primaryLabelValue\":\"961479\"}},{\"attributeHeader\":{\"labelValue\":\"961481\",\"primaryLabelValue\":\"961481\"}},{\"attributeHeader\":{\"labelValue\":\"961485\",\"primaryLabelValue\":\"961485\"}},{\"attributeHeader\":{\"labelValue\":\"961487\",\"primaryLabelValue\":\"961487\"}},{\"attributeHeader\":{\"labelValue\":\"961489\",\"primaryLabelValue\":\"961489\"}},{\"attributeHeader\":{\"labelValue\":\"961491\",\"primaryLabelValue\":\"961491\"}},{\"attributeHeader\":{\"labelValue\":\"961493\",\"primaryLabelValue\":\"961493\"}},{\"attributeHeader\":{\"labelValue\":\"961495\",\"primaryLabelValue\":\"961495\"}},{\"attributeHeader\":{\"labelValue\":\"961497\",\"primaryLabelValue\":\"961497\"}},{\"attributeHeader\":{\"labelValue\":\"961499\",\"primaryLabelValue\":\"961499\"}},{\"attributeHeader\":{\"labelValue\":\"961501\",\"primaryLabelValue\":\"961501\"}},{\"attributeHeader\":{\"labelValue\":\"961503\",\"primaryLabelValue\":\"961503\"}},{\"attributeHeader\":{\"labelValue\":\"961505\",\"primaryLabelValue\":\"961505\"}},{\"attributeHeader\":{\"labelValue\":\"961507\",\"primaryLabelValue\":\"961507\"}},{\"attributeHeader\":{\"labelValue\":\"961509\",\"primaryLabelValue\":\"961509\"}},{\"attributeHeader\":{\"labelValue\":\"961511\",\"primaryLabelValue\":\"961511\"}},{\"attributeHeader\":{\"labelValue\":\"961513\",\"primaryLabelValue\":\"961513\"}},{\"attributeHeader\":{\"labelValue\":\"961515\",\"primaryLabelValue\":\"961515\"}},{\"attributeHeader\":{\"labelValue\":\"961517\",\"primaryLabelValue\":\"961517\"}},{\"attributeHeader\":{\"labelValue\":\"961519\",\"primaryLabelValue\":\"961519\"}},{\"attributeHeader\":{\"labelValue\":\"961521\",\"primaryLabelValue\":\"961521\"}},{\"attributeHeader\":{\"labelValue\":\"961523\",\"primaryLabelValue\":\"961523\"}},{\"attributeHeader\":{\"labelValue\":\"961525\",\"primaryLabelValue\":\"961525\"}},{\"attributeHeader\":{\"labelValue\":\"961527\",\"primaryLabelValue\":\"961527\"}},{\"attributeHeader\":{\"labelValue\":\"961529\",\"primaryLabelValue\":\"961529\"}},{\"attributeHeader\":{\"labelValue\":\"961531\",\"primaryLabelValue\":\"961531\"}},{\"attributeHeader\":{\"labelValue\":\"961533\",\"primaryLabelValue\":\"961533\"}},{\"attributeHeader\":{\"labelValue\":\"961535\",\"primaryLabelValue\":\"961535\"}},{\"attributeHeader\":{\"labelValue\":\"961537\",\"primaryLabelValue\":\"961537\"}},{\"attributeHeader\":{\"labelValue\":\"961539\",\"primaryLabelValue\":\"961539\"}},{\"attributeHeader\":{\"labelValue\":\"961541\",\"primaryLabelValue\":\"961541\"}},{\"attributeHeader\":{\"labelValue\":\"961543\",\"primaryLabelValue\":\"961543\"}},{\"attributeHeader\":{\"labelValue\":\"961545\",\"primaryLabelValue\":\"961545\"}},{\"attributeHeader\":{\"labelValue\":\"961547\",\"primaryLabelValue\":\"961547\"}},{\"attributeHeader\":{\"labelValue\":\"961549\",\"primaryLabelValue\":\"961549\"}},{\"attributeHeader\":{\"labelValue\":\"961551\",\"primaryLabelValue\":\"961551\"}},{\"attributeHeader\":{\"labelValue\":\"961553\",\"primaryLabelValue\":\"961553\"}},{\"attributeHeader\":{\"labelValue\":\"961555\",\"primaryLabelValue\":\"961555\"}},{\"attributeHeader\":{\"labelValue\":\"961557\",\"primaryLabelValue\":\"961557\"}},{\"attributeHeader\":{\"labelValue\":\"961559\",\"primaryLabelValue\":\"961559\"}},{\"attributeHeader\":{\"labelValue\":\"961561\",\"primaryLabelValue\":\"961561\"}},{\"attributeHeader\":{\"labelValue\":\"961563\",\"primaryLabelValue\":\"961563\"}},{\"attributeHeader\":{\"labelValue\":\"961565\",\"primaryLabelValue\":\"961565\"}},{\"attributeHeader\":{\"labelValue\":\"961569\",\"primaryLabelValue\":\"961569\"}},{\"attributeHeader\":{\"labelValue\":\"961571\",\"primaryLabelValue\":\"961571\"}},{\"attributeHeader\":{\"labelValue\":\"961573\",\"primaryLabelValue\":\"961573\"}},{\"attributeHeader\":{\"labelValue\":\"961575\",\"primaryLabelValue\":\"961575\"}},{\"attributeHeader\":{\"labelValue\":\"961577\",\"primaryLabelValue\":\"961577\"}},{\"attributeHeader\":{\"labelValue\":\"961579\",\"primaryLabelValue\":\"961579\"}},{\"attributeHeader\":{\"labelValue\":\"961581\",\"primaryLabelValue\":\"961581\"}},{\"attributeHeader\":{\"labelValue\":\"961583\",\"primaryLabelValue\":\"961583\"}},{\"attributeHeader\":{\"labelValue\":\"961585\",\"primaryLabelValue\":\"961585\"}},{\"attributeHeader\":{\"labelValue\":\"961587\",\"primaryLabelValue\":\"961587\"}},{\"attributeHeader\":{\"labelValue\":\"961589\",\"primaryLabelValue\":\"961589\"}},{\"attributeHeader\":{\"labelValue\":\"961591\",\"primaryLabelValue\":\"961591\"}},{\"attributeHeader\":{\"labelValue\":\"961593\",\"primaryLabelValue\":\"961593\"}},{\"attributeHeader\":{\"labelValue\":\"961595\",\"primaryLabelValue\":\"961595\"}},{\"attributeHeader\":{\"labelValue\":\"961597\",\"primaryLabelValue\":\"961597\"}},{\"attributeHeader\":{\"labelValue\":\"961601\",\"primaryLabelValue\":\"961601\"}},{\"attributeHeader\":{\"labelValue\":\"961603\",\"primaryLabelValue\":\"961603\"}},{\"attributeHeader\":{\"labelValue\":\"961605\",\"primaryLabelValue\":\"961605\"}},{\"attributeHeader\":{\"labelValue\":\"961607\",\"primaryLabelValue\":\"961607\"}},{\"attributeHeader\":{\"labelValue\":\"961609\",\"primaryLabelValue\":\"961609\"}},{\"attributeHeader\":{\"labelValue\":\"961611\",\"primaryLabelValue\":\"961611\"}},{\"attributeHeader\":{\"labelValue\":\"961613\",\"primaryLabelValue\":\"961613\"}},{\"attributeHeader\":{\"labelValue\":\"961615\",\"primaryLabelValue\":\"961615\"}},{\"attributeHeader\":{\"labelValue\":\"961617\",\"primaryLabelValue\":\"961617\"}},{\"attributeHeader\":{\"labelValue\":\"961619\",\"primaryLabelValue\":\"961619\"}},{\"attributeHeader\":{\"labelValue\":\"961621\",\"primaryLabelValue\":\"961621\"}},{\"attributeHeader\":{\"labelValue\":\"961623\",\"primaryLabelValue\":\"961623\"}},{\"attributeHeader\":{\"labelValue\":\"961625\",\"primaryLabelValue\":\"961625\"}},{\"attributeHeader\":{\"labelValue\":\"961627\",\"primaryLabelValue\":\"961627\"}},{\"attributeHeader\":{\"labelValue\":\"961629\",\"primaryLabelValue\":\"961629\"}},{\"attributeHeader\":{\"labelValue\":\"961631\",\"primaryLabelValue\":\"961631\"}},{\"attributeHeader\":{\"labelValue\":\"961633\",\"primaryLabelValue\":\"961633\"}},{\"attributeHeader\":{\"labelValue\":\"961635\",\"primaryLabelValue\":\"961635\"}},{\"attributeHeader\":{\"labelValue\":\"961637\",\"primaryLabelValue\":\"961637\"}},{\"attributeHeader\":{\"labelValue\":\"961639\",\"primaryLabelValue\":\"961639\"}},{\"attributeHeader\":{\"labelValue\":\"961641\",\"primaryLabelValue\":\"961641\"}},{\"attributeHeader\":{\"labelValue\":\"961643\",\"primaryLabelValue\":\"961643\"}},{\"attributeHeader\":{\"labelValue\":\"961645\",\"primaryLabelValue\":\"961645\"}},{\"attributeHeader\":{\"labelValue\":\"961647\",\"primaryLabelValue\":\"961647\"}},{\"attributeHeader\":{\"labelValue\":\"961649\",\"primaryLabelValue\":\"961649\"}},{\"attributeHeader\":{\"labelValue\":\"961651\",\"primaryLabelValue\":\"961651\"}},{\"attributeHeader\":{\"labelValue\":\"961653\",\"primaryLabelValue\":\"961653\"}},{\"attributeHeader\":{\"labelValue\":\"961655\",\"primaryLabelValue\":\"961655\"}},{\"attributeHeader\":{\"labelValue\":\"961657\",\"primaryLabelValue\":\"961657\"}},{\"attributeHeader\":{\"labelValue\":\"961659\",\"primaryLabelValue\":\"961659\"}},{\"attributeHeader\":{\"labelValue\":\"961661\",\"primaryLabelValue\":\"961661\"}},{\"attributeHeader\":{\"labelValue\":\"961663\",\"primaryLabelValue\":\"961663\"}},{\"attributeHeader\":{\"labelValue\":\"961665\",\"primaryLabelValue\":\"961665\"}},{\"attributeHeader\":{\"labelValue\":\"961667\",\"primaryLabelValue\":\"961667\"}},{\"attributeHeader\":{\"labelValue\":\"961669\",\"primaryLabelValue\":\"961669\"}},{\"attributeHeader\":{\"labelValue\":\"961671\",\"primaryLabelValue\":\"961671\"}},{\"attributeHeader\":{\"labelValue\":\"961673\",\"primaryLabelValue\":\"961673\"}},{\"attributeHeader\":{\"labelValue\":\"961675\",\"primaryLabelValue\":\"961675\"}},{\"attributeHeader\":{\"labelValue\":\"961677\",\"primaryLabelValue\":\"961677\"}},{\"attributeHeader\":{\"labelValue\":\"961679\",\"primaryLabelValue\":\"961679\"}},{\"attributeHeader\":{\"labelValue\":\"961681\",\"primaryLabelValue\":\"961681\"}},{\"attributeHeader\":{\"labelValue\":\"961683\",\"primaryLabelValue\":\"961683\"}},{\"attributeHeader\":{\"labelValue\":\"961685\",\"primaryLabelValue\":\"961685\"}},{\"attributeHeader\":{\"labelValue\":\"961687\",\"primaryLabelValue\":\"961687\"}},{\"attributeHeader\":{\"labelValue\":\"961689\",\"primaryLabelValue\":\"961689\"}},{\"attributeHeader\":{\"labelValue\":\"961691\",\"primaryLabelValue\":\"961691\"}},{\"attributeHeader\":{\"labelValue\":\"961693\",\"primaryLabelValue\":\"961693\"}},{\"attributeHeader\":{\"labelValue\":\"961695\",\"primaryLabelValue\":\"961695\"}},{\"attributeHeader\":{\"labelValue\":\"961697\",\"primaryLabelValue\":\"961697\"}},{\"attributeHeader\":{\"labelValue\":\"961699\",\"primaryLabelValue\":\"961699\"}},{\"attributeHeader\":{\"labelValue\":\"961701\",\"primaryLabelValue\":\"961701\"}},{\"attributeHeader\":{\"labelValue\":\"961703\",\"primaryLabelValue\":\"961703\"}},{\"attributeHeader\":{\"labelValue\":\"961705\",\"primaryLabelValue\":\"961705\"}},{\"attributeHeader\":{\"labelValue\":\"961707\",\"primaryLabelValue\":\"961707\"}},{\"attributeHeader\":{\"labelValue\":\"961709\",\"primaryLabelValue\":\"961709\"}},{\"attributeHeader\":{\"labelValue\":\"961711\",\"primaryLabelValue\":\"961711\"}},{\"attributeHeader\":{\"labelValue\":\"961713\",\"primaryLabelValue\":\"961713\"}},{\"attributeHeader\":{\"labelValue\":\"961715\",\"primaryLabelValue\":\"961715\"}},{\"attributeHeader\":{\"labelValue\":\"961717\",\"primaryLabelValue\":\"961717\"}},{\"attributeHeader\":{\"labelValue\":\"961719\",\"primaryLabelValue\":\"961719\"}},{\"attributeHeader\":{\"labelValue\":\"961721\",\"primaryLabelValue\":\"961721\"}},{\"attributeHeader\":{\"labelValue\":\"961723\",\"primaryLabelValue\":\"961723\"}},{\"attributeHeader\":{\"labelValue\":\"961725\",\"primaryLabelValue\":\"961725\"}},{\"attributeHeader\":{\"labelValue\":\"961727\",\"primaryLabelValue\":\"961727\"}},{\"attributeHeader\":{\"labelValue\":\"961729\",\"primaryLabelValue\":\"961729\"}},{\"attributeHeader\":{\"labelValue\":\"961731\",\"primaryLabelValue\":\"961731\"}},{\"attributeHeader\":{\"labelValue\":\"961733\",\"primaryLabelValue\":\"961733\"}},{\"attributeHeader\":{\"labelValue\":\"961735\",\"primaryLabelValue\":\"961735\"}},{\"attributeHeader\":{\"labelValue\":\"961737\",\"primaryLabelValue\":\"961737\"}},{\"attributeHeader\":{\"labelValue\":\"961739\",\"primaryLabelValue\":\"961739\"}},{\"attributeHeader\":{\"labelValue\":\"961741\",\"primaryLabelValue\":\"961741\"}},{\"attributeHeader\":{\"labelValue\":\"961743\",\"primaryLabelValue\":\"961743\"}},{\"attributeHeader\":{\"labelValue\":\"961745\",\"primaryLabelValue\":\"961745\"}},{\"attributeHeader\":{\"labelValue\":\"961747\",\"primaryLabelValue\":\"961747\"}},{\"attributeHeader\":{\"labelValue\":\"961749\",\"primaryLabelValue\":\"961749\"}},{\"attributeHeader\":{\"labelValue\":\"961751\",\"primaryLabelValue\":\"961751\"}},{\"attributeHeader\":{\"labelValue\":\"961753\",\"primaryLabelValue\":\"961753\"}},{\"attributeHeader\":{\"labelValue\":\"961755\",\"primaryLabelValue\":\"961755\"}},{\"attributeHeader\":{\"labelValue\":\"961757\",\"primaryLabelValue\":\"961757\"}},{\"attributeHeader\":{\"labelValue\":\"961759\",\"primaryLabelValue\":\"961759\"}},{\"attributeHeader\":{\"labelValue\":\"961761\",\"primaryLabelValue\":\"961761\"}},{\"attributeHeader\":{\"labelValue\":\"961763\",\"primaryLabelValue\":\"961763\"}},{\"attributeHeader\":{\"labelValue\":\"961765\",\"primaryLabelValue\":\"961765\"}},{\"attributeHeader\":{\"labelValue\":\"961767\",\"primaryLabelValue\":\"961767\"}},{\"attributeHeader\":{\"labelValue\":\"961769\",\"primaryLabelValue\":\"961769\"}},{\"attributeHeader\":{\"labelValue\":\"961771\",\"primaryLabelValue\":\"961771\"}},{\"attributeHeader\":{\"labelValue\":\"961773\",\"primaryLabelValue\":\"961773\"}},{\"attributeHeader\":{\"labelValue\":\"961775\",\"primaryLabelValue\":\"961775\"}},{\"attributeHeader\":{\"labelValue\":\"961777\",\"primaryLabelValue\":\"961777\"}},{\"attributeHeader\":{\"labelValue\":\"961779\",\"primaryLabelValue\":\"961779\"}},{\"attributeHeader\":{\"labelValue\":\"961781\",\"primaryLabelValue\":\"961781\"}},{\"attributeHeader\":{\"labelValue\":\"961783\",\"primaryLabelValue\":\"961783\"}},{\"attributeHeader\":{\"labelValue\":\"961785\",\"primaryLabelValue\":\"961785\"}},{\"attributeHeader\":{\"labelValue\":\"961787\",\"primaryLabelValue\":\"961787\"}},{\"attributeHeader\":{\"labelValue\":\"961791\",\"primaryLabelValue\":\"961791\"}},{\"attributeHeader\":{\"labelValue\":\"961793\",\"primaryLabelValue\":\"961793\"}},{\"attributeHeader\":{\"labelValue\":\"961795\",\"primaryLabelValue\":\"961795\"}},{\"attributeHeader\":{\"labelValue\":\"961797\",\"primaryLabelValue\":\"961797\"}},{\"attributeHeader\":{\"labelValue\":\"961799\",\"primaryLabelValue\":\"961799\"}},{\"attributeHeader\":{\"labelValue\":\"961801\",\"primaryLabelValue\":\"961801\"}},{\"attributeHeader\":{\"labelValue\":\"961803\",\"primaryLabelValue\":\"961803\"}},{\"attributeHeader\":{\"labelValue\":\"961805\",\"primaryLabelValue\":\"961805\"}},{\"attributeHeader\":{\"labelValue\":\"961807\",\"primaryLabelValue\":\"961807\"}},{\"attributeHeader\":{\"labelValue\":\"961809\",\"primaryLabelValue\":\"961809\"}},{\"attributeHeader\":{\"labelValue\":\"961811\",\"primaryLabelValue\":\"961811\"}},{\"attributeHeader\":{\"labelValue\":\"961813\",\"primaryLabelValue\":\"961813\"}},{\"attributeHeader\":{\"labelValue\":\"961815\",\"primaryLabelValue\":\"961815\"}},{\"attributeHeader\":{\"labelValue\":\"961817\",\"primaryLabelValue\":\"961817\"}},{\"attributeHeader\":{\"labelValue\":\"961819\",\"primaryLabelValue\":\"961819\"}},{\"attributeHeader\":{\"labelValue\":\"961821\",\"primaryLabelValue\":\"961821\"}},{\"attributeHeader\":{\"labelValue\":\"961823\",\"primaryLabelValue\":\"961823\"}},{\"attributeHeader\":{\"labelValue\":\"961825\",\"primaryLabelValue\":\"961825\"}},{\"attributeHeader\":{\"labelValue\":\"961827\",\"primaryLabelValue\":\"961827\"}},{\"attributeHeader\":{\"labelValue\":\"961829\",\"primaryLabelValue\":\"961829\"}},{\"attributeHeader\":{\"labelValue\":\"961831\",\"primaryLabelValue\":\"961831\"}},{\"attributeHeader\":{\"labelValue\":\"961833\",\"primaryLabelValue\":\"961833\"}},{\"attributeHeader\":{\"labelValue\":\"961835\",\"primaryLabelValue\":\"961835\"}},{\"attributeHeader\":{\"labelValue\":\"961837\",\"primaryLabelValue\":\"961837\"}},{\"attributeHeader\":{\"labelValue\":\"961839\",\"primaryLabelValue\":\"961839\"}},{\"attributeHeader\":{\"labelValue\":\"961841\",\"primaryLabelValue\":\"961841\"}},{\"attributeHeader\":{\"labelValue\":\"961843\",\"primaryLabelValue\":\"961843\"}},{\"attributeHeader\":{\"labelValue\":\"961845\",\"primaryLabelValue\":\"961845\"}},{\"attributeHeader\":{\"labelValue\":\"961847\",\"primaryLabelValue\":\"961847\"}},{\"attributeHeader\":{\"labelValue\":\"961849\",\"primaryLabelValue\":\"961849\"}},{\"attributeHeader\":{\"labelValue\":\"961851\",\"primaryLabelValue\":\"961851\"}},{\"attributeHeader\":{\"labelValue\":\"961853\",\"primaryLabelValue\":\"961853\"}},{\"attributeHeader\":{\"labelValue\":\"961855\",\"primaryLabelValue\":\"961855\"}},{\"attributeHeader\":{\"labelValue\":\"961857\",\"primaryLabelValue\":\"961857\"}},{\"attributeHeader\":{\"labelValue\":\"961859\",\"primaryLabelValue\":\"961859\"}},{\"attributeHeader\":{\"labelValue\":\"961861\",\"primaryLabelValue\":\"961861\"}},{\"attributeHeader\":{\"labelValue\":\"961863\",\"primaryLabelValue\":\"961863\"}},{\"attributeHeader\":{\"labelValue\":\"961865\",\"primaryLabelValue\":\"961865\"}},{\"attributeHeader\":{\"labelValue\":\"961867\",\"primaryLabelValue\":\"961867\"}},{\"attributeHeader\":{\"labelValue\":\"961869\",\"primaryLabelValue\":\"961869\"}},{\"attributeHeader\":{\"labelValue\":\"961871\",\"primaryLabelValue\":\"961871\"}},{\"attributeHeader\":{\"labelValue\":\"961873\",\"primaryLabelValue\":\"961873\"}},{\"attributeHeader\":{\"labelValue\":\"961875\",\"primaryLabelValue\":\"961875\"}},{\"attributeHeader\":{\"labelValue\":\"961877\",\"primaryLabelValue\":\"961877\"}},{\"attributeHeader\":{\"labelValue\":\"961879\",\"primaryLabelValue\":\"961879\"}},{\"attributeHeader\":{\"labelValue\":\"961881\",\"primaryLabelValue\":\"961881\"}},{\"attributeHeader\":{\"labelValue\":\"961883\",\"primaryLabelValue\":\"961883\"}},{\"attributeHeader\":{\"labelValue\":\"961885\",\"primaryLabelValue\":\"961885\"}},{\"attributeHeader\":{\"labelValue\":\"961887\",\"primaryLabelValue\":\"961887\"}},{\"attributeHeader\":{\"labelValue\":\"961889\",\"primaryLabelValue\":\"961889\"}},{\"attributeHeader\":{\"labelValue\":\"961891\",\"primaryLabelValue\":\"961891\"}},{\"attributeHeader\":{\"labelValue\":\"961893\",\"primaryLabelValue\":\"961893\"}},{\"attributeHeader\":{\"labelValue\":\"961895\",\"primaryLabelValue\":\"961895\"}},{\"attributeHeader\":{\"labelValue\":\"961897\",\"primaryLabelValue\":\"961897\"}},{\"attributeHeader\":{\"labelValue\":\"961899\",\"primaryLabelValue\":\"961899\"}},{\"attributeHeader\":{\"labelValue\":\"961901\",\"primaryLabelValue\":\"961901\"}},{\"attributeHeader\":{\"labelValue\":\"961903\",\"primaryLabelValue\":\"961903\"}},{\"attributeHeader\":{\"labelValue\":\"961905\",\"primaryLabelValue\":\"961905\"}},{\"attributeHeader\":{\"labelValue\":\"961907\",\"primaryLabelValue\":\"961907\"}},{\"attributeHeader\":{\"labelValue\":\"961909\",\"primaryLabelValue\":\"961909\"}},{\"attributeHeader\":{\"labelValue\":\"961911\",\"primaryLabelValue\":\"961911\"}},{\"attributeHeader\":{\"labelValue\":\"961913\",\"primaryLabelValue\":\"961913\"}},{\"attributeHeader\":{\"labelValue\":\"961915\",\"primaryLabelValue\":\"961915\"}},{\"attributeHeader\":{\"labelValue\":\"961917\",\"primaryLabelValue\":\"961917\"}},{\"attributeHeader\":{\"labelValue\":\"961919\",\"primaryLabelValue\":\"961919\"}},{\"attributeHeader\":{\"labelValue\":\"961921\",\"primaryLabelValue\":\"961921\"}},{\"attributeHeader\":{\"labelValue\":\"961923\",\"primaryLabelValue\":\"961923\"}},{\"attributeHeader\":{\"labelValue\":\"961925\",\"primaryLabelValue\":\"961925\"}},{\"attributeHeader\":{\"labelValue\":\"961927\",\"primaryLabelValue\":\"961927\"}},{\"attributeHeader\":{\"labelValue\":\"961929\",\"primaryLabelValue\":\"961929\"}},{\"attributeHeader\":{\"labelValue\":\"961931\",\"primaryLabelValue\":\"961931\"}},{\"attributeHeader\":{\"labelValue\":\"961933\",\"primaryLabelValue\":\"961933\"}},{\"attributeHeader\":{\"labelValue\":\"961935\",\"primaryLabelValue\":\"961935\"}},{\"attributeHeader\":{\"labelValue\":\"961937\",\"primaryLabelValue\":\"961937\"}},{\"attributeHeader\":{\"labelValue\":\"961939\",\"primaryLabelValue\":\"961939\"}},{\"attributeHeader\":{\"labelValue\":\"961941\",\"primaryLabelValue\":\"961941\"}},{\"attributeHeader\":{\"labelValue\":\"961943\",\"primaryLabelValue\":\"961943\"}},{\"attributeHeader\":{\"labelValue\":\"961945\",\"primaryLabelValue\":\"961945\"}},{\"attributeHeader\":{\"labelValue\":\"961947\",\"primaryLabelValue\":\"961947\"}},{\"attributeHeader\":{\"labelValue\":\"961949\",\"primaryLabelValue\":\"961949\"}},{\"attributeHeader\":{\"labelValue\":\"961951\",\"primaryLabelValue\":\"961951\"}},{\"attributeHeader\":{\"labelValue\":\"961953\",\"primaryLabelValue\":\"961953\"}},{\"attributeHeader\":{\"labelValue\":\"961955\",\"primaryLabelValue\":\"961955\"}},{\"attributeHeader\":{\"labelValue\":\"961957\",\"primaryLabelValue\":\"961957\"}},{\"attributeHeader\":{\"labelValue\":\"961959\",\"primaryLabelValue\":\"961959\"}},{\"attributeHeader\":{\"labelValue\":\"961961\",\"primaryLabelValue\":\"961961\"}},{\"attributeHeader\":{\"labelValue\":\"961963\",\"primaryLabelValue\":\"961963\"}},{\"attributeHeader\":{\"labelValue\":\"961965\",\"primaryLabelValue\":\"961965\"}},{\"attributeHeader\":{\"labelValue\":\"961967\",\"primaryLabelValue\":\"961967\"}},{\"attributeHeader\":{\"labelValue\":\"961969\",\"primaryLabelValue\":\"961969\"}},{\"attributeHeader\":{\"labelValue\":\"961971\",\"primaryLabelValue\":\"961971\"}},{\"attributeHeader\":{\"labelValue\":\"961973\",\"primaryLabelValue\":\"961973\"}},{\"attributeHeader\":{\"labelValue\":\"961975\",\"primaryLabelValue\":\"961975\"}},{\"attributeHeader\":{\"labelValue\":\"961977\",\"primaryLabelValue\":\"961977\"}},{\"attributeHeader\":{\"labelValue\":\"961979\",\"primaryLabelValue\":\"961979\"}},{\"attributeHeader\":{\"labelValue\":\"961981\",\"primaryLabelValue\":\"961981\"}},{\"attributeHeader\":{\"labelValue\":\"961983\",\"primaryLabelValue\":\"961983\"}},{\"attributeHeader\":{\"labelValue\":\"961985\",\"primaryLabelValue\":\"961985\"}},{\"attributeHeader\":{\"labelValue\":\"961987\",\"primaryLabelValue\":\"961987\"}},{\"attributeHeader\":{\"labelValue\":\"961989\",\"primaryLabelValue\":\"961989\"}},{\"attributeHeader\":{\"labelValue\":\"961991\",\"primaryLabelValue\":\"961991\"}},{\"attributeHeader\":{\"labelValue\":\"961993\",\"primaryLabelValue\":\"961993\"}},{\"attributeHeader\":{\"labelValue\":\"961995\",\"primaryLabelValue\":\"961995\"}},{\"attributeHeader\":{\"labelValue\":\"961997\",\"primaryLabelValue\":\"961997\"}},{\"attributeHeader\":{\"labelValue\":\"961999\",\"primaryLabelValue\":\"961999\"}},{\"attributeHeader\":{\"labelValue\":\"962001\",\"primaryLabelValue\":\"962001\"}},{\"attributeHeader\":{\"labelValue\":\"962003\",\"primaryLabelValue\":\"962003\"}},{\"attributeHeader\":{\"labelValue\":\"962005\",\"primaryLabelValue\":\"962005\"}},{\"attributeHeader\":{\"labelValue\":\"962007\",\"primaryLabelValue\":\"962007\"}},{\"attributeHeader\":{\"labelValue\":\"962009\",\"primaryLabelValue\":\"962009\"}},{\"attributeHeader\":{\"labelValue\":\"962011\",\"primaryLabelValue\":\"962011\"}},{\"attributeHeader\":{\"labelValue\":\"962013\",\"primaryLabelValue\":\"962013\"}},{\"attributeHeader\":{\"labelValue\":\"962015\",\"primaryLabelValue\":\"962015\"}},{\"attributeHeader\":{\"labelValue\":\"962017\",\"primaryLabelValue\":\"962017\"}},{\"attributeHeader\":{\"labelValue\":\"962019\",\"primaryLabelValue\":\"962019\"}},{\"attributeHeader\":{\"labelValue\":\"962021\",\"primaryLabelValue\":\"962021\"}},{\"attributeHeader\":{\"labelValue\":\"962023\",\"primaryLabelValue\":\"962023\"}},{\"attributeHeader\":{\"labelValue\":\"962025\",\"primaryLabelValue\":\"962025\"}},{\"attributeHeader\":{\"labelValue\":\"962027\",\"primaryLabelValue\":\"962027\"}},{\"attributeHeader\":{\"labelValue\":\"962029\",\"primaryLabelValue\":\"962029\"}},{\"attributeHeader\":{\"labelValue\":\"962031\",\"primaryLabelValue\":\"962031\"}},{\"attributeHeader\":{\"labelValue\":\"962033\",\"primaryLabelValue\":\"962033\"}},{\"attributeHeader\":{\"labelValue\":\"962035\",\"primaryLabelValue\":\"962035\"}},{\"attributeHeader\":{\"labelValue\":\"962037\",\"primaryLabelValue\":\"962037\"}},{\"attributeHeader\":{\"labelValue\":\"962039\",\"primaryLabelValue\":\"962039\"}},{\"attributeHeader\":{\"labelValue\":\"962041\",\"primaryLabelValue\":\"962041\"}},{\"attributeHeader\":{\"labelValue\":\"962043\",\"primaryLabelValue\":\"962043\"}},{\"attributeHeader\":{\"labelValue\":\"962045\",\"primaryLabelValue\":\"962045\"}},{\"attributeHeader\":{\"labelValue\":\"962047\",\"primaryLabelValue\":\"962047\"}},{\"attributeHeader\":{\"labelValue\":\"962049\",\"primaryLabelValue\":\"962049\"}},{\"attributeHeader\":{\"labelValue\":\"962051\",\"primaryLabelValue\":\"962051\"}},{\"attributeHeader\":{\"labelValue\":\"962053\",\"primaryLabelValue\":\"962053\"}},{\"attributeHeader\":{\"labelValue\":\"962055\",\"primaryLabelValue\":\"962055\"}},{\"attributeHeader\":{\"labelValue\":\"962057\",\"primaryLabelValue\":\"962057\"}},{\"attributeHeader\":{\"labelValue\":\"962059\",\"primaryLabelValue\":\"962059\"}},{\"attributeHeader\":{\"labelValue\":\"962061\",\"primaryLabelValue\":\"962061\"}},{\"attributeHeader\":{\"labelValue\":\"962063\",\"primaryLabelValue\":\"962063\"}},{\"attributeHeader\":{\"labelValue\":\"962065\",\"primaryLabelValue\":\"962065\"}},{\"attributeHeader\":{\"labelValue\":\"962067\",\"primaryLabelValue\":\"962067\"}},{\"attributeHeader\":{\"labelValue\":\"962069\",\"primaryLabelValue\":\"962069\"}},{\"attributeHeader\":{\"labelValue\":\"962071\",\"primaryLabelValue\":\"962071\"}},{\"attributeHeader\":{\"labelValue\":\"962073\",\"primaryLabelValue\":\"962073\"}},{\"attributeHeader\":{\"labelValue\":\"962075\",\"primaryLabelValue\":\"962075\"}},{\"attributeHeader\":{\"labelValue\":\"962077\",\"primaryLabelValue\":\"962077\"}},{\"attributeHeader\":{\"labelValue\":\"962079\",\"primaryLabelValue\":\"962079\"}},{\"attributeHeader\":{\"labelValue\":\"962081\",\"primaryLabelValue\":\"962081\"}},{\"attributeHeader\":{\"labelValue\":\"962083\",\"primaryLabelValue\":\"962083\"}},{\"attributeHeader\":{\"labelValue\":\"962085\",\"primaryLabelValue\":\"962085\"}},{\"attributeHeader\":{\"labelValue\":\"962087\",\"primaryLabelValue\":\"962087\"}},{\"attributeHeader\":{\"labelValue\":\"962089\",\"primaryLabelValue\":\"962089\"}},{\"attributeHeader\":{\"labelValue\":\"962091\",\"primaryLabelValue\":\"962091\"}},{\"attributeHeader\":{\"labelValue\":\"962093\",\"primaryLabelValue\":\"962093\"}},{\"attributeHeader\":{\"labelValue\":\"962095\",\"primaryLabelValue\":\"962095\"}},{\"attributeHeader\":{\"labelValue\":\"962097\",\"primaryLabelValue\":\"962097\"}},{\"attributeHeader\":{\"labelValue\":\"962101\",\"primaryLabelValue\":\"962101\"}},{\"attributeHeader\":{\"labelValue\":\"962103\",\"primaryLabelValue\":\"962103\"}},{\"attributeHeader\":{\"labelValue\":\"962105\",\"primaryLabelValue\":\"962105\"}},{\"attributeHeader\":{\"labelValue\":\"962107\",\"primaryLabelValue\":\"962107\"}},{\"attributeHeader\":{\"labelValue\":\"962109\",\"primaryLabelValue\":\"962109\"}},{\"attributeHeader\":{\"labelValue\":\"962111\",\"primaryLabelValue\":\"962111\"}},{\"attributeHeader\":{\"labelValue\":\"962113\",\"primaryLabelValue\":\"962113\"}},{\"attributeHeader\":{\"labelValue\":\"962115\",\"primaryLabelValue\":\"962115\"}},{\"attributeHeader\":{\"labelValue\":\"962117\",\"primaryLabelValue\":\"962117\"}},{\"attributeHeader\":{\"labelValue\":\"962119\",\"primaryLabelValue\":\"962119\"}},{\"attributeHeader\":{\"labelValue\":\"962121\",\"primaryLabelValue\":\"962121\"}},{\"attributeHeader\":{\"labelValue\":\"962123\",\"primaryLabelValue\":\"962123\"}},{\"attributeHeader\":{\"labelValue\":\"962125\",\"primaryLabelValue\":\"962125\"}},{\"attributeHeader\":{\"labelValue\":\"962127\",\"primaryLabelValue\":\"962127\"}},{\"attributeHeader\":{\"labelValue\":\"962129\",\"primaryLabelValue\":\"962129\"}},{\"attributeHeader\":{\"labelValue\":\"962131\",\"primaryLabelValue\":\"962131\"}},{\"attributeHeader\":{\"labelValue\":\"962133\",\"primaryLabelValue\":\"962133\"}},{\"attributeHeader\":{\"labelValue\":\"962135\",\"primaryLabelValue\":\"962135\"}},{\"attributeHeader\":{\"labelValue\":\"962137\",\"primaryLabelValue\":\"962137\"}},{\"attributeHeader\":{\"labelValue\":\"962139\",\"primaryLabelValue\":\"962139\"}},{\"attributeHeader\":{\"labelValue\":\"962141\",\"primaryLabelValue\":\"962141\"}},{\"attributeHeader\":{\"labelValue\":\"962143\",\"primaryLabelValue\":\"962143\"}},{\"attributeHeader\":{\"labelValue\":\"962145\",\"primaryLabelValue\":\"962145\"}},{\"attributeHeader\":{\"labelValue\":\"962147\",\"primaryLabelValue\":\"962147\"}},{\"attributeHeader\":{\"labelValue\":\"962149\",\"primaryLabelValue\":\"962149\"}},{\"attributeHeader\":{\"labelValue\":\"962151\",\"primaryLabelValue\":\"962151\"}},{\"attributeHeader\":{\"labelValue\":\"962153\",\"primaryLabelValue\":\"962153\"}},{\"attributeHeader\":{\"labelValue\":\"962155\",\"primaryLabelValue\":\"962155\"}},{\"attributeHeader\":{\"labelValue\":\"962157\",\"primaryLabelValue\":\"962157\"}},{\"attributeHeader\":{\"labelValue\":\"962161\",\"primaryLabelValue\":\"962161\"}},{\"attributeHeader\":{\"labelValue\":\"962163\",\"primaryLabelValue\":\"962163\"}},{\"attributeHeader\":{\"labelValue\":\"962165\",\"primaryLabelValue\":\"962165\"}},{\"attributeHeader\":{\"labelValue\":\"962167\",\"primaryLabelValue\":\"962167\"}},{\"attributeHeader\":{\"labelValue\":\"962169\",\"primaryLabelValue\":\"962169\"}},{\"attributeHeader\":{\"labelValue\":\"962171\",\"primaryLabelValue\":\"962171\"}},{\"attributeHeader\":{\"labelValue\":\"962173\",\"primaryLabelValue\":\"962173\"}},{\"attributeHeader\":{\"labelValue\":\"962175\",\"primaryLabelValue\":\"962175\"}},{\"attributeHeader\":{\"labelValue\":\"962177\",\"primaryLabelValue\":\"962177\"}},{\"attributeHeader\":{\"labelValue\":\"962179\",\"primaryLabelValue\":\"962179\"}},{\"attributeHeader\":{\"labelValue\":\"962181\",\"primaryLabelValue\":\"962181\"}},{\"attributeHeader\":{\"labelValue\":\"962183\",\"primaryLabelValue\":\"962183\"}},{\"attributeHeader\":{\"labelValue\":\"962185\",\"primaryLabelValue\":\"962185\"}},{\"attributeHeader\":{\"labelValue\":\"962187\",\"primaryLabelValue\":\"962187\"}},{\"attributeHeader\":{\"labelValue\":\"962189\",\"primaryLabelValue\":\"962189\"}},{\"attributeHeader\":{\"labelValue\":\"962191\",\"primaryLabelValue\":\"962191\"}},{\"attributeHeader\":{\"labelValue\":\"962193\",\"primaryLabelValue\":\"962193\"}},{\"attributeHeader\":{\"labelValue\":\"962195\",\"primaryLabelValue\":\"962195\"}},{\"attributeHeader\":{\"labelValue\":\"962197\",\"primaryLabelValue\":\"962197\"}},{\"attributeHeader\":{\"labelValue\":\"962199\",\"primaryLabelValue\":\"962199\"}},{\"attributeHeader\":{\"labelValue\":\"962201\",\"primaryLabelValue\":\"962201\"}},{\"attributeHeader\":{\"labelValue\":\"962203\",\"primaryLabelValue\":\"962203\"}},{\"attributeHeader\":{\"labelValue\":\"962205\",\"primaryLabelValue\":\"962205\"}},{\"attributeHeader\":{\"labelValue\":\"962207\",\"primaryLabelValue\":\"962207\"}},{\"attributeHeader\":{\"labelValue\":\"962209\",\"primaryLabelValue\":\"962209\"}},{\"attributeHeader\":{\"labelValue\":\"962211\",\"primaryLabelValue\":\"962211\"}},{\"attributeHeader\":{\"labelValue\":\"962213\",\"primaryLabelValue\":\"962213\"}},{\"attributeHeader\":{\"labelValue\":\"962215\",\"primaryLabelValue\":\"962215\"}},{\"attributeHeader\":{\"labelValue\":\"962217\",\"primaryLabelValue\":\"962217\"}},{\"attributeHeader\":{\"labelValue\":\"962219\",\"primaryLabelValue\":\"962219\"}},{\"attributeHeader\":{\"labelValue\":\"962221\",\"primaryLabelValue\":\"962221\"}},{\"attributeHeader\":{\"labelValue\":\"962223\",\"primaryLabelValue\":\"962223\"}},{\"attributeHeader\":{\"labelValue\":\"962225\",\"primaryLabelValue\":\"962225\"}},{\"attributeHeader\":{\"labelValue\":\"962227\",\"primaryLabelValue\":\"962227\"}},{\"attributeHeader\":{\"labelValue\":\"962229\",\"primaryLabelValue\":\"962229\"}},{\"attributeHeader\":{\"labelValue\":\"962231\",\"primaryLabelValue\":\"962231\"}},{\"attributeHeader\":{\"labelValue\":\"962233\",\"primaryLabelValue\":\"962233\"}},{\"attributeHeader\":{\"labelValue\":\"962235\",\"primaryLabelValue\":\"962235\"}},{\"attributeHeader\":{\"labelValue\":\"962237\",\"primaryLabelValue\":\"962237\"}},{\"attributeHeader\":{\"labelValue\":\"962239\",\"primaryLabelValue\":\"962239\"}},{\"attributeHeader\":{\"labelValue\":\"962241\",\"primaryLabelValue\":\"962241\"}},{\"attributeHeader\":{\"labelValue\":\"962243\",\"primaryLabelValue\":\"962243\"}},{\"attributeHeader\":{\"labelValue\":\"962245\",\"primaryLabelValue\":\"962245\"}},{\"attributeHeader\":{\"labelValue\":\"962247\",\"primaryLabelValue\":\"962247\"}},{\"attributeHeader\":{\"labelValue\":\"962249\",\"primaryLabelValue\":\"962249\"}},{\"attributeHeader\":{\"labelValue\":\"962251\",\"primaryLabelValue\":\"962251\"}},{\"attributeHeader\":{\"labelValue\":\"962253\",\"primaryLabelValue\":\"962253\"}},{\"attributeHeader\":{\"labelValue\":\"962255\",\"primaryLabelValue\":\"962255\"}},{\"attributeHeader\":{\"labelValue\":\"962257\",\"primaryLabelValue\":\"962257\"}},{\"attributeHeader\":{\"labelValue\":\"962259\",\"primaryLabelValue\":\"962259\"}},{\"attributeHeader\":{\"labelValue\":\"962261\",\"primaryLabelValue\":\"962261\"}},{\"attributeHeader\":{\"labelValue\":\"962263\",\"primaryLabelValue\":\"962263\"}},{\"attributeHeader\":{\"labelValue\":\"962265\",\"primaryLabelValue\":\"962265\"}},{\"attributeHeader\":{\"labelValue\":\"962267\",\"primaryLabelValue\":\"962267\"}},{\"attributeHeader\":{\"labelValue\":\"962269\",\"primaryLabelValue\":\"962269\"}},{\"attributeHeader\":{\"labelValue\":\"962271\",\"primaryLabelValue\":\"962271\"}},{\"attributeHeader\":{\"labelValue\":\"962273\",\"primaryLabelValue\":\"962273\"}},{\"attributeHeader\":{\"labelValue\":\"962275\",\"primaryLabelValue\":\"962275\"}},{\"attributeHeader\":{\"labelValue\":\"962277\",\"primaryLabelValue\":\"962277\"}},{\"attributeHeader\":{\"labelValue\":\"962279\",\"primaryLabelValue\":\"962279\"}},{\"attributeHeader\":{\"labelValue\":\"962281\",\"primaryLabelValue\":\"962281\"}},{\"attributeHeader\":{\"labelValue\":\"962283\",\"primaryLabelValue\":\"962283\"}},{\"attributeHeader\":{\"labelValue\":\"962285\",\"primaryLabelValue\":\"962285\"}},{\"attributeHeader\":{\"labelValue\":\"962287\",\"primaryLabelValue\":\"962287\"}},{\"attributeHeader\":{\"labelValue\":\"962289\",\"primaryLabelValue\":\"962289\"}},{\"attributeHeader\":{\"labelValue\":\"962291\",\"primaryLabelValue\":\"962291\"}},{\"attributeHeader\":{\"labelValue\":\"962293\",\"primaryLabelValue\":\"962293\"}},{\"attributeHeader\":{\"labelValue\":\"962295\",\"primaryLabelValue\":\"962295\"}},{\"attributeHeader\":{\"labelValue\":\"962297\",\"primaryLabelValue\":\"962297\"}},{\"attributeHeader\":{\"labelValue\":\"962299\",\"primaryLabelValue\":\"962299\"}},{\"attributeHeader\":{\"labelValue\":\"962301\",\"primaryLabelValue\":\"962301\"}},{\"attributeHeader\":{\"labelValue\":\"962303\",\"primaryLabelValue\":\"962303\"}},{\"attributeHeader\":{\"labelValue\":\"962305\",\"primaryLabelValue\":\"962305\"}},{\"attributeHeader\":{\"labelValue\":\"962307\",\"primaryLabelValue\":\"962307\"}},{\"attributeHeader\":{\"labelValue\":\"962309\",\"primaryLabelValue\":\"962309\"}},{\"attributeHeader\":{\"labelValue\":\"962311\",\"primaryLabelValue\":\"962311\"}},{\"attributeHeader\":{\"labelValue\":\"962313\",\"primaryLabelValue\":\"962313\"}},{\"attributeHeader\":{\"labelValue\":\"962315\",\"primaryLabelValue\":\"962315\"}},{\"attributeHeader\":{\"labelValue\":\"962317\",\"primaryLabelValue\":\"962317\"}},{\"attributeHeader\":{\"labelValue\":\"962319\",\"primaryLabelValue\":\"962319\"}},{\"attributeHeader\":{\"labelValue\":\"962321\",\"primaryLabelValue\":\"962321\"}},{\"attributeHeader\":{\"labelValue\":\"962323\",\"primaryLabelValue\":\"962323\"}},{\"attributeHeader\":{\"labelValue\":\"962325\",\"primaryLabelValue\":\"962325\"}},{\"attributeHeader\":{\"labelValue\":\"962327\",\"primaryLabelValue\":\"962327\"}},{\"attributeHeader\":{\"labelValue\":\"962329\",\"primaryLabelValue\":\"962329\"}},{\"attributeHeader\":{\"labelValue\":\"962331\",\"primaryLabelValue\":\"962331\"}},{\"attributeHeader\":{\"labelValue\":\"962333\",\"primaryLabelValue\":\"962333\"}},{\"attributeHeader\":{\"labelValue\":\"962335\",\"primaryLabelValue\":\"962335\"}},{\"attributeHeader\":{\"labelValue\":\"962337\",\"primaryLabelValue\":\"962337\"}},{\"attributeHeader\":{\"labelValue\":\"962339\",\"primaryLabelValue\":\"962339\"}},{\"attributeHeader\":{\"labelValue\":\"962341\",\"primaryLabelValue\":\"962341\"}},{\"attributeHeader\":{\"labelValue\":\"962343\",\"primaryLabelValue\":\"962343\"}},{\"attributeHeader\":{\"labelValue\":\"962345\",\"primaryLabelValue\":\"962345\"}},{\"attributeHeader\":{\"labelValue\":\"962347\",\"primaryLabelValue\":\"962347\"}},{\"attributeHeader\":{\"labelValue\":\"962349\",\"primaryLabelValue\":\"962349\"}},{\"attributeHeader\":{\"labelValue\":\"962351\",\"primaryLabelValue\":\"962351\"}},{\"attributeHeader\":{\"labelValue\":\"962353\",\"primaryLabelValue\":\"962353\"}},{\"attributeHeader\":{\"labelValue\":\"962355\",\"primaryLabelValue\":\"962355\"}},{\"attributeHeader\":{\"labelValue\":\"962357\",\"primaryLabelValue\":\"962357\"}},{\"attributeHeader\":{\"labelValue\":\"962359\",\"primaryLabelValue\":\"962359\"}},{\"attributeHeader\":{\"labelValue\":\"962361\",\"primaryLabelValue\":\"962361\"}},{\"attributeHeader\":{\"labelValue\":\"962363\",\"primaryLabelValue\":\"962363\"}},{\"attributeHeader\":{\"labelValue\":\"962365\",\"primaryLabelValue\":\"962365\"}},{\"attributeHeader\":{\"labelValue\":\"962367\",\"primaryLabelValue\":\"962367\"}},{\"attributeHeader\":{\"labelValue\":\"962369\",\"primaryLabelValue\":\"962369\"}},{\"attributeHeader\":{\"labelValue\":\"962371\",\"primaryLabelValue\":\"962371\"}},{\"attributeHeader\":{\"labelValue\":\"962373\",\"primaryLabelValue\":\"962373\"}},{\"attributeHeader\":{\"labelValue\":\"962375\",\"primaryLabelValue\":\"962375\"}},{\"attributeHeader\":{\"labelValue\":\"962377\",\"primaryLabelValue\":\"962377\"}},{\"attributeHeader\":{\"labelValue\":\"962379\",\"primaryLabelValue\":\"962379\"}},{\"attributeHeader\":{\"labelValue\":\"962381\",\"primaryLabelValue\":\"962381\"}},{\"attributeHeader\":{\"labelValue\":\"962383\",\"primaryLabelValue\":\"962383\"}},{\"attributeHeader\":{\"labelValue\":\"962385\",\"primaryLabelValue\":\"962385\"}},{\"attributeHeader\":{\"labelValue\":\"962387\",\"primaryLabelValue\":\"962387\"}},{\"attributeHeader\":{\"labelValue\":\"962389\",\"primaryLabelValue\":\"962389\"}},{\"attributeHeader\":{\"labelValue\":\"962391\",\"primaryLabelValue\":\"962391\"}},{\"attributeHeader\":{\"labelValue\":\"962393\",\"primaryLabelValue\":\"962393\"}},{\"attributeHeader\":{\"labelValue\":\"962395\",\"primaryLabelValue\":\"962395\"}},{\"attributeHeader\":{\"labelValue\":\"962397\",\"primaryLabelValue\":\"962397\"}},{\"attributeHeader\":{\"labelValue\":\"962399\",\"primaryLabelValue\":\"962399\"}},{\"attributeHeader\":{\"labelValue\":\"962401\",\"primaryLabelValue\":\"962401\"}},{\"attributeHeader\":{\"labelValue\":\"962403\",\"primaryLabelValue\":\"962403\"}},{\"attributeHeader\":{\"labelValue\":\"962405\",\"primaryLabelValue\":\"962405\"}},{\"attributeHeader\":{\"labelValue\":\"962407\",\"primaryLabelValue\":\"962407\"}},{\"attributeHeader\":{\"labelValue\":\"962409\",\"primaryLabelValue\":\"962409\"}},{\"attributeHeader\":{\"labelValue\":\"962411\",\"primaryLabelValue\":\"962411\"}},{\"attributeHeader\":{\"labelValue\":\"962413\",\"primaryLabelValue\":\"962413\"}},{\"attributeHeader\":{\"labelValue\":\"962415\",\"primaryLabelValue\":\"962415\"}},{\"attributeHeader\":{\"labelValue\":\"962417\",\"primaryLabelValue\":\"962417\"}},{\"attributeHeader\":{\"labelValue\":\"962419\",\"primaryLabelValue\":\"962419\"}},{\"attributeHeader\":{\"labelValue\":\"962421\",\"primaryLabelValue\":\"962421\"}},{\"attributeHeader\":{\"labelValue\":\"962423\",\"primaryLabelValue\":\"962423\"}},{\"attributeHeader\":{\"labelValue\":\"962425\",\"primaryLabelValue\":\"962425\"}},{\"attributeHeader\":{\"labelValue\":\"962427\",\"primaryLabelValue\":\"962427\"}},{\"attributeHeader\":{\"labelValue\":\"962429\",\"primaryLabelValue\":\"962429\"}},{\"attributeHeader\":{\"labelValue\":\"962431\",\"primaryLabelValue\":\"962431\"}},{\"attributeHeader\":{\"labelValue\":\"962433\",\"primaryLabelValue\":\"962433\"}},{\"attributeHeader\":{\"labelValue\":\"962435\",\"primaryLabelValue\":\"962435\"}},{\"attributeHeader\":{\"labelValue\":\"962437\",\"primaryLabelValue\":\"962437\"}},{\"attributeHeader\":{\"labelValue\":\"962439\",\"primaryLabelValue\":\"962439\"}},{\"attributeHeader\":{\"labelValue\":\"962441\",\"primaryLabelValue\":\"962441\"}},{\"attributeHeader\":{\"labelValue\":\"962443\",\"primaryLabelValue\":\"962443\"}},{\"attributeHeader\":{\"labelValue\":\"962445\",\"primaryLabelValue\":\"962445\"}},{\"attributeHeader\":{\"labelValue\":\"962447\",\"primaryLabelValue\":\"962447\"}},{\"attributeHeader\":{\"labelValue\":\"962449\",\"primaryLabelValue\":\"962449\"}},{\"attributeHeader\":{\"labelValue\":\"962451\",\"primaryLabelValue\":\"962451\"}},{\"attributeHeader\":{\"labelValue\":\"962453\",\"primaryLabelValue\":\"962453\"}},{\"attributeHeader\":{\"labelValue\":\"962455\",\"primaryLabelValue\":\"962455\"}},{\"attributeHeader\":{\"labelValue\":\"962457\",\"primaryLabelValue\":\"962457\"}},{\"attributeHeader\":{\"labelValue\":\"962459\",\"primaryLabelValue\":\"962459\"}},{\"attributeHeader\":{\"labelValue\":\"962461\",\"primaryLabelValue\":\"962461\"}},{\"attributeHeader\":{\"labelValue\":\"962463\",\"primaryLabelValue\":\"962463\"}},{\"attributeHeader\":{\"labelValue\":\"962465\",\"primaryLabelValue\":\"962465\"}},{\"attributeHeader\":{\"labelValue\":\"962467\",\"primaryLabelValue\":\"962467\"}},{\"attributeHeader\":{\"labelValue\":\"962469\",\"primaryLabelValue\":\"962469\"}},{\"attributeHeader\":{\"labelValue\":\"962471\",\"primaryLabelValue\":\"962471\"}},{\"attributeHeader\":{\"labelValue\":\"962473\",\"primaryLabelValue\":\"962473\"}},{\"attributeHeader\":{\"labelValue\":\"962475\",\"primaryLabelValue\":\"962475\"}},{\"attributeHeader\":{\"labelValue\":\"962477\",\"primaryLabelValue\":\"962477\"}},{\"attributeHeader\":{\"labelValue\":\"962479\",\"primaryLabelValue\":\"962479\"}},{\"attributeHeader\":{\"labelValue\":\"962481\",\"primaryLabelValue\":\"962481\"}},{\"attributeHeader\":{\"labelValue\":\"962483\",\"primaryLabelValue\":\"962483\"}},{\"attributeHeader\":{\"labelValue\":\"962485\",\"primaryLabelValue\":\"962485\"}},{\"attributeHeader\":{\"labelValue\":\"962487\",\"primaryLabelValue\":\"962487\"}},{\"attributeHeader\":{\"labelValue\":\"962489\",\"primaryLabelValue\":\"962489\"}},{\"attributeHeader\":{\"labelValue\":\"962491\",\"primaryLabelValue\":\"962491\"}},{\"attributeHeader\":{\"labelValue\":\"962493\",\"primaryLabelValue\":\"962493\"}},{\"attributeHeader\":{\"labelValue\":\"962495\",\"primaryLabelValue\":\"962495\"}},{\"attributeHeader\":{\"labelValue\":\"962497\",\"primaryLabelValue\":\"962497\"}},{\"attributeHeader\":{\"labelValue\":\"962499\",\"primaryLabelValue\":\"962499\"}},{\"attributeHeader\":{\"labelValue\":\"962501\",\"primaryLabelValue\":\"962501\"}},{\"attributeHeader\":{\"labelValue\":\"962503\",\"primaryLabelValue\":\"962503\"}},{\"attributeHeader\":{\"labelValue\":\"962505\",\"primaryLabelValue\":\"962505\"}},{\"attributeHeader\":{\"labelValue\":\"962507\",\"primaryLabelValue\":\"962507\"}},{\"attributeHeader\":{\"labelValue\":\"962509\",\"primaryLabelValue\":\"962509\"}},{\"attributeHeader\":{\"labelValue\":\"962511\",\"primaryLabelValue\":\"962511\"}},{\"attributeHeader\":{\"labelValue\":\"962513\",\"primaryLabelValue\":\"962513\"}},{\"attributeHeader\":{\"labelValue\":\"962515\",\"primaryLabelValue\":\"962515\"}},{\"attributeHeader\":{\"labelValue\":\"962517\",\"primaryLabelValue\":\"962517\"}},{\"attributeHeader\":{\"labelValue\":\"962519\",\"primaryLabelValue\":\"962519\"}},{\"attributeHeader\":{\"labelValue\":\"962521\",\"primaryLabelValue\":\"962521\"}},{\"attributeHeader\":{\"labelValue\":\"962523\",\"primaryLabelValue\":\"962523\"}},{\"attributeHeader\":{\"labelValue\":\"962525\",\"primaryLabelValue\":\"962525\"}},{\"attributeHeader\":{\"labelValue\":\"962527\",\"primaryLabelValue\":\"962527\"}},{\"attributeHeader\":{\"labelValue\":\"962529\",\"primaryLabelValue\":\"962529\"}},{\"attributeHeader\":{\"labelValue\":\"962531\",\"primaryLabelValue\":\"962531\"}},{\"attributeHeader\":{\"labelValue\":\"962533\",\"primaryLabelValue\":\"962533\"}},{\"attributeHeader\":{\"labelValue\":\"962535\",\"primaryLabelValue\":\"962535\"}},{\"attributeHeader\":{\"labelValue\":\"962537\",\"primaryLabelValue\":\"962537\"}},{\"attributeHeader\":{\"labelValue\":\"962539\",\"primaryLabelValue\":\"962539\"}},{\"attributeHeader\":{\"labelValue\":\"962541\",\"primaryLabelValue\":\"962541\"}},{\"attributeHeader\":{\"labelValue\":\"962543\",\"primaryLabelValue\":\"962543\"}},{\"attributeHeader\":{\"labelValue\":\"962545\",\"primaryLabelValue\":\"962545\"}},{\"attributeHeader\":{\"labelValue\":\"962547\",\"primaryLabelValue\":\"962547\"}},{\"attributeHeader\":{\"labelValue\":\"962549\",\"primaryLabelValue\":\"962549\"}},{\"attributeHeader\":{\"labelValue\":\"962551\",\"primaryLabelValue\":\"962551\"}},{\"attributeHeader\":{\"labelValue\":\"962553\",\"primaryLabelValue\":\"962553\"}},{\"attributeHeader\":{\"labelValue\":\"962555\",\"primaryLabelValue\":\"962555\"}},{\"attributeHeader\":{\"labelValue\":\"962557\",\"primaryLabelValue\":\"962557\"}},{\"attributeHeader\":{\"labelValue\":\"962559\",\"primaryLabelValue\":\"962559\"}},{\"attributeHeader\":{\"labelValue\":\"962561\",\"primaryLabelValue\":\"962561\"}},{\"attributeHeader\":{\"labelValue\":\"962563\",\"primaryLabelValue\":\"962563\"}},{\"attributeHeader\":{\"labelValue\":\"962565\",\"primaryLabelValue\":\"962565\"}},{\"attributeHeader\":{\"labelValue\":\"962567\",\"primaryLabelValue\":\"962567\"}},{\"attributeHeader\":{\"labelValue\":\"962569\",\"primaryLabelValue\":\"962569\"}},{\"attributeHeader\":{\"labelValue\":\"962571\",\"primaryLabelValue\":\"962571\"}},{\"attributeHeader\":{\"labelValue\":\"962573\",\"primaryLabelValue\":\"962573\"}},{\"attributeHeader\":{\"labelValue\":\"962575\",\"primaryLabelValue\":\"962575\"}},{\"attributeHeader\":{\"labelValue\":\"962577\",\"primaryLabelValue\":\"962577\"}},{\"attributeHeader\":{\"labelValue\":\"962579\",\"primaryLabelValue\":\"962579\"}},{\"attributeHeader\":{\"labelValue\":\"962581\",\"primaryLabelValue\":\"962581\"}},{\"attributeHeader\":{\"labelValue\":\"962583\",\"primaryLabelValue\":\"962583\"}},{\"attributeHeader\":{\"labelValue\":\"962585\",\"primaryLabelValue\":\"962585\"}},{\"attributeHeader\":{\"labelValue\":\"962587\",\"primaryLabelValue\":\"962587\"}},{\"attributeHeader\":{\"labelValue\":\"962589\",\"primaryLabelValue\":\"962589\"}},{\"attributeHeader\":{\"labelValue\":\"962591\",\"primaryLabelValue\":\"962591\"}},{\"attributeHeader\":{\"labelValue\":\"962593\",\"primaryLabelValue\":\"962593\"}},{\"attributeHeader\":{\"labelValue\":\"962595\",\"primaryLabelValue\":\"962595\"}},{\"attributeHeader\":{\"labelValue\":\"962597\",\"primaryLabelValue\":\"962597\"}},{\"attributeHeader\":{\"labelValue\":\"962599\",\"primaryLabelValue\":\"962599\"}},{\"attributeHeader\":{\"labelValue\":\"962601\",\"primaryLabelValue\":\"962601\"}},{\"attributeHeader\":{\"labelValue\":\"962603\",\"primaryLabelValue\":\"962603\"}},{\"attributeHeader\":{\"labelValue\":\"962605\",\"primaryLabelValue\":\"962605\"}},{\"attributeHeader\":{\"labelValue\":\"962607\",\"primaryLabelValue\":\"962607\"}},{\"attributeHeader\":{\"labelValue\":\"962609\",\"primaryLabelValue\":\"962609\"}},{\"attributeHeader\":{\"labelValue\":\"962611\",\"primaryLabelValue\":\"962611\"}},{\"attributeHeader\":{\"labelValue\":\"962613\",\"primaryLabelValue\":\"962613\"}},{\"attributeHeader\":{\"labelValue\":\"962615\",\"primaryLabelValue\":\"962615\"}},{\"attributeHeader\":{\"labelValue\":\"962617\",\"primaryLabelValue\":\"962617\"}},{\"attributeHeader\":{\"labelValue\":\"962619\",\"primaryLabelValue\":\"962619\"}},{\"attributeHeader\":{\"labelValue\":\"962621\",\"primaryLabelValue\":\"962621\"}},{\"attributeHeader\":{\"labelValue\":\"962623\",\"primaryLabelValue\":\"962623\"}},{\"attributeHeader\":{\"labelValue\":\"962625\",\"primaryLabelValue\":\"962625\"}},{\"attributeHeader\":{\"labelValue\":\"962627\",\"primaryLabelValue\":\"962627\"}},{\"attributeHeader\":{\"labelValue\":\"962629\",\"primaryLabelValue\":\"962629\"}},{\"attributeHeader\":{\"labelValue\":\"962633\",\"primaryLabelValue\":\"962633\"}},{\"attributeHeader\":{\"labelValue\":\"962635\",\"primaryLabelValue\":\"962635\"}},{\"attributeHeader\":{\"labelValue\":\"962637\",\"primaryLabelValue\":\"962637\"}},{\"attributeHeader\":{\"labelValue\":\"962639\",\"primaryLabelValue\":\"962639\"}},{\"attributeHeader\":{\"labelValue\":\"962641\",\"primaryLabelValue\":\"962641\"}},{\"attributeHeader\":{\"labelValue\":\"962643\",\"primaryLabelValue\":\"962643\"}},{\"attributeHeader\":{\"labelValue\":\"962645\",\"primaryLabelValue\":\"962645\"}},{\"attributeHeader\":{\"labelValue\":\"962647\",\"primaryLabelValue\":\"962647\"}},{\"attributeHeader\":{\"labelValue\":\"962649\",\"primaryLabelValue\":\"962649\"}},{\"attributeHeader\":{\"labelValue\":\"962651\",\"primaryLabelValue\":\"962651\"}},{\"attributeHeader\":{\"labelValue\":\"962653\",\"primaryLabelValue\":\"962653\"}},{\"attributeHeader\":{\"labelValue\":\"962655\",\"primaryLabelValue\":\"962655\"}},{\"attributeHeader\":{\"labelValue\":\"962657\",\"primaryLabelValue\":\"962657\"}},{\"attributeHeader\":{\"labelValue\":\"962659\",\"primaryLabelValue\":\"962659\"}},{\"attributeHeader\":{\"labelValue\":\"962661\",\"primaryLabelValue\":\"962661\"}},{\"attributeHeader\":{\"labelValue\":\"962663\",\"primaryLabelValue\":\"962663\"}},{\"attributeHeader\":{\"labelValue\":\"962665\",\"primaryLabelValue\":\"962665\"}},{\"attributeHeader\":{\"labelValue\":\"962667\",\"primaryLabelValue\":\"962667\"}},{\"attributeHeader\":{\"labelValue\":\"962669\",\"primaryLabelValue\":\"962669\"}},{\"attributeHeader\":{\"labelValue\":\"962671\",\"primaryLabelValue\":\"962671\"}},{\"attributeHeader\":{\"labelValue\":\"962673\",\"primaryLabelValue\":\"962673\"}},{\"attributeHeader\":{\"labelValue\":\"962675\",\"primaryLabelValue\":\"962675\"}},{\"attributeHeader\":{\"labelValue\":\"962677\",\"primaryLabelValue\":\"962677\"}},{\"attributeHeader\":{\"labelValue\":\"962679\",\"primaryLabelValue\":\"962679\"}},{\"attributeHeader\":{\"labelValue\":\"962681\",\"primaryLabelValue\":\"962681\"}},{\"attributeHeader\":{\"labelValue\":\"962683\",\"primaryLabelValue\":\"962683\"}},{\"attributeHeader\":{\"labelValue\":\"962685\",\"primaryLabelValue\":\"962685\"}},{\"attributeHeader\":{\"labelValue\":\"962687\",\"primaryLabelValue\":\"962687\"}},{\"attributeHeader\":{\"labelValue\":\"962689\",\"primaryLabelValue\":\"962689\"}},{\"attributeHeader\":{\"labelValue\":\"962691\",\"primaryLabelValue\":\"962691\"}},{\"attributeHeader\":{\"labelValue\":\"962693\",\"primaryLabelValue\":\"962693\"}},{\"attributeHeader\":{\"labelValue\":\"962695\",\"primaryLabelValue\":\"962695\"}},{\"attributeHeader\":{\"labelValue\":\"962697\",\"primaryLabelValue\":\"962697\"}},{\"attributeHeader\":{\"labelValue\":\"962699\",\"primaryLabelValue\":\"962699\"}},{\"attributeHeader\":{\"labelValue\":\"962701\",\"primaryLabelValue\":\"962701\"}},{\"attributeHeader\":{\"labelValue\":\"962703\",\"primaryLabelValue\":\"962703\"}},{\"attributeHeader\":{\"labelValue\":\"962705\",\"primaryLabelValue\":\"962705\"}},{\"attributeHeader\":{\"labelValue\":\"962707\",\"primaryLabelValue\":\"962707\"}},{\"attributeHeader\":{\"labelValue\":\"962709\",\"primaryLabelValue\":\"962709\"}},{\"attributeHeader\":{\"labelValue\":\"962711\",\"primaryLabelValue\":\"962711\"}},{\"attributeHeader\":{\"labelValue\":\"962713\",\"primaryLabelValue\":\"962713\"}},{\"attributeHeader\":{\"labelValue\":\"962715\",\"primaryLabelValue\":\"962715\"}},{\"attributeHeader\":{\"labelValue\":\"962717\",\"primaryLabelValue\":\"962717\"}},{\"attributeHeader\":{\"labelValue\":\"962719\",\"primaryLabelValue\":\"962719\"}},{\"attributeHeader\":{\"labelValue\":\"962721\",\"primaryLabelValue\":\"962721\"}},{\"attributeHeader\":{\"labelValue\":\"962723\",\"primaryLabelValue\":\"962723\"}},{\"attributeHeader\":{\"labelValue\":\"962725\",\"primaryLabelValue\":\"962725\"}},{\"attributeHeader\":{\"labelValue\":\"962727\",\"primaryLabelValue\":\"962727\"}},{\"attributeHeader\":{\"labelValue\":\"962729\",\"primaryLabelValue\":\"962729\"}},{\"attributeHeader\":{\"labelValue\":\"962731\",\"primaryLabelValue\":\"962731\"}},{\"attributeHeader\":{\"labelValue\":\"962733\",\"primaryLabelValue\":\"962733\"}},{\"attributeHeader\":{\"labelValue\":\"962735\",\"primaryLabelValue\":\"962735\"}},{\"attributeHeader\":{\"labelValue\":\"962737\",\"primaryLabelValue\":\"962737\"}},{\"attributeHeader\":{\"labelValue\":\"962739\",\"primaryLabelValue\":\"962739\"}},{\"attributeHeader\":{\"labelValue\":\"962741\",\"primaryLabelValue\":\"962741\"}},{\"attributeHeader\":{\"labelValue\":\"962743\",\"primaryLabelValue\":\"962743\"}},{\"attributeHeader\":{\"labelValue\":\"962745\",\"primaryLabelValue\":\"962745\"}},{\"attributeHeader\":{\"labelValue\":\"962747\",\"primaryLabelValue\":\"962747\"}},{\"attributeHeader\":{\"labelValue\":\"962749\",\"primaryLabelValue\":\"962749\"}},{\"attributeHeader\":{\"labelValue\":\"962751\",\"primaryLabelValue\":\"962751\"}},{\"attributeHeader\":{\"labelValue\":\"962753\",\"primaryLabelValue\":\"962753\"}},{\"attributeHeader\":{\"labelValue\":\"962755\",\"primaryLabelValue\":\"962755\"}},{\"attributeHeader\":{\"labelValue\":\"962757\",\"primaryLabelValue\":\"962757\"}},{\"attributeHeader\":{\"labelValue\":\"962759\",\"primaryLabelValue\":\"962759\"}},{\"attributeHeader\":{\"labelValue\":\"962761\",\"primaryLabelValue\":\"962761\"}},{\"attributeHeader\":{\"labelValue\":\"962763\",\"primaryLabelValue\":\"962763\"}},{\"attributeHeader\":{\"labelValue\":\"962765\",\"primaryLabelValue\":\"962765\"}},{\"attributeHeader\":{\"labelValue\":\"962767\",\"primaryLabelValue\":\"962767\"}},{\"attributeHeader\":{\"labelValue\":\"962769\",\"primaryLabelValue\":\"962769\"}},{\"attributeHeader\":{\"labelValue\":\"962771\",\"primaryLabelValue\":\"962771\"}},{\"attributeHeader\":{\"labelValue\":\"962773\",\"primaryLabelValue\":\"962773\"}},{\"attributeHeader\":{\"labelValue\":\"962775\",\"primaryLabelValue\":\"962775\"}},{\"attributeHeader\":{\"labelValue\":\"962777\",\"primaryLabelValue\":\"962777\"}},{\"attributeHeader\":{\"labelValue\":\"962779\",\"primaryLabelValue\":\"962779\"}},{\"attributeHeader\":{\"labelValue\":\"962781\",\"primaryLabelValue\":\"962781\"}},{\"attributeHeader\":{\"labelValue\":\"962783\",\"primaryLabelValue\":\"962783\"}},{\"attributeHeader\":{\"labelValue\":\"962785\",\"primaryLabelValue\":\"962785\"}},{\"attributeHeader\":{\"labelValue\":\"962787\",\"primaryLabelValue\":\"962787\"}},{\"attributeHeader\":{\"labelValue\":\"962789\",\"primaryLabelValue\":\"962789\"}},{\"attributeHeader\":{\"labelValue\":\"962791\",\"primaryLabelValue\":\"962791\"}},{\"attributeHeader\":{\"labelValue\":\"962793\",\"primaryLabelValue\":\"962793\"}},{\"attributeHeader\":{\"labelValue\":\"962795\",\"primaryLabelValue\":\"962795\"}},{\"attributeHeader\":{\"labelValue\":\"962797\",\"primaryLabelValue\":\"962797\"}},{\"attributeHeader\":{\"labelValue\":\"962799\",\"primaryLabelValue\":\"962799\"}},{\"attributeHeader\":{\"labelValue\":\"962801\",\"primaryLabelValue\":\"962801\"}},{\"attributeHeader\":{\"labelValue\":\"962803\",\"primaryLabelValue\":\"962803\"}},{\"attributeHeader\":{\"labelValue\":\"962805\",\"primaryLabelValue\":\"962805\"}},{\"attributeHeader\":{\"labelValue\":\"962807\",\"primaryLabelValue\":\"962807\"}},{\"attributeHeader\":{\"labelValue\":\"962809\",\"primaryLabelValue\":\"962809\"}},{\"attributeHeader\":{\"labelValue\":\"962811\",\"primaryLabelValue\":\"962811\"}},{\"attributeHeader\":{\"labelValue\":\"962813\",\"primaryLabelValue\":\"962813\"}},{\"attributeHeader\":{\"labelValue\":\"962815\",\"primaryLabelValue\":\"962815\"}},{\"attributeHeader\":{\"labelValue\":\"962817\",\"primaryLabelValue\":\"962817\"}},{\"attributeHeader\":{\"labelValue\":\"962819\",\"primaryLabelValue\":\"962819\"}},{\"attributeHeader\":{\"labelValue\":\"962821\",\"primaryLabelValue\":\"962821\"}},{\"attributeHeader\":{\"labelValue\":\"962823\",\"primaryLabelValue\":\"962823\"}},{\"attributeHeader\":{\"labelValue\":\"962825\",\"primaryLabelValue\":\"962825\"}},{\"attributeHeader\":{\"labelValue\":\"962827\",\"primaryLabelValue\":\"962827\"}},{\"attributeHeader\":{\"labelValue\":\"962829\",\"primaryLabelValue\":\"962829\"}},{\"attributeHeader\":{\"labelValue\":\"962831\",\"primaryLabelValue\":\"962831\"}},{\"attributeHeader\":{\"labelValue\":\"962833\",\"primaryLabelValue\":\"962833\"}},{\"attributeHeader\":{\"labelValue\":\"962835\",\"primaryLabelValue\":\"962835\"}},{\"attributeHeader\":{\"labelValue\":\"962837\",\"primaryLabelValue\":\"962837\"}},{\"attributeHeader\":{\"labelValue\":\"962839\",\"primaryLabelValue\":\"962839\"}},{\"attributeHeader\":{\"labelValue\":\"962843\",\"primaryLabelValue\":\"962843\"}},{\"attributeHeader\":{\"labelValue\":\"962845\",\"primaryLabelValue\":\"962845\"}},{\"attributeHeader\":{\"labelValue\":\"962847\",\"primaryLabelValue\":\"962847\"}},{\"attributeHeader\":{\"labelValue\":\"962849\",\"primaryLabelValue\":\"962849\"}},{\"attributeHeader\":{\"labelValue\":\"962851\",\"primaryLabelValue\":\"962851\"}},{\"attributeHeader\":{\"labelValue\":\"962853\",\"primaryLabelValue\":\"962853\"}},{\"attributeHeader\":{\"labelValue\":\"962857\",\"primaryLabelValue\":\"962857\"}},{\"attributeHeader\":{\"labelValue\":\"962859\",\"primaryLabelValue\":\"962859\"}},{\"attributeHeader\":{\"labelValue\":\"962861\",\"primaryLabelValue\":\"962861\"}},{\"attributeHeader\":{\"labelValue\":\"962863\",\"primaryLabelValue\":\"962863\"}},{\"attributeHeader\":{\"labelValue\":\"962865\",\"primaryLabelValue\":\"962865\"}},{\"attributeHeader\":{\"labelValue\":\"962867\",\"primaryLabelValue\":\"962867\"}},{\"attributeHeader\":{\"labelValue\":\"962869\",\"primaryLabelValue\":\"962869\"}},{\"attributeHeader\":{\"labelValue\":\"962871\",\"primaryLabelValue\":\"962871\"}},{\"attributeHeader\":{\"labelValue\":\"962873\",\"primaryLabelValue\":\"962873\"}},{\"attributeHeader\":{\"labelValue\":\"962875\",\"primaryLabelValue\":\"962875\"}},{\"attributeHeader\":{\"labelValue\":\"962877\",\"primaryLabelValue\":\"962877\"}},{\"attributeHeader\":{\"labelValue\":\"962879\",\"primaryLabelValue\":\"962879\"}},{\"attributeHeader\":{\"labelValue\":\"962881\",\"primaryLabelValue\":\"962881\"}},{\"attributeHeader\":{\"labelValue\":\"962883\",\"primaryLabelValue\":\"962883\"}},{\"attributeHeader\":{\"labelValue\":\"962885\",\"primaryLabelValue\":\"962885\"}},{\"attributeHeader\":{\"labelValue\":\"962887\",\"primaryLabelValue\":\"962887\"}},{\"attributeHeader\":{\"labelValue\":\"962889\",\"primaryLabelValue\":\"962889\"}},{\"attributeHeader\":{\"labelValue\":\"962891\",\"primaryLabelValue\":\"962891\"}},{\"attributeHeader\":{\"labelValue\":\"962893\",\"primaryLabelValue\":\"962893\"}},{\"attributeHeader\":{\"labelValue\":\"962895\",\"primaryLabelValue\":\"962895\"}},{\"attributeHeader\":{\"labelValue\":\"962897\",\"primaryLabelValue\":\"962897\"}},{\"attributeHeader\":{\"labelValue\":\"962899\",\"primaryLabelValue\":\"962899\"}},{\"attributeHeader\":{\"labelValue\":\"962901\",\"primaryLabelValue\":\"962901\"}},{\"attributeHeader\":{\"labelValue\":\"962903\",\"primaryLabelValue\":\"962903\"}},{\"attributeHeader\":{\"labelValue\":\"962905\",\"primaryLabelValue\":\"962905\"}},{\"attributeHeader\":{\"labelValue\":\"962907\",\"primaryLabelValue\":\"962907\"}},{\"attributeHeader\":{\"labelValue\":\"962909\",\"primaryLabelValue\":\"962909\"}},{\"attributeHeader\":{\"labelValue\":\"962911\",\"primaryLabelValue\":\"962911\"}},{\"attributeHeader\":{\"labelValue\":\"962913\",\"primaryLabelValue\":\"962913\"}},{\"attributeHeader\":{\"labelValue\":\"962915\",\"primaryLabelValue\":\"962915\"}},{\"attributeHeader\":{\"labelValue\":\"962917\",\"primaryLabelValue\":\"962917\"}},{\"attributeHeader\":{\"labelValue\":\"962919\",\"primaryLabelValue\":\"962919\"}},{\"attributeHeader\":{\"labelValue\":\"962921\",\"primaryLabelValue\":\"962921\"}},{\"attributeHeader\":{\"labelValue\":\"962923\",\"primaryLabelValue\":\"962923\"}},{\"attributeHeader\":{\"labelValue\":\"962925\",\"primaryLabelValue\":\"962925\"}},{\"attributeHeader\":{\"labelValue\":\"962927\",\"primaryLabelValue\":\"962927\"}},{\"attributeHeader\":{\"labelValue\":\"962929\",\"primaryLabelValue\":\"962929\"}},{\"attributeHeader\":{\"labelValue\":\"962931\",\"primaryLabelValue\":\"962931\"}},{\"attributeHeader\":{\"labelValue\":\"962933\",\"primaryLabelValue\":\"962933\"}},{\"attributeHeader\":{\"labelValue\":\"962935\",\"primaryLabelValue\":\"962935\"}},{\"attributeHeader\":{\"labelValue\":\"962937\",\"primaryLabelValue\":\"962937\"}},{\"attributeHeader\":{\"labelValue\":\"962939\",\"primaryLabelValue\":\"962939\"}},{\"attributeHeader\":{\"labelValue\":\"962941\",\"primaryLabelValue\":\"962941\"}},{\"attributeHeader\":{\"labelValue\":\"962943\",\"primaryLabelValue\":\"962943\"}},{\"attributeHeader\":{\"labelValue\":\"962945\",\"primaryLabelValue\":\"962945\"}},{\"attributeHeader\":{\"labelValue\":\"962949\",\"primaryLabelValue\":\"962949\"}},{\"attributeHeader\":{\"labelValue\":\"962951\",\"primaryLabelValue\":\"962951\"}},{\"attributeHeader\":{\"labelValue\":\"962953\",\"primaryLabelValue\":\"962953\"}},{\"attributeHeader\":{\"labelValue\":\"962955\",\"primaryLabelValue\":\"962955\"}},{\"attributeHeader\":{\"labelValue\":\"962957\",\"primaryLabelValue\":\"962957\"}},{\"attributeHeader\":{\"labelValue\":\"962959\",\"primaryLabelValue\":\"962959\"}},{\"attributeHeader\":{\"labelValue\":\"962961\",\"primaryLabelValue\":\"962961\"}},{\"attributeHeader\":{\"labelValue\":\"962963\",\"primaryLabelValue\":\"962963\"}},{\"attributeHeader\":{\"labelValue\":\"962965\",\"primaryLabelValue\":\"962965\"}},{\"attributeHeader\":{\"labelValue\":\"962967\",\"primaryLabelValue\":\"962967\"}},{\"attributeHeader\":{\"labelValue\":\"962969\",\"primaryLabelValue\":\"962969\"}},{\"attributeHeader\":{\"labelValue\":\"962971\",\"primaryLabelValue\":\"962971\"}},{\"attributeHeader\":{\"labelValue\":\"962973\",\"primaryLabelValue\":\"962973\"}},{\"attributeHeader\":{\"labelValue\":\"962975\",\"primaryLabelValue\":\"962975\"}},{\"attributeHeader\":{\"labelValue\":\"962977\",\"primaryLabelValue\":\"962977\"}},{\"attributeHeader\":{\"labelValue\":\"962979\",\"primaryLabelValue\":\"962979\"}},{\"attributeHeader\":{\"labelValue\":\"962981\",\"primaryLabelValue\":\"962981\"}},{\"attributeHeader\":{\"labelValue\":\"962983\",\"primaryLabelValue\":\"962983\"}},{\"attributeHeader\":{\"labelValue\":\"962985\",\"primaryLabelValue\":\"962985\"}},{\"attributeHeader\":{\"labelValue\":\"962987\",\"primaryLabelValue\":\"962987\"}},{\"attributeHeader\":{\"labelValue\":\"962989\",\"primaryLabelValue\":\"962989\"}},{\"attributeHeader\":{\"labelValue\":\"962991\",\"primaryLabelValue\":\"962991\"}},{\"attributeHeader\":{\"labelValue\":\"962993\",\"primaryLabelValue\":\"962993\"}},{\"attributeHeader\":{\"labelValue\":\"962995\",\"primaryLabelValue\":\"962995\"}},{\"attributeHeader\":{\"labelValue\":\"962997\",\"primaryLabelValue\":\"962997\"}},{\"attributeHeader\":{\"labelValue\":\"962999\",\"primaryLabelValue\":\"962999\"}},{\"attributeHeader\":{\"labelValue\":\"963001\",\"primaryLabelValue\":\"963001\"}},{\"attributeHeader\":{\"labelValue\":\"963005\",\"primaryLabelValue\":\"963005\"}},{\"attributeHeader\":{\"labelValue\":\"963007\",\"primaryLabelValue\":\"963007\"}},{\"attributeHeader\":{\"labelValue\":\"963009\",\"primaryLabelValue\":\"963009\"}},{\"attributeHeader\":{\"labelValue\":\"963011\",\"primaryLabelValue\":\"963011\"}},{\"attributeHeader\":{\"labelValue\":\"963013\",\"primaryLabelValue\":\"963013\"}},{\"attributeHeader\":{\"labelValue\":\"963015\",\"primaryLabelValue\":\"963015\"}},{\"attributeHeader\":{\"labelValue\":\"963017\",\"primaryLabelValue\":\"963017\"}},{\"attributeHeader\":{\"labelValue\":\"963019\",\"primaryLabelValue\":\"963019\"}},{\"attributeHeader\":{\"labelValue\":\"963021\",\"primaryLabelValue\":\"963021\"}},{\"attributeHeader\":{\"labelValue\":\"963023\",\"primaryLabelValue\":\"963023\"}},{\"attributeHeader\":{\"labelValue\":\"963025\",\"primaryLabelValue\":\"963025\"}},{\"attributeHeader\":{\"labelValue\":\"963027\",\"primaryLabelValue\":\"963027\"}},{\"attributeHeader\":{\"labelValue\":\"963029\",\"primaryLabelValue\":\"963029\"}},{\"attributeHeader\":{\"labelValue\":\"963031\",\"primaryLabelValue\":\"963031\"}},{\"attributeHeader\":{\"labelValue\":\"963033\",\"primaryLabelValue\":\"963033\"}},{\"attributeHeader\":{\"labelValue\":\"963035\",\"primaryLabelValue\":\"963035\"}},{\"attributeHeader\":{\"labelValue\":\"963037\",\"primaryLabelValue\":\"963037\"}},{\"attributeHeader\":{\"labelValue\":\"963039\",\"primaryLabelValue\":\"963039\"}},{\"attributeHeader\":{\"labelValue\":\"963041\",\"primaryLabelValue\":\"963041\"}},{\"attributeHeader\":{\"labelValue\":\"963043\",\"primaryLabelValue\":\"963043\"}},{\"attributeHeader\":{\"labelValue\":\"963045\",\"primaryLabelValue\":\"963045\"}},{\"attributeHeader\":{\"labelValue\":\"963047\",\"primaryLabelValue\":\"963047\"}},{\"attributeHeader\":{\"labelValue\":\"963049\",\"primaryLabelValue\":\"963049\"}},{\"attributeHeader\":{\"labelValue\":\"963051\",\"primaryLabelValue\":\"963051\"}},{\"attributeHeader\":{\"labelValue\":\"963053\",\"primaryLabelValue\":\"963053\"}},{\"attributeHeader\":{\"labelValue\":\"963055\",\"primaryLabelValue\":\"963055\"}},{\"attributeHeader\":{\"labelValue\":\"963057\",\"primaryLabelValue\":\"963057\"}},{\"attributeHeader\":{\"labelValue\":\"963059\",\"primaryLabelValue\":\"963059\"}},{\"attributeHeader\":{\"labelValue\":\"963061\",\"primaryLabelValue\":\"963061\"}},{\"attributeHeader\":{\"labelValue\":\"963063\",\"primaryLabelValue\":\"963063\"}},{\"attributeHeader\":{\"labelValue\":\"963065\",\"primaryLabelValue\":\"963065\"}},{\"attributeHeader\":{\"labelValue\":\"963067\",\"primaryLabelValue\":\"963067\"}},{\"attributeHeader\":{\"labelValue\":\"963069\",\"primaryLabelValue\":\"963069\"}},{\"attributeHeader\":{\"labelValue\":\"963071\",\"primaryLabelValue\":\"963071\"}},{\"attributeHeader\":{\"labelValue\":\"963075\",\"primaryLabelValue\":\"963075\"}},{\"attributeHeader\":{\"labelValue\":\"963077\",\"primaryLabelValue\":\"963077\"}},{\"attributeHeader\":{\"labelValue\":\"963079\",\"primaryLabelValue\":\"963079\"}},{\"attributeHeader\":{\"labelValue\":\"963081\",\"primaryLabelValue\":\"963081\"}},{\"attributeHeader\":{\"labelValue\":\"963083\",\"primaryLabelValue\":\"963083\"}},{\"attributeHeader\":{\"labelValue\":\"963085\",\"primaryLabelValue\":\"963085\"}},{\"attributeHeader\":{\"labelValue\":\"963087\",\"primaryLabelValue\":\"963087\"}},{\"attributeHeader\":{\"labelValue\":\"963089\",\"primaryLabelValue\":\"963089\"}},{\"attributeHeader\":{\"labelValue\":\"963091\",\"primaryLabelValue\":\"963091\"}},{\"attributeHeader\":{\"labelValue\":\"963093\",\"primaryLabelValue\":\"963093\"}},{\"attributeHeader\":{\"labelValue\":\"963095\",\"primaryLabelValue\":\"963095\"}},{\"attributeHeader\":{\"labelValue\":\"963097\",\"primaryLabelValue\":\"963097\"}},{\"attributeHeader\":{\"labelValue\":\"963099\",\"primaryLabelValue\":\"963099\"}},{\"attributeHeader\":{\"labelValue\":\"963101\",\"primaryLabelValue\":\"963101\"}},{\"attributeHeader\":{\"labelValue\":\"963103\",\"primaryLabelValue\":\"963103\"}},{\"attributeHeader\":{\"labelValue\":\"963105\",\"primaryLabelValue\":\"963105\"}},{\"attributeHeader\":{\"labelValue\":\"963107\",\"primaryLabelValue\":\"963107\"}},{\"attributeHeader\":{\"labelValue\":\"963109\",\"primaryLabelValue\":\"963109\"}},{\"attributeHeader\":{\"labelValue\":\"963111\",\"primaryLabelValue\":\"963111\"}},{\"attributeHeader\":{\"labelValue\":\"963113\",\"primaryLabelValue\":\"963113\"}},{\"attributeHeader\":{\"labelValue\":\"963115\",\"primaryLabelValue\":\"963115\"}},{\"attributeHeader\":{\"labelValue\":\"963117\",\"primaryLabelValue\":\"963117\"}},{\"attributeHeader\":{\"labelValue\":\"963119\",\"primaryLabelValue\":\"963119\"}},{\"attributeHeader\":{\"labelValue\":\"963121\",\"primaryLabelValue\":\"963121\"}},{\"attributeHeader\":{\"labelValue\":\"963123\",\"primaryLabelValue\":\"963123\"}},{\"attributeHeader\":{\"labelValue\":\"963125\",\"primaryLabelValue\":\"963125\"}},{\"attributeHeader\":{\"labelValue\":\"963127\",\"primaryLabelValue\":\"963127\"}},{\"attributeHeader\":{\"labelValue\":\"963129\",\"primaryLabelValue\":\"963129\"}},{\"attributeHeader\":{\"labelValue\":\"963131\",\"primaryLabelValue\":\"963131\"}},{\"attributeHeader\":{\"labelValue\":\"963133\",\"primaryLabelValue\":\"963133\"}},{\"attributeHeader\":{\"labelValue\":\"963135\",\"primaryLabelValue\":\"963135\"}},{\"attributeHeader\":{\"labelValue\":\"963137\",\"primaryLabelValue\":\"963137\"}},{\"attributeHeader\":{\"labelValue\":\"963139\",\"primaryLabelValue\":\"963139\"}},{\"attributeHeader\":{\"labelValue\":\"963141\",\"primaryLabelValue\":\"963141\"}},{\"attributeHeader\":{\"labelValue\":\"963143\",\"primaryLabelValue\":\"963143\"}},{\"attributeHeader\":{\"labelValue\":\"963145\",\"primaryLabelValue\":\"963145\"}},{\"attributeHeader\":{\"labelValue\":\"963147\",\"primaryLabelValue\":\"963147\"}},{\"attributeHeader\":{\"labelValue\":\"963149\",\"primaryLabelValue\":\"963149\"}},{\"attributeHeader\":{\"labelValue\":\"963151\",\"primaryLabelValue\":\"963151\"}},{\"attributeHeader\":{\"labelValue\":\"963153\",\"primaryLabelValue\":\"963153\"}},{\"attributeHeader\":{\"labelValue\":\"963155\",\"primaryLabelValue\":\"963155\"}},{\"attributeHeader\":{\"labelValue\":\"963157\",\"primaryLabelValue\":\"963157\"}},{\"attributeHeader\":{\"labelValue\":\"963159\",\"primaryLabelValue\":\"963159\"}},{\"attributeHeader\":{\"labelValue\":\"963161\",\"primaryLabelValue\":\"963161\"}},{\"attributeHeader\":{\"labelValue\":\"963163\",\"primaryLabelValue\":\"963163\"}},{\"attributeHeader\":{\"labelValue\":\"963165\",\"primaryLabelValue\":\"963165\"}},{\"attributeHeader\":{\"labelValue\":\"963167\",\"primaryLabelValue\":\"963167\"}},{\"attributeHeader\":{\"labelValue\":\"963169\",\"primaryLabelValue\":\"963169\"}},{\"attributeHeader\":{\"labelValue\":\"963171\",\"primaryLabelValue\":\"963171\"}},{\"attributeHeader\":{\"labelValue\":\"963173\",\"primaryLabelValue\":\"963173\"}},{\"attributeHeader\":{\"labelValue\":\"963175\",\"primaryLabelValue\":\"963175\"}},{\"attributeHeader\":{\"labelValue\":\"963177\",\"primaryLabelValue\":\"963177\"}},{\"attributeHeader\":{\"labelValue\":\"963179\",\"primaryLabelValue\":\"963179\"}},{\"attributeHeader\":{\"labelValue\":\"963181\",\"primaryLabelValue\":\"963181\"}},{\"attributeHeader\":{\"labelValue\":\"963183\",\"primaryLabelValue\":\"963183\"}},{\"attributeHeader\":{\"labelValue\":\"963185\",\"primaryLabelValue\":\"963185\"}},{\"attributeHeader\":{\"labelValue\":\"963187\",\"primaryLabelValue\":\"963187\"}},{\"attributeHeader\":{\"labelValue\":\"963189\",\"primaryLabelValue\":\"963189\"}},{\"attributeHeader\":{\"labelValue\":\"963193\",\"primaryLabelValue\":\"963193\"}},{\"attributeHeader\":{\"labelValue\":\"963195\",\"primaryLabelValue\":\"963195\"}},{\"attributeHeader\":{\"labelValue\":\"963197\",\"primaryLabelValue\":\"963197\"}},{\"attributeHeader\":{\"labelValue\":\"963199\",\"primaryLabelValue\":\"963199\"}},{\"attributeHeader\":{\"labelValue\":\"963201\",\"primaryLabelValue\":\"963201\"}},{\"attributeHeader\":{\"labelValue\":\"963203\",\"primaryLabelValue\":\"963203\"}},{\"attributeHeader\":{\"labelValue\":\"963205\",\"primaryLabelValue\":\"963205\"}},{\"attributeHeader\":{\"labelValue\":\"963207\",\"primaryLabelValue\":\"963207\"}},{\"attributeHeader\":{\"labelValue\":\"963209\",\"primaryLabelValue\":\"963209\"}},{\"attributeHeader\":{\"labelValue\":\"963211\",\"primaryLabelValue\":\"963211\"}},{\"attributeHeader\":{\"labelValue\":\"963213\",\"primaryLabelValue\":\"963213\"}},{\"attributeHeader\":{\"labelValue\":\"963215\",\"primaryLabelValue\":\"963215\"}},{\"attributeHeader\":{\"labelValue\":\"963217\",\"primaryLabelValue\":\"963217\"}},{\"attributeHeader\":{\"labelValue\":\"963219\",\"primaryLabelValue\":\"963219\"}},{\"attributeHeader\":{\"labelValue\":\"963221\",\"primaryLabelValue\":\"963221\"}},{\"attributeHeader\":{\"labelValue\":\"963223\",\"primaryLabelValue\":\"963223\"}},{\"attributeHeader\":{\"labelValue\":\"963225\",\"primaryLabelValue\":\"963225\"}},{\"attributeHeader\":{\"labelValue\":\"963227\",\"primaryLabelValue\":\"963227\"}},{\"attributeHeader\":{\"labelValue\":\"963229\",\"primaryLabelValue\":\"963229\"}},{\"attributeHeader\":{\"labelValue\":\"963231\",\"primaryLabelValue\":\"963231\"}},{\"attributeHeader\":{\"labelValue\":\"963233\",\"primaryLabelValue\":\"963233\"}},{\"attributeHeader\":{\"labelValue\":\"963235\",\"primaryLabelValue\":\"963235\"}},{\"attributeHeader\":{\"labelValue\":\"963237\",\"primaryLabelValue\":\"963237\"}},{\"attributeHeader\":{\"labelValue\":\"963239\",\"primaryLabelValue\":\"963239\"}},{\"attributeHeader\":{\"labelValue\":\"963241\",\"primaryLabelValue\":\"963241\"}},{\"attributeHeader\":{\"labelValue\":\"963243\",\"primaryLabelValue\":\"963243\"}},{\"attributeHeader\":{\"labelValue\":\"963245\",\"primaryLabelValue\":\"963245\"}},{\"attributeHeader\":{\"labelValue\":\"963247\",\"primaryLabelValue\":\"963247\"}},{\"attributeHeader\":{\"labelValue\":\"963249\",\"primaryLabelValue\":\"963249\"}},{\"attributeHeader\":{\"labelValue\":\"963251\",\"primaryLabelValue\":\"963251\"}},{\"attributeHeader\":{\"labelValue\":\"963253\",\"primaryLabelValue\":\"963253\"}},{\"attributeHeader\":{\"labelValue\":\"963255\",\"primaryLabelValue\":\"963255\"}},{\"attributeHeader\":{\"labelValue\":\"963257\",\"primaryLabelValue\":\"963257\"}},{\"attributeHeader\":{\"labelValue\":\"963259\",\"primaryLabelValue\":\"963259\"}},{\"attributeHeader\":{\"labelValue\":\"963261\",\"primaryLabelValue\":\"963261\"}},{\"attributeHeader\":{\"labelValue\":\"963263\",\"primaryLabelValue\":\"963263\"}},{\"attributeHeader\":{\"labelValue\":\"963265\",\"primaryLabelValue\":\"963265\"}},{\"attributeHeader\":{\"labelValue\":\"963267\",\"primaryLabelValue\":\"963267\"}},{\"attributeHeader\":{\"labelValue\":\"963269\",\"primaryLabelValue\":\"963269\"}},{\"attributeHeader\":{\"labelValue\":\"963271\",\"primaryLabelValue\":\"963271\"}},{\"attributeHeader\":{\"labelValue\":\"963273\",\"primaryLabelValue\":\"963273\"}},{\"attributeHeader\":{\"labelValue\":\"963275\",\"primaryLabelValue\":\"963275\"}},{\"attributeHeader\":{\"labelValue\":\"963277\",\"primaryLabelValue\":\"963277\"}},{\"attributeHeader\":{\"labelValue\":\"963279\",\"primaryLabelValue\":\"963279\"}},{\"attributeHeader\":{\"labelValue\":\"963281\",\"primaryLabelValue\":\"963281\"}},{\"attributeHeader\":{\"labelValue\":\"963283\",\"primaryLabelValue\":\"963283\"}},{\"attributeHeader\":{\"labelValue\":\"963285\",\"primaryLabelValue\":\"963285\"}},{\"attributeHeader\":{\"labelValue\":\"963287\",\"primaryLabelValue\":\"963287\"}},{\"attributeHeader\":{\"labelValue\":\"963289\",\"primaryLabelValue\":\"963289\"}},{\"attributeHeader\":{\"labelValue\":\"963291\",\"primaryLabelValue\":\"963291\"}},{\"attributeHeader\":{\"labelValue\":\"963293\",\"primaryLabelValue\":\"963293\"}},{\"attributeHeader\":{\"labelValue\":\"963295\",\"primaryLabelValue\":\"963295\"}},{\"attributeHeader\":{\"labelValue\":\"963297\",\"primaryLabelValue\":\"963297\"}},{\"attributeHeader\":{\"labelValue\":\"963299\",\"primaryLabelValue\":\"963299\"}},{\"attributeHeader\":{\"labelValue\":\"963301\",\"primaryLabelValue\":\"963301\"}},{\"attributeHeader\":{\"labelValue\":\"963303\",\"primaryLabelValue\":\"963303\"}},{\"attributeHeader\":{\"labelValue\":\"963305\",\"primaryLabelValue\":\"963305\"}},{\"attributeHeader\":{\"labelValue\":\"963307\",\"primaryLabelValue\":\"963307\"}},{\"attributeHeader\":{\"labelValue\":\"963309\",\"primaryLabelValue\":\"963309\"}},{\"attributeHeader\":{\"labelValue\":\"963311\",\"primaryLabelValue\":\"963311\"}},{\"attributeHeader\":{\"labelValue\":\"963313\",\"primaryLabelValue\":\"963313\"}},{\"attributeHeader\":{\"labelValue\":\"963315\",\"primaryLabelValue\":\"963315\"}},{\"attributeHeader\":{\"labelValue\":\"963317\",\"primaryLabelValue\":\"963317\"}},{\"attributeHeader\":{\"labelValue\":\"963319\",\"primaryLabelValue\":\"963319\"}},{\"attributeHeader\":{\"labelValue\":\"963321\",\"primaryLabelValue\":\"963321\"}},{\"attributeHeader\":{\"labelValue\":\"963323\",\"primaryLabelValue\":\"963323\"}},{\"attributeHeader\":{\"labelValue\":\"963325\",\"primaryLabelValue\":\"963325\"}},{\"attributeHeader\":{\"labelValue\":\"963327\",\"primaryLabelValue\":\"963327\"}},{\"attributeHeader\":{\"labelValue\":\"963331\",\"primaryLabelValue\":\"963331\"}},{\"attributeHeader\":{\"labelValue\":\"963333\",\"primaryLabelValue\":\"963333\"}},{\"attributeHeader\":{\"labelValue\":\"963335\",\"primaryLabelValue\":\"963335\"}},{\"attributeHeader\":{\"labelValue\":\"963337\",\"primaryLabelValue\":\"963337\"}},{\"attributeHeader\":{\"labelValue\":\"963339\",\"primaryLabelValue\":\"963339\"}},{\"attributeHeader\":{\"labelValue\":\"963341\",\"primaryLabelValue\":\"963341\"}},{\"attributeHeader\":{\"labelValue\":\"963343\",\"primaryLabelValue\":\"963343\"}},{\"attributeHeader\":{\"labelValue\":\"963345\",\"primaryLabelValue\":\"963345\"}},{\"attributeHeader\":{\"labelValue\":\"963347\",\"primaryLabelValue\":\"963347\"}},{\"attributeHeader\":{\"labelValue\":\"963349\",\"primaryLabelValue\":\"963349\"}},{\"attributeHeader\":{\"labelValue\":\"963351\",\"primaryLabelValue\":\"963351\"}},{\"attributeHeader\":{\"labelValue\":\"963353\",\"primaryLabelValue\":\"963353\"}},{\"attributeHeader\":{\"labelValue\":\"963355\",\"primaryLabelValue\":\"963355\"}},{\"attributeHeader\":{\"labelValue\":\"963357\",\"primaryLabelValue\":\"963357\"}},{\"attributeHeader\":{\"labelValue\":\"963359\",\"primaryLabelValue\":\"963359\"}},{\"attributeHeader\":{\"labelValue\":\"963363\",\"primaryLabelValue\":\"963363\"}},{\"attributeHeader\":{\"labelValue\":\"963365\",\"primaryLabelValue\":\"963365\"}},{\"attributeHeader\":{\"labelValue\":\"963367\",\"primaryLabelValue\":\"963367\"}},{\"attributeHeader\":{\"labelValue\":\"963369\",\"primaryLabelValue\":\"963369\"}},{\"attributeHeader\":{\"labelValue\":\"963371\",\"primaryLabelValue\":\"963371\"}},{\"attributeHeader\":{\"labelValue\":\"963373\",\"primaryLabelValue\":\"963373\"}},{\"attributeHeader\":{\"labelValue\":\"963375\",\"primaryLabelValue\":\"963375\"}},{\"attributeHeader\":{\"labelValue\":\"963377\",\"primaryLabelValue\":\"963377\"}},{\"attributeHeader\":{\"labelValue\":\"963379\",\"primaryLabelValue\":\"963379\"}},{\"attributeHeader\":{\"labelValue\":\"963381\",\"primaryLabelValue\":\"963381\"}},{\"attributeHeader\":{\"labelValue\":\"963383\",\"primaryLabelValue\":\"963383\"}},{\"attributeHeader\":{\"labelValue\":\"963385\",\"primaryLabelValue\":\"963385\"}},{\"attributeHeader\":{\"labelValue\":\"963387\",\"primaryLabelValue\":\"963387\"}},{\"attributeHeader\":{\"labelValue\":\"963389\",\"primaryLabelValue\":\"963389\"}},{\"attributeHeader\":{\"labelValue\":\"963391\",\"primaryLabelValue\":\"963391\"}},{\"attributeHeader\":{\"labelValue\":\"963393\",\"primaryLabelValue\":\"963393\"}},{\"attributeHeader\":{\"labelValue\":\"963397\",\"primaryLabelValue\":\"963397\"}},{\"attributeHeader\":{\"labelValue\":\"963399\",\"primaryLabelValue\":\"963399\"}},{\"attributeHeader\":{\"labelValue\":\"963403\",\"primaryLabelValue\":\"963403\"}},{\"attributeHeader\":{\"labelValue\":\"963405\",\"primaryLabelValue\":\"963405\"}},{\"attributeHeader\":{\"labelValue\":\"963407\",\"primaryLabelValue\":\"963407\"}},{\"attributeHeader\":{\"labelValue\":\"963409\",\"primaryLabelValue\":\"963409\"}},{\"attributeHeader\":{\"labelValue\":\"963411\",\"primaryLabelValue\":\"963411\"}},{\"attributeHeader\":{\"labelValue\":\"963413\",\"primaryLabelValue\":\"963413\"}},{\"attributeHeader\":{\"labelValue\":\"963415\",\"primaryLabelValue\":\"963415\"}},{\"attributeHeader\":{\"labelValue\":\"963417\",\"primaryLabelValue\":\"963417\"}},{\"attributeHeader\":{\"labelValue\":\"963419\",\"primaryLabelValue\":\"963419\"}},{\"attributeHeader\":{\"labelValue\":\"963421\",\"primaryLabelValue\":\"963421\"}},{\"attributeHeader\":{\"labelValue\":\"963423\",\"primaryLabelValue\":\"963423\"}},{\"attributeHeader\":{\"labelValue\":\"963425\",\"primaryLabelValue\":\"963425\"}},{\"attributeHeader\":{\"labelValue\":\"963427\",\"primaryLabelValue\":\"963427\"}},{\"attributeHeader\":{\"labelValue\":\"963429\",\"primaryLabelValue\":\"963429\"}},{\"attributeHeader\":{\"labelValue\":\"963431\",\"primaryLabelValue\":\"963431\"}},{\"attributeHeader\":{\"labelValue\":\"963433\",\"primaryLabelValue\":\"963433\"}},{\"attributeHeader\":{\"labelValue\":\"963435\",\"primaryLabelValue\":\"963435\"}},{\"attributeHeader\":{\"labelValue\":\"963437\",\"primaryLabelValue\":\"963437\"}},{\"attributeHeader\":{\"labelValue\":\"963441\",\"primaryLabelValue\":\"963441\"}},{\"attributeHeader\":{\"labelValue\":\"963443\",\"primaryLabelValue\":\"963443\"}},{\"attributeHeader\":{\"labelValue\":\"963445\",\"primaryLabelValue\":\"963445\"}},{\"attributeHeader\":{\"labelValue\":\"963447\",\"primaryLabelValue\":\"963447\"}},{\"attributeHeader\":{\"labelValue\":\"963449\",\"primaryLabelValue\":\"963449\"}},{\"attributeHeader\":{\"labelValue\":\"963451\",\"primaryLabelValue\":\"963451\"}},{\"attributeHeader\":{\"labelValue\":\"963453\",\"primaryLabelValue\":\"963453\"}},{\"attributeHeader\":{\"labelValue\":\"963455\",\"primaryLabelValue\":\"963455\"}},{\"attributeHeader\":{\"labelValue\":\"963457\",\"primaryLabelValue\":\"963457\"}},{\"attributeHeader\":{\"labelValue\":\"963459\",\"primaryLabelValue\":\"963459\"}},{\"attributeHeader\":{\"labelValue\":\"963461\",\"primaryLabelValue\":\"963461\"}},{\"attributeHeader\":{\"labelValue\":\"963463\",\"primaryLabelValue\":\"963463\"}},{\"attributeHeader\":{\"labelValue\":\"963465\",\"primaryLabelValue\":\"963465\"}},{\"attributeHeader\":{\"labelValue\":\"963467\",\"primaryLabelValue\":\"963467\"}},{\"attributeHeader\":{\"labelValue\":\"963469\",\"primaryLabelValue\":\"963469\"}},{\"attributeHeader\":{\"labelValue\":\"963471\",\"primaryLabelValue\":\"963471\"}},{\"attributeHeader\":{\"labelValue\":\"963473\",\"primaryLabelValue\":\"963473\"}},{\"attributeHeader\":{\"labelValue\":\"963475\",\"primaryLabelValue\":\"963475\"}},{\"attributeHeader\":{\"labelValue\":\"963477\",\"primaryLabelValue\":\"963477\"}},{\"attributeHeader\":{\"labelValue\":\"963479\",\"primaryLabelValue\":\"963479\"}},{\"attributeHeader\":{\"labelValue\":\"963481\",\"primaryLabelValue\":\"963481\"}},{\"attributeHeader\":{\"labelValue\":\"963483\",\"primaryLabelValue\":\"963483\"}},{\"attributeHeader\":{\"labelValue\":\"963485\",\"primaryLabelValue\":\"963485\"}},{\"attributeHeader\":{\"labelValue\":\"963487\",\"primaryLabelValue\":\"963487\"}},{\"attributeHeader\":{\"labelValue\":\"963489\",\"primaryLabelValue\":\"963489\"}},{\"attributeHeader\":{\"labelValue\":\"963491\",\"primaryLabelValue\":\"963491\"}},{\"attributeHeader\":{\"labelValue\":\"963493\",\"primaryLabelValue\":\"963493\"}},{\"attributeHeader\":{\"labelValue\":\"963495\",\"primaryLabelValue\":\"963495\"}},{\"attributeHeader\":{\"labelValue\":\"963497\",\"primaryLabelValue\":\"963497\"}},{\"attributeHeader\":{\"labelValue\":\"963499\",\"primaryLabelValue\":\"963499\"}},{\"attributeHeader\":{\"labelValue\":\"963501\",\"primaryLabelValue\":\"963501\"}},{\"attributeHeader\":{\"labelValue\":\"963503\",\"primaryLabelValue\":\"963503\"}},{\"attributeHeader\":{\"labelValue\":\"963507\",\"primaryLabelValue\":\"963507\"}},{\"attributeHeader\":{\"labelValue\":\"963509\",\"primaryLabelValue\":\"963509\"}},{\"attributeHeader\":{\"labelValue\":\"963511\",\"primaryLabelValue\":\"963511\"}},{\"attributeHeader\":{\"labelValue\":\"963513\",\"primaryLabelValue\":\"963513\"}},{\"attributeHeader\":{\"labelValue\":\"963515\",\"primaryLabelValue\":\"963515\"}},{\"attributeHeader\":{\"labelValue\":\"963517\",\"primaryLabelValue\":\"963517\"}},{\"attributeHeader\":{\"labelValue\":\"963519\",\"primaryLabelValue\":\"963519\"}},{\"attributeHeader\":{\"labelValue\":\"963521\",\"primaryLabelValue\":\"963521\"}},{\"attributeHeader\":{\"labelValue\":\"963523\",\"primaryLabelValue\":\"963523\"}},{\"attributeHeader\":{\"labelValue\":\"963525\",\"primaryLabelValue\":\"963525\"}},{\"attributeHeader\":{\"labelValue\":\"963527\",\"primaryLabelValue\":\"963527\"}},{\"attributeHeader\":{\"labelValue\":\"963529\",\"primaryLabelValue\":\"963529\"}},{\"attributeHeader\":{\"labelValue\":\"963531\",\"primaryLabelValue\":\"963531\"}},{\"attributeHeader\":{\"labelValue\":\"963533\",\"primaryLabelValue\":\"963533\"}},{\"attributeHeader\":{\"labelValue\":\"963535\",\"primaryLabelValue\":\"963535\"}},{\"attributeHeader\":{\"labelValue\":\"963537\",\"primaryLabelValue\":\"963537\"}},{\"attributeHeader\":{\"labelValue\":\"963539\",\"primaryLabelValue\":\"963539\"}},{\"attributeHeader\":{\"labelValue\":\"963541\",\"primaryLabelValue\":\"963541\"}},{\"attributeHeader\":{\"labelValue\":\"963543\",\"primaryLabelValue\":\"963543\"}},{\"attributeHeader\":{\"labelValue\":\"963545\",\"primaryLabelValue\":\"963545\"}},{\"attributeHeader\":{\"labelValue\":\"963547\",\"primaryLabelValue\":\"963547\"}},{\"attributeHeader\":{\"labelValue\":\"963549\",\"primaryLabelValue\":\"963549\"}},{\"attributeHeader\":{\"labelValue\":\"963551\",\"primaryLabelValue\":\"963551\"}},{\"attributeHeader\":{\"labelValue\":\"963553\",\"primaryLabelValue\":\"963553\"}},{\"attributeHeader\":{\"labelValue\":\"963555\",\"primaryLabelValue\":\"963555\"}},{\"attributeHeader\":{\"labelValue\":\"963559\",\"primaryLabelValue\":\"963559\"}},{\"attributeHeader\":{\"labelValue\":\"963563\",\"primaryLabelValue\":\"963563\"}},{\"attributeHeader\":{\"labelValue\":\"963565\",\"primaryLabelValue\":\"963565\"}},{\"attributeHeader\":{\"labelValue\":\"963567\",\"primaryLabelValue\":\"963567\"}},{\"attributeHeader\":{\"labelValue\":\"963569\",\"primaryLabelValue\":\"963569\"}},{\"attributeHeader\":{\"labelValue\":\"963571\",\"primaryLabelValue\":\"963571\"}},{\"attributeHeader\":{\"labelValue\":\"963573\",\"primaryLabelValue\":\"963573\"}},{\"attributeHeader\":{\"labelValue\":\"963575\",\"primaryLabelValue\":\"963575\"}},{\"attributeHeader\":{\"labelValue\":\"963577\",\"primaryLabelValue\":\"963577\"}},{\"attributeHeader\":{\"labelValue\":\"963579\",\"primaryLabelValue\":\"963579\"}},{\"attributeHeader\":{\"labelValue\":\"963583\",\"primaryLabelValue\":\"963583\"}},{\"attributeHeader\":{\"labelValue\":\"963585\",\"primaryLabelValue\":\"963585\"}},{\"attributeHeader\":{\"labelValue\":\"963587\",\"primaryLabelValue\":\"963587\"}},{\"attributeHeader\":{\"labelValue\":\"963589\",\"primaryLabelValue\":\"963589\"}},{\"attributeHeader\":{\"labelValue\":\"963591\",\"primaryLabelValue\":\"963591\"}},{\"attributeHeader\":{\"labelValue\":\"963593\",\"primaryLabelValue\":\"963593\"}},{\"attributeHeader\":{\"labelValue\":\"963595\",\"primaryLabelValue\":\"963595\"}},{\"attributeHeader\":{\"labelValue\":\"963597\",\"primaryLabelValue\":\"963597\"}},{\"attributeHeader\":{\"labelValue\":\"963599\",\"primaryLabelValue\":\"963599\"}},{\"attributeHeader\":{\"labelValue\":\"963601\",\"primaryLabelValue\":\"963601\"}},{\"attributeHeader\":{\"labelValue\":\"963603\",\"primaryLabelValue\":\"963603\"}},{\"attributeHeader\":{\"labelValue\":\"963605\",\"primaryLabelValue\":\"963605\"}},{\"attributeHeader\":{\"labelValue\":\"963607\",\"primaryLabelValue\":\"963607\"}},{\"attributeHeader\":{\"labelValue\":\"963609\",\"primaryLabelValue\":\"963609\"}},{\"attributeHeader\":{\"labelValue\":\"963611\",\"primaryLabelValue\":\"963611\"}},{\"attributeHeader\":{\"labelValue\":\"963613\",\"primaryLabelValue\":\"963613\"}},{\"attributeHeader\":{\"labelValue\":\"963615\",\"primaryLabelValue\":\"963615\"}},{\"attributeHeader\":{\"labelValue\":\"963617\",\"primaryLabelValue\":\"963617\"}},{\"attributeHeader\":{\"labelValue\":\"963619\",\"primaryLabelValue\":\"963619\"}},{\"attributeHeader\":{\"labelValue\":\"963621\",\"primaryLabelValue\":\"963621\"}},{\"attributeHeader\":{\"labelValue\":\"963625\",\"primaryLabelValue\":\"963625\"}},{\"attributeHeader\":{\"labelValue\":\"963627\",\"primaryLabelValue\":\"963627\"}},{\"attributeHeader\":{\"labelValue\":\"963631\",\"primaryLabelValue\":\"963631\"}},{\"attributeHeader\":{\"labelValue\":\"963633\",\"primaryLabelValue\":\"963633\"}},{\"attributeHeader\":{\"labelValue\":\"963635\",\"primaryLabelValue\":\"963635\"}},{\"attributeHeader\":{\"labelValue\":\"963637\",\"primaryLabelValue\":\"963637\"}},{\"attributeHeader\":{\"labelValue\":\"963639\",\"primaryLabelValue\":\"963639\"}},{\"attributeHeader\":{\"labelValue\":\"963643\",\"primaryLabelValue\":\"963643\"}},{\"attributeHeader\":{\"labelValue\":\"963647\",\"primaryLabelValue\":\"963647\"}},{\"attributeHeader\":{\"labelValue\":\"963649\",\"primaryLabelValue\":\"963649\"}},{\"attributeHeader\":{\"labelValue\":\"963651\",\"primaryLabelValue\":\"963651\"}},{\"attributeHeader\":{\"labelValue\":\"963653\",\"primaryLabelValue\":\"963653\"}},{\"attributeHeader\":{\"labelValue\":\"963655\",\"primaryLabelValue\":\"963655\"}},{\"attributeHeader\":{\"labelValue\":\"963657\",\"primaryLabelValue\":\"963657\"}},{\"attributeHeader\":{\"labelValue\":\"963659\",\"primaryLabelValue\":\"963659\"}},{\"attributeHeader\":{\"labelValue\":\"963661\",\"primaryLabelValue\":\"963661\"}},{\"attributeHeader\":{\"labelValue\":\"963663\",\"primaryLabelValue\":\"963663\"}},{\"attributeHeader\":{\"labelValue\":\"963665\",\"primaryLabelValue\":\"963665\"}},{\"attributeHeader\":{\"labelValue\":\"963667\",\"primaryLabelValue\":\"963667\"}},{\"attributeHeader\":{\"labelValue\":\"963669\",\"primaryLabelValue\":\"963669\"}},{\"attributeHeader\":{\"labelValue\":\"963671\",\"primaryLabelValue\":\"963671\"}},{\"attributeHeader\":{\"labelValue\":\"963673\",\"primaryLabelValue\":\"963673\"}},{\"attributeHeader\":{\"labelValue\":\"963675\",\"primaryLabelValue\":\"963675\"}},{\"attributeHeader\":{\"labelValue\":\"963677\",\"primaryLabelValue\":\"963677\"}},{\"attributeHeader\":{\"labelValue\":\"963679\",\"primaryLabelValue\":\"963679\"}},{\"attributeHeader\":{\"labelValue\":\"963681\",\"primaryLabelValue\":\"963681\"}},{\"attributeHeader\":{\"labelValue\":\"963683\",\"primaryLabelValue\":\"963683\"}},{\"attributeHeader\":{\"labelValue\":\"963685\",\"primaryLabelValue\":\"963685\"}},{\"attributeHeader\":{\"labelValue\":\"963687\",\"primaryLabelValue\":\"963687\"}},{\"attributeHeader\":{\"labelValue\":\"963689\",\"primaryLabelValue\":\"963689\"}},{\"attributeHeader\":{\"labelValue\":\"963691\",\"primaryLabelValue\":\"963691\"}},{\"attributeHeader\":{\"labelValue\":\"963693\",\"primaryLabelValue\":\"963693\"}},{\"attributeHeader\":{\"labelValue\":\"963695\",\"primaryLabelValue\":\"963695\"}},{\"attributeHeader\":{\"labelValue\":\"963697\",\"primaryLabelValue\":\"963697\"}},{\"attributeHeader\":{\"labelValue\":\"963701\",\"primaryLabelValue\":\"963701\"}},{\"attributeHeader\":{\"labelValue\":\"963703\",\"primaryLabelValue\":\"963703\"}},{\"attributeHeader\":{\"labelValue\":\"963709\",\"primaryLabelValue\":\"963709\"}},{\"attributeHeader\":{\"labelValue\":\"963711\",\"primaryLabelValue\":\"963711\"}},{\"attributeHeader\":{\"labelValue\":\"963713\",\"primaryLabelValue\":\"963713\"}},{\"attributeHeader\":{\"labelValue\":\"963715\",\"primaryLabelValue\":\"963715\"}},{\"attributeHeader\":{\"labelValue\":\"963717\",\"primaryLabelValue\":\"963717\"}},{\"attributeHeader\":{\"labelValue\":\"963719\",\"primaryLabelValue\":\"963719\"}},{\"attributeHeader\":{\"labelValue\":\"963721\",\"primaryLabelValue\":\"963721\"}},{\"attributeHeader\":{\"labelValue\":\"963723\",\"primaryLabelValue\":\"963723\"}},{\"attributeHeader\":{\"labelValue\":\"963725\",\"primaryLabelValue\":\"963725\"}},{\"attributeHeader\":{\"labelValue\":\"963727\",\"primaryLabelValue\":\"963727\"}},{\"attributeHeader\":{\"labelValue\":\"963731\",\"primaryLabelValue\":\"963731\"}},{\"attributeHeader\":{\"labelValue\":\"963733\",\"primaryLabelValue\":\"963733\"}},{\"attributeHeader\":{\"labelValue\":\"963735\",\"primaryLabelValue\":\"963735\"}},{\"attributeHeader\":{\"labelValue\":\"963737\",\"primaryLabelValue\":\"963737\"}},{\"attributeHeader\":{\"labelValue\":\"963739\",\"primaryLabelValue\":\"963739\"}},{\"attributeHeader\":{\"labelValue\":\"963741\",\"primaryLabelValue\":\"963741\"}},{\"attributeHeader\":{\"labelValue\":\"963743\",\"primaryLabelValue\":\"963743\"}},{\"attributeHeader\":{\"labelValue\":\"963745\",\"primaryLabelValue\":\"963745\"}},{\"attributeHeader\":{\"labelValue\":\"963747\",\"primaryLabelValue\":\"963747\"}},{\"attributeHeader\":{\"labelValue\":\"963749\",\"primaryLabelValue\":\"963749\"}},{\"attributeHeader\":{\"labelValue\":\"963751\",\"primaryLabelValue\":\"963751\"}},{\"attributeHeader\":{\"labelValue\":\"963753\",\"primaryLabelValue\":\"963753\"}},{\"attributeHeader\":{\"labelValue\":\"963755\",\"primaryLabelValue\":\"963755\"}},{\"attributeHeader\":{\"labelValue\":\"963757\",\"primaryLabelValue\":\"963757\"}},{\"attributeHeader\":{\"labelValue\":\"963759\",\"primaryLabelValue\":\"963759\"}},{\"attributeHeader\":{\"labelValue\":\"963761\",\"primaryLabelValue\":\"963761\"}},{\"attributeHeader\":{\"labelValue\":\"963765\",\"primaryLabelValue\":\"963765\"}},{\"attributeHeader\":{\"labelValue\":\"963767\",\"primaryLabelValue\":\"963767\"}},{\"attributeHeader\":{\"labelValue\":\"963769\",\"primaryLabelValue\":\"963769\"}},{\"attributeHeader\":{\"labelValue\":\"963771\",\"primaryLabelValue\":\"963771\"}},{\"attributeHeader\":{\"labelValue\":\"963773\",\"primaryLabelValue\":\"963773\"}},{\"attributeHeader\":{\"labelValue\":\"963775\",\"primaryLabelValue\":\"963775\"}},{\"attributeHeader\":{\"labelValue\":\"963777\",\"primaryLabelValue\":\"963777\"}},{\"attributeHeader\":{\"labelValue\":\"963779\",\"primaryLabelValue\":\"963779\"}},{\"attributeHeader\":{\"labelValue\":\"963781\",\"primaryLabelValue\":\"963781\"}},{\"attributeHeader\":{\"labelValue\":\"963783\",\"primaryLabelValue\":\"963783\"}},{\"attributeHeader\":{\"labelValue\":\"963785\",\"primaryLabelValue\":\"963785\"}},{\"attributeHeader\":{\"labelValue\":\"963787\",\"primaryLabelValue\":\"963787\"}},{\"attributeHeader\":{\"labelValue\":\"963789\",\"primaryLabelValue\":\"963789\"}},{\"attributeHeader\":{\"labelValue\":\"963791\",\"primaryLabelValue\":\"963791\"}},{\"attributeHeader\":{\"labelValue\":\"963793\",\"primaryLabelValue\":\"963793\"}},{\"attributeHeader\":{\"labelValue\":\"963795\",\"primaryLabelValue\":\"963795\"}},{\"attributeHeader\":{\"labelValue\":\"963797\",\"primaryLabelValue\":\"963797\"}},{\"attributeHeader\":{\"labelValue\":\"963799\",\"primaryLabelValue\":\"963799\"}},{\"attributeHeader\":{\"labelValue\":\"963801\",\"primaryLabelValue\":\"963801\"}},{\"attributeHeader\":{\"labelValue\":\"963803\",\"primaryLabelValue\":\"963803\"}},{\"attributeHeader\":{\"labelValue\":\"963805\",\"primaryLabelValue\":\"963805\"}},{\"attributeHeader\":{\"labelValue\":\"963807\",\"primaryLabelValue\":\"963807\"}},{\"attributeHeader\":{\"labelValue\":\"963811\",\"primaryLabelValue\":\"963811\"}},{\"attributeHeader\":{\"labelValue\":\"963813\",\"primaryLabelValue\":\"963813\"}},{\"attributeHeader\":{\"labelValue\":\"963817\",\"primaryLabelValue\":\"963817\"}},{\"attributeHeader\":{\"labelValue\":\"963819\",\"primaryLabelValue\":\"963819\"}},{\"attributeHeader\":{\"labelValue\":\"963821\",\"primaryLabelValue\":\"963821\"}},{\"attributeHeader\":{\"labelValue\":\"963823\",\"primaryLabelValue\":\"963823\"}},{\"attributeHeader\":{\"labelValue\":\"963825\",\"primaryLabelValue\":\"963825\"}},{\"attributeHeader\":{\"labelValue\":\"963829\",\"primaryLabelValue\":\"963829\"}},{\"attributeHeader\":{\"labelValue\":\"963831\",\"primaryLabelValue\":\"963831\"}},{\"attributeHeader\":{\"labelValue\":\"963833\",\"primaryLabelValue\":\"963833\"}},{\"attributeHeader\":{\"labelValue\":\"963835\",\"primaryLabelValue\":\"963835\"}},{\"attributeHeader\":{\"labelValue\":\"963837\",\"primaryLabelValue\":\"963837\"}},{\"attributeHeader\":{\"labelValue\":\"963839\",\"primaryLabelValue\":\"963839\"}},{\"attributeHeader\":{\"labelValue\":\"963841\",\"primaryLabelValue\":\"963841\"}},{\"attributeHeader\":{\"labelValue\":\"963843\",\"primaryLabelValue\":\"963843\"}},{\"attributeHeader\":{\"labelValue\":\"963845\",\"primaryLabelValue\":\"963845\"}},{\"attributeHeader\":{\"labelValue\":\"963847\",\"primaryLabelValue\":\"963847\"}},{\"attributeHeader\":{\"labelValue\":\"963849\",\"primaryLabelValue\":\"963849\"}},{\"attributeHeader\":{\"labelValue\":\"963851\",\"primaryLabelValue\":\"963851\"}},{\"attributeHeader\":{\"labelValue\":\"963855\",\"primaryLabelValue\":\"963855\"}},{\"attributeHeader\":{\"labelValue\":\"963857\",\"primaryLabelValue\":\"963857\"}},{\"attributeHeader\":{\"labelValue\":\"963859\",\"primaryLabelValue\":\"963859\"}},{\"attributeHeader\":{\"labelValue\":\"963863\",\"primaryLabelValue\":\"963863\"}},{\"attributeHeader\":{\"labelValue\":\"963865\",\"primaryLabelValue\":\"963865\"}},{\"attributeHeader\":{\"labelValue\":\"963867\",\"primaryLabelValue\":\"963867\"}},{\"attributeHeader\":{\"labelValue\":\"963869\",\"primaryLabelValue\":\"963869\"}},{\"attributeHeader\":{\"labelValue\":\"963871\",\"primaryLabelValue\":\"963871\"}},{\"attributeHeader\":{\"labelValue\":\"963873\",\"primaryLabelValue\":\"963873\"}},{\"attributeHeader\":{\"labelValue\":\"963875\",\"primaryLabelValue\":\"963875\"}},{\"attributeHeader\":{\"labelValue\":\"963877\",\"primaryLabelValue\":\"963877\"}},{\"attributeHeader\":{\"labelValue\":\"963879\",\"primaryLabelValue\":\"963879\"}},{\"attributeHeader\":{\"labelValue\":\"963881\",\"primaryLabelValue\":\"963881\"}},{\"attributeHeader\":{\"labelValue\":\"963883\",\"primaryLabelValue\":\"963883\"}},{\"attributeHeader\":{\"labelValue\":\"963885\",\"primaryLabelValue\":\"963885\"}},{\"attributeHeader\":{\"labelValue\":\"963887\",\"primaryLabelValue\":\"963887\"}},{\"attributeHeader\":{\"labelValue\":\"963889\",\"primaryLabelValue\":\"963889\"}},{\"attributeHeader\":{\"labelValue\":\"963891\",\"primaryLabelValue\":\"963891\"}},{\"attributeHeader\":{\"labelValue\":\"963893\",\"primaryLabelValue\":\"963893\"}},{\"attributeHeader\":{\"labelValue\":\"963895\",\"primaryLabelValue\":\"963895\"}},{\"attributeHeader\":{\"labelValue\":\"963897\",\"primaryLabelValue\":\"963897\"}},{\"attributeHeader\":{\"labelValue\":\"963899\",\"primaryLabelValue\":\"963899\"}},{\"attributeHeader\":{\"labelValue\":\"963901\",\"primaryLabelValue\":\"963901\"}},{\"attributeHeader\":{\"labelValue\":\"963903\",\"primaryLabelValue\":\"963903\"}},{\"attributeHeader\":{\"labelValue\":\"963905\",\"primaryLabelValue\":\"963905\"}},{\"attributeHeader\":{\"labelValue\":\"963907\",\"primaryLabelValue\":\"963907\"}},{\"attributeHeader\":{\"labelValue\":\"963909\",\"primaryLabelValue\":\"963909\"}},{\"attributeHeader\":{\"labelValue\":\"963911\",\"primaryLabelValue\":\"963911\"}},{\"attributeHeader\":{\"labelValue\":\"963913\",\"primaryLabelValue\":\"963913\"}},{\"attributeHeader\":{\"labelValue\":\"963915\",\"primaryLabelValue\":\"963915\"}},{\"attributeHeader\":{\"labelValue\":\"963917\",\"primaryLabelValue\":\"963917\"}},{\"attributeHeader\":{\"labelValue\":\"963919\",\"primaryLabelValue\":\"963919\"}},{\"attributeHeader\":{\"labelValue\":\"963921\",\"primaryLabelValue\":\"963921\"}},{\"attributeHeader\":{\"labelValue\":\"963923\",\"primaryLabelValue\":\"963923\"}},{\"attributeHeader\":{\"labelValue\":\"963925\",\"primaryLabelValue\":\"963925\"}},{\"attributeHeader\":{\"labelValue\":\"963927\",\"primaryLabelValue\":\"963927\"}},{\"attributeHeader\":{\"labelValue\":\"963929\",\"primaryLabelValue\":\"963929\"}},{\"attributeHeader\":{\"labelValue\":\"963931\",\"primaryLabelValue\":\"963931\"}},{\"attributeHeader\":{\"labelValue\":\"963933\",\"primaryLabelValue\":\"963933\"}},{\"attributeHeader\":{\"labelValue\":\"963935\",\"primaryLabelValue\":\"963935\"}},{\"attributeHeader\":{\"labelValue\":\"963937\",\"primaryLabelValue\":\"963937\"}},{\"attributeHeader\":{\"labelValue\":\"963939\",\"primaryLabelValue\":\"963939\"}},{\"attributeHeader\":{\"labelValue\":\"963941\",\"primaryLabelValue\":\"963941\"}},{\"attributeHeader\":{\"labelValue\":\"963943\",\"primaryLabelValue\":\"963943\"}},{\"attributeHeader\":{\"labelValue\":\"963947\",\"primaryLabelValue\":\"963947\"}},{\"attributeHeader\":{\"labelValue\":\"963949\",\"primaryLabelValue\":\"963949\"}},{\"attributeHeader\":{\"labelValue\":\"963951\",\"primaryLabelValue\":\"963951\"}},{\"attributeHeader\":{\"labelValue\":\"963953\",\"primaryLabelValue\":\"963953\"}},{\"attributeHeader\":{\"labelValue\":\"963955\",\"primaryLabelValue\":\"963955\"}},{\"attributeHeader\":{\"labelValue\":\"963959\",\"primaryLabelValue\":\"963959\"}},{\"attributeHeader\":{\"labelValue\":\"963961\",\"primaryLabelValue\":\"963961\"}},{\"attributeHeader\":{\"labelValue\":\"963963\",\"primaryLabelValue\":\"963963\"}},{\"attributeHeader\":{\"labelValue\":\"963965\",\"primaryLabelValue\":\"963965\"}},{\"attributeHeader\":{\"labelValue\":\"963967\",\"primaryLabelValue\":\"963967\"}},{\"attributeHeader\":{\"labelValue\":\"963969\",\"primaryLabelValue\":\"963969\"}},{\"attributeHeader\":{\"labelValue\":\"963973\",\"primaryLabelValue\":\"963973\"}},{\"attributeHeader\":{\"labelValue\":\"963975\",\"primaryLabelValue\":\"963975\"}},{\"attributeHeader\":{\"labelValue\":\"963977\",\"primaryLabelValue\":\"963977\"}},{\"attributeHeader\":{\"labelValue\":\"963979\",\"primaryLabelValue\":\"963979\"}},{\"attributeHeader\":{\"labelValue\":\"963981\",\"primaryLabelValue\":\"963981\"}},{\"attributeHeader\":{\"labelValue\":\"963983\",\"primaryLabelValue\":\"963983\"}},{\"attributeHeader\":{\"labelValue\":\"963985\",\"primaryLabelValue\":\"963985\"}},{\"attributeHeader\":{\"labelValue\":\"963987\",\"primaryLabelValue\":\"963987\"}},{\"attributeHeader\":{\"labelValue\":\"963989\",\"primaryLabelValue\":\"963989\"}},{\"attributeHeader\":{\"labelValue\":\"963991\",\"primaryLabelValue\":\"963991\"}},{\"attributeHeader\":{\"labelValue\":\"963993\",\"primaryLabelValue\":\"963993\"}},{\"attributeHeader\":{\"labelValue\":\"963995\",\"primaryLabelValue\":\"963995\"}},{\"attributeHeader\":{\"labelValue\":\"963997\",\"primaryLabelValue\":\"963997\"}},{\"attributeHeader\":{\"labelValue\":\"963999\",\"primaryLabelValue\":\"963999\"}},{\"attributeHeader\":{\"labelValue\":\"964001\",\"primaryLabelValue\":\"964001\"}},{\"attributeHeader\":{\"labelValue\":\"964003\",\"primaryLabelValue\":\"964003\"}},{\"attributeHeader\":{\"labelValue\":\"964005\",\"primaryLabelValue\":\"964005\"}},{\"attributeHeader\":{\"labelValue\":\"964009\",\"primaryLabelValue\":\"964009\"}},{\"attributeHeader\":{\"labelValue\":\"964011\",\"primaryLabelValue\":\"964011\"}},{\"attributeHeader\":{\"labelValue\":\"964013\",\"primaryLabelValue\":\"964013\"}},{\"attributeHeader\":{\"labelValue\":\"964015\",\"primaryLabelValue\":\"964015\"}},{\"attributeHeader\":{\"labelValue\":\"964017\",\"primaryLabelValue\":\"964017\"}},{\"attributeHeader\":{\"labelValue\":\"964019\",\"primaryLabelValue\":\"964019\"}},{\"attributeHeader\":{\"labelValue\":\"964021\",\"primaryLabelValue\":\"964021\"}},{\"attributeHeader\":{\"labelValue\":\"964023\",\"primaryLabelValue\":\"964023\"}},{\"attributeHeader\":{\"labelValue\":\"964025\",\"primaryLabelValue\":\"964025\"}},{\"attributeHeader\":{\"labelValue\":\"964027\",\"primaryLabelValue\":\"964027\"}},{\"attributeHeader\":{\"labelValue\":\"964029\",\"primaryLabelValue\":\"964029\"}},{\"attributeHeader\":{\"labelValue\":\"964031\",\"primaryLabelValue\":\"964031\"}},{\"attributeHeader\":{\"labelValue\":\"964033\",\"primaryLabelValue\":\"964033\"}},{\"attributeHeader\":{\"labelValue\":\"964035\",\"primaryLabelValue\":\"964035\"}},{\"attributeHeader\":{\"labelValue\":\"964037\",\"primaryLabelValue\":\"964037\"}},{\"attributeHeader\":{\"labelValue\":\"964039\",\"primaryLabelValue\":\"964039\"}},{\"attributeHeader\":{\"labelValue\":\"964045\",\"primaryLabelValue\":\"964045\"}},{\"attributeHeader\":{\"labelValue\":\"964047\",\"primaryLabelValue\":\"964047\"}},{\"attributeHeader\":{\"labelValue\":\"964049\",\"primaryLabelValue\":\"964049\"}},{\"attributeHeader\":{\"labelValue\":\"964051\",\"primaryLabelValue\":\"964051\"}},{\"attributeHeader\":{\"labelValue\":\"964053\",\"primaryLabelValue\":\"964053\"}},{\"attributeHeader\":{\"labelValue\":\"964055\",\"primaryLabelValue\":\"964055\"}},{\"attributeHeader\":{\"labelValue\":\"964057\",\"primaryLabelValue\":\"964057\"}},{\"attributeHeader\":{\"labelValue\":\"964059\",\"primaryLabelValue\":\"964059\"}},{\"attributeHeader\":{\"labelValue\":\"964061\",\"primaryLabelValue\":\"964061\"}},{\"attributeHeader\":{\"labelValue\":\"964063\",\"primaryLabelValue\":\"964063\"}},{\"attributeHeader\":{\"labelValue\":\"964065\",\"primaryLabelValue\":\"964065\"}},{\"attributeHeader\":{\"labelValue\":\"964067\",\"primaryLabelValue\":\"964067\"}},{\"attributeHeader\":{\"labelValue\":\"964071\",\"primaryLabelValue\":\"964071\"}},{\"attributeHeader\":{\"labelValue\":\"964073\",\"primaryLabelValue\":\"964073\"}},{\"attributeHeader\":{\"labelValue\":\"964075\",\"primaryLabelValue\":\"964075\"}},{\"attributeHeader\":{\"labelValue\":\"964077\",\"primaryLabelValue\":\"964077\"}},{\"attributeHeader\":{\"labelValue\":\"964079\",\"primaryLabelValue\":\"964079\"}},{\"attributeHeader\":{\"labelValue\":\"964083\",\"primaryLabelValue\":\"964083\"}},{\"attributeHeader\":{\"labelValue\":\"964084\",\"primaryLabelValue\":\"964084\"}},{\"attributeHeader\":{\"labelValue\":\"964085\",\"primaryLabelValue\":\"964085\"}},{\"attributeHeader\":{\"labelValue\":\"964088\",\"primaryLabelValue\":\"964088\"}},{\"attributeHeader\":{\"labelValue\":\"964089\",\"primaryLabelValue\":\"964089\"}},{\"attributeHeader\":{\"labelValue\":\"964090\",\"primaryLabelValue\":\"964090\"}},{\"attributeHeader\":{\"labelValue\":\"964091\",\"primaryLabelValue\":\"964091\"}},{\"attributeHeader\":{\"labelValue\":\"964092\",\"primaryLabelValue\":\"964092\"}},{\"attributeHeader\":{\"labelValue\":\"964093\",\"primaryLabelValue\":\"964093\"}},{\"attributeHeader\":{\"labelValue\":\"964095\",\"primaryLabelValue\":\"964095\"}},{\"attributeHeader\":{\"labelValue\":\"964096\",\"primaryLabelValue\":\"964096\"}},{\"attributeHeader\":{\"labelValue\":\"964097\",\"primaryLabelValue\":\"964097\"}},{\"attributeHeader\":{\"labelValue\":\"964098\",\"primaryLabelValue\":\"964098\"}},{\"attributeHeader\":{\"labelValue\":\"964100\",\"primaryLabelValue\":\"964100\"}},{\"attributeHeader\":{\"labelValue\":\"964102\",\"primaryLabelValue\":\"964102\"}},{\"attributeHeader\":{\"labelValue\":\"964103\",\"primaryLabelValue\":\"964103\"}},{\"attributeHeader\":{\"labelValue\":\"964104\",\"primaryLabelValue\":\"964104\"}},{\"attributeHeader\":{\"labelValue\":\"964105\",\"primaryLabelValue\":\"964105\"}},{\"attributeHeader\":{\"labelValue\":\"964107\",\"primaryLabelValue\":\"964107\"}},{\"attributeHeader\":{\"labelValue\":\"964108\",\"primaryLabelValue\":\"964108\"}},{\"attributeHeader\":{\"labelValue\":\"964110\",\"primaryLabelValue\":\"964110\"}},{\"attributeHeader\":{\"labelValue\":\"964111\",\"primaryLabelValue\":\"964111\"}},{\"attributeHeader\":{\"labelValue\":\"964112\",\"primaryLabelValue\":\"964112\"}},{\"attributeHeader\":{\"labelValue\":\"964113\",\"primaryLabelValue\":\"964113\"}},{\"attributeHeader\":{\"labelValue\":\"964114\",\"primaryLabelValue\":\"964114\"}},{\"attributeHeader\":{\"labelValue\":\"964115\",\"primaryLabelValue\":\"964115\"}},{\"attributeHeader\":{\"labelValue\":\"964117\",\"primaryLabelValue\":\"964117\"}},{\"attributeHeader\":{\"labelValue\":\"964119\",\"primaryLabelValue\":\"964119\"}},{\"attributeHeader\":{\"labelValue\":\"964121\",\"primaryLabelValue\":\"964121\"}},{\"attributeHeader\":{\"labelValue\":\"964123\",\"primaryLabelValue\":\"964123\"}},{\"attributeHeader\":{\"labelValue\":\"964127\",\"primaryLabelValue\":\"964127\"}},{\"attributeHeader\":{\"labelValue\":\"964128\",\"primaryLabelValue\":\"964128\"}},{\"attributeHeader\":{\"labelValue\":\"964129\",\"primaryLabelValue\":\"964129\"}},{\"attributeHeader\":{\"labelValue\":\"964131\",\"primaryLabelValue\":\"964131\"}},{\"attributeHeader\":{\"labelValue\":\"964132\",\"primaryLabelValue\":\"964132\"}},{\"attributeHeader\":{\"labelValue\":\"964133\",\"primaryLabelValue\":\"964133\"}},{\"attributeHeader\":{\"labelValue\":\"964134\",\"primaryLabelValue\":\"964134\"}},{\"attributeHeader\":{\"labelValue\":\"964135\",\"primaryLabelValue\":\"964135\"}},{\"attributeHeader\":{\"labelValue\":\"964138\",\"primaryLabelValue\":\"964138\"}},{\"attributeHeader\":{\"labelValue\":\"964139\",\"primaryLabelValue\":\"964139\"}},{\"attributeHeader\":{\"labelValue\":\"964140\",\"primaryLabelValue\":\"964140\"}},{\"attributeHeader\":{\"labelValue\":\"964142\",\"primaryLabelValue\":\"964142\"}},{\"attributeHeader\":{\"labelValue\":\"964144\",\"primaryLabelValue\":\"964144\"}},{\"attributeHeader\":{\"labelValue\":\"964145\",\"primaryLabelValue\":\"964145\"}},{\"attributeHeader\":{\"labelValue\":\"964147\",\"primaryLabelValue\":\"964147\"}},{\"attributeHeader\":{\"labelValue\":\"964149\",\"primaryLabelValue\":\"964149\"}},{\"attributeHeader\":{\"labelValue\":\"964150\",\"primaryLabelValue\":\"964150\"}},{\"attributeHeader\":{\"labelValue\":\"964151\",\"primaryLabelValue\":\"964151\"}},{\"attributeHeader\":{\"labelValue\":\"964152\",\"primaryLabelValue\":\"964152\"}},{\"attributeHeader\":{\"labelValue\":\"964153\",\"primaryLabelValue\":\"964153\"}},{\"attributeHeader\":{\"labelValue\":\"964154\",\"primaryLabelValue\":\"964154\"}},{\"attributeHeader\":{\"labelValue\":\"964156\",\"primaryLabelValue\":\"964156\"}},{\"attributeHeader\":{\"labelValue\":\"964157\",\"primaryLabelValue\":\"964157\"}},{\"attributeHeader\":{\"labelValue\":\"964159\",\"primaryLabelValue\":\"964159\"}},{\"attributeHeader\":{\"labelValue\":\"964160\",\"primaryLabelValue\":\"964160\"}},{\"attributeHeader\":{\"labelValue\":\"964161\",\"primaryLabelValue\":\"964161\"}},{\"attributeHeader\":{\"labelValue\":\"964162\",\"primaryLabelValue\":\"964162\"}},{\"attributeHeader\":{\"labelValue\":\"964163\",\"primaryLabelValue\":\"964163\"}},{\"attributeHeader\":{\"labelValue\":\"964164\",\"primaryLabelValue\":\"964164\"}},{\"attributeHeader\":{\"labelValue\":\"964165\",\"primaryLabelValue\":\"964165\"}},{\"attributeHeader\":{\"labelValue\":\"964166\",\"primaryLabelValue\":\"964166\"}},{\"attributeHeader\":{\"labelValue\":\"964167\",\"primaryLabelValue\":\"964167\"}},{\"attributeHeader\":{\"labelValue\":\"964168\",\"primaryLabelValue\":\"964168\"}},{\"attributeHeader\":{\"labelValue\":\"964169\",\"primaryLabelValue\":\"964169\"}},{\"attributeHeader\":{\"labelValue\":\"964170\",\"primaryLabelValue\":\"964170\"}},{\"attributeHeader\":{\"labelValue\":\"964171\",\"primaryLabelValue\":\"964171\"}},{\"attributeHeader\":{\"labelValue\":\"964172\",\"primaryLabelValue\":\"964172\"}},{\"attributeHeader\":{\"labelValue\":\"964173\",\"primaryLabelValue\":\"964173\"}},{\"attributeHeader\":{\"labelValue\":\"964174\",\"primaryLabelValue\":\"964174\"}},{\"attributeHeader\":{\"labelValue\":\"964176\",\"primaryLabelValue\":\"964176\"}},{\"attributeHeader\":{\"labelValue\":\"964178\",\"primaryLabelValue\":\"964178\"}},{\"attributeHeader\":{\"labelValue\":\"964179\",\"primaryLabelValue\":\"964179\"}},{\"attributeHeader\":{\"labelValue\":\"964180\",\"primaryLabelValue\":\"964180\"}},{\"attributeHeader\":{\"labelValue\":\"964182\",\"primaryLabelValue\":\"964182\"}},{\"attributeHeader\":{\"labelValue\":\"964183\",\"primaryLabelValue\":\"964183\"}},{\"attributeHeader\":{\"labelValue\":\"964185\",\"primaryLabelValue\":\"964185\"}},{\"attributeHeader\":{\"labelValue\":\"964187\",\"primaryLabelValue\":\"964187\"}},{\"attributeHeader\":{\"labelValue\":\"964188\",\"primaryLabelValue\":\"964188\"}},{\"attributeHeader\":{\"labelValue\":\"964189\",\"primaryLabelValue\":\"964189\"}},{\"attributeHeader\":{\"labelValue\":\"964190\",\"primaryLabelValue\":\"964190\"}},{\"attributeHeader\":{\"labelValue\":\"964192\",\"primaryLabelValue\":\"964192\"}},{\"attributeHeader\":{\"labelValue\":\"964194\",\"primaryLabelValue\":\"964194\"}},{\"attributeHeader\":{\"labelValue\":\"964195\",\"primaryLabelValue\":\"964195\"}},{\"attributeHeader\":{\"labelValue\":\"964196\",\"primaryLabelValue\":\"964196\"}},{\"attributeHeader\":{\"labelValue\":\"964197\",\"primaryLabelValue\":\"964197\"}},{\"attributeHeader\":{\"labelValue\":\"964199\",\"primaryLabelValue\":\"964199\"}},{\"attributeHeader\":{\"labelValue\":\"964200\",\"primaryLabelValue\":\"964200\"}},{\"attributeHeader\":{\"labelValue\":\"964201\",\"primaryLabelValue\":\"964201\"}},{\"attributeHeader\":{\"labelValue\":\"964203\",\"primaryLabelValue\":\"964203\"}},{\"attributeHeader\":{\"labelValue\":\"964204\",\"primaryLabelValue\":\"964204\"}},{\"attributeHeader\":{\"labelValue\":\"964206\",\"primaryLabelValue\":\"964206\"}},{\"attributeHeader\":{\"labelValue\":\"964208\",\"primaryLabelValue\":\"964208\"}},{\"attributeHeader\":{\"labelValue\":\"964209\",\"primaryLabelValue\":\"964209\"}},{\"attributeHeader\":{\"labelValue\":\"964210\",\"primaryLabelValue\":\"964210\"}},{\"attributeHeader\":{\"labelValue\":\"964211\",\"primaryLabelValue\":\"964211\"}},{\"attributeHeader\":{\"labelValue\":\"964212\",\"primaryLabelValue\":\"964212\"}},{\"attributeHeader\":{\"labelValue\":\"964213\",\"primaryLabelValue\":\"964213\"}},{\"attributeHeader\":{\"labelValue\":\"964214\",\"primaryLabelValue\":\"964214\"}},{\"attributeHeader\":{\"labelValue\":\"964216\",\"primaryLabelValue\":\"964216\"}},{\"attributeHeader\":{\"labelValue\":\"964218\",\"primaryLabelValue\":\"964218\"}},{\"attributeHeader\":{\"labelValue\":\"964219\",\"primaryLabelValue\":\"964219\"}},{\"attributeHeader\":{\"labelValue\":\"964220\",\"primaryLabelValue\":\"964220\"}},{\"attributeHeader\":{\"labelValue\":\"964221\",\"primaryLabelValue\":\"964221\"}},{\"attributeHeader\":{\"labelValue\":\"964222\",\"primaryLabelValue\":\"964222\"}},{\"attributeHeader\":{\"labelValue\":\"964223\",\"primaryLabelValue\":\"964223\"}},{\"attributeHeader\":{\"labelValue\":\"964225\",\"primaryLabelValue\":\"964225\"}},{\"attributeHeader\":{\"labelValue\":\"964227\",\"primaryLabelValue\":\"964227\"}},{\"attributeHeader\":{\"labelValue\":\"964229\",\"primaryLabelValue\":\"964229\"}},{\"attributeHeader\":{\"labelValue\":\"964230\",\"primaryLabelValue\":\"964230\"}},{\"attributeHeader\":{\"labelValue\":\"964231\",\"primaryLabelValue\":\"964231\"}},{\"attributeHeader\":{\"labelValue\":\"964232\",\"primaryLabelValue\":\"964232\"}},{\"attributeHeader\":{\"labelValue\":\"964234\",\"primaryLabelValue\":\"964234\"}},{\"attributeHeader\":{\"labelValue\":\"964236\",\"primaryLabelValue\":\"964236\"}},{\"attributeHeader\":{\"labelValue\":\"964237\",\"primaryLabelValue\":\"964237\"}},{\"attributeHeader\":{\"labelValue\":\"964239\",\"primaryLabelValue\":\"964239\"}},{\"attributeHeader\":{\"labelValue\":\"964241\",\"primaryLabelValue\":\"964241\"}},{\"attributeHeader\":{\"labelValue\":\"964243\",\"primaryLabelValue\":\"964243\"}},{\"attributeHeader\":{\"labelValue\":\"964244\",\"primaryLabelValue\":\"964244\"}},{\"attributeHeader\":{\"labelValue\":\"964245\",\"primaryLabelValue\":\"964245\"}},{\"attributeHeader\":{\"labelValue\":\"964246\",\"primaryLabelValue\":\"964246\"}},{\"attributeHeader\":{\"labelValue\":\"964248\",\"primaryLabelValue\":\"964248\"}},{\"attributeHeader\":{\"labelValue\":\"964250\",\"primaryLabelValue\":\"964250\"}},{\"attributeHeader\":{\"labelValue\":\"964252\",\"primaryLabelValue\":\"964252\"}},{\"attributeHeader\":{\"labelValue\":\"964253\",\"primaryLabelValue\":\"964253\"}},{\"attributeHeader\":{\"labelValue\":\"964255\",\"primaryLabelValue\":\"964255\"}},{\"attributeHeader\":{\"labelValue\":\"964257\",\"primaryLabelValue\":\"964257\"}},{\"attributeHeader\":{\"labelValue\":\"964258\",\"primaryLabelValue\":\"964258\"}},{\"attributeHeader\":{\"labelValue\":\"964259\",\"primaryLabelValue\":\"964259\"}},{\"attributeHeader\":{\"labelValue\":\"964260\",\"primaryLabelValue\":\"964260\"}},{\"attributeHeader\":{\"labelValue\":\"964261\",\"primaryLabelValue\":\"964261\"}},{\"attributeHeader\":{\"labelValue\":\"964262\",\"primaryLabelValue\":\"964262\"}},{\"attributeHeader\":{\"labelValue\":\"964264\",\"primaryLabelValue\":\"964264\"}},{\"attributeHeader\":{\"labelValue\":\"964265\",\"primaryLabelValue\":\"964265\"}},{\"attributeHeader\":{\"labelValue\":\"964267\",\"primaryLabelValue\":\"964267\"}},{\"attributeHeader\":{\"labelValue\":\"964269\",\"primaryLabelValue\":\"964269\"}},{\"attributeHeader\":{\"labelValue\":\"964271\",\"primaryLabelValue\":\"964271\"}},{\"attributeHeader\":{\"labelValue\":\"964272\",\"primaryLabelValue\":\"964272\"}},{\"attributeHeader\":{\"labelValue\":\"964273\",\"primaryLabelValue\":\"964273\"}},{\"attributeHeader\":{\"labelValue\":\"964274\",\"primaryLabelValue\":\"964274\"}},{\"attributeHeader\":{\"labelValue\":\"964275\",\"primaryLabelValue\":\"964275\"}},{\"attributeHeader\":{\"labelValue\":\"964276\",\"primaryLabelValue\":\"964276\"}},{\"attributeHeader\":{\"labelValue\":\"964277\",\"primaryLabelValue\":\"964277\"}},{\"attributeHeader\":{\"labelValue\":\"964278\",\"primaryLabelValue\":\"964278\"}},{\"attributeHeader\":{\"labelValue\":\"964280\",\"primaryLabelValue\":\"964280\"}},{\"attributeHeader\":{\"labelValue\":\"964281\",\"primaryLabelValue\":\"964281\"}},{\"attributeHeader\":{\"labelValue\":\"964282\",\"primaryLabelValue\":\"964282\"}},{\"attributeHeader\":{\"labelValue\":\"964284\",\"primaryLabelValue\":\"964284\"}},{\"attributeHeader\":{\"labelValue\":\"964285\",\"primaryLabelValue\":\"964285\"}},{\"attributeHeader\":{\"labelValue\":\"964287\",\"primaryLabelValue\":\"964287\"}},{\"attributeHeader\":{\"labelValue\":\"964288\",\"primaryLabelValue\":\"964288\"}},{\"attributeHeader\":{\"labelValue\":\"964290\",\"primaryLabelValue\":\"964290\"}},{\"attributeHeader\":{\"labelValue\":\"964291\",\"primaryLabelValue\":\"964291\"}},{\"attributeHeader\":{\"labelValue\":\"964292\",\"primaryLabelValue\":\"964292\"}},{\"attributeHeader\":{\"labelValue\":\"964293\",\"primaryLabelValue\":\"964293\"}},{\"attributeHeader\":{\"labelValue\":\"964295\",\"primaryLabelValue\":\"964295\"}},{\"attributeHeader\":{\"labelValue\":\"964297\",\"primaryLabelValue\":\"964297\"}},{\"attributeHeader\":{\"labelValue\":\"964299\",\"primaryLabelValue\":\"964299\"}},{\"attributeHeader\":{\"labelValue\":\"964301\",\"primaryLabelValue\":\"964301\"}},{\"attributeHeader\":{\"labelValue\":\"964302\",\"primaryLabelValue\":\"964302\"}},{\"attributeHeader\":{\"labelValue\":\"964303\",\"primaryLabelValue\":\"964303\"}},{\"attributeHeader\":{\"labelValue\":\"964304\",\"primaryLabelValue\":\"964304\"}},{\"attributeHeader\":{\"labelValue\":\"964305\",\"primaryLabelValue\":\"964305\"}},{\"attributeHeader\":{\"labelValue\":\"964306\",\"primaryLabelValue\":\"964306\"}},{\"attributeHeader\":{\"labelValue\":\"964307\",\"primaryLabelValue\":\"964307\"}},{\"attributeHeader\":{\"labelValue\":\"964308\",\"primaryLabelValue\":\"964308\"}},{\"attributeHeader\":{\"labelValue\":\"964310\",\"primaryLabelValue\":\"964310\"}},{\"attributeHeader\":{\"labelValue\":\"964312\",\"primaryLabelValue\":\"964312\"}},{\"attributeHeader\":{\"labelValue\":\"964313\",\"primaryLabelValue\":\"964313\"}},{\"attributeHeader\":{\"labelValue\":\"964315\",\"primaryLabelValue\":\"964315\"}},{\"attributeHeader\":{\"labelValue\":\"964317\",\"primaryLabelValue\":\"964317\"}},{\"attributeHeader\":{\"labelValue\":\"964318\",\"primaryLabelValue\":\"964318\"}},{\"attributeHeader\":{\"labelValue\":\"964319\",\"primaryLabelValue\":\"964319\"}},{\"attributeHeader\":{\"labelValue\":\"964321\",\"primaryLabelValue\":\"964321\"}},{\"attributeHeader\":{\"labelValue\":\"964322\",\"primaryLabelValue\":\"964322\"}},{\"attributeHeader\":{\"labelValue\":\"964324\",\"primaryLabelValue\":\"964324\"}},{\"attributeHeader\":{\"labelValue\":\"964325\",\"primaryLabelValue\":\"964325\"}},{\"attributeHeader\":{\"labelValue\":\"964327\",\"primaryLabelValue\":\"964327\"}},{\"attributeHeader\":{\"labelValue\":\"964328\",\"primaryLabelValue\":\"964328\"}},{\"attributeHeader\":{\"labelValue\":\"964329\",\"primaryLabelValue\":\"964329\"}},{\"attributeHeader\":{\"labelValue\":\"964330\",\"primaryLabelValue\":\"964330\"}},{\"attributeHeader\":{\"labelValue\":\"964331\",\"primaryLabelValue\":\"964331\"}},{\"attributeHeader\":{\"labelValue\":\"964332\",\"primaryLabelValue\":\"964332\"}},{\"attributeHeader\":{\"labelValue\":\"964333\",\"primaryLabelValue\":\"964333\"}},{\"attributeHeader\":{\"labelValue\":\"964334\",\"primaryLabelValue\":\"964334\"}},{\"attributeHeader\":{\"labelValue\":\"964335\",\"primaryLabelValue\":\"964335\"}},{\"attributeHeader\":{\"labelValue\":\"964336\",\"primaryLabelValue\":\"964336\"}},{\"attributeHeader\":{\"labelValue\":\"964338\",\"primaryLabelValue\":\"964338\"}},{\"attributeHeader\":{\"labelValue\":\"964339\",\"primaryLabelValue\":\"964339\"}},{\"attributeHeader\":{\"labelValue\":\"964340\",\"primaryLabelValue\":\"964340\"}},{\"attributeHeader\":{\"labelValue\":\"964341\",\"primaryLabelValue\":\"964341\"}},{\"attributeHeader\":{\"labelValue\":\"964342\",\"primaryLabelValue\":\"964342\"}},{\"attributeHeader\":{\"labelValue\":\"964343\",\"primaryLabelValue\":\"964343\"}},{\"attributeHeader\":{\"labelValue\":\"964344\",\"primaryLabelValue\":\"964344\"}},{\"attributeHeader\":{\"labelValue\":\"964345\",\"primaryLabelValue\":\"964345\"}},{\"attributeHeader\":{\"labelValue\":\"964346\",\"primaryLabelValue\":\"964346\"}},{\"attributeHeader\":{\"labelValue\":\"964348\",\"primaryLabelValue\":\"964348\"}},{\"attributeHeader\":{\"labelValue\":\"964349\",\"primaryLabelValue\":\"964349\"}},{\"attributeHeader\":{\"labelValue\":\"964350\",\"primaryLabelValue\":\"964350\"}},{\"attributeHeader\":{\"labelValue\":\"964352\",\"primaryLabelValue\":\"964352\"}},{\"attributeHeader\":{\"labelValue\":\"964354\",\"primaryLabelValue\":\"964354\"}},{\"attributeHeader\":{\"labelValue\":\"964355\",\"primaryLabelValue\":\"964355\"}},{\"attributeHeader\":{\"labelValue\":\"964356\",\"primaryLabelValue\":\"964356\"}},{\"attributeHeader\":{\"labelValue\":\"964357\",\"primaryLabelValue\":\"964357\"}},{\"attributeHeader\":{\"labelValue\":\"964358\",\"primaryLabelValue\":\"964358\"}},{\"attributeHeader\":{\"labelValue\":\"964359\",\"primaryLabelValue\":\"964359\"}},{\"attributeHeader\":{\"labelValue\":\"964360\",\"primaryLabelValue\":\"964360\"}},{\"attributeHeader\":{\"labelValue\":\"964362\",\"primaryLabelValue\":\"964362\"}},{\"attributeHeader\":{\"labelValue\":\"964364\",\"primaryLabelValue\":\"964364\"}},{\"attributeHeader\":{\"labelValue\":\"964365\",\"primaryLabelValue\":\"964365\"}},{\"attributeHeader\":{\"labelValue\":\"964366\",\"primaryLabelValue\":\"964366\"}},{\"attributeHeader\":{\"labelValue\":\"964367\",\"primaryLabelValue\":\"964367\"}},{\"attributeHeader\":{\"labelValue\":\"964368\",\"primaryLabelValue\":\"964368\"}},{\"attributeHeader\":{\"labelValue\":\"964369\",\"primaryLabelValue\":\"964369\"}},{\"attributeHeader\":{\"labelValue\":\"964370\",\"primaryLabelValue\":\"964370\"}},{\"attributeHeader\":{\"labelValue\":\"964371\",\"primaryLabelValue\":\"964371\"}},{\"attributeHeader\":{\"labelValue\":\"964373\",\"primaryLabelValue\":\"964373\"}},{\"attributeHeader\":{\"labelValue\":\"964374\",\"primaryLabelValue\":\"964374\"}},{\"attributeHeader\":{\"labelValue\":\"964375\",\"primaryLabelValue\":\"964375\"}},{\"attributeHeader\":{\"labelValue\":\"964377\",\"primaryLabelValue\":\"964377\"}},{\"attributeHeader\":{\"labelValue\":\"964378\",\"primaryLabelValue\":\"964378\"}},{\"attributeHeader\":{\"labelValue\":\"964380\",\"primaryLabelValue\":\"964380\"}},{\"attributeHeader\":{\"labelValue\":\"964381\",\"primaryLabelValue\":\"964381\"}},{\"attributeHeader\":{\"labelValue\":\"964382\",\"primaryLabelValue\":\"964382\"}},{\"attributeHeader\":{\"labelValue\":\"964383\",\"primaryLabelValue\":\"964383\"}},{\"attributeHeader\":{\"labelValue\":\"964384\",\"primaryLabelValue\":\"964384\"}},{\"attributeHeader\":{\"labelValue\":\"964386\",\"primaryLabelValue\":\"964386\"}},{\"attributeHeader\":{\"labelValue\":\"964387\",\"primaryLabelValue\":\"964387\"}},{\"attributeHeader\":{\"labelValue\":\"964388\",\"primaryLabelValue\":\"964388\"}},{\"attributeHeader\":{\"labelValue\":\"964390\",\"primaryLabelValue\":\"964390\"}},{\"attributeHeader\":{\"labelValue\":\"964392\",\"primaryLabelValue\":\"964392\"}},{\"attributeHeader\":{\"labelValue\":\"964393\",\"primaryLabelValue\":\"964393\"}},{\"attributeHeader\":{\"labelValue\":\"964395\",\"primaryLabelValue\":\"964395\"}},{\"attributeHeader\":{\"labelValue\":\"964396\",\"primaryLabelValue\":\"964396\"}},{\"attributeHeader\":{\"labelValue\":\"964397\",\"primaryLabelValue\":\"964397\"}},{\"attributeHeader\":{\"labelValue\":\"964399\",\"primaryLabelValue\":\"964399\"}},{\"attributeHeader\":{\"labelValue\":\"964400\",\"primaryLabelValue\":\"964400\"}},{\"attributeHeader\":{\"labelValue\":\"964402\",\"primaryLabelValue\":\"964402\"}},{\"attributeHeader\":{\"labelValue\":\"964403\",\"primaryLabelValue\":\"964403\"}},{\"attributeHeader\":{\"labelValue\":\"964405\",\"primaryLabelValue\":\"964405\"}},{\"attributeHeader\":{\"labelValue\":\"964407\",\"primaryLabelValue\":\"964407\"}},{\"attributeHeader\":{\"labelValue\":\"964408\",\"primaryLabelValue\":\"964408\"}},{\"attributeHeader\":{\"labelValue\":\"964410\",\"primaryLabelValue\":\"964410\"}},{\"attributeHeader\":{\"labelValue\":\"964411\",\"primaryLabelValue\":\"964411\"}},{\"attributeHeader\":{\"labelValue\":\"964412\",\"primaryLabelValue\":\"964412\"}},{\"attributeHeader\":{\"labelValue\":\"964413\",\"primaryLabelValue\":\"964413\"}},{\"attributeHeader\":{\"labelValue\":\"964415\",\"primaryLabelValue\":\"964415\"}},{\"attributeHeader\":{\"labelValue\":\"964416\",\"primaryLabelValue\":\"964416\"}},{\"attributeHeader\":{\"labelValue\":\"964418\",\"primaryLabelValue\":\"964418\"}},{\"attributeHeader\":{\"labelValue\":\"964419\",\"primaryLabelValue\":\"964419\"}},{\"attributeHeader\":{\"labelValue\":\"964421\",\"primaryLabelValue\":\"964421\"}},{\"attributeHeader\":{\"labelValue\":\"964422\",\"primaryLabelValue\":\"964422\"}},{\"attributeHeader\":{\"labelValue\":\"964423\",\"primaryLabelValue\":\"964423\"}},{\"attributeHeader\":{\"labelValue\":\"964425\",\"primaryLabelValue\":\"964425\"}},{\"attributeHeader\":{\"labelValue\":\"964426\",\"primaryLabelValue\":\"964426\"}},{\"attributeHeader\":{\"labelValue\":\"964427\",\"primaryLabelValue\":\"964427\"}},{\"attributeHeader\":{\"labelValue\":\"964428\",\"primaryLabelValue\":\"964428\"}},{\"attributeHeader\":{\"labelValue\":\"964429\",\"primaryLabelValue\":\"964429\"}},{\"attributeHeader\":{\"labelValue\":\"964431\",\"primaryLabelValue\":\"964431\"}},{\"attributeHeader\":{\"labelValue\":\"964433\",\"primaryLabelValue\":\"964433\"}},{\"attributeHeader\":{\"labelValue\":\"964434\",\"primaryLabelValue\":\"964434\"}},{\"attributeHeader\":{\"labelValue\":\"964435\",\"primaryLabelValue\":\"964435\"}},{\"attributeHeader\":{\"labelValue\":\"964437\",\"primaryLabelValue\":\"964437\"}},{\"attributeHeader\":{\"labelValue\":\"964438\",\"primaryLabelValue\":\"964438\"}},{\"attributeHeader\":{\"labelValue\":\"964439\",\"primaryLabelValue\":\"964439\"}},{\"attributeHeader\":{\"labelValue\":\"964441\",\"primaryLabelValue\":\"964441\"}},{\"attributeHeader\":{\"labelValue\":\"964442\",\"primaryLabelValue\":\"964442\"}},{\"attributeHeader\":{\"labelValue\":\"964443\",\"primaryLabelValue\":\"964443\"}},{\"attributeHeader\":{\"labelValue\":\"964444\",\"primaryLabelValue\":\"964444\"}},{\"attributeHeader\":{\"labelValue\":\"964445\",\"primaryLabelValue\":\"964445\"}},{\"attributeHeader\":{\"labelValue\":\"964446\",\"primaryLabelValue\":\"964446\"}},{\"attributeHeader\":{\"labelValue\":\"964448\",\"primaryLabelValue\":\"964448\"}},{\"attributeHeader\":{\"labelValue\":\"964449\",\"primaryLabelValue\":\"964449\"}},{\"attributeHeader\":{\"labelValue\":\"964451\",\"primaryLabelValue\":\"964451\"}},{\"attributeHeader\":{\"labelValue\":\"964452\",\"primaryLabelValue\":\"964452\"}},{\"attributeHeader\":{\"labelValue\":\"964453\",\"primaryLabelValue\":\"964453\"}},{\"attributeHeader\":{\"labelValue\":\"964454\",\"primaryLabelValue\":\"964454\"}},{\"attributeHeader\":{\"labelValue\":\"964455\",\"primaryLabelValue\":\"964455\"}},{\"attributeHeader\":{\"labelValue\":\"964456\",\"primaryLabelValue\":\"964456\"}},{\"attributeHeader\":{\"labelValue\":\"964457\",\"primaryLabelValue\":\"964457\"}},{\"attributeHeader\":{\"labelValue\":\"964458\",\"primaryLabelValue\":\"964458\"}},{\"attributeHeader\":{\"labelValue\":\"964460\",\"primaryLabelValue\":\"964460\"}},{\"attributeHeader\":{\"labelValue\":\"964461\",\"primaryLabelValue\":\"964461\"}},{\"attributeHeader\":{\"labelValue\":\"964463\",\"primaryLabelValue\":\"964463\"}},{\"attributeHeader\":{\"labelValue\":\"964465\",\"primaryLabelValue\":\"964465\"}},{\"attributeHeader\":{\"labelValue\":\"964466\",\"primaryLabelValue\":\"964466\"}},{\"attributeHeader\":{\"labelValue\":\"964467\",\"primaryLabelValue\":\"964467\"}},{\"attributeHeader\":{\"labelValue\":\"964468\",\"primaryLabelValue\":\"964468\"}},{\"attributeHeader\":{\"labelValue\":\"964469\",\"primaryLabelValue\":\"964469\"}},{\"attributeHeader\":{\"labelValue\":\"964470\",\"primaryLabelValue\":\"964470\"}},{\"attributeHeader\":{\"labelValue\":\"964471\",\"primaryLabelValue\":\"964471\"}},{\"attributeHeader\":{\"labelValue\":\"964472\",\"primaryLabelValue\":\"964472\"}},{\"attributeHeader\":{\"labelValue\":\"964473\",\"primaryLabelValue\":\"964473\"}},{\"attributeHeader\":{\"labelValue\":\"964474\",\"primaryLabelValue\":\"964474\"}},{\"attributeHeader\":{\"labelValue\":\"964475\",\"primaryLabelValue\":\"964475\"}},{\"attributeHeader\":{\"labelValue\":\"964477\",\"primaryLabelValue\":\"964477\"}},{\"attributeHeader\":{\"labelValue\":\"964479\",\"primaryLabelValue\":\"964479\"}},{\"attributeHeader\":{\"labelValue\":\"964480\",\"primaryLabelValue\":\"964480\"}},{\"attributeHeader\":{\"labelValue\":\"964482\",\"primaryLabelValue\":\"964482\"}},{\"attributeHeader\":{\"labelValue\":\"964483\",\"primaryLabelValue\":\"964483\"}},{\"attributeHeader\":{\"labelValue\":\"964484\",\"primaryLabelValue\":\"964484\"}},{\"attributeHeader\":{\"labelValue\":\"964486\",\"primaryLabelValue\":\"964486\"}},{\"attributeHeader\":{\"labelValue\":\"964487\",\"primaryLabelValue\":\"964487\"}},{\"attributeHeader\":{\"labelValue\":\"964488\",\"primaryLabelValue\":\"964488\"}},{\"attributeHeader\":{\"labelValue\":\"964489\",\"primaryLabelValue\":\"964489\"}},{\"attributeHeader\":{\"labelValue\":\"964491\",\"primaryLabelValue\":\"964491\"}},{\"attributeHeader\":{\"labelValue\":\"964492\",\"primaryLabelValue\":\"964492\"}},{\"attributeHeader\":{\"labelValue\":\"964493\",\"primaryLabelValue\":\"964493\"}},{\"attributeHeader\":{\"labelValue\":\"964494\",\"primaryLabelValue\":\"964494\"}},{\"attributeHeader\":{\"labelValue\":\"964496\",\"primaryLabelValue\":\"964496\"}},{\"attributeHeader\":{\"labelValue\":\"964498\",\"primaryLabelValue\":\"964498\"}},{\"attributeHeader\":{\"labelValue\":\"964500\",\"primaryLabelValue\":\"964500\"}},{\"attributeHeader\":{\"labelValue\":\"964501\",\"primaryLabelValue\":\"964501\"}},{\"attributeHeader\":{\"labelValue\":\"964503\",\"primaryLabelValue\":\"964503\"}},{\"attributeHeader\":{\"labelValue\":\"964505\",\"primaryLabelValue\":\"964505\"}},{\"attributeHeader\":{\"labelValue\":\"964507\",\"primaryLabelValue\":\"964507\"}},{\"attributeHeader\":{\"labelValue\":\"964508\",\"primaryLabelValue\":\"964508\"}},{\"attributeHeader\":{\"labelValue\":\"964509\",\"primaryLabelValue\":\"964509\"}},{\"attributeHeader\":{\"labelValue\":\"964510\",\"primaryLabelValue\":\"964510\"}},{\"attributeHeader\":{\"labelValue\":\"964512\",\"primaryLabelValue\":\"964512\"}},{\"attributeHeader\":{\"labelValue\":\"964514\",\"primaryLabelValue\":\"964514\"}},{\"attributeHeader\":{\"labelValue\":\"964515\",\"primaryLabelValue\":\"964515\"}},{\"attributeHeader\":{\"labelValue\":\"964516\",\"primaryLabelValue\":\"964516\"}},{\"attributeHeader\":{\"labelValue\":\"964517\",\"primaryLabelValue\":\"964517\"}},{\"attributeHeader\":{\"labelValue\":\"964518\",\"primaryLabelValue\":\"964518\"}},{\"attributeHeader\":{\"labelValue\":\"964520\",\"primaryLabelValue\":\"964520\"}},{\"attributeHeader\":{\"labelValue\":\"964521\",\"primaryLabelValue\":\"964521\"}},{\"attributeHeader\":{\"labelValue\":\"964523\",\"primaryLabelValue\":\"964523\"}},{\"attributeHeader\":{\"labelValue\":\"964524\",\"primaryLabelValue\":\"964524\"}},{\"attributeHeader\":{\"labelValue\":\"964525\",\"primaryLabelValue\":\"964525\"}},{\"attributeHeader\":{\"labelValue\":\"964526\",\"primaryLabelValue\":\"964526\"}},{\"attributeHeader\":{\"labelValue\":\"964527\",\"primaryLabelValue\":\"964527\"}},{\"attributeHeader\":{\"labelValue\":\"964529\",\"primaryLabelValue\":\"964529\"}},{\"attributeHeader\":{\"labelValue\":\"964530\",\"primaryLabelValue\":\"964530\"}},{\"attributeHeader\":{\"labelValue\":\"964531\",\"primaryLabelValue\":\"964531\"}},{\"attributeHeader\":{\"labelValue\":\"964533\",\"primaryLabelValue\":\"964533\"}},{\"attributeHeader\":{\"labelValue\":\"964534\",\"primaryLabelValue\":\"964534\"}},{\"attributeHeader\":{\"labelValue\":\"964535\",\"primaryLabelValue\":\"964535\"}},{\"attributeHeader\":{\"labelValue\":\"964537\",\"primaryLabelValue\":\"964537\"}},{\"attributeHeader\":{\"labelValue\":\"964539\",\"primaryLabelValue\":\"964539\"}},{\"attributeHeader\":{\"labelValue\":\"964541\",\"primaryLabelValue\":\"964541\"}},{\"attributeHeader\":{\"labelValue\":\"964542\",\"primaryLabelValue\":\"964542\"}},{\"attributeHeader\":{\"labelValue\":\"964543\",\"primaryLabelValue\":\"964543\"}},{\"attributeHeader\":{\"labelValue\":\"964544\",\"primaryLabelValue\":\"964544\"}},{\"attributeHeader\":{\"labelValue\":\"964545\",\"primaryLabelValue\":\"964545\"}},{\"attributeHeader\":{\"labelValue\":\"964548\",\"primaryLabelValue\":\"964548\"}},{\"attributeHeader\":{\"labelValue\":\"964549\",\"primaryLabelValue\":\"964549\"}},{\"attributeHeader\":{\"labelValue\":\"964550\",\"primaryLabelValue\":\"964550\"}},{\"attributeHeader\":{\"labelValue\":\"964551\",\"primaryLabelValue\":\"964551\"}},{\"attributeHeader\":{\"labelValue\":\"964552\",\"primaryLabelValue\":\"964552\"}},{\"attributeHeader\":{\"labelValue\":\"964554\",\"primaryLabelValue\":\"964554\"}},{\"attributeHeader\":{\"labelValue\":\"964555\",\"primaryLabelValue\":\"964555\"}},{\"attributeHeader\":{\"labelValue\":\"964557\",\"primaryLabelValue\":\"964557\"}},{\"attributeHeader\":{\"labelValue\":\"964558\",\"primaryLabelValue\":\"964558\"}},{\"attributeHeader\":{\"labelValue\":\"964560\",\"primaryLabelValue\":\"964560\"}},{\"attributeHeader\":{\"labelValue\":\"964561\",\"primaryLabelValue\":\"964561\"}},{\"attributeHeader\":{\"labelValue\":\"964562\",\"primaryLabelValue\":\"964562\"}},{\"attributeHeader\":{\"labelValue\":\"964563\",\"primaryLabelValue\":\"964563\"}},{\"attributeHeader\":{\"labelValue\":\"964565\",\"primaryLabelValue\":\"964565\"}},{\"attributeHeader\":{\"labelValue\":\"964567\",\"primaryLabelValue\":\"964567\"}},{\"attributeHeader\":{\"labelValue\":\"964568\",\"primaryLabelValue\":\"964568\"}},{\"attributeHeader\":{\"labelValue\":\"964570\",\"primaryLabelValue\":\"964570\"}},{\"attributeHeader\":{\"labelValue\":\"964572\",\"primaryLabelValue\":\"964572\"}},{\"attributeHeader\":{\"labelValue\":\"964573\",\"primaryLabelValue\":\"964573\"}},{\"attributeHeader\":{\"labelValue\":\"964574\",\"primaryLabelValue\":\"964574\"}},{\"attributeHeader\":{\"labelValue\":\"964575\",\"primaryLabelValue\":\"964575\"}},{\"attributeHeader\":{\"labelValue\":\"964577\",\"primaryLabelValue\":\"964577\"}},{\"attributeHeader\":{\"labelValue\":\"964578\",\"primaryLabelValue\":\"964578\"}},{\"attributeHeader\":{\"labelValue\":\"964579\",\"primaryLabelValue\":\"964579\"}},{\"attributeHeader\":{\"labelValue\":\"964580\",\"primaryLabelValue\":\"964580\"}},{\"attributeHeader\":{\"labelValue\":\"964582\",\"primaryLabelValue\":\"964582\"}},{\"attributeHeader\":{\"labelValue\":\"964584\",\"primaryLabelValue\":\"964584\"}},{\"attributeHeader\":{\"labelValue\":\"964586\",\"primaryLabelValue\":\"964586\"}},{\"attributeHeader\":{\"labelValue\":\"964588\",\"primaryLabelValue\":\"964588\"}},{\"attributeHeader\":{\"labelValue\":\"964589\",\"primaryLabelValue\":\"964589\"}},{\"attributeHeader\":{\"labelValue\":\"964590\",\"primaryLabelValue\":\"964590\"}},{\"attributeHeader\":{\"labelValue\":\"964591\",\"primaryLabelValue\":\"964591\"}},{\"attributeHeader\":{\"labelValue\":\"964592\",\"primaryLabelValue\":\"964592\"}},{\"attributeHeader\":{\"labelValue\":\"964594\",\"primaryLabelValue\":\"964594\"}},{\"attributeHeader\":{\"labelValue\":\"964595\",\"primaryLabelValue\":\"964595\"}},{\"attributeHeader\":{\"labelValue\":\"964596\",\"primaryLabelValue\":\"964596\"}},{\"attributeHeader\":{\"labelValue\":\"964598\",\"primaryLabelValue\":\"964598\"}},{\"attributeHeader\":{\"labelValue\":\"964600\",\"primaryLabelValue\":\"964600\"}},{\"attributeHeader\":{\"labelValue\":\"964601\",\"primaryLabelValue\":\"964601\"}},{\"attributeHeader\":{\"labelValue\":\"964603\",\"primaryLabelValue\":\"964603\"}},{\"attributeHeader\":{\"labelValue\":\"964604\",\"primaryLabelValue\":\"964604\"}},{\"attributeHeader\":{\"labelValue\":\"964605\",\"primaryLabelValue\":\"964605\"}},{\"attributeHeader\":{\"labelValue\":\"964606\",\"primaryLabelValue\":\"964606\"}},{\"attributeHeader\":{\"labelValue\":\"964607\",\"primaryLabelValue\":\"964607\"}},{\"attributeHeader\":{\"labelValue\":\"964608\",\"primaryLabelValue\":\"964608\"}},{\"attributeHeader\":{\"labelValue\":\"964609\",\"primaryLabelValue\":\"964609\"}},{\"attributeHeader\":{\"labelValue\":\"964610\",\"primaryLabelValue\":\"964610\"}},{\"attributeHeader\":{\"labelValue\":\"964611\",\"primaryLabelValue\":\"964611\"}},{\"attributeHeader\":{\"labelValue\":\"964612\",\"primaryLabelValue\":\"964612\"}},{\"attributeHeader\":{\"labelValue\":\"964614\",\"primaryLabelValue\":\"964614\"}},{\"attributeHeader\":{\"labelValue\":\"964615\",\"primaryLabelValue\":\"964615\"}},{\"attributeHeader\":{\"labelValue\":\"964616\",\"primaryLabelValue\":\"964616\"}},{\"attributeHeader\":{\"labelValue\":\"964618\",\"primaryLabelValue\":\"964618\"}},{\"attributeHeader\":{\"labelValue\":\"964620\",\"primaryLabelValue\":\"964620\"}},{\"attributeHeader\":{\"labelValue\":\"964621\",\"primaryLabelValue\":\"964621\"}},{\"attributeHeader\":{\"labelValue\":\"964622\",\"primaryLabelValue\":\"964622\"}},{\"attributeHeader\":{\"labelValue\":\"964624\",\"primaryLabelValue\":\"964624\"}},{\"attributeHeader\":{\"labelValue\":\"964626\",\"primaryLabelValue\":\"964626\"}},{\"attributeHeader\":{\"labelValue\":\"964627\",\"primaryLabelValue\":\"964627\"}},{\"attributeHeader\":{\"labelValue\":\"964629\",\"primaryLabelValue\":\"964629\"}},{\"attributeHeader\":{\"labelValue\":\"964630\",\"primaryLabelValue\":\"964630\"}},{\"attributeHeader\":{\"labelValue\":\"964631\",\"primaryLabelValue\":\"964631\"}},{\"attributeHeader\":{\"labelValue\":\"964632\",\"primaryLabelValue\":\"964632\"}},{\"attributeHeader\":{\"labelValue\":\"964634\",\"primaryLabelValue\":\"964634\"}},{\"attributeHeader\":{\"labelValue\":\"964637\",\"primaryLabelValue\":\"964637\"}},{\"attributeHeader\":{\"labelValue\":\"964638\",\"primaryLabelValue\":\"964638\"}},{\"attributeHeader\":{\"labelValue\":\"964640\",\"primaryLabelValue\":\"964640\"}},{\"attributeHeader\":{\"labelValue\":\"964642\",\"primaryLabelValue\":\"964642\"}},{\"attributeHeader\":{\"labelValue\":\"964644\",\"primaryLabelValue\":\"964644\"}},{\"attributeHeader\":{\"labelValue\":\"964645\",\"primaryLabelValue\":\"964645\"}},{\"attributeHeader\":{\"labelValue\":\"964646\",\"primaryLabelValue\":\"964646\"}},{\"attributeHeader\":{\"labelValue\":\"964647\",\"primaryLabelValue\":\"964647\"}},{\"attributeHeader\":{\"labelValue\":\"964648\",\"primaryLabelValue\":\"964648\"}},{\"attributeHeader\":{\"labelValue\":\"964649\",\"primaryLabelValue\":\"964649\"}},{\"attributeHeader\":{\"labelValue\":\"964650\",\"primaryLabelValue\":\"964650\"}},{\"attributeHeader\":{\"labelValue\":\"964651\",\"primaryLabelValue\":\"964651\"}},{\"attributeHeader\":{\"labelValue\":\"964652\",\"primaryLabelValue\":\"964652\"}},{\"attributeHeader\":{\"labelValue\":\"964654\",\"primaryLabelValue\":\"964654\"}},{\"attributeHeader\":{\"labelValue\":\"964655\",\"primaryLabelValue\":\"964655\"}},{\"attributeHeader\":{\"labelValue\":\"964656\",\"primaryLabelValue\":\"964656\"}},{\"attributeHeader\":{\"labelValue\":\"964658\",\"primaryLabelValue\":\"964658\"}},{\"attributeHeader\":{\"labelValue\":\"964660\",\"primaryLabelValue\":\"964660\"}},{\"attributeHeader\":{\"labelValue\":\"964662\",\"primaryLabelValue\":\"964662\"}},{\"attributeHeader\":{\"labelValue\":\"964663\",\"primaryLabelValue\":\"964663\"}},{\"attributeHeader\":{\"labelValue\":\"964664\",\"primaryLabelValue\":\"964664\"}},{\"attributeHeader\":{\"labelValue\":\"964665\",\"primaryLabelValue\":\"964665\"}},{\"attributeHeader\":{\"labelValue\":\"964666\",\"primaryLabelValue\":\"964666\"}},{\"attributeHeader\":{\"labelValue\":\"964667\",\"primaryLabelValue\":\"964667\"}},{\"attributeHeader\":{\"labelValue\":\"964668\",\"primaryLabelValue\":\"964668\"}},{\"attributeHeader\":{\"labelValue\":\"964669\",\"primaryLabelValue\":\"964669\"}},{\"attributeHeader\":{\"labelValue\":\"964671\",\"primaryLabelValue\":\"964671\"}},{\"attributeHeader\":{\"labelValue\":\"964673\",\"primaryLabelValue\":\"964673\"}},{\"attributeHeader\":{\"labelValue\":\"964674\",\"primaryLabelValue\":\"964674\"}},{\"attributeHeader\":{\"labelValue\":\"964675\",\"primaryLabelValue\":\"964675\"}},{\"attributeHeader\":{\"labelValue\":\"964676\",\"primaryLabelValue\":\"964676\"}},{\"attributeHeader\":{\"labelValue\":\"964678\",\"primaryLabelValue\":\"964678\"}},{\"attributeHeader\":{\"labelValue\":\"964680\",\"primaryLabelValue\":\"964680\"}},{\"attributeHeader\":{\"labelValue\":\"964682\",\"primaryLabelValue\":\"964682\"}},{\"attributeHeader\":{\"labelValue\":\"964683\",\"primaryLabelValue\":\"964683\"}},{\"attributeHeader\":{\"labelValue\":\"964685\",\"primaryLabelValue\":\"964685\"}},{\"attributeHeader\":{\"labelValue\":\"964686\",\"primaryLabelValue\":\"964686\"}},{\"attributeHeader\":{\"labelValue\":\"964687\",\"primaryLabelValue\":\"964687\"}},{\"attributeHeader\":{\"labelValue\":\"964688\",\"primaryLabelValue\":\"964688\"}},{\"attributeHeader\":{\"labelValue\":\"964689\",\"primaryLabelValue\":\"964689\"}},{\"attributeHeader\":{\"labelValue\":\"964690\",\"primaryLabelValue\":\"964690\"}},{\"attributeHeader\":{\"labelValue\":\"964691\",\"primaryLabelValue\":\"964691\"}},{\"attributeHeader\":{\"labelValue\":\"964693\",\"primaryLabelValue\":\"964693\"}},{\"attributeHeader\":{\"labelValue\":\"964694\",\"primaryLabelValue\":\"964694\"}},{\"attributeHeader\":{\"labelValue\":\"964696\",\"primaryLabelValue\":\"964696\"}},{\"attributeHeader\":{\"labelValue\":\"964697\",\"primaryLabelValue\":\"964697\"}},{\"attributeHeader\":{\"labelValue\":\"964698\",\"primaryLabelValue\":\"964698\"}},{\"attributeHeader\":{\"labelValue\":\"964699\",\"primaryLabelValue\":\"964699\"}},{\"attributeHeader\":{\"labelValue\":\"964701\",\"primaryLabelValue\":\"964701\"}},{\"attributeHeader\":{\"labelValue\":\"964702\",\"primaryLabelValue\":\"964702\"}},{\"attributeHeader\":{\"labelValue\":\"964703\",\"primaryLabelValue\":\"964703\"}},{\"attributeHeader\":{\"labelValue\":\"964704\",\"primaryLabelValue\":\"964704\"}},{\"attributeHeader\":{\"labelValue\":\"964705\",\"primaryLabelValue\":\"964705\"}},{\"attributeHeader\":{\"labelValue\":\"964706\",\"primaryLabelValue\":\"964706\"}},{\"attributeHeader\":{\"labelValue\":\"964707\",\"primaryLabelValue\":\"964707\"}},{\"attributeHeader\":{\"labelValue\":\"964709\",\"primaryLabelValue\":\"964709\"}},{\"attributeHeader\":{\"labelValue\":\"964710\",\"primaryLabelValue\":\"964710\"}},{\"attributeHeader\":{\"labelValue\":\"964711\",\"primaryLabelValue\":\"964711\"}},{\"attributeHeader\":{\"labelValue\":\"964712\",\"primaryLabelValue\":\"964712\"}},{\"attributeHeader\":{\"labelValue\":\"964713\",\"primaryLabelValue\":\"964713\"}},{\"attributeHeader\":{\"labelValue\":\"964717\",\"primaryLabelValue\":\"964717\"}},{\"attributeHeader\":{\"labelValue\":\"964718\",\"primaryLabelValue\":\"964718\"}},{\"attributeHeader\":{\"labelValue\":\"964720\",\"primaryLabelValue\":\"964720\"}},{\"attributeHeader\":{\"labelValue\":\"964721\",\"primaryLabelValue\":\"964721\"}},{\"attributeHeader\":{\"labelValue\":\"964722\",\"primaryLabelValue\":\"964722\"}},{\"attributeHeader\":{\"labelValue\":\"964724\",\"primaryLabelValue\":\"964724\"}},{\"attributeHeader\":{\"labelValue\":\"964726\",\"primaryLabelValue\":\"964726\"}},{\"attributeHeader\":{\"labelValue\":\"964727\",\"primaryLabelValue\":\"964727\"}},{\"attributeHeader\":{\"labelValue\":\"964728\",\"primaryLabelValue\":\"964728\"}},{\"attributeHeader\":{\"labelValue\":\"964729\",\"primaryLabelValue\":\"964729\"}},{\"attributeHeader\":{\"labelValue\":\"964730\",\"primaryLabelValue\":\"964730\"}},{\"attributeHeader\":{\"labelValue\":\"964732\",\"primaryLabelValue\":\"964732\"}},{\"attributeHeader\":{\"labelValue\":\"964733\",\"primaryLabelValue\":\"964733\"}},{\"attributeHeader\":{\"labelValue\":\"964734\",\"primaryLabelValue\":\"964734\"}},{\"attributeHeader\":{\"labelValue\":\"964736\",\"primaryLabelValue\":\"964736\"}},{\"attributeHeader\":{\"labelValue\":\"964738\",\"primaryLabelValue\":\"964738\"}},{\"attributeHeader\":{\"labelValue\":\"964739\",\"primaryLabelValue\":\"964739\"}},{\"attributeHeader\":{\"labelValue\":\"964742\",\"primaryLabelValue\":\"964742\"}},{\"attributeHeader\":{\"labelValue\":\"964743\",\"primaryLabelValue\":\"964743\"}},{\"attributeHeader\":{\"labelValue\":\"964745\",\"primaryLabelValue\":\"964745\"}},{\"attributeHeader\":{\"labelValue\":\"964746\",\"primaryLabelValue\":\"964746\"}},{\"attributeHeader\":{\"labelValue\":\"964747\",\"primaryLabelValue\":\"964747\"}},{\"attributeHeader\":{\"labelValue\":\"964748\",\"primaryLabelValue\":\"964748\"}},{\"attributeHeader\":{\"labelValue\":\"964750\",\"primaryLabelValue\":\"964750\"}},{\"attributeHeader\":{\"labelValue\":\"964751\",\"primaryLabelValue\":\"964751\"}},{\"attributeHeader\":{\"labelValue\":\"964753\",\"primaryLabelValue\":\"964753\"}},{\"attributeHeader\":{\"labelValue\":\"964756\",\"primaryLabelValue\":\"964756\"}},{\"attributeHeader\":{\"labelValue\":\"964757\",\"primaryLabelValue\":\"964757\"}},{\"attributeHeader\":{\"labelValue\":\"964759\",\"primaryLabelValue\":\"964759\"}},{\"attributeHeader\":{\"labelValue\":\"964760\",\"primaryLabelValue\":\"964760\"}},{\"attributeHeader\":{\"labelValue\":\"964761\",\"primaryLabelValue\":\"964761\"}},{\"attributeHeader\":{\"labelValue\":\"964763\",\"primaryLabelValue\":\"964763\"}},{\"attributeHeader\":{\"labelValue\":\"964764\",\"primaryLabelValue\":\"964764\"}},{\"attributeHeader\":{\"labelValue\":\"964765\",\"primaryLabelValue\":\"964765\"}},{\"attributeHeader\":{\"labelValue\":\"964766\",\"primaryLabelValue\":\"964766\"}},{\"attributeHeader\":{\"labelValue\":\"964767\",\"primaryLabelValue\":\"964767\"}},{\"attributeHeader\":{\"labelValue\":\"964769\",\"primaryLabelValue\":\"964769\"}},{\"attributeHeader\":{\"labelValue\":\"964772\",\"primaryLabelValue\":\"964772\"}},{\"attributeHeader\":{\"labelValue\":\"964773\",\"primaryLabelValue\":\"964773\"}},{\"attributeHeader\":{\"labelValue\":\"964774\",\"primaryLabelValue\":\"964774\"}},{\"attributeHeader\":{\"labelValue\":\"964776\",\"primaryLabelValue\":\"964776\"}},{\"attributeHeader\":{\"labelValue\":\"964778\",\"primaryLabelValue\":\"964778\"}},{\"attributeHeader\":{\"labelValue\":\"964780\",\"primaryLabelValue\":\"964780\"}},{\"attributeHeader\":{\"labelValue\":\"964781\",\"primaryLabelValue\":\"964781\"}},{\"attributeHeader\":{\"labelValue\":\"964783\",\"primaryLabelValue\":\"964783\"}},{\"attributeHeader\":{\"labelValue\":\"964786\",\"primaryLabelValue\":\"964786\"}},{\"attributeHeader\":{\"labelValue\":\"964787\",\"primaryLabelValue\":\"964787\"}},{\"attributeHeader\":{\"labelValue\":\"964788\",\"primaryLabelValue\":\"964788\"}},{\"attributeHeader\":{\"labelValue\":\"964789\",\"primaryLabelValue\":\"964789\"}},{\"attributeHeader\":{\"labelValue\":\"964791\",\"primaryLabelValue\":\"964791\"}},{\"attributeHeader\":{\"labelValue\":\"964792\",\"primaryLabelValue\":\"964792\"}},{\"attributeHeader\":{\"labelValue\":\"964793\",\"primaryLabelValue\":\"964793\"}},{\"attributeHeader\":{\"labelValue\":\"964795\",\"primaryLabelValue\":\"964795\"}},{\"attributeHeader\":{\"labelValue\":\"964796\",\"primaryLabelValue\":\"964796\"}},{\"attributeHeader\":{\"labelValue\":\"964798\",\"primaryLabelValue\":\"964798\"}},{\"attributeHeader\":{\"labelValue\":\"964799\",\"primaryLabelValue\":\"964799\"}},{\"attributeHeader\":{\"labelValue\":\"964801\",\"primaryLabelValue\":\"964801\"}},{\"attributeHeader\":{\"labelValue\":\"964802\",\"primaryLabelValue\":\"964802\"}},{\"attributeHeader\":{\"labelValue\":\"964803\",\"primaryLabelValue\":\"964803\"}},{\"attributeHeader\":{\"labelValue\":\"964804\",\"primaryLabelValue\":\"964804\"}},{\"attributeHeader\":{\"labelValue\":\"964805\",\"primaryLabelValue\":\"964805\"}},{\"attributeHeader\":{\"labelValue\":\"964808\",\"primaryLabelValue\":\"964808\"}},{\"attributeHeader\":{\"labelValue\":\"964809\",\"primaryLabelValue\":\"964809\"}},{\"attributeHeader\":{\"labelValue\":\"964812\",\"primaryLabelValue\":\"964812\"}},{\"attributeHeader\":{\"labelValue\":\"964813\",\"primaryLabelValue\":\"964813\"}},{\"attributeHeader\":{\"labelValue\":\"964814\",\"primaryLabelValue\":\"964814\"}},{\"attributeHeader\":{\"labelValue\":\"964815\",\"primaryLabelValue\":\"964815\"}},{\"attributeHeader\":{\"labelValue\":\"964816\",\"primaryLabelValue\":\"964816\"}},{\"attributeHeader\":{\"labelValue\":\"964817\",\"primaryLabelValue\":\"964817\"}},{\"attributeHeader\":{\"labelValue\":\"964818\",\"primaryLabelValue\":\"964818\"}},{\"attributeHeader\":{\"labelValue\":\"964819\",\"primaryLabelValue\":\"964819\"}},{\"attributeHeader\":{\"labelValue\":\"964820\",\"primaryLabelValue\":\"964820\"}},{\"attributeHeader\":{\"labelValue\":\"964822\",\"primaryLabelValue\":\"964822\"}},{\"attributeHeader\":{\"labelValue\":\"964823\",\"primaryLabelValue\":\"964823\"}},{\"attributeHeader\":{\"labelValue\":\"964824\",\"primaryLabelValue\":\"964824\"}},{\"attributeHeader\":{\"labelValue\":\"964825\",\"primaryLabelValue\":\"964825\"}},{\"attributeHeader\":{\"labelValue\":\"964826\",\"primaryLabelValue\":\"964826\"}},{\"attributeHeader\":{\"labelValue\":\"964831\",\"primaryLabelValue\":\"964831\"}},{\"attributeHeader\":{\"labelValue\":\"964833\",\"primaryLabelValue\":\"964833\"}},{\"attributeHeader\":{\"labelValue\":\"964835\",\"primaryLabelValue\":\"964835\"}},{\"attributeHeader\":{\"labelValue\":\"964837\",\"primaryLabelValue\":\"964837\"}},{\"attributeHeader\":{\"labelValue\":\"964839\",\"primaryLabelValue\":\"964839\"}},{\"attributeHeader\":{\"labelValue\":\"964841\",\"primaryLabelValue\":\"964841\"}},{\"attributeHeader\":{\"labelValue\":\"964843\",\"primaryLabelValue\":\"964843\"}},{\"attributeHeader\":{\"labelValue\":\"964844\",\"primaryLabelValue\":\"964844\"}},{\"attributeHeader\":{\"labelValue\":\"964845\",\"primaryLabelValue\":\"964845\"}},{\"attributeHeader\":{\"labelValue\":\"964846\",\"primaryLabelValue\":\"964846\"}},{\"attributeHeader\":{\"labelValue\":\"964848\",\"primaryLabelValue\":\"964848\"}},{\"attributeHeader\":{\"labelValue\":\"964849\",\"primaryLabelValue\":\"964849\"}},{\"attributeHeader\":{\"labelValue\":\"964850\",\"primaryLabelValue\":\"964850\"}},{\"attributeHeader\":{\"labelValue\":\"964851\",\"primaryLabelValue\":\"964851\"}},{\"attributeHeader\":{\"labelValue\":\"964852\",\"primaryLabelValue\":\"964852\"}},{\"attributeHeader\":{\"labelValue\":\"964854\",\"primaryLabelValue\":\"964854\"}},{\"attributeHeader\":{\"labelValue\":\"964855\",\"primaryLabelValue\":\"964855\"}},{\"attributeHeader\":{\"labelValue\":\"964856\",\"primaryLabelValue\":\"964856\"}},{\"attributeHeader\":{\"labelValue\":\"964858\",\"primaryLabelValue\":\"964858\"}},{\"attributeHeader\":{\"labelValue\":\"964860\",\"primaryLabelValue\":\"964860\"}},{\"attributeHeader\":{\"labelValue\":\"964862\",\"primaryLabelValue\":\"964862\"}},{\"attributeHeader\":{\"labelValue\":\"964864\",\"primaryLabelValue\":\"964864\"}},{\"attributeHeader\":{\"labelValue\":\"964865\",\"primaryLabelValue\":\"964865\"}},{\"attributeHeader\":{\"labelValue\":\"964866\",\"primaryLabelValue\":\"964866\"}},{\"attributeHeader\":{\"labelValue\":\"964868\",\"primaryLabelValue\":\"964868\"}},{\"attributeHeader\":{\"labelValue\":\"964870\",\"primaryLabelValue\":\"964870\"}},{\"attributeHeader\":{\"labelValue\":\"964871\",\"primaryLabelValue\":\"964871\"}},{\"attributeHeader\":{\"labelValue\":\"964873\",\"primaryLabelValue\":\"964873\"}},{\"attributeHeader\":{\"labelValue\":\"964875\",\"primaryLabelValue\":\"964875\"}},{\"attributeHeader\":{\"labelValue\":\"964877\",\"primaryLabelValue\":\"964877\"}},{\"attributeHeader\":{\"labelValue\":\"964878\",\"primaryLabelValue\":\"964878\"}},{\"attributeHeader\":{\"labelValue\":\"964879\",\"primaryLabelValue\":\"964879\"}},{\"attributeHeader\":{\"labelValue\":\"964880\",\"primaryLabelValue\":\"964880\"}},{\"attributeHeader\":{\"labelValue\":\"964881\",\"primaryLabelValue\":\"964881\"}},{\"attributeHeader\":{\"labelValue\":\"964882\",\"primaryLabelValue\":\"964882\"}},{\"attributeHeader\":{\"labelValue\":\"964883\",\"primaryLabelValue\":\"964883\"}},{\"attributeHeader\":{\"labelValue\":\"964884\",\"primaryLabelValue\":\"964884\"}},{\"attributeHeader\":{\"labelValue\":\"964885\",\"primaryLabelValue\":\"964885\"}},{\"attributeHeader\":{\"labelValue\":\"964886\",\"primaryLabelValue\":\"964886\"}},{\"attributeHeader\":{\"labelValue\":\"964887\",\"primaryLabelValue\":\"964887\"}},{\"attributeHeader\":{\"labelValue\":\"964888\",\"primaryLabelValue\":\"964888\"}},{\"attributeHeader\":{\"labelValue\":\"964890\",\"primaryLabelValue\":\"964890\"}},{\"attributeHeader\":{\"labelValue\":\"964891\",\"primaryLabelValue\":\"964891\"}},{\"attributeHeader\":{\"labelValue\":\"964892\",\"primaryLabelValue\":\"964892\"}},{\"attributeHeader\":{\"labelValue\":\"964893\",\"primaryLabelValue\":\"964893\"}},{\"attributeHeader\":{\"labelValue\":\"964894\",\"primaryLabelValue\":\"964894\"}},{\"attributeHeader\":{\"labelValue\":\"964896\",\"primaryLabelValue\":\"964896\"}},{\"attributeHeader\":{\"labelValue\":\"964897\",\"primaryLabelValue\":\"964897\"}},{\"attributeHeader\":{\"labelValue\":\"964898\",\"primaryLabelValue\":\"964898\"}},{\"attributeHeader\":{\"labelValue\":\"964900\",\"primaryLabelValue\":\"964900\"}},{\"attributeHeader\":{\"labelValue\":\"964901\",\"primaryLabelValue\":\"964901\"}},{\"attributeHeader\":{\"labelValue\":\"964902\",\"primaryLabelValue\":\"964902\"}},{\"attributeHeader\":{\"labelValue\":\"964903\",\"primaryLabelValue\":\"964903\"}},{\"attributeHeader\":{\"labelValue\":\"964905\",\"primaryLabelValue\":\"964905\"}},{\"attributeHeader\":{\"labelValue\":\"964907\",\"primaryLabelValue\":\"964907\"}},{\"attributeHeader\":{\"labelValue\":\"964909\",\"primaryLabelValue\":\"964909\"}},{\"attributeHeader\":{\"labelValue\":\"964911\",\"primaryLabelValue\":\"964911\"}},{\"attributeHeader\":{\"labelValue\":\"964912\",\"primaryLabelValue\":\"964912\"}},{\"attributeHeader\":{\"labelValue\":\"964914\",\"primaryLabelValue\":\"964914\"}},{\"attributeHeader\":{\"labelValue\":\"964915\",\"primaryLabelValue\":\"964915\"}},{\"attributeHeader\":{\"labelValue\":\"964917\",\"primaryLabelValue\":\"964917\"}},{\"attributeHeader\":{\"labelValue\":\"964919\",\"primaryLabelValue\":\"964919\"}},{\"attributeHeader\":{\"labelValue\":\"964921\",\"primaryLabelValue\":\"964921\"}},{\"attributeHeader\":{\"labelValue\":\"964923\",\"primaryLabelValue\":\"964923\"}},{\"attributeHeader\":{\"labelValue\":\"964924\",\"primaryLabelValue\":\"964924\"}},{\"attributeHeader\":{\"labelValue\":\"964926\",\"primaryLabelValue\":\"964926\"}},{\"attributeHeader\":{\"labelValue\":\"964928\",\"primaryLabelValue\":\"964928\"}},{\"attributeHeader\":{\"labelValue\":\"964929\",\"primaryLabelValue\":\"964929\"}},{\"attributeHeader\":{\"labelValue\":\"964930\",\"primaryLabelValue\":\"964930\"}},{\"attributeHeader\":{\"labelValue\":\"964931\",\"primaryLabelValue\":\"964931\"}},{\"attributeHeader\":{\"labelValue\":\"964933\",\"primaryLabelValue\":\"964933\"}},{\"attributeHeader\":{\"labelValue\":\"964935\",\"primaryLabelValue\":\"964935\"}},{\"attributeHeader\":{\"labelValue\":\"964936\",\"primaryLabelValue\":\"964936\"}},{\"attributeHeader\":{\"labelValue\":\"964937\",\"primaryLabelValue\":\"964937\"}},{\"attributeHeader\":{\"labelValue\":\"964939\",\"primaryLabelValue\":\"964939\"}},{\"attributeHeader\":{\"labelValue\":\"964940\",\"primaryLabelValue\":\"964940\"}},{\"attributeHeader\":{\"labelValue\":\"964942\",\"primaryLabelValue\":\"964942\"}},{\"attributeHeader\":{\"labelValue\":\"964943\",\"primaryLabelValue\":\"964943\"}},{\"attributeHeader\":{\"labelValue\":\"964944\",\"primaryLabelValue\":\"964944\"}},{\"attributeHeader\":{\"labelValue\":\"964946\",\"primaryLabelValue\":\"964946\"}},{\"attributeHeader\":{\"labelValue\":\"964947\",\"primaryLabelValue\":\"964947\"}},{\"attributeHeader\":{\"labelValue\":\"964948\",\"primaryLabelValue\":\"964948\"}},{\"attributeHeader\":{\"labelValue\":\"964949\",\"primaryLabelValue\":\"964949\"}},{\"attributeHeader\":{\"labelValue\":\"964950\",\"primaryLabelValue\":\"964950\"}},{\"attributeHeader\":{\"labelValue\":\"964952\",\"primaryLabelValue\":\"964952\"}},{\"attributeHeader\":{\"labelValue\":\"964953\",\"primaryLabelValue\":\"964953\"}},{\"attributeHeader\":{\"labelValue\":\"964954\",\"primaryLabelValue\":\"964954\"}},{\"attributeHeader\":{\"labelValue\":\"964956\",\"primaryLabelValue\":\"964956\"}},{\"attributeHeader\":{\"labelValue\":\"964958\",\"primaryLabelValue\":\"964958\"}},{\"attributeHeader\":{\"labelValue\":\"964960\",\"primaryLabelValue\":\"964960\"}},{\"attributeHeader\":{\"labelValue\":\"964962\",\"primaryLabelValue\":\"964962\"}},{\"attributeHeader\":{\"labelValue\":\"964964\",\"primaryLabelValue\":\"964964\"}},{\"attributeHeader\":{\"labelValue\":\"964965\",\"primaryLabelValue\":\"964965\"}},{\"attributeHeader\":{\"labelValue\":\"964966\",\"primaryLabelValue\":\"964966\"}},{\"attributeHeader\":{\"labelValue\":\"964967\",\"primaryLabelValue\":\"964967\"}},{\"attributeHeader\":{\"labelValue\":\"964968\",\"primaryLabelValue\":\"964968\"}},{\"attributeHeader\":{\"labelValue\":\"964969\",\"primaryLabelValue\":\"964969\"}},{\"attributeHeader\":{\"labelValue\":\"964970\",\"primaryLabelValue\":\"964970\"}},{\"attributeHeader\":{\"labelValue\":\"964971\",\"primaryLabelValue\":\"964971\"}},{\"attributeHeader\":{\"labelValue\":\"964972\",\"primaryLabelValue\":\"964972\"}},{\"attributeHeader\":{\"labelValue\":\"964973\",\"primaryLabelValue\":\"964973\"}},{\"attributeHeader\":{\"labelValue\":\"964974\",\"primaryLabelValue\":\"964974\"}},{\"attributeHeader\":{\"labelValue\":\"964976\",\"primaryLabelValue\":\"964976\"}},{\"attributeHeader\":{\"labelValue\":\"964977\",\"primaryLabelValue\":\"964977\"}},{\"attributeHeader\":{\"labelValue\":\"964978\",\"primaryLabelValue\":\"964978\"}},{\"attributeHeader\":{\"labelValue\":\"964979\",\"primaryLabelValue\":\"964979\"}},{\"attributeHeader\":{\"labelValue\":\"964980\",\"primaryLabelValue\":\"964980\"}},{\"attributeHeader\":{\"labelValue\":\"964981\",\"primaryLabelValue\":\"964981\"}},{\"attributeHeader\":{\"labelValue\":\"964982\",\"primaryLabelValue\":\"964982\"}},{\"attributeHeader\":{\"labelValue\":\"964983\",\"primaryLabelValue\":\"964983\"}},{\"attributeHeader\":{\"labelValue\":\"964984\",\"primaryLabelValue\":\"964984\"}},{\"attributeHeader\":{\"labelValue\":\"964985\",\"primaryLabelValue\":\"964985\"}},{\"attributeHeader\":{\"labelValue\":\"964986\",\"primaryLabelValue\":\"964986\"}},{\"attributeHeader\":{\"labelValue\":\"964988\",\"primaryLabelValue\":\"964988\"}},{\"attributeHeader\":{\"labelValue\":\"964989\",\"primaryLabelValue\":\"964989\"}},{\"attributeHeader\":{\"labelValue\":\"964991\",\"primaryLabelValue\":\"964991\"}},{\"attributeHeader\":{\"labelValue\":\"964992\",\"primaryLabelValue\":\"964992\"}},{\"attributeHeader\":{\"labelValue\":\"964993\",\"primaryLabelValue\":\"964993\"}},{\"attributeHeader\":{\"labelValue\":\"964994\",\"primaryLabelValue\":\"964994\"}},{\"attributeHeader\":{\"labelValue\":\"964995\",\"primaryLabelValue\":\"964995\"}},{\"attributeHeader\":{\"labelValue\":\"964996\",\"primaryLabelValue\":\"964996\"}},{\"attributeHeader\":{\"labelValue\":\"964997\",\"primaryLabelValue\":\"964997\"}},{\"attributeHeader\":{\"labelValue\":\"964999\",\"primaryLabelValue\":\"964999\"}},{\"attributeHeader\":{\"labelValue\":\"965000\",\"primaryLabelValue\":\"965000\"}},{\"attributeHeader\":{\"labelValue\":\"965001\",\"primaryLabelValue\":\"965001\"}},{\"attributeHeader\":{\"labelValue\":\"965002\",\"primaryLabelValue\":\"965002\"}},{\"attributeHeader\":{\"labelValue\":\"965003\",\"primaryLabelValue\":\"965003\"}},{\"attributeHeader\":{\"labelValue\":\"965004\",\"primaryLabelValue\":\"965004\"}},{\"attributeHeader\":{\"labelValue\":\"965005\",\"primaryLabelValue\":\"965005\"}},{\"attributeHeader\":{\"labelValue\":\"965007\",\"primaryLabelValue\":\"965007\"}},{\"attributeHeader\":{\"labelValue\":\"965008\",\"primaryLabelValue\":\"965008\"}},{\"attributeHeader\":{\"labelValue\":\"965009\",\"primaryLabelValue\":\"965009\"}},{\"attributeHeader\":{\"labelValue\":\"965011\",\"primaryLabelValue\":\"965011\"}},{\"attributeHeader\":{\"labelValue\":\"965012\",\"primaryLabelValue\":\"965012\"}},{\"attributeHeader\":{\"labelValue\":\"965013\",\"primaryLabelValue\":\"965013\"}},{\"attributeHeader\":{\"labelValue\":\"965015\",\"primaryLabelValue\":\"965015\"}},{\"attributeHeader\":{\"labelValue\":\"965016\",\"primaryLabelValue\":\"965016\"}},{\"attributeHeader\":{\"labelValue\":\"965017\",\"primaryLabelValue\":\"965017\"}},{\"attributeHeader\":{\"labelValue\":\"965019\",\"primaryLabelValue\":\"965019\"}},{\"attributeHeader\":{\"labelValue\":\"965020\",\"primaryLabelValue\":\"965020\"}},{\"attributeHeader\":{\"labelValue\":\"965021\",\"primaryLabelValue\":\"965021\"}},{\"attributeHeader\":{\"labelValue\":\"965022\",\"primaryLabelValue\":\"965022\"}},{\"attributeHeader\":{\"labelValue\":\"965023\",\"primaryLabelValue\":\"965023\"}},{\"attributeHeader\":{\"labelValue\":\"965024\",\"primaryLabelValue\":\"965024\"}},{\"attributeHeader\":{\"labelValue\":\"965025\",\"primaryLabelValue\":\"965025\"}},{\"attributeHeader\":{\"labelValue\":\"965026\",\"primaryLabelValue\":\"965026\"}},{\"attributeHeader\":{\"labelValue\":\"965028\",\"primaryLabelValue\":\"965028\"}},{\"attributeHeader\":{\"labelValue\":\"965029\",\"primaryLabelValue\":\"965029\"}},{\"attributeHeader\":{\"labelValue\":\"965031\",\"primaryLabelValue\":\"965031\"}},{\"attributeHeader\":{\"labelValue\":\"965032\",\"primaryLabelValue\":\"965032\"}},{\"attributeHeader\":{\"labelValue\":\"965034\",\"primaryLabelValue\":\"965034\"}},{\"attributeHeader\":{\"labelValue\":\"965036\",\"primaryLabelValue\":\"965036\"}},{\"attributeHeader\":{\"labelValue\":\"965038\",\"primaryLabelValue\":\"965038\"}},{\"attributeHeader\":{\"labelValue\":\"965041\",\"primaryLabelValue\":\"965041\"}},{\"attributeHeader\":{\"labelValue\":\"965042\",\"primaryLabelValue\":\"965042\"}},{\"attributeHeader\":{\"labelValue\":\"965044\",\"primaryLabelValue\":\"965044\"}},{\"attributeHeader\":{\"labelValue\":\"965045\",\"primaryLabelValue\":\"965045\"}},{\"attributeHeader\":{\"labelValue\":\"965046\",\"primaryLabelValue\":\"965046\"}},{\"attributeHeader\":{\"labelValue\":\"965047\",\"primaryLabelValue\":\"965047\"}},{\"attributeHeader\":{\"labelValue\":\"965048\",\"primaryLabelValue\":\"965048\"}},{\"attributeHeader\":{\"labelValue\":\"965049\",\"primaryLabelValue\":\"965049\"}},{\"attributeHeader\":{\"labelValue\":\"965050\",\"primaryLabelValue\":\"965050\"}},{\"attributeHeader\":{\"labelValue\":\"965052\",\"primaryLabelValue\":\"965052\"}},{\"attributeHeader\":{\"labelValue\":\"965053\",\"primaryLabelValue\":\"965053\"}},{\"attributeHeader\":{\"labelValue\":\"965055\",\"primaryLabelValue\":\"965055\"}},{\"attributeHeader\":{\"labelValue\":\"965056\",\"primaryLabelValue\":\"965056\"}},{\"attributeHeader\":{\"labelValue\":\"965058\",\"primaryLabelValue\":\"965058\"}},{\"attributeHeader\":{\"labelValue\":\"965059\",\"primaryLabelValue\":\"965059\"}},{\"attributeHeader\":{\"labelValue\":\"965060\",\"primaryLabelValue\":\"965060\"}},{\"attributeHeader\":{\"labelValue\":\"965061\",\"primaryLabelValue\":\"965061\"}},{\"attributeHeader\":{\"labelValue\":\"965062\",\"primaryLabelValue\":\"965062\"}},{\"attributeHeader\":{\"labelValue\":\"965063\",\"primaryLabelValue\":\"965063\"}},{\"attributeHeader\":{\"labelValue\":\"965065\",\"primaryLabelValue\":\"965065\"}},{\"attributeHeader\":{\"labelValue\":\"965066\",\"primaryLabelValue\":\"965066\"}},{\"attributeHeader\":{\"labelValue\":\"965067\",\"primaryLabelValue\":\"965067\"}},{\"attributeHeader\":{\"labelValue\":\"965068\",\"primaryLabelValue\":\"965068\"}},{\"attributeHeader\":{\"labelValue\":\"965069\",\"primaryLabelValue\":\"965069\"}},{\"attributeHeader\":{\"labelValue\":\"965070\",\"primaryLabelValue\":\"965070\"}},{\"attributeHeader\":{\"labelValue\":\"965071\",\"primaryLabelValue\":\"965071\"}},{\"attributeHeader\":{\"labelValue\":\"965072\",\"primaryLabelValue\":\"965072\"}},{\"attributeHeader\":{\"labelValue\":\"965074\",\"primaryLabelValue\":\"965074\"}},{\"attributeHeader\":{\"labelValue\":\"965077\",\"primaryLabelValue\":\"965077\"}},{\"attributeHeader\":{\"labelValue\":\"965078\",\"primaryLabelValue\":\"965078\"}},{\"attributeHeader\":{\"labelValue\":\"965080\",\"primaryLabelValue\":\"965080\"}},{\"attributeHeader\":{\"labelValue\":\"965081\",\"primaryLabelValue\":\"965081\"}},{\"attributeHeader\":{\"labelValue\":\"965083\",\"primaryLabelValue\":\"965083\"}},{\"attributeHeader\":{\"labelValue\":\"965084\",\"primaryLabelValue\":\"965084\"}},{\"attributeHeader\":{\"labelValue\":\"965086\",\"primaryLabelValue\":\"965086\"}},{\"attributeHeader\":{\"labelValue\":\"965087\",\"primaryLabelValue\":\"965087\"}},{\"attributeHeader\":{\"labelValue\":\"965089\",\"primaryLabelValue\":\"965089\"}},{\"attributeHeader\":{\"labelValue\":\"965091\",\"primaryLabelValue\":\"965091\"}},{\"attributeHeader\":{\"labelValue\":\"965092\",\"primaryLabelValue\":\"965092\"}},{\"attributeHeader\":{\"labelValue\":\"965093\",\"primaryLabelValue\":\"965093\"}},{\"attributeHeader\":{\"labelValue\":\"965094\",\"primaryLabelValue\":\"965094\"}},{\"attributeHeader\":{\"labelValue\":\"965095\",\"primaryLabelValue\":\"965095\"}},{\"attributeHeader\":{\"labelValue\":\"965096\",\"primaryLabelValue\":\"965096\"}},{\"attributeHeader\":{\"labelValue\":\"965097\",\"primaryLabelValue\":\"965097\"}},{\"attributeHeader\":{\"labelValue\":\"965098\",\"primaryLabelValue\":\"965098\"}},{\"attributeHeader\":{\"labelValue\":\"965100\",\"primaryLabelValue\":\"965100\"}},{\"attributeHeader\":{\"labelValue\":\"965101\",\"primaryLabelValue\":\"965101\"}},{\"attributeHeader\":{\"labelValue\":\"965102\",\"primaryLabelValue\":\"965102\"}},{\"attributeHeader\":{\"labelValue\":\"965103\",\"primaryLabelValue\":\"965103\"}},{\"attributeHeader\":{\"labelValue\":\"965104\",\"primaryLabelValue\":\"965104\"}},{\"attributeHeader\":{\"labelValue\":\"965106\",\"primaryLabelValue\":\"965106\"}},{\"attributeHeader\":{\"labelValue\":\"965107\",\"primaryLabelValue\":\"965107\"}},{\"attributeHeader\":{\"labelValue\":\"965109\",\"primaryLabelValue\":\"965109\"}},{\"attributeHeader\":{\"labelValue\":\"965110\",\"primaryLabelValue\":\"965110\"}},{\"attributeHeader\":{\"labelValue\":\"965112\",\"primaryLabelValue\":\"965112\"}},{\"attributeHeader\":{\"labelValue\":\"965113\",\"primaryLabelValue\":\"965113\"}},{\"attributeHeader\":{\"labelValue\":\"965114\",\"primaryLabelValue\":\"965114\"}},{\"attributeHeader\":{\"labelValue\":\"965116\",\"primaryLabelValue\":\"965116\"}},{\"attributeHeader\":{\"labelValue\":\"965117\",\"primaryLabelValue\":\"965117\"}},{\"attributeHeader\":{\"labelValue\":\"965118\",\"primaryLabelValue\":\"965118\"}},{\"attributeHeader\":{\"labelValue\":\"965119\",\"primaryLabelValue\":\"965119\"}},{\"attributeHeader\":{\"labelValue\":\"965121\",\"primaryLabelValue\":\"965121\"}},{\"attributeHeader\":{\"labelValue\":\"965122\",\"primaryLabelValue\":\"965122\"}},{\"attributeHeader\":{\"labelValue\":\"965123\",\"primaryLabelValue\":\"965123\"}},{\"attributeHeader\":{\"labelValue\":\"965124\",\"primaryLabelValue\":\"965124\"}},{\"attributeHeader\":{\"labelValue\":\"965125\",\"primaryLabelValue\":\"965125\"}},{\"attributeHeader\":{\"labelValue\":\"965127\",\"primaryLabelValue\":\"965127\"}},{\"attributeHeader\":{\"labelValue\":\"965128\",\"primaryLabelValue\":\"965128\"}},{\"attributeHeader\":{\"labelValue\":\"965129\",\"primaryLabelValue\":\"965129\"}},{\"attributeHeader\":{\"labelValue\":\"965131\",\"primaryLabelValue\":\"965131\"}},{\"attributeHeader\":{\"labelValue\":\"965132\",\"primaryLabelValue\":\"965132\"}},{\"attributeHeader\":{\"labelValue\":\"965133\",\"primaryLabelValue\":\"965133\"}},{\"attributeHeader\":{\"labelValue\":\"965134\",\"primaryLabelValue\":\"965134\"}},{\"attributeHeader\":{\"labelValue\":\"965136\",\"primaryLabelValue\":\"965136\"}},{\"attributeHeader\":{\"labelValue\":\"965138\",\"primaryLabelValue\":\"965138\"}},{\"attributeHeader\":{\"labelValue\":\"965139\",\"primaryLabelValue\":\"965139\"}},{\"attributeHeader\":{\"labelValue\":\"965140\",\"primaryLabelValue\":\"965140\"}},{\"attributeHeader\":{\"labelValue\":\"965142\",\"primaryLabelValue\":\"965142\"}},{\"attributeHeader\":{\"labelValue\":\"965143\",\"primaryLabelValue\":\"965143\"}},{\"attributeHeader\":{\"labelValue\":\"965144\",\"primaryLabelValue\":\"965144\"}},{\"attributeHeader\":{\"labelValue\":\"965145\",\"primaryLabelValue\":\"965145\"}},{\"attributeHeader\":{\"labelValue\":\"965146\",\"primaryLabelValue\":\"965146\"}},{\"attributeHeader\":{\"labelValue\":\"965148\",\"primaryLabelValue\":\"965148\"}},{\"attributeHeader\":{\"labelValue\":\"965149\",\"primaryLabelValue\":\"965149\"}},{\"attributeHeader\":{\"labelValue\":\"965150\",\"primaryLabelValue\":\"965150\"}},{\"attributeHeader\":{\"labelValue\":\"965151\",\"primaryLabelValue\":\"965151\"}},{\"attributeHeader\":{\"labelValue\":\"965152\",\"primaryLabelValue\":\"965152\"}},{\"attributeHeader\":{\"labelValue\":\"965155\",\"primaryLabelValue\":\"965155\"}},{\"attributeHeader\":{\"labelValue\":\"965156\",\"primaryLabelValue\":\"965156\"}},{\"attributeHeader\":{\"labelValue\":\"965157\",\"primaryLabelValue\":\"965157\"}},{\"attributeHeader\":{\"labelValue\":\"965158\",\"primaryLabelValue\":\"965158\"}},{\"attributeHeader\":{\"labelValue\":\"965159\",\"primaryLabelValue\":\"965159\"}},{\"attributeHeader\":{\"labelValue\":\"965160\",\"primaryLabelValue\":\"965160\"}},{\"attributeHeader\":{\"labelValue\":\"965161\",\"primaryLabelValue\":\"965161\"}},{\"attributeHeader\":{\"labelValue\":\"965163\",\"primaryLabelValue\":\"965163\"}},{\"attributeHeader\":{\"labelValue\":\"965165\",\"primaryLabelValue\":\"965165\"}},{\"attributeHeader\":{\"labelValue\":\"965166\",\"primaryLabelValue\":\"965166\"}},{\"attributeHeader\":{\"labelValue\":\"965167\",\"primaryLabelValue\":\"965167\"}},{\"attributeHeader\":{\"labelValue\":\"965168\",\"primaryLabelValue\":\"965168\"}},{\"attributeHeader\":{\"labelValue\":\"965170\",\"primaryLabelValue\":\"965170\"}},{\"attributeHeader\":{\"labelValue\":\"965171\",\"primaryLabelValue\":\"965171\"}},{\"attributeHeader\":{\"labelValue\":\"965172\",\"primaryLabelValue\":\"965172\"}},{\"attributeHeader\":{\"labelValue\":\"965173\",\"primaryLabelValue\":\"965173\"}},{\"attributeHeader\":{\"labelValue\":\"965174\",\"primaryLabelValue\":\"965174\"}},{\"attributeHeader\":{\"labelValue\":\"965176\",\"primaryLabelValue\":\"965176\"}},{\"attributeHeader\":{\"labelValue\":\"965178\",\"primaryLabelValue\":\"965178\"}},{\"attributeHeader\":{\"labelValue\":\"965180\",\"primaryLabelValue\":\"965180\"}},{\"attributeHeader\":{\"labelValue\":\"965181\",\"primaryLabelValue\":\"965181\"}},{\"attributeHeader\":{\"labelValue\":\"965182\",\"primaryLabelValue\":\"965182\"}},{\"attributeHeader\":{\"labelValue\":\"965184\",\"primaryLabelValue\":\"965184\"}},{\"attributeHeader\":{\"labelValue\":\"965186\",\"primaryLabelValue\":\"965186\"}},{\"attributeHeader\":{\"labelValue\":\"965187\",\"primaryLabelValue\":\"965187\"}},{\"attributeHeader\":{\"labelValue\":\"965188\",\"primaryLabelValue\":\"965188\"}},{\"attributeHeader\":{\"labelValue\":\"965189\",\"primaryLabelValue\":\"965189\"}},{\"attributeHeader\":{\"labelValue\":\"965190\",\"primaryLabelValue\":\"965190\"}},{\"attributeHeader\":{\"labelValue\":\"965191\",\"primaryLabelValue\":\"965191\"}},{\"attributeHeader\":{\"labelValue\":\"965192\",\"primaryLabelValue\":\"965192\"}},{\"attributeHeader\":{\"labelValue\":\"965194\",\"primaryLabelValue\":\"965194\"}},{\"attributeHeader\":{\"labelValue\":\"965196\",\"primaryLabelValue\":\"965196\"}},{\"attributeHeader\":{\"labelValue\":\"965197\",\"primaryLabelValue\":\"965197\"}},{\"attributeHeader\":{\"labelValue\":\"965199\",\"primaryLabelValue\":\"965199\"}},{\"attributeHeader\":{\"labelValue\":\"965200\",\"primaryLabelValue\":\"965200\"}},{\"attributeHeader\":{\"labelValue\":\"965201\",\"primaryLabelValue\":\"965201\"}},{\"attributeHeader\":{\"labelValue\":\"965202\",\"primaryLabelValue\":\"965202\"}},{\"attributeHeader\":{\"labelValue\":\"965203\",\"primaryLabelValue\":\"965203\"}},{\"attributeHeader\":{\"labelValue\":\"965205\",\"primaryLabelValue\":\"965205\"}},{\"attributeHeader\":{\"labelValue\":\"965206\",\"primaryLabelValue\":\"965206\"}},{\"attributeHeader\":{\"labelValue\":\"965207\",\"primaryLabelValue\":\"965207\"}},{\"attributeHeader\":{\"labelValue\":\"965208\",\"primaryLabelValue\":\"965208\"}},{\"attributeHeader\":{\"labelValue\":\"965209\",\"primaryLabelValue\":\"965209\"}},{\"attributeHeader\":{\"labelValue\":\"965210\",\"primaryLabelValue\":\"965210\"}},{\"attributeHeader\":{\"labelValue\":\"965212\",\"primaryLabelValue\":\"965212\"}},{\"attributeHeader\":{\"labelValue\":\"965213\",\"primaryLabelValue\":\"965213\"}},{\"attributeHeader\":{\"labelValue\":\"965215\",\"primaryLabelValue\":\"965215\"}},{\"attributeHeader\":{\"labelValue\":\"965217\",\"primaryLabelValue\":\"965217\"}},{\"attributeHeader\":{\"labelValue\":\"965219\",\"primaryLabelValue\":\"965219\"}},{\"attributeHeader\":{\"labelValue\":\"965220\",\"primaryLabelValue\":\"965220\"}},{\"attributeHeader\":{\"labelValue\":\"965221\",\"primaryLabelValue\":\"965221\"}},{\"attributeHeader\":{\"labelValue\":\"965222\",\"primaryLabelValue\":\"965222\"}},{\"attributeHeader\":{\"labelValue\":\"965223\",\"primaryLabelValue\":\"965223\"}},{\"attributeHeader\":{\"labelValue\":\"965224\",\"primaryLabelValue\":\"965224\"}},{\"attributeHeader\":{\"labelValue\":\"965226\",\"primaryLabelValue\":\"965226\"}},{\"attributeHeader\":{\"labelValue\":\"965228\",\"primaryLabelValue\":\"965228\"}},{\"attributeHeader\":{\"labelValue\":\"965229\",\"primaryLabelValue\":\"965229\"}},{\"attributeHeader\":{\"labelValue\":\"965230\",\"primaryLabelValue\":\"965230\"}},{\"attributeHeader\":{\"labelValue\":\"965232\",\"primaryLabelValue\":\"965232\"}},{\"attributeHeader\":{\"labelValue\":\"965233\",\"primaryLabelValue\":\"965233\"}},{\"attributeHeader\":{\"labelValue\":\"965234\",\"primaryLabelValue\":\"965234\"}},{\"attributeHeader\":{\"labelValue\":\"965235\",\"primaryLabelValue\":\"965235\"}},{\"attributeHeader\":{\"labelValue\":\"965236\",\"primaryLabelValue\":\"965236\"}},{\"attributeHeader\":{\"labelValue\":\"965237\",\"primaryLabelValue\":\"965237\"}},{\"attributeHeader\":{\"labelValue\":\"965238\",\"primaryLabelValue\":\"965238\"}},{\"attributeHeader\":{\"labelValue\":\"965239\",\"primaryLabelValue\":\"965239\"}},{\"attributeHeader\":{\"labelValue\":\"965240\",\"primaryLabelValue\":\"965240\"}},{\"attributeHeader\":{\"labelValue\":\"965241\",\"primaryLabelValue\":\"965241\"}},{\"attributeHeader\":{\"labelValue\":\"965242\",\"primaryLabelValue\":\"965242\"}},{\"attributeHeader\":{\"labelValue\":\"965243\",\"primaryLabelValue\":\"965243\"}},{\"attributeHeader\":{\"labelValue\":\"965244\",\"primaryLabelValue\":\"965244\"}},{\"attributeHeader\":{\"labelValue\":\"965245\",\"primaryLabelValue\":\"965245\"}},{\"attributeHeader\":{\"labelValue\":\"965246\",\"primaryLabelValue\":\"965246\"}},{\"attributeHeader\":{\"labelValue\":\"965248\",\"primaryLabelValue\":\"965248\"}},{\"attributeHeader\":{\"labelValue\":\"965249\",\"primaryLabelValue\":\"965249\"}},{\"attributeHeader\":{\"labelValue\":\"965250\",\"primaryLabelValue\":\"965250\"}},{\"attributeHeader\":{\"labelValue\":\"965252\",\"primaryLabelValue\":\"965252\"}},{\"attributeHeader\":{\"labelValue\":\"965253\",\"primaryLabelValue\":\"965253\"}},{\"attributeHeader\":{\"labelValue\":\"965254\",\"primaryLabelValue\":\"965254\"}},{\"attributeHeader\":{\"labelValue\":\"965256\",\"primaryLabelValue\":\"965256\"}},{\"attributeHeader\":{\"labelValue\":\"965259\",\"primaryLabelValue\":\"965259\"}},{\"attributeHeader\":{\"labelValue\":\"965260\",\"primaryLabelValue\":\"965260\"}},{\"attributeHeader\":{\"labelValue\":\"965261\",\"primaryLabelValue\":\"965261\"}},{\"attributeHeader\":{\"labelValue\":\"965262\",\"primaryLabelValue\":\"965262\"}},{\"attributeHeader\":{\"labelValue\":\"965263\",\"primaryLabelValue\":\"965263\"}},{\"attributeHeader\":{\"labelValue\":\"965264\",\"primaryLabelValue\":\"965264\"}},{\"attributeHeader\":{\"labelValue\":\"965265\",\"primaryLabelValue\":\"965265\"}},{\"attributeHeader\":{\"labelValue\":\"965266\",\"primaryLabelValue\":\"965266\"}},{\"attributeHeader\":{\"labelValue\":\"965267\",\"primaryLabelValue\":\"965267\"}},{\"attributeHeader\":{\"labelValue\":\"965268\",\"primaryLabelValue\":\"965268\"}},{\"attributeHeader\":{\"labelValue\":\"965269\",\"primaryLabelValue\":\"965269\"}},{\"attributeHeader\":{\"labelValue\":\"965270\",\"primaryLabelValue\":\"965270\"}},{\"attributeHeader\":{\"labelValue\":\"965271\",\"primaryLabelValue\":\"965271\"}},{\"attributeHeader\":{\"labelValue\":\"965272\",\"primaryLabelValue\":\"965272\"}},{\"attributeHeader\":{\"labelValue\":\"965273\",\"primaryLabelValue\":\"965273\"}},{\"attributeHeader\":{\"labelValue\":\"965274\",\"primaryLabelValue\":\"965274\"}},{\"attributeHeader\":{\"labelValue\":\"965275\",\"primaryLabelValue\":\"965275\"}},{\"attributeHeader\":{\"labelValue\":\"965276\",\"primaryLabelValue\":\"965276\"}},{\"attributeHeader\":{\"labelValue\":\"965278\",\"primaryLabelValue\":\"965278\"}},{\"attributeHeader\":{\"labelValue\":\"965279\",\"primaryLabelValue\":\"965279\"}},{\"attributeHeader\":{\"labelValue\":\"965280\",\"primaryLabelValue\":\"965280\"}},{\"attributeHeader\":{\"labelValue\":\"965282\",\"primaryLabelValue\":\"965282\"}},{\"attributeHeader\":{\"labelValue\":\"965283\",\"primaryLabelValue\":\"965283\"}},{\"attributeHeader\":{\"labelValue\":\"965284\",\"primaryLabelValue\":\"965284\"}},{\"attributeHeader\":{\"labelValue\":\"965285\",\"primaryLabelValue\":\"965285\"}},{\"attributeHeader\":{\"labelValue\":\"965288\",\"primaryLabelValue\":\"965288\"}},{\"attributeHeader\":{\"labelValue\":\"965290\",\"primaryLabelValue\":\"965290\"}},{\"attributeHeader\":{\"labelValue\":\"965291\",\"primaryLabelValue\":\"965291\"}},{\"attributeHeader\":{\"labelValue\":\"965292\",\"primaryLabelValue\":\"965292\"}},{\"attributeHeader\":{\"labelValue\":\"965293\",\"primaryLabelValue\":\"965293\"}},{\"attributeHeader\":{\"labelValue\":\"965294\",\"primaryLabelValue\":\"965294\"}},{\"attributeHeader\":{\"labelValue\":\"965295\",\"primaryLabelValue\":\"965295\"}},{\"attributeHeader\":{\"labelValue\":\"965296\",\"primaryLabelValue\":\"965296\"}},{\"attributeHeader\":{\"labelValue\":\"965297\",\"primaryLabelValue\":\"965297\"}},{\"attributeHeader\":{\"labelValue\":\"965298\",\"primaryLabelValue\":\"965298\"}},{\"attributeHeader\":{\"labelValue\":\"965299\",\"primaryLabelValue\":\"965299\"}},{\"attributeHeader\":{\"labelValue\":\"965300\",\"primaryLabelValue\":\"965300\"}},{\"attributeHeader\":{\"labelValue\":\"965301\",\"primaryLabelValue\":\"965301\"}},{\"attributeHeader\":{\"labelValue\":\"965302\",\"primaryLabelValue\":\"965302\"}},{\"attributeHeader\":{\"labelValue\":\"965304\",\"primaryLabelValue\":\"965304\"}},{\"attributeHeader\":{\"labelValue\":\"965306\",\"primaryLabelValue\":\"965306\"}},{\"attributeHeader\":{\"labelValue\":\"965307\",\"primaryLabelValue\":\"965307\"}},{\"attributeHeader\":{\"labelValue\":\"965308\",\"primaryLabelValue\":\"965308\"}},{\"attributeHeader\":{\"labelValue\":\"965310\",\"primaryLabelValue\":\"965310\"}},{\"attributeHeader\":{\"labelValue\":\"965311\",\"primaryLabelValue\":\"965311\"}},{\"attributeHeader\":{\"labelValue\":\"965313\",\"primaryLabelValue\":\"965313\"}},{\"attributeHeader\":{\"labelValue\":\"965314\",\"primaryLabelValue\":\"965314\"}},{\"attributeHeader\":{\"labelValue\":\"965315\",\"primaryLabelValue\":\"965315\"}},{\"attributeHeader\":{\"labelValue\":\"965316\",\"primaryLabelValue\":\"965316\"}},{\"attributeHeader\":{\"labelValue\":\"965317\",\"primaryLabelValue\":\"965317\"}},{\"attributeHeader\":{\"labelValue\":\"965318\",\"primaryLabelValue\":\"965318\"}},{\"attributeHeader\":{\"labelValue\":\"965319\",\"primaryLabelValue\":\"965319\"}},{\"attributeHeader\":{\"labelValue\":\"965320\",\"primaryLabelValue\":\"965320\"}},{\"attributeHeader\":{\"labelValue\":\"965321\",\"primaryLabelValue\":\"965321\"}},{\"attributeHeader\":{\"labelValue\":\"965322\",\"primaryLabelValue\":\"965322\"}},{\"attributeHeader\":{\"labelValue\":\"965323\",\"primaryLabelValue\":\"965323\"}},{\"attributeHeader\":{\"labelValue\":\"965325\",\"primaryLabelValue\":\"965325\"}},{\"attributeHeader\":{\"labelValue\":\"965326\",\"primaryLabelValue\":\"965326\"}},{\"attributeHeader\":{\"labelValue\":\"965328\",\"primaryLabelValue\":\"965328\"}},{\"attributeHeader\":{\"labelValue\":\"965329\",\"primaryLabelValue\":\"965329\"}},{\"attributeHeader\":{\"labelValue\":\"965331\",\"primaryLabelValue\":\"965331\"}},{\"attributeHeader\":{\"labelValue\":\"965332\",\"primaryLabelValue\":\"965332\"}},{\"attributeHeader\":{\"labelValue\":\"965333\",\"primaryLabelValue\":\"965333\"}},{\"attributeHeader\":{\"labelValue\":\"965335\",\"primaryLabelValue\":\"965335\"}},{\"attributeHeader\":{\"labelValue\":\"965336\",\"primaryLabelValue\":\"965336\"}},{\"attributeHeader\":{\"labelValue\":\"965337\",\"primaryLabelValue\":\"965337\"}},{\"attributeHeader\":{\"labelValue\":\"965338\",\"primaryLabelValue\":\"965338\"}},{\"attributeHeader\":{\"labelValue\":\"965339\",\"primaryLabelValue\":\"965339\"}},{\"attributeHeader\":{\"labelValue\":\"965340\",\"primaryLabelValue\":\"965340\"}},{\"attributeHeader\":{\"labelValue\":\"965341\",\"primaryLabelValue\":\"965341\"}},{\"attributeHeader\":{\"labelValue\":\"965342\",\"primaryLabelValue\":\"965342\"}},{\"attributeHeader\":{\"labelValue\":\"965343\",\"primaryLabelValue\":\"965343\"}},{\"attributeHeader\":{\"labelValue\":\"965345\",\"primaryLabelValue\":\"965345\"}},{\"attributeHeader\":{\"labelValue\":\"965346\",\"primaryLabelValue\":\"965346\"}},{\"attributeHeader\":{\"labelValue\":\"965347\",\"primaryLabelValue\":\"965347\"}},{\"attributeHeader\":{\"labelValue\":\"965349\",\"primaryLabelValue\":\"965349\"}},{\"attributeHeader\":{\"labelValue\":\"965350\",\"primaryLabelValue\":\"965350\"}},{\"attributeHeader\":{\"labelValue\":\"965351\",\"primaryLabelValue\":\"965351\"}},{\"attributeHeader\":{\"labelValue\":\"965353\",\"primaryLabelValue\":\"965353\"}},{\"attributeHeader\":{\"labelValue\":\"965354\",\"primaryLabelValue\":\"965354\"}},{\"attributeHeader\":{\"labelValue\":\"965355\",\"primaryLabelValue\":\"965355\"}},{\"attributeHeader\":{\"labelValue\":\"965357\",\"primaryLabelValue\":\"965357\"}},{\"attributeHeader\":{\"labelValue\":\"965359\",\"primaryLabelValue\":\"965359\"}},{\"attributeHeader\":{\"labelValue\":\"965360\",\"primaryLabelValue\":\"965360\"}},{\"attributeHeader\":{\"labelValue\":\"965361\",\"primaryLabelValue\":\"965361\"}},{\"attributeHeader\":{\"labelValue\":\"965362\",\"primaryLabelValue\":\"965362\"}},{\"attributeHeader\":{\"labelValue\":\"965363\",\"primaryLabelValue\":\"965363\"}},{\"attributeHeader\":{\"labelValue\":\"965365\",\"primaryLabelValue\":\"965365\"}},{\"attributeHeader\":{\"labelValue\":\"965367\",\"primaryLabelValue\":\"965367\"}},{\"attributeHeader\":{\"labelValue\":\"965368\",\"primaryLabelValue\":\"965368\"}},{\"attributeHeader\":{\"labelValue\":\"965370\",\"primaryLabelValue\":\"965370\"}},{\"attributeHeader\":{\"labelValue\":\"965371\",\"primaryLabelValue\":\"965371\"}},{\"attributeHeader\":{\"labelValue\":\"965373\",\"primaryLabelValue\":\"965373\"}},{\"attributeHeader\":{\"labelValue\":\"965375\",\"primaryLabelValue\":\"965375\"}},{\"attributeHeader\":{\"labelValue\":\"965376\",\"primaryLabelValue\":\"965376\"}},{\"attributeHeader\":{\"labelValue\":\"965377\",\"primaryLabelValue\":\"965377\"}},{\"attributeHeader\":{\"labelValue\":\"965378\",\"primaryLabelValue\":\"965378\"}},{\"attributeHeader\":{\"labelValue\":\"965379\",\"primaryLabelValue\":\"965379\"}},{\"attributeHeader\":{\"labelValue\":\"965381\",\"primaryLabelValue\":\"965381\"}},{\"attributeHeader\":{\"labelValue\":\"965382\",\"primaryLabelValue\":\"965382\"}},{\"attributeHeader\":{\"labelValue\":\"965384\",\"primaryLabelValue\":\"965384\"}},{\"attributeHeader\":{\"labelValue\":\"965385\",\"primaryLabelValue\":\"965385\"}},{\"attributeHeader\":{\"labelValue\":\"965386\",\"primaryLabelValue\":\"965386\"}},{\"attributeHeader\":{\"labelValue\":\"965387\",\"primaryLabelValue\":\"965387\"}},{\"attributeHeader\":{\"labelValue\":\"965389\",\"primaryLabelValue\":\"965389\"}},{\"attributeHeader\":{\"labelValue\":\"965390\",\"primaryLabelValue\":\"965390\"}},{\"attributeHeader\":{\"labelValue\":\"965392\",\"primaryLabelValue\":\"965392\"}},{\"attributeHeader\":{\"labelValue\":\"965393\",\"primaryLabelValue\":\"965393\"}},{\"attributeHeader\":{\"labelValue\":\"965394\",\"primaryLabelValue\":\"965394\"}},{\"attributeHeader\":{\"labelValue\":\"965396\",\"primaryLabelValue\":\"965396\"}},{\"attributeHeader\":{\"labelValue\":\"965397\",\"primaryLabelValue\":\"965397\"}},{\"attributeHeader\":{\"labelValue\":\"965399\",\"primaryLabelValue\":\"965399\"}},{\"attributeHeader\":{\"labelValue\":\"965400\",\"primaryLabelValue\":\"965400\"}},{\"attributeHeader\":{\"labelValue\":\"965401\",\"primaryLabelValue\":\"965401\"}},{\"attributeHeader\":{\"labelValue\":\"965402\",\"primaryLabelValue\":\"965402\"}},{\"attributeHeader\":{\"labelValue\":\"965403\",\"primaryLabelValue\":\"965403\"}},{\"attributeHeader\":{\"labelValue\":\"965404\",\"primaryLabelValue\":\"965404\"}},{\"attributeHeader\":{\"labelValue\":\"965405\",\"primaryLabelValue\":\"965405\"}},{\"attributeHeader\":{\"labelValue\":\"965406\",\"primaryLabelValue\":\"965406\"}},{\"attributeHeader\":{\"labelValue\":\"965407\",\"primaryLabelValue\":\"965407\"}},{\"attributeHeader\":{\"labelValue\":\"965408\",\"primaryLabelValue\":\"965408\"}},{\"attributeHeader\":{\"labelValue\":\"965409\",\"primaryLabelValue\":\"965409\"}},{\"attributeHeader\":{\"labelValue\":\"965410\",\"primaryLabelValue\":\"965410\"}},{\"attributeHeader\":{\"labelValue\":\"965411\",\"primaryLabelValue\":\"965411\"}},{\"attributeHeader\":{\"labelValue\":\"965413\",\"primaryLabelValue\":\"965413\"}},{\"attributeHeader\":{\"labelValue\":\"965415\",\"primaryLabelValue\":\"965415\"}},{\"attributeHeader\":{\"labelValue\":\"965416\",\"primaryLabelValue\":\"965416\"}},{\"attributeHeader\":{\"labelValue\":\"965417\",\"primaryLabelValue\":\"965417\"}},{\"attributeHeader\":{\"labelValue\":\"965418\",\"primaryLabelValue\":\"965418\"}},{\"attributeHeader\":{\"labelValue\":\"965419\",\"primaryLabelValue\":\"965419\"}},{\"attributeHeader\":{\"labelValue\":\"965421\",\"primaryLabelValue\":\"965421\"}},{\"attributeHeader\":{\"labelValue\":\"965423\",\"primaryLabelValue\":\"965423\"}},{\"attributeHeader\":{\"labelValue\":\"965425\",\"primaryLabelValue\":\"965425\"}},{\"attributeHeader\":{\"labelValue\":\"965427\",\"primaryLabelValue\":\"965427\"}},{\"attributeHeader\":{\"labelValue\":\"965428\",\"primaryLabelValue\":\"965428\"}},{\"attributeHeader\":{\"labelValue\":\"965429\",\"primaryLabelValue\":\"965429\"}},{\"attributeHeader\":{\"labelValue\":\"965430\",\"primaryLabelValue\":\"965430\"}},{\"attributeHeader\":{\"labelValue\":\"965432\",\"primaryLabelValue\":\"965432\"}},{\"attributeHeader\":{\"labelValue\":\"965433\",\"primaryLabelValue\":\"965433\"}},{\"attributeHeader\":{\"labelValue\":\"965434\",\"primaryLabelValue\":\"965434\"}},{\"attributeHeader\":{\"labelValue\":\"965435\",\"primaryLabelValue\":\"965435\"}},{\"attributeHeader\":{\"labelValue\":\"965436\",\"primaryLabelValue\":\"965436\"}},{\"attributeHeader\":{\"labelValue\":\"965438\",\"primaryLabelValue\":\"965438\"}},{\"attributeHeader\":{\"labelValue\":\"965440\",\"primaryLabelValue\":\"965440\"}},{\"attributeHeader\":{\"labelValue\":\"965441\",\"primaryLabelValue\":\"965441\"}},{\"attributeHeader\":{\"labelValue\":\"965442\",\"primaryLabelValue\":\"965442\"}},{\"attributeHeader\":{\"labelValue\":\"965443\",\"primaryLabelValue\":\"965443\"}},{\"attributeHeader\":{\"labelValue\":\"965445\",\"primaryLabelValue\":\"965445\"}},{\"attributeHeader\":{\"labelValue\":\"965447\",\"primaryLabelValue\":\"965447\"}},{\"attributeHeader\":{\"labelValue\":\"965449\",\"primaryLabelValue\":\"965449\"}},{\"attributeHeader\":{\"labelValue\":\"965450\",\"primaryLabelValue\":\"965450\"}},{\"attributeHeader\":{\"labelValue\":\"965451\",\"primaryLabelValue\":\"965451\"}},{\"attributeHeader\":{\"labelValue\":\"965453\",\"primaryLabelValue\":\"965453\"}},{\"attributeHeader\":{\"labelValue\":\"965454\",\"primaryLabelValue\":\"965454\"}},{\"attributeHeader\":{\"labelValue\":\"965456\",\"primaryLabelValue\":\"965456\"}},{\"attributeHeader\":{\"labelValue\":\"965457\",\"primaryLabelValue\":\"965457\"}},{\"attributeHeader\":{\"labelValue\":\"965458\",\"primaryLabelValue\":\"965458\"}},{\"attributeHeader\":{\"labelValue\":\"965459\",\"primaryLabelValue\":\"965459\"}},{\"attributeHeader\":{\"labelValue\":\"965461\",\"primaryLabelValue\":\"965461\"}},{\"attributeHeader\":{\"labelValue\":\"965462\",\"primaryLabelValue\":\"965462\"}},{\"attributeHeader\":{\"labelValue\":\"965466\",\"primaryLabelValue\":\"965466\"}},{\"attributeHeader\":{\"labelValue\":\"965467\",\"primaryLabelValue\":\"965467\"}},{\"attributeHeader\":{\"labelValue\":\"965469\",\"primaryLabelValue\":\"965469\"}},{\"attributeHeader\":{\"labelValue\":\"965470\",\"primaryLabelValue\":\"965470\"}},{\"attributeHeader\":{\"labelValue\":\"965471\",\"primaryLabelValue\":\"965471\"}},{\"attributeHeader\":{\"labelValue\":\"965473\",\"primaryLabelValue\":\"965473\"}},{\"attributeHeader\":{\"labelValue\":\"965474\",\"primaryLabelValue\":\"965474\"}},{\"attributeHeader\":{\"labelValue\":\"965476\",\"primaryLabelValue\":\"965476\"}},{\"attributeHeader\":{\"labelValue\":\"965477\",\"primaryLabelValue\":\"965477\"}},{\"attributeHeader\":{\"labelValue\":\"965478\",\"primaryLabelValue\":\"965478\"}},{\"attributeHeader\":{\"labelValue\":\"965479\",\"primaryLabelValue\":\"965479\"}},{\"attributeHeader\":{\"labelValue\":\"965481\",\"primaryLabelValue\":\"965481\"}},{\"attributeHeader\":{\"labelValue\":\"965483\",\"primaryLabelValue\":\"965483\"}},{\"attributeHeader\":{\"labelValue\":\"965484\",\"primaryLabelValue\":\"965484\"}},{\"attributeHeader\":{\"labelValue\":\"965485\",\"primaryLabelValue\":\"965485\"}},{\"attributeHeader\":{\"labelValue\":\"965487\",\"primaryLabelValue\":\"965487\"}},{\"attributeHeader\":{\"labelValue\":\"965489\",\"primaryLabelValue\":\"965489\"}},{\"attributeHeader\":{\"labelValue\":\"965490\",\"primaryLabelValue\":\"965490\"}},{\"attributeHeader\":{\"labelValue\":\"965492\",\"primaryLabelValue\":\"965492\"}},{\"attributeHeader\":{\"labelValue\":\"965493\",\"primaryLabelValue\":\"965493\"}},{\"attributeHeader\":{\"labelValue\":\"965496\",\"primaryLabelValue\":\"965496\"}},{\"attributeHeader\":{\"labelValue\":\"965498\",\"primaryLabelValue\":\"965498\"}},{\"attributeHeader\":{\"labelValue\":\"965499\",\"primaryLabelValue\":\"965499\"}},{\"attributeHeader\":{\"labelValue\":\"965500\",\"primaryLabelValue\":\"965500\"}},{\"attributeHeader\":{\"labelValue\":\"965501\",\"primaryLabelValue\":\"965501\"}},{\"attributeHeader\":{\"labelValue\":\"965502\",\"primaryLabelValue\":\"965502\"}},{\"attributeHeader\":{\"labelValue\":\"965504\",\"primaryLabelValue\":\"965504\"}},{\"attributeHeader\":{\"labelValue\":\"965505\",\"primaryLabelValue\":\"965505\"}},{\"attributeHeader\":{\"labelValue\":\"965506\",\"primaryLabelValue\":\"965506\"}},{\"attributeHeader\":{\"labelValue\":\"965508\",\"primaryLabelValue\":\"965508\"}},{\"attributeHeader\":{\"labelValue\":\"965510\",\"primaryLabelValue\":\"965510\"}},{\"attributeHeader\":{\"labelValue\":\"965511\",\"primaryLabelValue\":\"965511\"}},{\"attributeHeader\":{\"labelValue\":\"965512\",\"primaryLabelValue\":\"965512\"}},{\"attributeHeader\":{\"labelValue\":\"965513\",\"primaryLabelValue\":\"965513\"}},{\"attributeHeader\":{\"labelValue\":\"965515\",\"primaryLabelValue\":\"965515\"}},{\"attributeHeader\":{\"labelValue\":\"965516\",\"primaryLabelValue\":\"965516\"}},{\"attributeHeader\":{\"labelValue\":\"965517\",\"primaryLabelValue\":\"965517\"}},{\"attributeHeader\":{\"labelValue\":\"965518\",\"primaryLabelValue\":\"965518\"}},{\"attributeHeader\":{\"labelValue\":\"965520\",\"primaryLabelValue\":\"965520\"}},{\"attributeHeader\":{\"labelValue\":\"965522\",\"primaryLabelValue\":\"965522\"}},{\"attributeHeader\":{\"labelValue\":\"965524\",\"primaryLabelValue\":\"965524\"}},{\"attributeHeader\":{\"labelValue\":\"965525\",\"primaryLabelValue\":\"965525\"}},{\"attributeHeader\":{\"labelValue\":\"965526\",\"primaryLabelValue\":\"965526\"}},{\"attributeHeader\":{\"labelValue\":\"965527\",\"primaryLabelValue\":\"965527\"}},{\"attributeHeader\":{\"labelValue\":\"965528\",\"primaryLabelValue\":\"965528\"}},{\"attributeHeader\":{\"labelValue\":\"965531\",\"primaryLabelValue\":\"965531\"}},{\"attributeHeader\":{\"labelValue\":\"965533\",\"primaryLabelValue\":\"965533\"}},{\"attributeHeader\":{\"labelValue\":\"965534\",\"primaryLabelValue\":\"965534\"}},{\"attributeHeader\":{\"labelValue\":\"965536\",\"primaryLabelValue\":\"965536\"}},{\"attributeHeader\":{\"labelValue\":\"965537\",\"primaryLabelValue\":\"965537\"}},{\"attributeHeader\":{\"labelValue\":\"965538\",\"primaryLabelValue\":\"965538\"}},{\"attributeHeader\":{\"labelValue\":\"965539\",\"primaryLabelValue\":\"965539\"}},{\"attributeHeader\":{\"labelValue\":\"965540\",\"primaryLabelValue\":\"965540\"}},{\"attributeHeader\":{\"labelValue\":\"965541\",\"primaryLabelValue\":\"965541\"}},{\"attributeHeader\":{\"labelValue\":\"965542\",\"primaryLabelValue\":\"965542\"}},{\"attributeHeader\":{\"labelValue\":\"965545\",\"primaryLabelValue\":\"965545\"}},{\"attributeHeader\":{\"labelValue\":\"965546\",\"primaryLabelValue\":\"965546\"}},{\"attributeHeader\":{\"labelValue\":\"965547\",\"primaryLabelValue\":\"965547\"}},{\"attributeHeader\":{\"labelValue\":\"965548\",\"primaryLabelValue\":\"965548\"}},{\"attributeHeader\":{\"labelValue\":\"965549\",\"primaryLabelValue\":\"965549\"}},{\"attributeHeader\":{\"labelValue\":\"965550\",\"primaryLabelValue\":\"965550\"}},{\"attributeHeader\":{\"labelValue\":\"965551\",\"primaryLabelValue\":\"965551\"}},{\"attributeHeader\":{\"labelValue\":\"965552\",\"primaryLabelValue\":\"965552\"}},{\"attributeHeader\":{\"labelValue\":\"965553\",\"primaryLabelValue\":\"965553\"}},{\"attributeHeader\":{\"labelValue\":\"965555\",\"primaryLabelValue\":\"965555\"}},{\"attributeHeader\":{\"labelValue\":\"965557\",\"primaryLabelValue\":\"965557\"}},{\"attributeHeader\":{\"labelValue\":\"965559\",\"primaryLabelValue\":\"965559\"}},{\"attributeHeader\":{\"labelValue\":\"965560\",\"primaryLabelValue\":\"965560\"}},{\"attributeHeader\":{\"labelValue\":\"965562\",\"primaryLabelValue\":\"965562\"}},{\"attributeHeader\":{\"labelValue\":\"965563\",\"primaryLabelValue\":\"965563\"}},{\"attributeHeader\":{\"labelValue\":\"965564\",\"primaryLabelValue\":\"965564\"}},{\"attributeHeader\":{\"labelValue\":\"965565\",\"primaryLabelValue\":\"965565\"}},{\"attributeHeader\":{\"labelValue\":\"965566\",\"primaryLabelValue\":\"965566\"}},{\"attributeHeader\":{\"labelValue\":\"965567\",\"primaryLabelValue\":\"965567\"}},{\"attributeHeader\":{\"labelValue\":\"965569\",\"primaryLabelValue\":\"965569\"}},{\"attributeHeader\":{\"labelValue\":\"965570\",\"primaryLabelValue\":\"965570\"}},{\"attributeHeader\":{\"labelValue\":\"965571\",\"primaryLabelValue\":\"965571\"}},{\"attributeHeader\":{\"labelValue\":\"965572\",\"primaryLabelValue\":\"965572\"}},{\"attributeHeader\":{\"labelValue\":\"965573\",\"primaryLabelValue\":\"965573\"}},{\"attributeHeader\":{\"labelValue\":\"965574\",\"primaryLabelValue\":\"965574\"}},{\"attributeHeader\":{\"labelValue\":\"965576\",\"primaryLabelValue\":\"965576\"}},{\"attributeHeader\":{\"labelValue\":\"965578\",\"primaryLabelValue\":\"965578\"}},{\"attributeHeader\":{\"labelValue\":\"965579\",\"primaryLabelValue\":\"965579\"}},{\"attributeHeader\":{\"labelValue\":\"965580\",\"primaryLabelValue\":\"965580\"}},{\"attributeHeader\":{\"labelValue\":\"965582\",\"primaryLabelValue\":\"965582\"}},{\"attributeHeader\":{\"labelValue\":\"965583\",\"primaryLabelValue\":\"965583\"}},{\"attributeHeader\":{\"labelValue\":\"965584\",\"primaryLabelValue\":\"965584\"}},{\"attributeHeader\":{\"labelValue\":\"965585\",\"primaryLabelValue\":\"965585\"}},{\"attributeHeader\":{\"labelValue\":\"965586\",\"primaryLabelValue\":\"965586\"}},{\"attributeHeader\":{\"labelValue\":\"965587\",\"primaryLabelValue\":\"965587\"}},{\"attributeHeader\":{\"labelValue\":\"965588\",\"primaryLabelValue\":\"965588\"}},{\"attributeHeader\":{\"labelValue\":\"965589\",\"primaryLabelValue\":\"965589\"}},{\"attributeHeader\":{\"labelValue\":\"965591\",\"primaryLabelValue\":\"965591\"}},{\"attributeHeader\":{\"labelValue\":\"965592\",\"primaryLabelValue\":\"965592\"}},{\"attributeHeader\":{\"labelValue\":\"965593\",\"primaryLabelValue\":\"965593\"}},{\"attributeHeader\":{\"labelValue\":\"965595\",\"primaryLabelValue\":\"965595\"}},{\"attributeHeader\":{\"labelValue\":\"965596\",\"primaryLabelValue\":\"965596\"}},{\"attributeHeader\":{\"labelValue\":\"965597\",\"primaryLabelValue\":\"965597\"}},{\"attributeHeader\":{\"labelValue\":\"965600\",\"primaryLabelValue\":\"965600\"}},{\"attributeHeader\":{\"labelValue\":\"965602\",\"primaryLabelValue\":\"965602\"}},{\"attributeHeader\":{\"labelValue\":\"965605\",\"primaryLabelValue\":\"965605\"}},{\"attributeHeader\":{\"labelValue\":\"965606\",\"primaryLabelValue\":\"965606\"}},{\"attributeHeader\":{\"labelValue\":\"965607\",\"primaryLabelValue\":\"965607\"}},{\"attributeHeader\":{\"labelValue\":\"965609\",\"primaryLabelValue\":\"965609\"}},{\"attributeHeader\":{\"labelValue\":\"965611\",\"primaryLabelValue\":\"965611\"}},{\"attributeHeader\":{\"labelValue\":\"965612\",\"primaryLabelValue\":\"965612\"}},{\"attributeHeader\":{\"labelValue\":\"965613\",\"primaryLabelValue\":\"965613\"}},{\"attributeHeader\":{\"labelValue\":\"965614\",\"primaryLabelValue\":\"965614\"}},{\"attributeHeader\":{\"labelValue\":\"965615\",\"primaryLabelValue\":\"965615\"}},{\"attributeHeader\":{\"labelValue\":\"965616\",\"primaryLabelValue\":\"965616\"}},{\"attributeHeader\":{\"labelValue\":\"965617\",\"primaryLabelValue\":\"965617\"}},{\"attributeHeader\":{\"labelValue\":\"965619\",\"primaryLabelValue\":\"965619\"}},{\"attributeHeader\":{\"labelValue\":\"965620\",\"primaryLabelValue\":\"965620\"}},{\"attributeHeader\":{\"labelValue\":\"965621\",\"primaryLabelValue\":\"965621\"}},{\"attributeHeader\":{\"labelValue\":\"965622\",\"primaryLabelValue\":\"965622\"}},{\"attributeHeader\":{\"labelValue\":\"965624\",\"primaryLabelValue\":\"965624\"}},{\"attributeHeader\":{\"labelValue\":\"965625\",\"primaryLabelValue\":\"965625\"}},{\"attributeHeader\":{\"labelValue\":\"965626\",\"primaryLabelValue\":\"965626\"}},{\"attributeHeader\":{\"labelValue\":\"965627\",\"primaryLabelValue\":\"965627\"}},{\"attributeHeader\":{\"labelValue\":\"965628\",\"primaryLabelValue\":\"965628\"}},{\"attributeHeader\":{\"labelValue\":\"965630\",\"primaryLabelValue\":\"965630\"}},{\"attributeHeader\":{\"labelValue\":\"965632\",\"primaryLabelValue\":\"965632\"}},{\"attributeHeader\":{\"labelValue\":\"965634\",\"primaryLabelValue\":\"965634\"}},{\"attributeHeader\":{\"labelValue\":\"965635\",\"primaryLabelValue\":\"965635\"}},{\"attributeHeader\":{\"labelValue\":\"965636\",\"primaryLabelValue\":\"965636\"}},{\"attributeHeader\":{\"labelValue\":\"965637\",\"primaryLabelValue\":\"965637\"}},{\"attributeHeader\":{\"labelValue\":\"965638\",\"primaryLabelValue\":\"965638\"}},{\"attributeHeader\":{\"labelValue\":\"965639\",\"primaryLabelValue\":\"965639\"}},{\"attributeHeader\":{\"labelValue\":\"965640\",\"primaryLabelValue\":\"965640\"}},{\"attributeHeader\":{\"labelValue\":\"965641\",\"primaryLabelValue\":\"965641\"}},{\"attributeHeader\":{\"labelValue\":\"965642\",\"primaryLabelValue\":\"965642\"}},{\"attributeHeader\":{\"labelValue\":\"965643\",\"primaryLabelValue\":\"965643\"}},{\"attributeHeader\":{\"labelValue\":\"965645\",\"primaryLabelValue\":\"965645\"}},{\"attributeHeader\":{\"labelValue\":\"965646\",\"primaryLabelValue\":\"965646\"}},{\"attributeHeader\":{\"labelValue\":\"965648\",\"primaryLabelValue\":\"965648\"}},{\"attributeHeader\":{\"labelValue\":\"965650\",\"primaryLabelValue\":\"965650\"}},{\"attributeHeader\":{\"labelValue\":\"965652\",\"primaryLabelValue\":\"965652\"}},{\"attributeHeader\":{\"labelValue\":\"965653\",\"primaryLabelValue\":\"965653\"}},{\"attributeHeader\":{\"labelValue\":\"965654\",\"primaryLabelValue\":\"965654\"}},{\"attributeHeader\":{\"labelValue\":\"965656\",\"primaryLabelValue\":\"965656\"}},{\"attributeHeader\":{\"labelValue\":\"965657\",\"primaryLabelValue\":\"965657\"}},{\"attributeHeader\":{\"labelValue\":\"965659\",\"primaryLabelValue\":\"965659\"}},{\"attributeHeader\":{\"labelValue\":\"965661\",\"primaryLabelValue\":\"965661\"}},{\"attributeHeader\":{\"labelValue\":\"965663\",\"primaryLabelValue\":\"965663\"}},{\"attributeHeader\":{\"labelValue\":\"965664\",\"primaryLabelValue\":\"965664\"}},{\"attributeHeader\":{\"labelValue\":\"965666\",\"primaryLabelValue\":\"965666\"}},{\"attributeHeader\":{\"labelValue\":\"965668\",\"primaryLabelValue\":\"965668\"}},{\"attributeHeader\":{\"labelValue\":\"965669\",\"primaryLabelValue\":\"965669\"}},{\"attributeHeader\":{\"labelValue\":\"965670\",\"primaryLabelValue\":\"965670\"}},{\"attributeHeader\":{\"labelValue\":\"965672\",\"primaryLabelValue\":\"965672\"}},{\"attributeHeader\":{\"labelValue\":\"965673\",\"primaryLabelValue\":\"965673\"}},{\"attributeHeader\":{\"labelValue\":\"965675\",\"primaryLabelValue\":\"965675\"}},{\"attributeHeader\":{\"labelValue\":\"965676\",\"primaryLabelValue\":\"965676\"}},{\"attributeHeader\":{\"labelValue\":\"965677\",\"primaryLabelValue\":\"965677\"}},{\"attributeHeader\":{\"labelValue\":\"965678\",\"primaryLabelValue\":\"965678\"}},{\"attributeHeader\":{\"labelValue\":\"965679\",\"primaryLabelValue\":\"965679\"}},{\"attributeHeader\":{\"labelValue\":\"965680\",\"primaryLabelValue\":\"965680\"}},{\"attributeHeader\":{\"labelValue\":\"965681\",\"primaryLabelValue\":\"965681\"}},{\"attributeHeader\":{\"labelValue\":\"965682\",\"primaryLabelValue\":\"965682\"}},{\"attributeHeader\":{\"labelValue\":\"965683\",\"primaryLabelValue\":\"965683\"}},{\"attributeHeader\":{\"labelValue\":\"965684\",\"primaryLabelValue\":\"965684\"}},{\"attributeHeader\":{\"labelValue\":\"965685\",\"primaryLabelValue\":\"965685\"}},{\"attributeHeader\":{\"labelValue\":\"965687\",\"primaryLabelValue\":\"965687\"}},{\"attributeHeader\":{\"labelValue\":\"965688\",\"primaryLabelValue\":\"965688\"}},{\"attributeHeader\":{\"labelValue\":\"965689\",\"primaryLabelValue\":\"965689\"}},{\"attributeHeader\":{\"labelValue\":\"965691\",\"primaryLabelValue\":\"965691\"}},{\"attributeHeader\":{\"labelValue\":\"965693\",\"primaryLabelValue\":\"965693\"}},{\"attributeHeader\":{\"labelValue\":\"965695\",\"primaryLabelValue\":\"965695\"}},{\"attributeHeader\":{\"labelValue\":\"965696\",\"primaryLabelValue\":\"965696\"}},{\"attributeHeader\":{\"labelValue\":\"965698\",\"primaryLabelValue\":\"965698\"}},{\"attributeHeader\":{\"labelValue\":\"965700\",\"primaryLabelValue\":\"965700\"}},{\"attributeHeader\":{\"labelValue\":\"965702\",\"primaryLabelValue\":\"965702\"}},{\"attributeHeader\":{\"labelValue\":\"965703\",\"primaryLabelValue\":\"965703\"}},{\"attributeHeader\":{\"labelValue\":\"965704\",\"primaryLabelValue\":\"965704\"}},{\"attributeHeader\":{\"labelValue\":\"965705\",\"primaryLabelValue\":\"965705\"}},{\"attributeHeader\":{\"labelValue\":\"965706\",\"primaryLabelValue\":\"965706\"}},{\"attributeHeader\":{\"labelValue\":\"965708\",\"primaryLabelValue\":\"965708\"}},{\"attributeHeader\":{\"labelValue\":\"965709\",\"primaryLabelValue\":\"965709\"}},{\"attributeHeader\":{\"labelValue\":\"965710\",\"primaryLabelValue\":\"965710\"}},{\"attributeHeader\":{\"labelValue\":\"965711\",\"primaryLabelValue\":\"965711\"}},{\"attributeHeader\":{\"labelValue\":\"965712\",\"primaryLabelValue\":\"965712\"}},{\"attributeHeader\":{\"labelValue\":\"965713\",\"primaryLabelValue\":\"965713\"}},{\"attributeHeader\":{\"labelValue\":\"965714\",\"primaryLabelValue\":\"965714\"}},{\"attributeHeader\":{\"labelValue\":\"965715\",\"primaryLabelValue\":\"965715\"}},{\"attributeHeader\":{\"labelValue\":\"965716\",\"primaryLabelValue\":\"965716\"}},{\"attributeHeader\":{\"labelValue\":\"965717\",\"primaryLabelValue\":\"965717\"}},{\"attributeHeader\":{\"labelValue\":\"965719\",\"primaryLabelValue\":\"965719\"}},{\"attributeHeader\":{\"labelValue\":\"965720\",\"primaryLabelValue\":\"965720\"}},{\"attributeHeader\":{\"labelValue\":\"965722\",\"primaryLabelValue\":\"965722\"}},{\"attributeHeader\":{\"labelValue\":\"965724\",\"primaryLabelValue\":\"965724\"}},{\"attributeHeader\":{\"labelValue\":\"965726\",\"primaryLabelValue\":\"965726\"}},{\"attributeHeader\":{\"labelValue\":\"965727\",\"primaryLabelValue\":\"965727\"}},{\"attributeHeader\":{\"labelValue\":\"965728\",\"primaryLabelValue\":\"965728\"}},{\"attributeHeader\":{\"labelValue\":\"965730\",\"primaryLabelValue\":\"965730\"}},{\"attributeHeader\":{\"labelValue\":\"965732\",\"primaryLabelValue\":\"965732\"}},{\"attributeHeader\":{\"labelValue\":\"965733\",\"primaryLabelValue\":\"965733\"}},{\"attributeHeader\":{\"labelValue\":\"965734\",\"primaryLabelValue\":\"965734\"}},{\"attributeHeader\":{\"labelValue\":\"965735\",\"primaryLabelValue\":\"965735\"}},{\"attributeHeader\":{\"labelValue\":\"965736\",\"primaryLabelValue\":\"965736\"}},{\"attributeHeader\":{\"labelValue\":\"965737\",\"primaryLabelValue\":\"965737\"}},{\"attributeHeader\":{\"labelValue\":\"965738\",\"primaryLabelValue\":\"965738\"}},{\"attributeHeader\":{\"labelValue\":\"965740\",\"primaryLabelValue\":\"965740\"}},{\"attributeHeader\":{\"labelValue\":\"965741\",\"primaryLabelValue\":\"965741\"}},{\"attributeHeader\":{\"labelValue\":\"965743\",\"primaryLabelValue\":\"965743\"}},{\"attributeHeader\":{\"labelValue\":\"965745\",\"primaryLabelValue\":\"965745\"}},{\"attributeHeader\":{\"labelValue\":\"965746\",\"primaryLabelValue\":\"965746\"}},{\"attributeHeader\":{\"labelValue\":\"965747\",\"primaryLabelValue\":\"965747\"}},{\"attributeHeader\":{\"labelValue\":\"965748\",\"primaryLabelValue\":\"965748\"}},{\"attributeHeader\":{\"labelValue\":\"965749\",\"primaryLabelValue\":\"965749\"}},{\"attributeHeader\":{\"labelValue\":\"965750\",\"primaryLabelValue\":\"965750\"}},{\"attributeHeader\":{\"labelValue\":\"965751\",\"primaryLabelValue\":\"965751\"}},{\"attributeHeader\":{\"labelValue\":\"965753\",\"primaryLabelValue\":\"965753\"}},{\"attributeHeader\":{\"labelValue\":\"965754\",\"primaryLabelValue\":\"965754\"}},{\"attributeHeader\":{\"labelValue\":\"965756\",\"primaryLabelValue\":\"965756\"}},{\"attributeHeader\":{\"labelValue\":\"965757\",\"primaryLabelValue\":\"965757\"}},{\"attributeHeader\":{\"labelValue\":\"965758\",\"primaryLabelValue\":\"965758\"}},{\"attributeHeader\":{\"labelValue\":\"965759\",\"primaryLabelValue\":\"965759\"}},{\"attributeHeader\":{\"labelValue\":\"965760\",\"primaryLabelValue\":\"965760\"}},{\"attributeHeader\":{\"labelValue\":\"965762\",\"primaryLabelValue\":\"965762\"}},{\"attributeHeader\":{\"labelValue\":\"965763\",\"primaryLabelValue\":\"965763\"}},{\"attributeHeader\":{\"labelValue\":\"965764\",\"primaryLabelValue\":\"965764\"}},{\"attributeHeader\":{\"labelValue\":\"965766\",\"primaryLabelValue\":\"965766\"}},{\"attributeHeader\":{\"labelValue\":\"965767\",\"primaryLabelValue\":\"965767\"}},{\"attributeHeader\":{\"labelValue\":\"965768\",\"primaryLabelValue\":\"965768\"}},{\"attributeHeader\":{\"labelValue\":\"965770\",\"primaryLabelValue\":\"965770\"}},{\"attributeHeader\":{\"labelValue\":\"965772\",\"primaryLabelValue\":\"965772\"}},{\"attributeHeader\":{\"labelValue\":\"965773\",\"primaryLabelValue\":\"965773\"}},{\"attributeHeader\":{\"labelValue\":\"965775\",\"primaryLabelValue\":\"965775\"}},{\"attributeHeader\":{\"labelValue\":\"965777\",\"primaryLabelValue\":\"965777\"}},{\"attributeHeader\":{\"labelValue\":\"965779\",\"primaryLabelValue\":\"965779\"}},{\"attributeHeader\":{\"labelValue\":\"965780\",\"primaryLabelValue\":\"965780\"}},{\"attributeHeader\":{\"labelValue\":\"965781\",\"primaryLabelValue\":\"965781\"}},{\"attributeHeader\":{\"labelValue\":\"965783\",\"primaryLabelValue\":\"965783\"}},{\"attributeHeader\":{\"labelValue\":\"965785\",\"primaryLabelValue\":\"965785\"}},{\"attributeHeader\":{\"labelValue\":\"965786\",\"primaryLabelValue\":\"965786\"}},{\"attributeHeader\":{\"labelValue\":\"965787\",\"primaryLabelValue\":\"965787\"}},{\"attributeHeader\":{\"labelValue\":\"965788\",\"primaryLabelValue\":\"965788\"}},{\"attributeHeader\":{\"labelValue\":\"965789\",\"primaryLabelValue\":\"965789\"}},{\"attributeHeader\":{\"labelValue\":\"965791\",\"primaryLabelValue\":\"965791\"}},{\"attributeHeader\":{\"labelValue\":\"965792\",\"primaryLabelValue\":\"965792\"}},{\"attributeHeader\":{\"labelValue\":\"965793\",\"primaryLabelValue\":\"965793\"}},{\"attributeHeader\":{\"labelValue\":\"965794\",\"primaryLabelValue\":\"965794\"}},{\"attributeHeader\":{\"labelValue\":\"965795\",\"primaryLabelValue\":\"965795\"}},{\"attributeHeader\":{\"labelValue\":\"965796\",\"primaryLabelValue\":\"965796\"}},{\"attributeHeader\":{\"labelValue\":\"965798\",\"primaryLabelValue\":\"965798\"}},{\"attributeHeader\":{\"labelValue\":\"965799\",\"primaryLabelValue\":\"965799\"}},{\"attributeHeader\":{\"labelValue\":\"965800\",\"primaryLabelValue\":\"965800\"}},{\"attributeHeader\":{\"labelValue\":\"965801\",\"primaryLabelValue\":\"965801\"}},{\"attributeHeader\":{\"labelValue\":\"965802\",\"primaryLabelValue\":\"965802\"}},{\"attributeHeader\":{\"labelValue\":\"965804\",\"primaryLabelValue\":\"965804\"}},{\"attributeHeader\":{\"labelValue\":\"965805\",\"primaryLabelValue\":\"965805\"}},{\"attributeHeader\":{\"labelValue\":\"965807\",\"primaryLabelValue\":\"965807\"}},{\"attributeHeader\":{\"labelValue\":\"965808\",\"primaryLabelValue\":\"965808\"}},{\"attributeHeader\":{\"labelValue\":\"965810\",\"primaryLabelValue\":\"965810\"}},{\"attributeHeader\":{\"labelValue\":\"965811\",\"primaryLabelValue\":\"965811\"}},{\"attributeHeader\":{\"labelValue\":\"965813\",\"primaryLabelValue\":\"965813\"}},{\"attributeHeader\":{\"labelValue\":\"965814\",\"primaryLabelValue\":\"965814\"}},{\"attributeHeader\":{\"labelValue\":\"965816\",\"primaryLabelValue\":\"965816\"}},{\"attributeHeader\":{\"labelValue\":\"965817\",\"primaryLabelValue\":\"965817\"}},{\"attributeHeader\":{\"labelValue\":\"965818\",\"primaryLabelValue\":\"965818\"}},{\"attributeHeader\":{\"labelValue\":\"965819\",\"primaryLabelValue\":\"965819\"}},{\"attributeHeader\":{\"labelValue\":\"965821\",\"primaryLabelValue\":\"965821\"}},{\"attributeHeader\":{\"labelValue\":\"965823\",\"primaryLabelValue\":\"965823\"}},{\"attributeHeader\":{\"labelValue\":\"965825\",\"primaryLabelValue\":\"965825\"}},{\"attributeHeader\":{\"labelValue\":\"965826\",\"primaryLabelValue\":\"965826\"}},{\"attributeHeader\":{\"labelValue\":\"965827\",\"primaryLabelValue\":\"965827\"}},{\"attributeHeader\":{\"labelValue\":\"965829\",\"primaryLabelValue\":\"965829\"}},{\"attributeHeader\":{\"labelValue\":\"965830\",\"primaryLabelValue\":\"965830\"}},{\"attributeHeader\":{\"labelValue\":\"965831\",\"primaryLabelValue\":\"965831\"}},{\"attributeHeader\":{\"labelValue\":\"965833\",\"primaryLabelValue\":\"965833\"}},{\"attributeHeader\":{\"labelValue\":\"965835\",\"primaryLabelValue\":\"965835\"}},{\"attributeHeader\":{\"labelValue\":\"965837\",\"primaryLabelValue\":\"965837\"}},{\"attributeHeader\":{\"labelValue\":\"965838\",\"primaryLabelValue\":\"965838\"}},{\"attributeHeader\":{\"labelValue\":\"965839\",\"primaryLabelValue\":\"965839\"}},{\"attributeHeader\":{\"labelValue\":\"965841\",\"primaryLabelValue\":\"965841\"}},{\"attributeHeader\":{\"labelValue\":\"965842\",\"primaryLabelValue\":\"965842\"}},{\"attributeHeader\":{\"labelValue\":\"965843\",\"primaryLabelValue\":\"965843\"}},{\"attributeHeader\":{\"labelValue\":\"965844\",\"primaryLabelValue\":\"965844\"}},{\"attributeHeader\":{\"labelValue\":\"965845\",\"primaryLabelValue\":\"965845\"}},{\"attributeHeader\":{\"labelValue\":\"965846\",\"primaryLabelValue\":\"965846\"}},{\"attributeHeader\":{\"labelValue\":\"965847\",\"primaryLabelValue\":\"965847\"}},{\"attributeHeader\":{\"labelValue\":\"965848\",\"primaryLabelValue\":\"965848\"}},{\"attributeHeader\":{\"labelValue\":\"965849\",\"primaryLabelValue\":\"965849\"}},{\"attributeHeader\":{\"labelValue\":\"965850\",\"primaryLabelValue\":\"965850\"}},{\"attributeHeader\":{\"labelValue\":\"965852\",\"primaryLabelValue\":\"965852\"}},{\"attributeHeader\":{\"labelValue\":\"965854\",\"primaryLabelValue\":\"965854\"}},{\"attributeHeader\":{\"labelValue\":\"965855\",\"primaryLabelValue\":\"965855\"}},{\"attributeHeader\":{\"labelValue\":\"965856\",\"primaryLabelValue\":\"965856\"}},{\"attributeHeader\":{\"labelValue\":\"965857\",\"primaryLabelValue\":\"965857\"}},{\"attributeHeader\":{\"labelValue\":\"965859\",\"primaryLabelValue\":\"965859\"}},{\"attributeHeader\":{\"labelValue\":\"965860\",\"primaryLabelValue\":\"965860\"}},{\"attributeHeader\":{\"labelValue\":\"965861\",\"primaryLabelValue\":\"965861\"}},{\"attributeHeader\":{\"labelValue\":\"965862\",\"primaryLabelValue\":\"965862\"}},{\"attributeHeader\":{\"labelValue\":\"965863\",\"primaryLabelValue\":\"965863\"}},{\"attributeHeader\":{\"labelValue\":\"965864\",\"primaryLabelValue\":\"965864\"}},{\"attributeHeader\":{\"labelValue\":\"965865\",\"primaryLabelValue\":\"965865\"}},{\"attributeHeader\":{\"labelValue\":\"965867\",\"primaryLabelValue\":\"965867\"}},{\"attributeHeader\":{\"labelValue\":\"965868\",\"primaryLabelValue\":\"965868\"}},{\"attributeHeader\":{\"labelValue\":\"965870\",\"primaryLabelValue\":\"965870\"}},{\"attributeHeader\":{\"labelValue\":\"965871\",\"primaryLabelValue\":\"965871\"}},{\"attributeHeader\":{\"labelValue\":\"965872\",\"primaryLabelValue\":\"965872\"}},{\"attributeHeader\":{\"labelValue\":\"965873\",\"primaryLabelValue\":\"965873\"}},{\"attributeHeader\":{\"labelValue\":\"965874\",\"primaryLabelValue\":\"965874\"}},{\"attributeHeader\":{\"labelValue\":\"965876\",\"primaryLabelValue\":\"965876\"}},{\"attributeHeader\":{\"labelValue\":\"965877\",\"primaryLabelValue\":\"965877\"}},{\"attributeHeader\":{\"labelValue\":\"965878\",\"primaryLabelValue\":\"965878\"}},{\"attributeHeader\":{\"labelValue\":\"965880\",\"primaryLabelValue\":\"965880\"}},{\"attributeHeader\":{\"labelValue\":\"965882\",\"primaryLabelValue\":\"965882\"}},{\"attributeHeader\":{\"labelValue\":\"965883\",\"primaryLabelValue\":\"965883\"}},{\"attributeHeader\":{\"labelValue\":\"965884\",\"primaryLabelValue\":\"965884\"}},{\"attributeHeader\":{\"labelValue\":\"965885\",\"primaryLabelValue\":\"965885\"}},{\"attributeHeader\":{\"labelValue\":\"965888\",\"primaryLabelValue\":\"965888\"}},{\"attributeHeader\":{\"labelValue\":\"965890\",\"primaryLabelValue\":\"965890\"}},{\"attributeHeader\":{\"labelValue\":\"965891\",\"primaryLabelValue\":\"965891\"}},{\"attributeHeader\":{\"labelValue\":\"965892\",\"primaryLabelValue\":\"965892\"}},{\"attributeHeader\":{\"labelValue\":\"965894\",\"primaryLabelValue\":\"965894\"}},{\"attributeHeader\":{\"labelValue\":\"965895\",\"primaryLabelValue\":\"965895\"}},{\"attributeHeader\":{\"labelValue\":\"965896\",\"primaryLabelValue\":\"965896\"}},{\"attributeHeader\":{\"labelValue\":\"965898\",\"primaryLabelValue\":\"965898\"}},{\"attributeHeader\":{\"labelValue\":\"965900\",\"primaryLabelValue\":\"965900\"}},{\"attributeHeader\":{\"labelValue\":\"965901\",\"primaryLabelValue\":\"965901\"}},{\"attributeHeader\":{\"labelValue\":\"965902\",\"primaryLabelValue\":\"965902\"}},{\"attributeHeader\":{\"labelValue\":\"965903\",\"primaryLabelValue\":\"965903\"}},{\"attributeHeader\":{\"labelValue\":\"965904\",\"primaryLabelValue\":\"965904\"}},{\"attributeHeader\":{\"labelValue\":\"965905\",\"primaryLabelValue\":\"965905\"}},{\"attributeHeader\":{\"labelValue\":\"965906\",\"primaryLabelValue\":\"965906\"}},{\"attributeHeader\":{\"labelValue\":\"965908\",\"primaryLabelValue\":\"965908\"}},{\"attributeHeader\":{\"labelValue\":\"965909\",\"primaryLabelValue\":\"965909\"}},{\"attributeHeader\":{\"labelValue\":\"965910\",\"primaryLabelValue\":\"965910\"}},{\"attributeHeader\":{\"labelValue\":\"965912\",\"primaryLabelValue\":\"965912\"}},{\"attributeHeader\":{\"labelValue\":\"965914\",\"primaryLabelValue\":\"965914\"}},{\"attributeHeader\":{\"labelValue\":\"965916\",\"primaryLabelValue\":\"965916\"}},{\"attributeHeader\":{\"labelValue\":\"965917\",\"primaryLabelValue\":\"965917\"}},{\"attributeHeader\":{\"labelValue\":\"965919\",\"primaryLabelValue\":\"965919\"}},{\"attributeHeader\":{\"labelValue\":\"965922\",\"primaryLabelValue\":\"965922\"}},{\"attributeHeader\":{\"labelValue\":\"965923\",\"primaryLabelValue\":\"965923\"}},{\"attributeHeader\":{\"labelValue\":\"965925\",\"primaryLabelValue\":\"965925\"}},{\"attributeHeader\":{\"labelValue\":\"965926\",\"primaryLabelValue\":\"965926\"}},{\"attributeHeader\":{\"labelValue\":\"965927\",\"primaryLabelValue\":\"965927\"}},{\"attributeHeader\":{\"labelValue\":\"965928\",\"primaryLabelValue\":\"965928\"}},{\"attributeHeader\":{\"labelValue\":\"965929\",\"primaryLabelValue\":\"965929\"}},{\"attributeHeader\":{\"labelValue\":\"965930\",\"primaryLabelValue\":\"965930\"}},{\"attributeHeader\":{\"labelValue\":\"965931\",\"primaryLabelValue\":\"965931\"}},{\"attributeHeader\":{\"labelValue\":\"965932\",\"primaryLabelValue\":\"965932\"}},{\"attributeHeader\":{\"labelValue\":\"965934\",\"primaryLabelValue\":\"965934\"}},{\"attributeHeader\":{\"labelValue\":\"965935\",\"primaryLabelValue\":\"965935\"}},{\"attributeHeader\":{\"labelValue\":\"965936\",\"primaryLabelValue\":\"965936\"}},{\"attributeHeader\":{\"labelValue\":\"965937\",\"primaryLabelValue\":\"965937\"}},{\"attributeHeader\":{\"labelValue\":\"965938\",\"primaryLabelValue\":\"965938\"}},{\"attributeHeader\":{\"labelValue\":\"965939\",\"primaryLabelValue\":\"965939\"}},{\"attributeHeader\":{\"labelValue\":\"965941\",\"primaryLabelValue\":\"965941\"}},{\"attributeHeader\":{\"labelValue\":\"965942\",\"primaryLabelValue\":\"965942\"}},{\"attributeHeader\":{\"labelValue\":\"965944\",\"primaryLabelValue\":\"965944\"}},{\"attributeHeader\":{\"labelValue\":\"965946\",\"primaryLabelValue\":\"965946\"}},{\"attributeHeader\":{\"labelValue\":\"965948\",\"primaryLabelValue\":\"965948\"}},{\"attributeHeader\":{\"labelValue\":\"965950\",\"primaryLabelValue\":\"965950\"}},{\"attributeHeader\":{\"labelValue\":\"965951\",\"primaryLabelValue\":\"965951\"}},{\"attributeHeader\":{\"labelValue\":\"965953\",\"primaryLabelValue\":\"965953\"}},{\"attributeHeader\":{\"labelValue\":\"965955\",\"primaryLabelValue\":\"965955\"}},{\"attributeHeader\":{\"labelValue\":\"965956\",\"primaryLabelValue\":\"965956\"}},{\"attributeHeader\":{\"labelValue\":\"965958\",\"primaryLabelValue\":\"965958\"}},{\"attributeHeader\":{\"labelValue\":\"965960\",\"primaryLabelValue\":\"965960\"}},{\"attributeHeader\":{\"labelValue\":\"965961\",\"primaryLabelValue\":\"965961\"}},{\"attributeHeader\":{\"labelValue\":\"965963\",\"primaryLabelValue\":\"965963\"}},{\"attributeHeader\":{\"labelValue\":\"965964\",\"primaryLabelValue\":\"965964\"}},{\"attributeHeader\":{\"labelValue\":\"965965\",\"primaryLabelValue\":\"965965\"}},{\"attributeHeader\":{\"labelValue\":\"965966\",\"primaryLabelValue\":\"965966\"}},{\"attributeHeader\":{\"labelValue\":\"965968\",\"primaryLabelValue\":\"965968\"}},{\"attributeHeader\":{\"labelValue\":\"965969\",\"primaryLabelValue\":\"965969\"}},{\"attributeHeader\":{\"labelValue\":\"965970\",\"primaryLabelValue\":\"965970\"}},{\"attributeHeader\":{\"labelValue\":\"965971\",\"primaryLabelValue\":\"965971\"}},{\"attributeHeader\":{\"labelValue\":\"965972\",\"primaryLabelValue\":\"965972\"}},{\"attributeHeader\":{\"labelValue\":\"965973\",\"primaryLabelValue\":\"965973\"}},{\"attributeHeader\":{\"labelValue\":\"965974\",\"primaryLabelValue\":\"965974\"}},{\"attributeHeader\":{\"labelValue\":\"965976\",\"primaryLabelValue\":\"965976\"}},{\"attributeHeader\":{\"labelValue\":\"965977\",\"primaryLabelValue\":\"965977\"}},{\"attributeHeader\":{\"labelValue\":\"965979\",\"primaryLabelValue\":\"965979\"}},{\"attributeHeader\":{\"labelValue\":\"965981\",\"primaryLabelValue\":\"965981\"}},{\"attributeHeader\":{\"labelValue\":\"965982\",\"primaryLabelValue\":\"965982\"}},{\"attributeHeader\":{\"labelValue\":\"965983\",\"primaryLabelValue\":\"965983\"}},{\"attributeHeader\":{\"labelValue\":\"965985\",\"primaryLabelValue\":\"965985\"}},{\"attributeHeader\":{\"labelValue\":\"965986\",\"primaryLabelValue\":\"965986\"}},{\"attributeHeader\":{\"labelValue\":\"965987\",\"primaryLabelValue\":\"965987\"}},{\"attributeHeader\":{\"labelValue\":\"965989\",\"primaryLabelValue\":\"965989\"}},{\"attributeHeader\":{\"labelValue\":\"965991\",\"primaryLabelValue\":\"965991\"}},{\"attributeHeader\":{\"labelValue\":\"965993\",\"primaryLabelValue\":\"965993\"}},{\"attributeHeader\":{\"labelValue\":\"965994\",\"primaryLabelValue\":\"965994\"}},{\"attributeHeader\":{\"labelValue\":\"965995\",\"primaryLabelValue\":\"965995\"}},{\"attributeHeader\":{\"labelValue\":\"965996\",\"primaryLabelValue\":\"965996\"}},{\"attributeHeader\":{\"labelValue\":\"965997\",\"primaryLabelValue\":\"965997\"}},{\"attributeHeader\":{\"labelValue\":\"965999\",\"primaryLabelValue\":\"965999\"}},{\"attributeHeader\":{\"labelValue\":\"966001\",\"primaryLabelValue\":\"966001\"}},{\"attributeHeader\":{\"labelValue\":\"966002\",\"primaryLabelValue\":\"966002\"}},{\"attributeHeader\":{\"labelValue\":\"966004\",\"primaryLabelValue\":\"966004\"}},{\"attributeHeader\":{\"labelValue\":\"966005\",\"primaryLabelValue\":\"966005\"}},{\"attributeHeader\":{\"labelValue\":\"966007\",\"primaryLabelValue\":\"966007\"}},{\"attributeHeader\":{\"labelValue\":\"966009\",\"primaryLabelValue\":\"966009\"}},{\"attributeHeader\":{\"labelValue\":\"966010\",\"primaryLabelValue\":\"966010\"}},{\"attributeHeader\":{\"labelValue\":\"966011\",\"primaryLabelValue\":\"966011\"}},{\"attributeHeader\":{\"labelValue\":\"966013\",\"primaryLabelValue\":\"966013\"}},{\"attributeHeader\":{\"labelValue\":\"966016\",\"primaryLabelValue\":\"966016\"}},{\"attributeHeader\":{\"labelValue\":\"966017\",\"primaryLabelValue\":\"966017\"}},{\"attributeHeader\":{\"labelValue\":\"966019\",\"primaryLabelValue\":\"966019\"}},{\"attributeHeader\":{\"labelValue\":\"966020\",\"primaryLabelValue\":\"966020\"}},{\"attributeHeader\":{\"labelValue\":\"966021\",\"primaryLabelValue\":\"966021\"}},{\"attributeHeader\":{\"labelValue\":\"966023\",\"primaryLabelValue\":\"966023\"}},{\"attributeHeader\":{\"labelValue\":\"966025\",\"primaryLabelValue\":\"966025\"}},{\"attributeHeader\":{\"labelValue\":\"966026\",\"primaryLabelValue\":\"966026\"}},{\"attributeHeader\":{\"labelValue\":\"966027\",\"primaryLabelValue\":\"966027\"}},{\"attributeHeader\":{\"labelValue\":\"966028\",\"primaryLabelValue\":\"966028\"}},{\"attributeHeader\":{\"labelValue\":\"966029\",\"primaryLabelValue\":\"966029\"}},{\"attributeHeader\":{\"labelValue\":\"966030\",\"primaryLabelValue\":\"966030\"}},{\"attributeHeader\":{\"labelValue\":\"966031\",\"primaryLabelValue\":\"966031\"}},{\"attributeHeader\":{\"labelValue\":\"966033\",\"primaryLabelValue\":\"966033\"}},{\"attributeHeader\":{\"labelValue\":\"966034\",\"primaryLabelValue\":\"966034\"}},{\"attributeHeader\":{\"labelValue\":\"966035\",\"primaryLabelValue\":\"966035\"}},{\"attributeHeader\":{\"labelValue\":\"966036\",\"primaryLabelValue\":\"966036\"}},{\"attributeHeader\":{\"labelValue\":\"966037\",\"primaryLabelValue\":\"966037\"}},{\"attributeHeader\":{\"labelValue\":\"966039\",\"primaryLabelValue\":\"966039\"}},{\"attributeHeader\":{\"labelValue\":\"966041\",\"primaryLabelValue\":\"966041\"}},{\"attributeHeader\":{\"labelValue\":\"966043\",\"primaryLabelValue\":\"966043\"}},{\"attributeHeader\":{\"labelValue\":\"966045\",\"primaryLabelValue\":\"966045\"}},{\"attributeHeader\":{\"labelValue\":\"966047\",\"primaryLabelValue\":\"966047\"}},{\"attributeHeader\":{\"labelValue\":\"966049\",\"primaryLabelValue\":\"966049\"}},{\"attributeHeader\":{\"labelValue\":\"966050\",\"primaryLabelValue\":\"966050\"}},{\"attributeHeader\":{\"labelValue\":\"966051\",\"primaryLabelValue\":\"966051\"}},{\"attributeHeader\":{\"labelValue\":\"966053\",\"primaryLabelValue\":\"966053\"}},{\"attributeHeader\":{\"labelValue\":\"966055\",\"primaryLabelValue\":\"966055\"}},{\"attributeHeader\":{\"labelValue\":\"966057\",\"primaryLabelValue\":\"966057\"}},{\"attributeHeader\":{\"labelValue\":\"966059\",\"primaryLabelValue\":\"966059\"}},{\"attributeHeader\":{\"labelValue\":\"966061\",\"primaryLabelValue\":\"966061\"}},{\"attributeHeader\":{\"labelValue\":\"966062\",\"primaryLabelValue\":\"966062\"}},{\"attributeHeader\":{\"labelValue\":\"966063\",\"primaryLabelValue\":\"966063\"}},{\"attributeHeader\":{\"labelValue\":\"966064\",\"primaryLabelValue\":\"966064\"}},{\"attributeHeader\":{\"labelValue\":\"966066\",\"primaryLabelValue\":\"966066\"}},{\"attributeHeader\":{\"labelValue\":\"966067\",\"primaryLabelValue\":\"966067\"}},{\"attributeHeader\":{\"labelValue\":\"966068\",\"primaryLabelValue\":\"966068\"}},{\"attributeHeader\":{\"labelValue\":\"966069\",\"primaryLabelValue\":\"966069\"}},{\"attributeHeader\":{\"labelValue\":\"966071\",\"primaryLabelValue\":\"966071\"}},{\"attributeHeader\":{\"labelValue\":\"966072\",\"primaryLabelValue\":\"966072\"}},{\"attributeHeader\":{\"labelValue\":\"966074\",\"primaryLabelValue\":\"966074\"}},{\"attributeHeader\":{\"labelValue\":\"966075\",\"primaryLabelValue\":\"966075\"}},{\"attributeHeader\":{\"labelValue\":\"966077\",\"primaryLabelValue\":\"966077\"}},{\"attributeHeader\":{\"labelValue\":\"966079\",\"primaryLabelValue\":\"966079\"}},{\"attributeHeader\":{\"labelValue\":\"966083\",\"primaryLabelValue\":\"966083\"}},{\"attributeHeader\":{\"labelValue\":\"966084\",\"primaryLabelValue\":\"966084\"}},{\"attributeHeader\":{\"labelValue\":\"966085\",\"primaryLabelValue\":\"966085\"}},{\"attributeHeader\":{\"labelValue\":\"966086\",\"primaryLabelValue\":\"966086\"}},{\"attributeHeader\":{\"labelValue\":\"966087\",\"primaryLabelValue\":\"966087\"}},{\"attributeHeader\":{\"labelValue\":\"966088\",\"primaryLabelValue\":\"966088\"}},{\"attributeHeader\":{\"labelValue\":\"966089\",\"primaryLabelValue\":\"966089\"}},{\"attributeHeader\":{\"labelValue\":\"966090\",\"primaryLabelValue\":\"966090\"}},{\"attributeHeader\":{\"labelValue\":\"966091\",\"primaryLabelValue\":\"966091\"}},{\"attributeHeader\":{\"labelValue\":\"966092\",\"primaryLabelValue\":\"966092\"}},{\"attributeHeader\":{\"labelValue\":\"966094\",\"primaryLabelValue\":\"966094\"}},{\"attributeHeader\":{\"labelValue\":\"966095\",\"primaryLabelValue\":\"966095\"}},{\"attributeHeader\":{\"labelValue\":\"966097\",\"primaryLabelValue\":\"966097\"}},{\"attributeHeader\":{\"labelValue\":\"966099\",\"primaryLabelValue\":\"966099\"}},{\"attributeHeader\":{\"labelValue\":\"966101\",\"primaryLabelValue\":\"966101\"}},{\"attributeHeader\":{\"labelValue\":\"966102\",\"primaryLabelValue\":\"966102\"}},{\"attributeHeader\":{\"labelValue\":\"966104\",\"primaryLabelValue\":\"966104\"}},{\"attributeHeader\":{\"labelValue\":\"966105\",\"primaryLabelValue\":\"966105\"}},{\"attributeHeader\":{\"labelValue\":\"966106\",\"primaryLabelValue\":\"966106\"}},{\"attributeHeader\":{\"labelValue\":\"966107\",\"primaryLabelValue\":\"966107\"}},{\"attributeHeader\":{\"labelValue\":\"966109\",\"primaryLabelValue\":\"966109\"}},{\"attributeHeader\":{\"labelValue\":\"966110\",\"primaryLabelValue\":\"966110\"}},{\"attributeHeader\":{\"labelValue\":\"966111\",\"primaryLabelValue\":\"966111\"}},{\"attributeHeader\":{\"labelValue\":\"966113\",\"primaryLabelValue\":\"966113\"}},{\"attributeHeader\":{\"labelValue\":\"966114\",\"primaryLabelValue\":\"966114\"}},{\"attributeHeader\":{\"labelValue\":\"966115\",\"primaryLabelValue\":\"966115\"}},{\"attributeHeader\":{\"labelValue\":\"966116\",\"primaryLabelValue\":\"966116\"}},{\"attributeHeader\":{\"labelValue\":\"966118\",\"primaryLabelValue\":\"966118\"}},{\"attributeHeader\":{\"labelValue\":\"966119\",\"primaryLabelValue\":\"966119\"}},{\"attributeHeader\":{\"labelValue\":\"966120\",\"primaryLabelValue\":\"966120\"}},{\"attributeHeader\":{\"labelValue\":\"966122\",\"primaryLabelValue\":\"966122\"}},{\"attributeHeader\":{\"labelValue\":\"966123\",\"primaryLabelValue\":\"966123\"}},{\"attributeHeader\":{\"labelValue\":\"966125\",\"primaryLabelValue\":\"966125\"}},{\"attributeHeader\":{\"labelValue\":\"966126\",\"primaryLabelValue\":\"966126\"}},{\"attributeHeader\":{\"labelValue\":\"966128\",\"primaryLabelValue\":\"966128\"}},{\"attributeHeader\":{\"labelValue\":\"966129\",\"primaryLabelValue\":\"966129\"}},{\"attributeHeader\":{\"labelValue\":\"966130\",\"primaryLabelValue\":\"966130\"}},{\"attributeHeader\":{\"labelValue\":\"966131\",\"primaryLabelValue\":\"966131\"}},{\"attributeHeader\":{\"labelValue\":\"966132\",\"primaryLabelValue\":\"966132\"}},{\"attributeHeader\":{\"labelValue\":\"966133\",\"primaryLabelValue\":\"966133\"}},{\"attributeHeader\":{\"labelValue\":\"966134\",\"primaryLabelValue\":\"966134\"}},{\"attributeHeader\":{\"labelValue\":\"966136\",\"primaryLabelValue\":\"966136\"}},{\"attributeHeader\":{\"labelValue\":\"966137\",\"primaryLabelValue\":\"966137\"}},{\"attributeHeader\":{\"labelValue\":\"966139\",\"primaryLabelValue\":\"966139\"}},{\"attributeHeader\":{\"labelValue\":\"966140\",\"primaryLabelValue\":\"966140\"}},{\"attributeHeader\":{\"labelValue\":\"966141\",\"primaryLabelValue\":\"966141\"}},{\"attributeHeader\":{\"labelValue\":\"966142\",\"primaryLabelValue\":\"966142\"}},{\"attributeHeader\":{\"labelValue\":\"966143\",\"primaryLabelValue\":\"966143\"}},{\"attributeHeader\":{\"labelValue\":\"966144\",\"primaryLabelValue\":\"966144\"}},{\"attributeHeader\":{\"labelValue\":\"966145\",\"primaryLabelValue\":\"966145\"}},{\"attributeHeader\":{\"labelValue\":\"966147\",\"primaryLabelValue\":\"966147\"}},{\"attributeHeader\":{\"labelValue\":\"966148\",\"primaryLabelValue\":\"966148\"}},{\"attributeHeader\":{\"labelValue\":\"966150\",\"primaryLabelValue\":\"966150\"}},{\"attributeHeader\":{\"labelValue\":\"966151\",\"primaryLabelValue\":\"966151\"}},{\"attributeHeader\":{\"labelValue\":\"966153\",\"primaryLabelValue\":\"966153\"}},{\"attributeHeader\":{\"labelValue\":\"966154\",\"primaryLabelValue\":\"966154\"}},{\"attributeHeader\":{\"labelValue\":\"966156\",\"primaryLabelValue\":\"966156\"}},{\"attributeHeader\":{\"labelValue\":\"966157\",\"primaryLabelValue\":\"966157\"}},{\"attributeHeader\":{\"labelValue\":\"966159\",\"primaryLabelValue\":\"966159\"}},{\"attributeHeader\":{\"labelValue\":\"966160\",\"primaryLabelValue\":\"966160\"}},{\"attributeHeader\":{\"labelValue\":\"966162\",\"primaryLabelValue\":\"966162\"}},{\"attributeHeader\":{\"labelValue\":\"966164\",\"primaryLabelValue\":\"966164\"}},{\"attributeHeader\":{\"labelValue\":\"966165\",\"primaryLabelValue\":\"966165\"}},{\"attributeHeader\":{\"labelValue\":\"966166\",\"primaryLabelValue\":\"966166\"}},{\"attributeHeader\":{\"labelValue\":\"966167\",\"primaryLabelValue\":\"966167\"}},{\"attributeHeader\":{\"labelValue\":\"966168\",\"primaryLabelValue\":\"966168\"}},{\"attributeHeader\":{\"labelValue\":\"966169\",\"primaryLabelValue\":\"966169\"}},{\"attributeHeader\":{\"labelValue\":\"966170\",\"primaryLabelValue\":\"966170\"}},{\"attributeHeader\":{\"labelValue\":\"966171\",\"primaryLabelValue\":\"966171\"}},{\"attributeHeader\":{\"labelValue\":\"966173\",\"primaryLabelValue\":\"966173\"}},{\"attributeHeader\":{\"labelValue\":\"966174\",\"primaryLabelValue\":\"966174\"}},{\"attributeHeader\":{\"labelValue\":\"966176\",\"primaryLabelValue\":\"966176\"}},{\"attributeHeader\":{\"labelValue\":\"966177\",\"primaryLabelValue\":\"966177\"}},{\"attributeHeader\":{\"labelValue\":\"966178\",\"primaryLabelValue\":\"966178\"}},{\"attributeHeader\":{\"labelValue\":\"966179\",\"primaryLabelValue\":\"966179\"}},{\"attributeHeader\":{\"labelValue\":\"966181\",\"primaryLabelValue\":\"966181\"}},{\"attributeHeader\":{\"labelValue\":\"966182\",\"primaryLabelValue\":\"966182\"}},{\"attributeHeader\":{\"labelValue\":\"966183\",\"primaryLabelValue\":\"966183\"}},{\"attributeHeader\":{\"labelValue\":\"966184\",\"primaryLabelValue\":\"966184\"}},{\"attributeHeader\":{\"labelValue\":\"966185\",\"primaryLabelValue\":\"966185\"}},{\"attributeHeader\":{\"labelValue\":\"966187\",\"primaryLabelValue\":\"966187\"}},{\"attributeHeader\":{\"labelValue\":\"966188\",\"primaryLabelValue\":\"966188\"}},{\"attributeHeader\":{\"labelValue\":\"966189\",\"primaryLabelValue\":\"966189\"}},{\"attributeHeader\":{\"labelValue\":\"966190\",\"primaryLabelValue\":\"966190\"}},{\"attributeHeader\":{\"labelValue\":\"966191\",\"primaryLabelValue\":\"966191\"}},{\"attributeHeader\":{\"labelValue\":\"966193\",\"primaryLabelValue\":\"966193\"}},{\"attributeHeader\":{\"labelValue\":\"966194\",\"primaryLabelValue\":\"966194\"}},{\"attributeHeader\":{\"labelValue\":\"966195\",\"primaryLabelValue\":\"966195\"}},{\"attributeHeader\":{\"labelValue\":\"966196\",\"primaryLabelValue\":\"966196\"}},{\"attributeHeader\":{\"labelValue\":\"966198\",\"primaryLabelValue\":\"966198\"}},{\"attributeHeader\":{\"labelValue\":\"966199\",\"primaryLabelValue\":\"966199\"}},{\"attributeHeader\":{\"labelValue\":\"966200\",\"primaryLabelValue\":\"966200\"}},{\"attributeHeader\":{\"labelValue\":\"966201\",\"primaryLabelValue\":\"966201\"}},{\"attributeHeader\":{\"labelValue\":\"966203\",\"primaryLabelValue\":\"966203\"}},{\"attributeHeader\":{\"labelValue\":\"966204\",\"primaryLabelValue\":\"966204\"}},{\"attributeHeader\":{\"labelValue\":\"966206\",\"primaryLabelValue\":\"966206\"}},{\"attributeHeader\":{\"labelValue\":\"966207\",\"primaryLabelValue\":\"966207\"}},{\"attributeHeader\":{\"labelValue\":\"966209\",\"primaryLabelValue\":\"966209\"}},{\"attributeHeader\":{\"labelValue\":\"966211\",\"primaryLabelValue\":\"966211\"}},{\"attributeHeader\":{\"labelValue\":\"966212\",\"primaryLabelValue\":\"966212\"}},{\"attributeHeader\":{\"labelValue\":\"966214\",\"primaryLabelValue\":\"966214\"}},{\"attributeHeader\":{\"labelValue\":\"966215\",\"primaryLabelValue\":\"966215\"}},{\"attributeHeader\":{\"labelValue\":\"966217\",\"primaryLabelValue\":\"966217\"}},{\"attributeHeader\":{\"labelValue\":\"966222\",\"primaryLabelValue\":\"966222\"}},{\"attributeHeader\":{\"labelValue\":\"966223\",\"primaryLabelValue\":\"966223\"}},{\"attributeHeader\":{\"labelValue\":\"966224\",\"primaryLabelValue\":\"966224\"}},{\"attributeHeader\":{\"labelValue\":\"966225\",\"primaryLabelValue\":\"966225\"}},{\"attributeHeader\":{\"labelValue\":\"966226\",\"primaryLabelValue\":\"966226\"}},{\"attributeHeader\":{\"labelValue\":\"966227\",\"primaryLabelValue\":\"966227\"}},{\"attributeHeader\":{\"labelValue\":\"966229\",\"primaryLabelValue\":\"966229\"}},{\"attributeHeader\":{\"labelValue\":\"966230\",\"primaryLabelValue\":\"966230\"}},{\"attributeHeader\":{\"labelValue\":\"966231\",\"primaryLabelValue\":\"966231\"}},{\"attributeHeader\":{\"labelValue\":\"966233\",\"primaryLabelValue\":\"966233\"}},{\"attributeHeader\":{\"labelValue\":\"966234\",\"primaryLabelValue\":\"966234\"}},{\"attributeHeader\":{\"labelValue\":\"966235\",\"primaryLabelValue\":\"966235\"}},{\"attributeHeader\":{\"labelValue\":\"966237\",\"primaryLabelValue\":\"966237\"}},{\"attributeHeader\":{\"labelValue\":\"966239\",\"primaryLabelValue\":\"966239\"}},{\"attributeHeader\":{\"labelValue\":\"966242\",\"primaryLabelValue\":\"966242\"}},{\"attributeHeader\":{\"labelValue\":\"966243\",\"primaryLabelValue\":\"966243\"}},{\"attributeHeader\":{\"labelValue\":\"966244\",\"primaryLabelValue\":\"966244\"}},{\"attributeHeader\":{\"labelValue\":\"966245\",\"primaryLabelValue\":\"966245\"}},{\"attributeHeader\":{\"labelValue\":\"966246\",\"primaryLabelValue\":\"966246\"}},{\"attributeHeader\":{\"labelValue\":\"966247\",\"primaryLabelValue\":\"966247\"}},{\"attributeHeader\":{\"labelValue\":\"966248\",\"primaryLabelValue\":\"966248\"}},{\"attributeHeader\":{\"labelValue\":\"966249\",\"primaryLabelValue\":\"966249\"}},{\"attributeHeader\":{\"labelValue\":\"966250\",\"primaryLabelValue\":\"966250\"}},{\"attributeHeader\":{\"labelValue\":\"966251\",\"primaryLabelValue\":\"966251\"}},{\"attributeHeader\":{\"labelValue\":\"966253\",\"primaryLabelValue\":\"966253\"}},{\"attributeHeader\":{\"labelValue\":\"966255\",\"primaryLabelValue\":\"966255\"}},{\"attributeHeader\":{\"labelValue\":\"966256\",\"primaryLabelValue\":\"966256\"}},{\"attributeHeader\":{\"labelValue\":\"966257\",\"primaryLabelValue\":\"966257\"}},{\"attributeHeader\":{\"labelValue\":\"966258\",\"primaryLabelValue\":\"966258\"}},{\"attributeHeader\":{\"labelValue\":\"966259\",\"primaryLabelValue\":\"966259\"}},{\"attributeHeader\":{\"labelValue\":\"966261\",\"primaryLabelValue\":\"966261\"}},{\"attributeHeader\":{\"labelValue\":\"966262\",\"primaryLabelValue\":\"966262\"}},{\"attributeHeader\":{\"labelValue\":\"966263\",\"primaryLabelValue\":\"966263\"}},{\"attributeHeader\":{\"labelValue\":\"966264\",\"primaryLabelValue\":\"966264\"}},{\"attributeHeader\":{\"labelValue\":\"966265\",\"primaryLabelValue\":\"966265\"}},{\"attributeHeader\":{\"labelValue\":\"966266\",\"primaryLabelValue\":\"966266\"}},{\"attributeHeader\":{\"labelValue\":\"966267\",\"primaryLabelValue\":\"966267\"}},{\"attributeHeader\":{\"labelValue\":\"966268\",\"primaryLabelValue\":\"966268\"}},{\"attributeHeader\":{\"labelValue\":\"966269\",\"primaryLabelValue\":\"966269\"}},{\"attributeHeader\":{\"labelValue\":\"966270\",\"primaryLabelValue\":\"966270\"}},{\"attributeHeader\":{\"labelValue\":\"966271\",\"primaryLabelValue\":\"966271\"}},{\"attributeHeader\":{\"labelValue\":\"966272\",\"primaryLabelValue\":\"966272\"}},{\"attributeHeader\":{\"labelValue\":\"966273\",\"primaryLabelValue\":\"966273\"}},{\"attributeHeader\":{\"labelValue\":\"966275\",\"primaryLabelValue\":\"966275\"}},{\"attributeHeader\":{\"labelValue\":\"966276\",\"primaryLabelValue\":\"966276\"}},{\"attributeHeader\":{\"labelValue\":\"966278\",\"primaryLabelValue\":\"966278\"}},{\"attributeHeader\":{\"labelValue\":\"966279\",\"primaryLabelValue\":\"966279\"}},{\"attributeHeader\":{\"labelValue\":\"966280\",\"primaryLabelValue\":\"966280\"}},{\"attributeHeader\":{\"labelValue\":\"966281\",\"primaryLabelValue\":\"966281\"}},{\"attributeHeader\":{\"labelValue\":\"966282\",\"primaryLabelValue\":\"966282\"}},{\"attributeHeader\":{\"labelValue\":\"966283\",\"primaryLabelValue\":\"966283\"}},{\"attributeHeader\":{\"labelValue\":\"966284\",\"primaryLabelValue\":\"966284\"}},{\"attributeHeader\":{\"labelValue\":\"966285\",\"primaryLabelValue\":\"966285\"}},{\"attributeHeader\":{\"labelValue\":\"966286\",\"primaryLabelValue\":\"966286\"}},{\"attributeHeader\":{\"labelValue\":\"966287\",\"primaryLabelValue\":\"966287\"}},{\"attributeHeader\":{\"labelValue\":\"966288\",\"primaryLabelValue\":\"966288\"}},{\"attributeHeader\":{\"labelValue\":\"966289\",\"primaryLabelValue\":\"966289\"}},{\"attributeHeader\":{\"labelValue\":\"966290\",\"primaryLabelValue\":\"966290\"}},{\"attributeHeader\":{\"labelValue\":\"966291\",\"primaryLabelValue\":\"966291\"}},{\"attributeHeader\":{\"labelValue\":\"966293\",\"primaryLabelValue\":\"966293\"}},{\"attributeHeader\":{\"labelValue\":\"966295\",\"primaryLabelValue\":\"966295\"}},{\"attributeHeader\":{\"labelValue\":\"966297\",\"primaryLabelValue\":\"966297\"}},{\"attributeHeader\":{\"labelValue\":\"966298\",\"primaryLabelValue\":\"966298\"}},{\"attributeHeader\":{\"labelValue\":\"966299\",\"primaryLabelValue\":\"966299\"}},{\"attributeHeader\":{\"labelValue\":\"966300\",\"primaryLabelValue\":\"966300\"}},{\"attributeHeader\":{\"labelValue\":\"966302\",\"primaryLabelValue\":\"966302\"}},{\"attributeHeader\":{\"labelValue\":\"966303\",\"primaryLabelValue\":\"966303\"}},{\"attributeHeader\":{\"labelValue\":\"966305\",\"primaryLabelValue\":\"966305\"}},{\"attributeHeader\":{\"labelValue\":\"966307\",\"primaryLabelValue\":\"966307\"}},{\"attributeHeader\":{\"labelValue\":\"966308\",\"primaryLabelValue\":\"966308\"}},{\"attributeHeader\":{\"labelValue\":\"966309\",\"primaryLabelValue\":\"966309\"}},{\"attributeHeader\":{\"labelValue\":\"966310\",\"primaryLabelValue\":\"966310\"}},{\"attributeHeader\":{\"labelValue\":\"966311\",\"primaryLabelValue\":\"966311\"}},{\"attributeHeader\":{\"labelValue\":\"966312\",\"primaryLabelValue\":\"966312\"}},{\"attributeHeader\":{\"labelValue\":\"966313\",\"primaryLabelValue\":\"966313\"}},{\"attributeHeader\":{\"labelValue\":\"966314\",\"primaryLabelValue\":\"966314\"}},{\"attributeHeader\":{\"labelValue\":\"966315\",\"primaryLabelValue\":\"966315\"}},{\"attributeHeader\":{\"labelValue\":\"966316\",\"primaryLabelValue\":\"966316\"}},{\"attributeHeader\":{\"labelValue\":\"966317\",\"primaryLabelValue\":\"966317\"}},{\"attributeHeader\":{\"labelValue\":\"966318\",\"primaryLabelValue\":\"966318\"}},{\"attributeHeader\":{\"labelValue\":\"966319\",\"primaryLabelValue\":\"966319\"}},{\"attributeHeader\":{\"labelValue\":\"966320\",\"primaryLabelValue\":\"966320\"}},{\"attributeHeader\":{\"labelValue\":\"966321\",\"primaryLabelValue\":\"966321\"}},{\"attributeHeader\":{\"labelValue\":\"966322\",\"primaryLabelValue\":\"966322\"}},{\"attributeHeader\":{\"labelValue\":\"966323\",\"primaryLabelValue\":\"966323\"}},{\"attributeHeader\":{\"labelValue\":\"966324\",\"primaryLabelValue\":\"966324\"}},{\"attributeHeader\":{\"labelValue\":\"966325\",\"primaryLabelValue\":\"966325\"}},{\"attributeHeader\":{\"labelValue\":\"966326\",\"primaryLabelValue\":\"966326\"}},{\"attributeHeader\":{\"labelValue\":\"966327\",\"primaryLabelValue\":\"966327\"}},{\"attributeHeader\":{\"labelValue\":\"966328\",\"primaryLabelValue\":\"966328\"}},{\"attributeHeader\":{\"labelValue\":\"966329\",\"primaryLabelValue\":\"966329\"}},{\"attributeHeader\":{\"labelValue\":\"966330\",\"primaryLabelValue\":\"966330\"}},{\"attributeHeader\":{\"labelValue\":\"966331\",\"primaryLabelValue\":\"966331\"}},{\"attributeHeader\":{\"labelValue\":\"966332\",\"primaryLabelValue\":\"966332\"}},{\"attributeHeader\":{\"labelValue\":\"966333\",\"primaryLabelValue\":\"966333\"}},{\"attributeHeader\":{\"labelValue\":\"966335\",\"primaryLabelValue\":\"966335\"}},{\"attributeHeader\":{\"labelValue\":\"966336\",\"primaryLabelValue\":\"966336\"}},{\"attributeHeader\":{\"labelValue\":\"966337\",\"primaryLabelValue\":\"966337\"}},{\"attributeHeader\":{\"labelValue\":\"966339\",\"primaryLabelValue\":\"966339\"}},{\"attributeHeader\":{\"labelValue\":\"966340\",\"primaryLabelValue\":\"966340\"}},{\"attributeHeader\":{\"labelValue\":\"966341\",\"primaryLabelValue\":\"966341\"}},{\"attributeHeader\":{\"labelValue\":\"966342\",\"primaryLabelValue\":\"966342\"}},{\"attributeHeader\":{\"labelValue\":\"966343\",\"primaryLabelValue\":\"966343\"}},{\"attributeHeader\":{\"labelValue\":\"966344\",\"primaryLabelValue\":\"966344\"}},{\"attributeHeader\":{\"labelValue\":\"966346\",\"primaryLabelValue\":\"966346\"}},{\"attributeHeader\":{\"labelValue\":\"966348\",\"primaryLabelValue\":\"966348\"}},{\"attributeHeader\":{\"labelValue\":\"966349\",\"primaryLabelValue\":\"966349\"}},{\"attributeHeader\":{\"labelValue\":\"966350\",\"primaryLabelValue\":\"966350\"}},{\"attributeHeader\":{\"labelValue\":\"966351\",\"primaryLabelValue\":\"966351\"}},{\"attributeHeader\":{\"labelValue\":\"966352\",\"primaryLabelValue\":\"966352\"}},{\"attributeHeader\":{\"labelValue\":\"966353\",\"primaryLabelValue\":\"966353\"}},{\"attributeHeader\":{\"labelValue\":\"966354\",\"primaryLabelValue\":\"966354\"}},{\"attributeHeader\":{\"labelValue\":\"966355\",\"primaryLabelValue\":\"966355\"}},{\"attributeHeader\":{\"labelValue\":\"966356\",\"primaryLabelValue\":\"966356\"}},{\"attributeHeader\":{\"labelValue\":\"966359\",\"primaryLabelValue\":\"966359\"}},{\"attributeHeader\":{\"labelValue\":\"966360\",\"primaryLabelValue\":\"966360\"}},{\"attributeHeader\":{\"labelValue\":\"966361\",\"primaryLabelValue\":\"966361\"}},{\"attributeHeader\":{\"labelValue\":\"966362\",\"primaryLabelValue\":\"966362\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Hyland Software\",\"primaryLabelValue\":\"Hyland Software\"}},{\"attributeHeader\":{\"labelValue\":\"AMC Entertainment\",\"primaryLabelValue\":\"AMC Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"AC Lens\",\"primaryLabelValue\":\"AC Lens\"}},{\"attributeHeader\":{\"labelValue\":\"(add)ventures\",\"primaryLabelValue\":\"(add)ventures\"}},{\"attributeHeader\":{\"labelValue\":\"(mt) Media Temple\",\"primaryLabelValue\":\"(mt) Media Temple\"}},{\"attributeHeader\":{\"labelValue\":\"@properties\",\"primaryLabelValue\":\"@properties\"}},{\"attributeHeader\":{\"labelValue\":\"7 Medical Systems\",\"primaryLabelValue\":\"7 Medical Systems\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A White Orchid Wedding\",\"primaryLabelValue\":\"A White Orchid Wedding\"}},{\"attributeHeader\":{\"labelValue\":\"A&P Consulting Transportation Engineers\",\"primaryLabelValue\":\"A&P Consulting Transportation Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"A-1 Textiles\",\"primaryLabelValue\":\"A-1 Textiles\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron Oil Company\",\"primaryLabelValue\":\"Aaron Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease\",\"primaryLabelValue\":\"Aaron's Sales and Lease\"}},{\"attributeHeader\":{\"labelValue\":\"Abstract Displays\",\"primaryLabelValue\":\"Abstract Displays\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaris\",\"primaryLabelValue\":\"Acclaris\"}},{\"attributeHeader\":{\"labelValue\":\"Accounting Management Solutions\",\"primaryLabelValue\":\"Accounting Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ACFN Franchised\",\"primaryLabelValue\":\"ACFN Franchised\"}},{\"attributeHeader\":{\"labelValue\":\"Achatz Handmade Pie\",\"primaryLabelValue\":\"Achatz Handmade Pie\"}},{\"attributeHeader\":{\"labelValue\":\"Active Website\",\"primaryLabelValue\":\"Active Website\"}},{\"attributeHeader\":{\"labelValue\":\"Acumen Building Enterprise\",\"primaryLabelValue\":\"Acumen Building Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptik\",\"primaryLabelValue\":\"Adaptik\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Solutions\",\"primaryLabelValue\":\"Adaptive Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ADC Integrated Systems\",\"primaryLabelValue\":\"ADC Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"ADEX Manufacturing Technologies\",\"primaryLabelValue\":\"ADEX Manufacturing Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Adoresoft\",\"primaryLabelValue\":\"Adoresoft\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Brain Monitoring\",\"primaryLabelValue\":\"Advanced Brain Monitoring\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Educational Products\",\"primaryLabelValue\":\"Advanced Educational Products\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Global Communications\",\"primaryLabelValue\":\"Advanced Global Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Systems Engineering\",\"primaryLabelValue\":\"Advanced Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"AdvancedMD Software\",\"primaryLabelValue\":\"AdvancedMD Software\"}},{\"attributeHeader\":{\"labelValue\":\"AdvantageBridal.com\",\"primaryLabelValue\":\"AdvantageBridal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advent Global Solutions\",\"primaryLabelValue\":\"Advent Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Adventure Life\",\"primaryLabelValue\":\"Adventure Life\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Media\",\"primaryLabelValue\":\"Advocate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Networks\",\"primaryLabelValue\":\"Advocate Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aerial Services\",\"primaryLabelValue\":\"Aerial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aero Solutions\",\"primaryLabelValue\":\"Aero Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"agencyQ\",\"primaryLabelValue\":\"agencyQ\"}},{\"attributeHeader\":{\"labelValue\":\"Agile\",\"primaryLabelValue\":\"Agile\"}},{\"attributeHeader\":{\"labelValue\":\"AIMS Power\",\"primaryLabelValue\":\"AIMS Power\"}},{\"attributeHeader\":{\"labelValue\":\"Air Innovations\",\"primaryLabelValue\":\"Air Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Airgun Depot\",\"primaryLabelValue\":\"Airgun Depot\"}},{\"attributeHeader\":{\"labelValue\":\"AKASHA-US\",\"primaryLabelValue\":\"AKASHA-US\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Alexa's Angels\",\"primaryLabelValue\":\"Alexa's Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"A-Life Medical\",\"primaryLabelValue\":\"A-Life Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Alinean\",\"primaryLabelValue\":\"Alinean\"}},{\"attributeHeader\":{\"labelValue\":\"All Access Staging & Productions\",\"primaryLabelValue\":\"All Access Staging & Productions\"}},{\"attributeHeader\":{\"labelValue\":\"All Action Architectural Metal & Glass\",\"primaryLabelValue\":\"All Action Architectural Metal & Glass\"}},{\"attributeHeader\":{\"labelValue\":\"All American Rentals\",\"primaryLabelValue\":\"All American Rentals\"}},{\"attributeHeader\":{\"labelValue\":\"All Covered\",\"primaryLabelValue\":\"All Covered\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"allConnex\",\"primaryLabelValue\":\"allConnex\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryLabelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Benefit Group of Illinois\",\"primaryLabelValue\":\"Alliance Benefit Group of Illinois\"}},{\"attributeHeader\":{\"labelValue\":\"Allmenus.com\",\"primaryLabelValue\":\"Allmenus.com\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Alternate Solutions Homecare\",\"primaryLabelValue\":\"Alternate Solutions Homecare\"}},{\"attributeHeader\":{\"labelValue\":\"Altour\",\"primaryLabelValue\":\"Altour\"}},{\"attributeHeader\":{\"labelValue\":\"Ameresco\",\"primaryLabelValue\":\"Ameresco\"}},{\"attributeHeader\":{\"labelValue\":\"American Bancard\",\"primaryLabelValue\":\"American Bancard\"}},{\"attributeHeader\":{\"labelValue\":\"American Communications\",\"primaryLabelValue\":\"American Communications\"}},{\"attributeHeader\":{\"labelValue\":\"American Fire Restoration\",\"primaryLabelValue\":\"American Fire Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Reporting\",\"primaryLabelValue\":\"American Reporting\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"American Technologies\",\"primaryLabelValue\":\"American Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"American Tire Distributors\",\"primaryLabelValue\":\"American Tire Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"American Unit\",\"primaryLabelValue\":\"American Unit\"}},{\"attributeHeader\":{\"labelValue\":\"America's Window\",\"primaryLabelValue\":\"America's Window\"}},{\"attributeHeader\":{\"labelValue\":\"Amigo Mobility International\",\"primaryLabelValue\":\"Amigo Mobility International\"}},{\"attributeHeader\":{\"labelValue\":\"Amnet Technology Solutions\",\"primaryLabelValue\":\"Amnet Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Anago Cleaning Systems\",\"primaryLabelValue\":\"Anago Cleaning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ANDA Networks\",\"primaryLabelValue\":\"ANDA Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Annie's\",\"primaryLabelValue\":\"Annie's\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Answer Center America\",\"primaryLabelValue\":\"Answer Center America\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerLab\",\"primaryLabelValue\":\"AnswerLab\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerNet\",\"primaryLabelValue\":\"AnswerNet\"}},{\"attributeHeader\":{\"labelValue\":\"Anu Resources Unlimited\",\"primaryLabelValue\":\"Anu Resources Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Instruments\",\"primaryLabelValue\":\"Apex Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"APG\",\"primaryLabelValue\":\"APG\"}},{\"attributeHeader\":{\"labelValue\":\"Appia Communications\",\"primaryLabelValue\":\"Appia Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Trust\",\"primaryLabelValue\":\"Applied Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Apptis\",\"primaryLabelValue\":\"Apptis\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"AQIWO\",\"primaryLabelValue\":\"AQIWO\"}},{\"attributeHeader\":{\"labelValue\":\"Arbor-Nomics Turf\",\"primaryLabelValue\":\"Arbor-Nomics Turf\"}},{\"attributeHeader\":{\"labelValue\":\"Arborwell\",\"primaryLabelValue\":\"Arborwell\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaTech Systems\",\"primaryLabelValue\":\"ArcaTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Arent Fox\",\"primaryLabelValue\":\"Arent Fox\"}},{\"attributeHeader\":{\"labelValue\":\"ARES\",\"primaryLabelValue\":\"ARES\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Capital Management\",\"primaryLabelValue\":\"Argent Capital Management\"}},{\"attributeHeader\":{\"labelValue\":\"ARHD\",\"primaryLabelValue\":\"ARHD\"}},{\"attributeHeader\":{\"labelValue\":\"Aribex\",\"primaryLabelValue\":\"Aribex\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arnold & Porter\",\"primaryLabelValue\":\"Arnold & Porter\"}},{\"attributeHeader\":{\"labelValue\":\"ARRC Technology\",\"primaryLabelValue\":\"ARRC Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Art & Logic\",\"primaryLabelValue\":\"Art & Logic\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP\",\"primaryLabelValue\":\"ASAP\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP Towing & Storage\",\"primaryLabelValue\":\"ASAP Towing & Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend HR\",\"primaryLabelValue\":\"Ascend HR\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Technology\",\"primaryLabelValue\":\"Ascendant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ASI System Integration\",\"primaryLabelValue\":\"ASI System Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Exteriors\",\"primaryLabelValue\":\"Aspen Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"AspireHR\",\"primaryLabelValue\":\"AspireHR\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Atkinson-Baker\",\"primaryLabelValue\":\"Atkinson-Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"Attack!\",\"primaryLabelValue\":\"Attack!\"}},{\"attributeHeader\":{\"labelValue\":\"Audigy Group\",\"primaryLabelValue\":\"Audigy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Audio Messaging Solutions\",\"primaryLabelValue\":\"Audio Messaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Consulting\",\"primaryLabelValue\":\"Avalon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Document Services\",\"primaryLabelValue\":\"Avalon Document Services\"}},{\"attributeHeader\":{\"labelValue\":\"AvcomEast\",\"primaryLabelValue\":\"AvcomEast\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Technical Resources\",\"primaryLabelValue\":\"AVID Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"BackOffice Associates\",\"primaryLabelValue\":\"BackOffice Associates\"}},{\"attributeHeader\":{\"labelValue\":\"BACtrack Breathalyzers\",\"primaryLabelValue\":\"BACtrack Breathalyzers\"}},{\"attributeHeader\":{\"labelValue\":\"Baggallini\",\"primaryLabelValue\":\"Baggallini\"}},{\"attributeHeader\":{\"labelValue\":\"Bain Medina Bain\",\"primaryLabelValue\":\"Bain Medina Bain\"}},{\"attributeHeader\":{\"labelValue\":\"Baker & McKenzie\",\"primaryLabelValue\":\"Baker & McKenzie\"}},{\"attributeHeader\":{\"labelValue\":\"BakerRisk\",\"primaryLabelValue\":\"BakerRisk\"}},{\"attributeHeader\":{\"labelValue\":\"BalancePoint\",\"primaryLabelValue\":\"BalancePoint\"}},{\"attributeHeader\":{\"labelValue\":\"Bamco\",\"primaryLabelValue\":\"Bamco\"}},{\"attributeHeader\":{\"labelValue\":\"BandCon\",\"primaryLabelValue\":\"BandCon\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Barbara Lynch Gruppo\",\"primaryLabelValue\":\"Barbara Lynch Gruppo\"}},{\"attributeHeader\":{\"labelValue\":\"Barnes & Thornburg\",\"primaryLabelValue\":\"Barnes & Thornburg\"}},{\"attributeHeader\":{\"labelValue\":\"Bars + Tone\",\"primaryLabelValue\":\"Bars + Tone\"}},{\"attributeHeader\":{\"labelValue\":\"Bay Bridge Decision Technologies\",\"primaryLabelValue\":\"Bay Bridge Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Baystate Financial Services\",\"primaryLabelValue\":\"Baystate Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"BB&E \",\"primaryLabelValue\":\"BB&E \"}},{\"attributeHeader\":{\"labelValue\":\"BBH Solutions\",\"primaryLabelValue\":\"BBH Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BBS Technologies\",\"primaryLabelValue\":\"BBS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Application Services\",\"primaryLabelValue\":\"Beacon Application Services\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beau-coup Wedding Favors\",\"primaryLabelValue\":\"Beau-coup Wedding Favors\"}},{\"attributeHeader\":{\"labelValue\":\"BeavEx\",\"primaryLabelValue\":\"BeavEx\"}},{\"attributeHeader\":{\"labelValue\":\"Bell ATM Service\",\"primaryLabelValue\":\"Bell ATM Service\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Express Services\",\"primaryLabelValue\":\"Benefit Express Services\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bennett Landscape\",\"primaryLabelValue\":\"Bennett Landscape\"}},{\"attributeHeader\":{\"labelValue\":\"Berk Wiper Converting\",\"primaryLabelValue\":\"Berk Wiper Converting\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Beverly Prior Architects\",\"primaryLabelValue\":\"Beverly Prior Architects\"}},{\"attributeHeader\":{\"labelValue\":\"BeyondTrust\",\"primaryLabelValue\":\"BeyondTrust\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Billtrust\",\"primaryLabelValue\":\"Billtrust\"}},{\"attributeHeader\":{\"labelValue\":\"Binary Tree\",\"primaryLabelValue\":\"Binary Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Biocare Medical\",\"primaryLabelValue\":\"Biocare Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BirdDog Solutions\",\"primaryLabelValue\":\"BirdDog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"Blank Rome\",\"primaryLabelValue\":\"Blank Rome\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blu SKY Restoration Contractors\",\"primaryLabelValue\":\"Blu SKY Restoration Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Exhibits\",\"primaryLabelValue\":\"Blue Sky Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Factory\",\"primaryLabelValue\":\"Blue Sky Factory\"}},{\"attributeHeader\":{\"labelValue\":\"BlueCotton\",\"primaryLabelValue\":\"BlueCotton\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"BlueWave Computing\",\"primaryLabelValue\":\"BlueWave Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluewolf\",\"primaryLabelValue\":\"Bluewolf\"}},{\"attributeHeader\":{\"labelValue\":\"BOC International\",\"primaryLabelValue\":\"BOC International\"}},{\"attributeHeader\":{\"labelValue\":\"Body Central\",\"primaryLabelValue\":\"Body Central\"}},{\"attributeHeader\":{\"labelValue\":\"Bogota Latin Bistro\",\"primaryLabelValue\":\"Bogota Latin Bistro\"}},{\"attributeHeader\":{\"labelValue\":\"Boice.net\",\"primaryLabelValue\":\"Boice.net\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Health Economics\",\"primaryLabelValue\":\"Boston Health Economics\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BPA International\",\"primaryLabelValue\":\"BPA International\"}},{\"attributeHeader\":{\"labelValue\":\"Bradley Arant Boult Cummings\",\"primaryLabelValue\":\"Bradley Arant Boult Cummings\"}},{\"attributeHeader\":{\"labelValue\":\"Branco Enterprises\",\"primaryLabelValue\":\"Branco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Brandwise\",\"primaryLabelValue\":\"Brandwise\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Cork Human Capital\",\"primaryLabelValue\":\"Brian Cork Human Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Briteskies\",\"primaryLabelValue\":\"Briteskies\"}},{\"attributeHeader\":{\"labelValue\":\"BroadRiver\",\"primaryLabelValue\":\"BroadRiver\"}},{\"attributeHeader\":{\"labelValue\":\"BroadSoft\",\"primaryLabelValue\":\"BroadSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Bronto Software\",\"primaryLabelValue\":\"Bronto Software\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Brewery\",\"primaryLabelValue\":\"Brooklyn Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Medical Industries\",\"primaryLabelValue\":\"Brown Medical Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Exchange\",\"primaryLabelValue\":\"Buffalo Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Filter\",\"primaryLabelValue\":\"Buffalo Filter\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bullhorn\",\"primaryLabelValue\":\"Bullhorn\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Burwood Group\",\"primaryLabelValue\":\"Burwood Group\"}},{\"attributeHeader\":{\"labelValue\":\"Busey Group\",\"primaryLabelValue\":\"Busey Group\"}},{\"attributeHeader\":{\"labelValue\":\"BusinessOnLine\",\"primaryLabelValue\":\"BusinessOnLine\"}},{\"attributeHeader\":{\"labelValue\":\"C&G Technologies\",\"primaryLabelValue\":\"C&G Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C&S Companies\",\"primaryLabelValue\":\"C&S Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Manufacturing Business\",\"primaryLabelValue\":\"Cable Manufacturing Business\"}},{\"attributeHeader\":{\"labelValue\":\"Cahill Gordon & Reindel\",\"primaryLabelValue\":\"Cahill Gordon & Reindel\"}},{\"attributeHeader\":{\"labelValue\":\"Cali Bamboo\",\"primaryLabelValue\":\"Cali Bamboo\"}},{\"attributeHeader\":{\"labelValue\":\"Callis Communications\",\"primaryLabelValue\":\"Callis Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Cameta Camera\",\"primaryLabelValue\":\"Cameta Camera\"}},{\"attributeHeader\":{\"labelValue\":\"Candle Warmers Etc.\",\"primaryLabelValue\":\"Candle Warmers Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"CandyWarehouse.com\",\"primaryLabelValue\":\"CandyWarehouse.com\"}},{\"attributeHeader\":{\"labelValue\":\"Canyon Manufacturing Services\",\"primaryLabelValue\":\"Canyon Manufacturing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Hill Exxon\",\"primaryLabelValue\":\"Capitol Hill Exxon\"}},{\"attributeHeader\":{\"labelValue\":\"Capps Manufacturing\",\"primaryLabelValue\":\"Capps Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone Brokerage\",\"primaryLabelValue\":\"Capstone Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Caribbean Food Delights\",\"primaryLabelValue\":\"Caribbean Food Delights\"}},{\"attributeHeader\":{\"labelValue\":\"Carlson Timber Products\",\"primaryLabelValue\":\"Carlson Timber Products\"}},{\"attributeHeader\":{\"labelValue\":\"Carousel Industries\",\"primaryLabelValue\":\"Carousel Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Carrillo Business Technologies\",\"primaryLabelValue\":\"Carrillo Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CaseTech\",\"primaryLabelValue\":\"CaseTech\"}},{\"attributeHeader\":{\"labelValue\":\"Cash Cycle Solutions\",\"primaryLabelValue\":\"Cash Cycle Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Marketing\",\"primaryLabelValue\":\"Catapult Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Cayenne Creative Group\",\"primaryLabelValue\":\"Cayenne Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"CBT Nuggets\",\"primaryLabelValue\":\"CBT Nuggets\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Presentation Systems\",\"primaryLabelValue\":\"CCS Presentation Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CD+M Lighting Design Group\",\"primaryLabelValue\":\"CD+M Lighting Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Celerant Technology\",\"primaryLabelValue\":\"Celerant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Cellu Tissue Holdings\",\"primaryLabelValue\":\"Cellu Tissue Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy International Services\",\"primaryLabelValue\":\"Cenergy International Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cen-Med Enterprises\",\"primaryLabelValue\":\"Cen-Med Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Centerpoint Builders\",\"primaryLabelValue\":\"Centerpoint Builders\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"CentraComm Communications\",\"primaryLabelValue\":\"CentraComm Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Central Packaging\",\"primaryLabelValue\":\"Central Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Centric Consulting\",\"primaryLabelValue\":\"Centric Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"CenturyNovelty.com\",\"primaryLabelValue\":\"CenturyNovelty.com\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Aviation Services\",\"primaryLabelValue\":\"Certified Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Languages International\",\"primaryLabelValue\":\"Certified Languages International\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Restoration Drycleaning Network\",\"primaryLabelValue\":\"Certified Restoration Drycleaning Network\"}},{\"attributeHeader\":{\"labelValue\":\"CETRA Language Solutions\",\"primaryLabelValue\":\"CETRA Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman Kelly\",\"primaryLabelValue\":\"Chapman Kelly\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chen and Associates\",\"primaryLabelValue\":\"Chen and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Chicago Apartment Finders\",\"primaryLabelValue\":\"Chicago Apartment Finders\"}},{\"attributeHeader\":{\"labelValue\":\"Chocolate Maven Bakery & Cafe\",\"primaryLabelValue\":\"Chocolate Maven Bakery & Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"CHR Solutions\",\"primaryLabelValue\":\"CHR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chutes International\",\"primaryLabelValue\":\"Chutes International\"}},{\"attributeHeader\":{\"labelValue\":\"Citrin Cooperman\",\"primaryLabelValue\":\"Citrin Cooperman\"}},{\"attributeHeader\":{\"labelValue\":\"City Wide Maintenance of Colorado\",\"primaryLabelValue\":\"City Wide Maintenance of Colorado\"}},{\"attributeHeader\":{\"labelValue\":\"CKR Interactive\",\"primaryLabelValue\":\"CKR Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Resource Group\",\"primaryLabelValue\":\"Clarity Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Classified Ventures\",\"primaryLabelValue\":\"Classified Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clean Air Gardening\",\"primaryLabelValue\":\"Clean Air Gardening\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"Clearstar.net\",\"primaryLabelValue\":\"Clearstar.net\"}},{\"attributeHeader\":{\"labelValue\":\"Cleveland Medical Devices\",\"primaryLabelValue\":\"Cleveland Medical Devices\"}},{\"attributeHeader\":{\"labelValue\":\"ClickAway Computers & Networking\",\"primaryLabelValue\":\"ClickAway Computers & Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Clima-Tech\",\"primaryLabelValue\":\"Clima-Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Research Management\",\"primaryLabelValue\":\"Clinical Research Management\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resource Network\",\"primaryLabelValue\":\"Clinical Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"Clover Technologies Group\",\"primaryLabelValue\":\"Clover Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"CME Associates\",\"primaryLabelValue\":\"CME Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CMS Forex\",\"primaryLabelValue\":\"CMS Forex\"}},{\"attributeHeader\":{\"labelValue\":\"COCC\",\"primaryLabelValue\":\"COCC\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"CoffeeForLess.com\",\"primaryLabelValue\":\"CoffeeForLess.com\"}},{\"attributeHeader\":{\"labelValue\":\"CognitiveData\",\"primaryLabelValue\":\"CognitiveData\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen & Company\",\"primaryLabelValue\":\"Cohen & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cohn Marketing\",\"primaryLabelValue\":\"Cohn Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Keepers\",\"primaryLabelValue\":\"Comfort Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"Communication Company of South Bend\",\"primaryLabelValue\":\"Communication Company of South Bend\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Community Waste Disposal\",\"primaryLabelValue\":\"Community Waste Disposal\"}},{\"attributeHeader\":{\"labelValue\":\"Comm-Works\",\"primaryLabelValue\":\"Comm-Works\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Book & Media Supply\",\"primaryLabelValue\":\"Complete Book & Media Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Resources\",\"primaryLabelValue\":\"Complete Pharmacy Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"CompSource\",\"primaryLabelValue\":\"CompSource\"}},{\"attributeHeader\":{\"labelValue\":\"CompuTech Systems\",\"primaryLabelValue\":\"CompuTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Aided Technology\",\"primaryLabelValue\":\"Computer Aided Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Computing System Innovations\",\"primaryLabelValue\":\"Computing System Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"ConceptSolutions\",\"primaryLabelValue\":\"ConceptSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Engineering Group\",\"primaryLabelValue\":\"Concord Engineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"ConnectWise\",\"primaryLabelValue\":\"ConnectWise\"}},{\"attributeHeader\":{\"labelValue\":\"Connextions\",\"primaryLabelValue\":\"Connextions\"}},{\"attributeHeader\":{\"labelValue\":\"Connolly\",\"primaryLabelValue\":\"Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Conservice\",\"primaryLabelValue\":\"Conservice\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Container\",\"primaryLabelValue\":\"Consolidated Container\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Office Systems\",\"primaryLabelValue\":\"Consolidated Office Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Consona\",\"primaryLabelValue\":\"Consona\"}},{\"attributeHeader\":{\"labelValue\":\"Constellation Software Engineering\",\"primaryLabelValue\":\"Constellation Software Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Construction Coordinators\",\"primaryLabelValue\":\"Construction Coordinators\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Cellular\",\"primaryLabelValue\":\"Consumer Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Contingent Network Services\",\"primaryLabelValue\":\"Contingent Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Continuant\",\"primaryLabelValue\":\"Continuant\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Consulting Group\",\"primaryLabelValue\":\"Convergence Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Marketing\",\"primaryLabelValue\":\"Convergence Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corgan Associates\",\"primaryLabelValue\":\"Corgan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Appraisal Services\",\"primaryLabelValue\":\"Cornerstone Appraisal Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Detention Products\",\"primaryLabelValue\":\"Cornerstone Detention Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Information Technologies\",\"primaryLabelValue\":\"Cornerstone Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Staffing Solutions\",\"primaryLabelValue\":\"CornerStone Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate IT Solutions\",\"primaryLabelValue\":\"Corporate IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Network Services\",\"primaryLabelValue\":\"Corporate Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Results\",\"primaryLabelValue\":\"Corporate Results\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covington & Burling\",\"primaryLabelValue\":\"Covington & Burling\"}},{\"attributeHeader\":{\"labelValue\":\"Cozen O'Connor\",\"primaryLabelValue\":\"Cozen O'Connor\"}},{\"attributeHeader\":{\"labelValue\":\"CPI Solutions\",\"primaryLabelValue\":\"CPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"CR Software\",\"primaryLabelValue\":\"CR Software\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Criterion Systems\",\"primaryLabelValue\":\"Criterion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Crowley Marine\",\"primaryLabelValue\":\"Crowley Marine\"}},{\"attributeHeader\":{\"labelValue\":\"CS Technology\",\"primaryLabelValue\":\"CS Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CSI Electrical Contractors\",\"primaryLabelValue\":\"CSI Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"cSubs\",\"primaryLabelValue\":\"cSubs\"}},{\"attributeHeader\":{\"labelValue\":\"CTI Resource Management Services\",\"primaryLabelValue\":\"CTI Resource Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cufflinks.com\",\"primaryLabelValue\":\"Cufflinks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cuisine Unlimited Catering & Special Events\",\"primaryLabelValue\":\"Cuisine Unlimited Catering & Special Events\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Culmen International\",\"primaryLabelValue\":\"Culmen International\"}},{\"attributeHeader\":{\"labelValue\":\"Culpepper & Associates Security Services\",\"primaryLabelValue\":\"Culpepper & Associates Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Customized Energy Solutions\",\"primaryLabelValue\":\"Customized Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cyber Switching\",\"primaryLabelValue\":\"Cyber Switching\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cyrus Innovation\",\"primaryLabelValue\":\"Cyrus Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"D. Honore\",\"primaryLabelValue\":\"D. Honore\"}},{\"attributeHeader\":{\"labelValue\":\"Dancing Deer Baking Company\",\"primaryLabelValue\":\"Dancing Deer Baking Company\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Innovations\",\"primaryLabelValue\":\"Data Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"DataArt\",\"primaryLabelValue\":\"DataArt\"}},{\"attributeHeader\":{\"labelValue\":\"DataPipe\",\"primaryLabelValue\":\"DataPipe\"}},{\"attributeHeader\":{\"labelValue\":\"DataServ\",\"primaryLabelValue\":\"DataServ\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Polk & Wardwell\",\"primaryLabelValue\":\"Davis Polk & Wardwell\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Trucking\",\"primaryLabelValue\":\"Davis Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean & Draper Insurance Agency\",\"primaryLabelValue\":\"Dean & Draper Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DeSantis Breindel\",\"primaryLabelValue\":\"DeSantis Breindel\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dickstein Shapiro\",\"primaryLabelValue\":\"Dickstein Shapiro\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Blue Global\",\"primaryLabelValue\":\"Digital Blue Global\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Intelligence Systems\",\"primaryLabelValue\":\"Digital Intelligence Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Incorporation\",\"primaryLabelValue\":\"Direct Incorporation\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Two-Way Radio\",\"primaryLabelValue\":\"Discount Two-Way Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Discountmugs.com\",\"primaryLabelValue\":\"Discountmugs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Industrial Staffing\",\"primaryLabelValue\":\"Diversified Industrial Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"DMD Data Systems\",\"primaryLabelValue\":\"DMD Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Doctor Diabetic Supply\",\"primaryLabelValue\":\"Doctor Diabetic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Docutrend Imaging Solutions\",\"primaryLabelValue\":\"Docutrend Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dodge Communications\",\"primaryLabelValue\":\"Dodge Communications\"}},{\"attributeHeader\":{\"labelValue\":\"D'Onofrio & Son\",\"primaryLabelValue\":\"D'Onofrio & Son\"}},{\"attributeHeader\":{\"labelValue\":\"DOOR3 Business Applications\",\"primaryLabelValue\":\"DOOR3 Business Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Doormation\",\"primaryLabelValue\":\"Doormation\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Consulting & Computer Services\",\"primaryLabelValue\":\"Douglas Consulting & Computer Services\"}},{\"attributeHeader\":{\"labelValue\":\"dreamGEAR\",\"primaryLabelValue\":\"dreamGEAR\"}},{\"attributeHeader\":{\"labelValue\":\"Drilling Info\",\"primaryLabelValue\":\"Drilling Info\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Duo Consulting\",\"primaryLabelValue\":\"Duo Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"E.C. Ortiz & Co.\",\"primaryLabelValue\":\"E.C. Ortiz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eastbiz.com\",\"primaryLabelValue\":\"Eastbiz.com\"}},{\"attributeHeader\":{\"labelValue\":\"e-BI International\",\"primaryLabelValue\":\"e-BI International\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eClinicalWorks\",\"primaryLabelValue\":\"eClinicalWorks\"}},{\"attributeHeader\":{\"labelValue\":\"eCoast Sales Solutions\",\"primaryLabelValue\":\"eCoast Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Economic Modeling Specialists\",\"primaryLabelValue\":\"Economic Modeling Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"EdgeRock Technology Partners\",\"primaryLabelValue\":\"EdgeRock Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Edgetech I.G.\",\"primaryLabelValue\":\"Edgetech I.G.\"}},{\"attributeHeader\":{\"labelValue\":\"Edify Technologies\",\"primaryLabelValue\":\"Edify Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"eDimensional\",\"primaryLabelValue\":\"eDimensional\"}},{\"attributeHeader\":{\"labelValue\":\"EDTS\",\"primaryLabelValue\":\"EDTS\"}},{\"attributeHeader\":{\"labelValue\":\"Education Management Solutions\",\"primaryLabelValue\":\"Education Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Services of America\",\"primaryLabelValue\":\"Educational Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"Edwards Project Solutions\",\"primaryLabelValue\":\"Edwards Project Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eeBoo\",\"primaryLabelValue\":\"eeBoo\"}},{\"attributeHeader\":{\"labelValue\":\"eFashionSolutions\",\"primaryLabelValue\":\"eFashionSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobal\",\"primaryLabelValue\":\"eGlobal\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"EIS Office Solutions\",\"primaryLabelValue\":\"EIS Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ektron\",\"primaryLabelValue\":\"Ektron\"}},{\"attributeHeader\":{\"labelValue\":\"El Camino Charter Lines\",\"primaryLabelValue\":\"El Camino Charter Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Elastec\",\"primaryLabelValue\":\"Elastec\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Element Fusion\",\"primaryLabelValue\":\"Element Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Elite CME\",\"primaryLabelValue\":\"Elite CME\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eloqua\",\"primaryLabelValue\":\"Eloqua\"}},{\"attributeHeader\":{\"labelValue\":\"EMI - Online Research Solutions\",\"primaryLabelValue\":\"EMI - Online Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emmi Solutions\",\"primaryLabelValue\":\"Emmi Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Central\",\"primaryLabelValue\":\"Energy Central\"}},{\"attributeHeader\":{\"labelValue\":\"EnerSys\",\"primaryLabelValue\":\"EnerSys\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy Life Foods\",\"primaryLabelValue\":\"Enjoy Life Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy The City North\",\"primaryLabelValue\":\"Enjoy The City North\"}},{\"attributeHeader\":{\"labelValue\":\"Enroute Computer Solutions\",\"primaryLabelValue\":\"Enroute Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Entec Services\",\"primaryLabelValue\":\"Entec Services\"}},{\"attributeHeader\":{\"labelValue\":\"Entellects\",\"primaryLabelValue\":\"Entellects\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Management Specialists\",\"primaryLabelValue\":\"Environmental Management Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Products & Services of Vermont\",\"primaryLabelValue\":\"Environmental Products & Services of Vermont\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Standards\",\"primaryLabelValue\":\"Environmental Standards\"}},{\"attributeHeader\":{\"labelValue\":\"ePath Learning\",\"primaryLabelValue\":\"ePath Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Ephox\",\"primaryLabelValue\":\"Ephox\"}},{\"attributeHeader\":{\"labelValue\":\"ePlan Services\",\"primaryLabelValue\":\"ePlan Services\"}},{\"attributeHeader\":{\"labelValue\":\"Equilar\",\"primaryLabelValue\":\"Equilar\"}},{\"attributeHeader\":{\"labelValue\":\"eSolutions\",\"primaryLabelValue\":\"eSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"E-Solutions\",\"primaryLabelValue\":\"E-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Euclid Technology\",\"primaryLabelValue\":\"Euclid Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Event Architects\",\"primaryLabelValue\":\"Event Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Everglades Technologies\",\"primaryLabelValue\":\"Everglades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EverStaff\",\"primaryLabelValue\":\"EverStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Evocative\",\"primaryLabelValue\":\"Evocative\"}},{\"attributeHeader\":{\"labelValue\":\"Evoke Technologies\",\"primaryLabelValue\":\"Evoke Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Exhibits, A Swords Company\",\"primaryLabelValue\":\"Excalibur Exhibits, A Swords Company\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Technology\",\"primaryLabelValue\":\"Excalibur Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Excelsior Defense\",\"primaryLabelValue\":\"Excelsior Defense\"}},{\"attributeHeader\":{\"labelValue\":\"Exigen Services\",\"primaryLabelValue\":\"Exigen Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Express Travel\",\"primaryLabelValue\":\"Express Travel\"}},{\"attributeHeader\":{\"labelValue\":\"Extreme Pizza\",\"primaryLabelValue\":\"Extreme Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"eXude Benefits Group\",\"primaryLabelValue\":\"eXude Benefits Group\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Faegre & Benson\",\"primaryLabelValue\":\"Faegre & Benson\"}},{\"attributeHeader\":{\"labelValue\":\"Fairway Market\",\"primaryLabelValue\":\"Fairway Market\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Farwest Sports\",\"primaryLabelValue\":\"Farwest Sports\"}},{\"attributeHeader\":{\"labelValue\":\"fassforward consulting group\",\"primaryLabelValue\":\"fassforward consulting group\"}},{\"attributeHeader\":{\"labelValue\":\"Faultless Laundry Company\",\"primaryLabelValue\":\"Faultless Laundry Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Information Technologies\",\"primaryLabelValue\":\"Federated Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fedtech\",\"primaryLabelValue\":\"Fedtech\"}},{\"attributeHeader\":{\"labelValue\":\"Fenwick & West\",\"primaryLabelValue\":\"Fenwick & West\"}},{\"attributeHeader\":{\"labelValue\":\"Ferris Coffee & Nut\",\"primaryLabelValue\":\"Ferris Coffee & Nut\"}},{\"attributeHeader\":{\"labelValue\":\"FI Consulting\",\"primaryLabelValue\":\"FI Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelitone Logistics\",\"primaryLabelValue\":\"Fidelitone Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Fifth Avenue Restaurant Group\",\"primaryLabelValue\":\"Fifth Avenue Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Investments\",\"primaryLabelValue\":\"Financial Investments\"}},{\"attributeHeader\":{\"labelValue\":\"Find Great People\",\"primaryLabelValue\":\"Find Great People\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Finger Lakes Business Services\",\"primaryLabelValue\":\"Finger Lakes Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Firespring\",\"primaryLabelValue\":\"Firespring\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"First In Service Travel\",\"primaryLabelValue\":\"First In Service Travel\"}},{\"attributeHeader\":{\"labelValue\":\"First Interstate BancSystem\",\"primaryLabelValue\":\"First Interstate BancSystem\"}},{\"attributeHeader\":{\"labelValue\":\"First Tech Direct\",\"primaryLabelValue\":\"First Tech Direct\"}},{\"attributeHeader\":{\"labelValue\":\"First Western Financial\",\"primaryLabelValue\":\"First Western Financial\"}},{\"attributeHeader\":{\"labelValue\":\"firstPRO Inc.\",\"primaryLabelValue\":\"firstPRO Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher Tank Company\",\"primaryLabelValue\":\"Fisher Tank Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher/Unitech\",\"primaryLabelValue\":\"Fisher/Unitech\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Together Holdings\",\"primaryLabelValue\":\"Fitness Together Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Feet\",\"primaryLabelValue\":\"Fleet Feet\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Food Group\",\"primaryLabelValue\":\"Flying Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Foodguys\",\"primaryLabelValue\":\"Foodguys\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Fox Rothschild\",\"primaryLabelValue\":\"Fox Rothschild\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"Friedman\",\"primaryLabelValue\":\"Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"Frontline International\",\"primaryLabelValue\":\"Frontline International\"}},{\"attributeHeader\":{\"labelValue\":\"Frost Brown Todd\",\"primaryLabelValue\":\"Frost Brown Todd\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"Fusco Personnel\",\"primaryLabelValue\":\"Fusco Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Services\",\"primaryLabelValue\":\"Futura Services\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"FXFOWLE Architects\",\"primaryLabelValue\":\"FXFOWLE Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gaithersburg Air Conditioning & Heating\",\"primaryLabelValue\":\"Gaithersburg Air Conditioning & Heating\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Galison Mudpuppy\",\"primaryLabelValue\":\"Galison Mudpuppy\"}},{\"attributeHeader\":{\"labelValue\":\"GAP Solutions\",\"primaryLabelValue\":\"GAP Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Garner Holt Productions\",\"primaryLabelValue\":\"Garner Holt Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Gas Depot Oil\",\"primaryLabelValue\":\"Gas Depot Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Gatski Commercial Real Estate Services\",\"primaryLabelValue\":\"Gatski Commercial Real Estate Services\"}},{\"attributeHeader\":{\"labelValue\":\"GB Investments\",\"primaryLabelValue\":\"GB Investments\"}},{\"attributeHeader\":{\"labelValue\":\"GDB International\",\"primaryLabelValue\":\"GDB International\"}},{\"attributeHeader\":{\"labelValue\":\"Geary Interactive\",\"primaryLabelValue\":\"Geary Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GelScrubs\",\"primaryLabelValue\":\"GelScrubs\"}},{\"attributeHeader\":{\"labelValue\":\"Geneca\",\"primaryLabelValue\":\"Geneca\"}},{\"attributeHeader\":{\"labelValue\":\"General Oil\",\"primaryLabelValue\":\"General Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GeoLearning\",\"primaryLabelValue\":\"GeoLearning\"}},{\"attributeHeader\":{\"labelValue\":\"Geonetric\",\"primaryLabelValue\":\"Geonetric\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GH2 Architects\",\"primaryLabelValue\":\"GH2 Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gibbons\",\"primaryLabelValue\":\"Gibbons\"}},{\"attributeHeader\":{\"labelValue\":\"Gibson, Dunn & Crutcher\",\"primaryLabelValue\":\"Gibson, Dunn & Crutcher\"}},{\"attributeHeader\":{\"labelValue\":\"Gilsbar\",\"primaryLabelValue\":\"Gilsbar\"}},{\"attributeHeader\":{\"labelValue\":\"Ginter Electrical Contractors\",\"primaryLabelValue\":\"Ginter Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Systems\",\"primaryLabelValue\":\"Gold Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"GolfTEC Enterprises\",\"primaryLabelValue\":\"GolfTEC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwin Procter\",\"primaryLabelValue\":\"Goodwin Procter\"}},{\"attributeHeader\":{\"labelValue\":\"Gordon & Rees\",\"primaryLabelValue\":\"Gordon & Rees\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Governor's Distributors\",\"primaryLabelValue\":\"Governor's Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"Graham Behavioral Services\",\"primaryLabelValue\":\"Graham Behavioral Services\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Harvest Franchising\",\"primaryLabelValue\":\"Great Harvest Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Home Health & Hospice\",\"primaryLabelValue\":\"Great Lakes Home Health & Hospice\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Wire & Cable\",\"primaryLabelValue\":\"Great Lakes Wire & Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Green Dot\",\"primaryLabelValue\":\"Green Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Brand Strategy\",\"primaryLabelValue\":\"Greenberg Brand Strategy\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Traurig\",\"primaryLabelValue\":\"Greenberg Traurig\"}},{\"attributeHeader\":{\"labelValue\":\"Greene Resources\",\"primaryLabelValue\":\"Greene Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Greenstein, Rogoff, Olsen & Co.\",\"primaryLabelValue\":\"Greenstein, Rogoff, Olsen & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Medical Technologies\",\"primaryLabelValue\":\"Greenway Medical Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Transportation Services\",\"primaryLabelValue\":\"Greenway Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Group DCA\",\"primaryLabelValue\":\"Group DCA\"}},{\"attributeHeader\":{\"labelValue\":\"Group Health Solutions\",\"primaryLabelValue\":\"Group Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Group Mobile\",\"primaryLabelValue\":\"Group Mobile\"}},{\"attributeHeader\":{\"labelValue\":\"Grove City Dental\",\"primaryLabelValue\":\"Grove City Dental\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GStek\",\"primaryLabelValue\":\"GStek\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"GTN Technical Staffing\",\"primaryLabelValue\":\"GTN Technical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Guaranteed Rate\",\"primaryLabelValue\":\"Guaranteed Rate\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Financial Group\",\"primaryLabelValue\":\"Guidant Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Partners\",\"primaryLabelValue\":\"Guidant Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"GWI\",\"primaryLabelValue\":\"GWI\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Steel Fabricators\",\"primaryLabelValue\":\"H&H Steel Fabricators\"}},{\"attributeHeader\":{\"labelValue\":\"Haig Service\",\"primaryLabelValue\":\"Haig Service\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Construction\",\"primaryLabelValue\":\"Hanson Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harmony Healthcare International\",\"primaryLabelValue\":\"Harmony Healthcare International\"}},{\"attributeHeader\":{\"labelValue\":\"Harpoon Brewery\",\"primaryLabelValue\":\"Harpoon Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Hawkeye\",\"primaryLabelValue\":\"Hawkeye\"}},{\"attributeHeader\":{\"labelValue\":\"HCA\",\"primaryLabelValue\":\"HCA\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"HealthPort Technologies\",\"primaryLabelValue\":\"HealthPort Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HealthTrans\",\"primaryLabelValue\":\"HealthTrans\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"Hellerman Baretz Communications\",\"primaryLabelValue\":\"Hellerman Baretz Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Henderson Engineers\",\"primaryLabelValue\":\"Henderson Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hershey Systems\",\"primaryLabelValue\":\"Hershey Systems\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hinshaw & Culbertson\",\"primaryLabelValue\":\"Hinshaw & Culbertson\"}},{\"attributeHeader\":{\"labelValue\":\"Home Warranty of America\",\"primaryLabelValue\":\"Home Warranty of America\"}},{\"attributeHeader\":{\"labelValue\":\"Honest Tea\",\"primaryLabelValue\":\"Honest Tea\"}},{\"attributeHeader\":{\"labelValue\":\"Honigman Miller Schwartz and Cohn\",\"primaryLabelValue\":\"Honigman Miller Schwartz and Cohn\"}},{\"attributeHeader\":{\"labelValue\":\"Hooven-Dayton\",\"primaryLabelValue\":\"Hooven-Dayton\"}},{\"attributeHeader\":{\"labelValue\":\"Hornblower Marine Services\",\"primaryLabelValue\":\"Hornblower Marine Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hospital Solutions\",\"primaryLabelValue\":\"Hospital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Housing Helpers\",\"primaryLabelValue\":\"Housing Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"HRsmart\",\"primaryLabelValue\":\"HRsmart\"}},{\"attributeHeader\":{\"labelValue\":\"Huberty & Associates\",\"primaryLabelValue\":\"Huberty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hughes Hubbard & Reed\",\"primaryLabelValue\":\"Hughes Hubbard & Reed\"}},{\"attributeHeader\":{\"labelValue\":\"I.O. Metro\",\"primaryLabelValue\":\"I.O. Metro\"}},{\"attributeHeader\":{\"labelValue\":\"IBBS\",\"primaryLabelValue\":\"IBBS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Specialized Transport\",\"primaryLabelValue\":\"ICON Specialized Transport\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ICR\",\"primaryLabelValue\":\"ICR\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"ICSN\",\"primaryLabelValue\":\"ICSN\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Integrations\",\"primaryLabelValue\":\"Ideal Integrations\"}},{\"attributeHeader\":{\"labelValue\":\"Identity Marketing & Public Relations\",\"primaryLabelValue\":\"Identity Marketing & Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"ImageTrend\",\"primaryLabelValue\":\"ImageTrend\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Imavex\",\"primaryLabelValue\":\"Imavex\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"immixGroup\",\"primaryLabelValue\":\"immixGroup\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Group\",\"primaryLabelValue\":\"Impact Group\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Management Services\",\"primaryLabelValue\":\"Impact Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"inBusiness Services\",\"primaryLabelValue\":\"inBusiness Services\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"Infosurv\",\"primaryLabelValue\":\"Infosurv\"}},{\"attributeHeader\":{\"labelValue\":\"InfoZen\",\"primaryLabelValue\":\"InfoZen\"}},{\"attributeHeader\":{\"labelValue\":\"InkHead\",\"primaryLabelValue\":\"InkHead\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Wireless Technologies\",\"primaryLabelValue\":\"Innovative Wireless Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inphi Corporation\",\"primaryLabelValue\":\"Inphi Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Insala\",\"primaryLabelValue\":\"Insala\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"Inspec Tech\",\"primaryLabelValue\":\"Inspec Tech\"}},{\"attributeHeader\":{\"labelValue\":\"INT Technologies\",\"primaryLabelValue\":\"INT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Integrant\",\"primaryLabelValue\":\"Integrant\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Pro Services\",\"primaryLabelValue\":\"Integrated Pro Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Project Management\",\"primaryLabelValue\":\"Integrated Project Management\"}},{\"attributeHeader\":{\"labelValue\":\"Integrative Logic Marketing Group\",\"primaryLabelValue\":\"Integrative Logic Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Staffing Solutions\",\"primaryLabelValue\":\"Integrity Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Access Systems of NC\",\"primaryLabelValue\":\"Intelligent Access Systems of NC\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Decisions\",\"primaryLabelValue\":\"Intelligent Decisions\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Logistics\",\"primaryLabelValue\":\"Intelligent Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligentsia Coffee\",\"primaryLabelValue\":\"Intelligentsia Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"Inter Technologies\",\"primaryLabelValue\":\"Inter Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Interbank FX\",\"primaryLabelValue\":\"Interbank FX\"}},{\"attributeHeader\":{\"labelValue\":\"Interbit Data\",\"primaryLabelValue\":\"Interbit Data\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim HealthCare\",\"primaryLabelValue\":\"Interim HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Physicians\",\"primaryLabelValue\":\"Interim Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"International Education\",\"primaryLabelValue\":\"International Education\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorks\",\"primaryLabelValue\":\"InterWorks\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorld Highway\",\"primaryLabelValue\":\"InterWorld Highway\"}},{\"attributeHeader\":{\"labelValue\":\"Invision\",\"primaryLabelValue\":\"Invision\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"Iostudio\",\"primaryLabelValue\":\"Iostudio\"}},{\"attributeHeader\":{\"labelValue\":\"iPipeline\",\"primaryLabelValue\":\"iPipeline\"}},{\"attributeHeader\":{\"labelValue\":\"IQ Pipeline\",\"primaryLabelValue\":\"IQ Pipeline\"}},{\"attributeHeader\":{\"labelValue\":\"Iron Data Solutions\",\"primaryLabelValue\":\"Iron Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Isamax Snacks\",\"primaryLabelValue\":\"Isamax Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"IssueTrak\",\"primaryLabelValue\":\"IssueTrak\"}},{\"attributeHeader\":{\"labelValue\":\"ISWest\",\"primaryLabelValue\":\"ISWest\"}},{\"attributeHeader\":{\"labelValue\":\"iSys\",\"primaryLabelValue\":\"iSys\"}},{\"attributeHeader\":{\"labelValue\":\"iTalent\",\"primaryLabelValue\":\"iTalent\"}},{\"attributeHeader\":{\"labelValue\":\"ITSolutions\",\"primaryLabelValue\":\"ITSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"J&S Tool\",\"primaryLabelValue\":\"J&S Tool\"}},{\"attributeHeader\":{\"labelValue\":\"J&T Coins\",\"primaryLabelValue\":\"J&T Coins\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Jacquette Consulting\",\"primaryLabelValue\":\"Jacquette Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Jarrett Logistics Systems\",\"primaryLabelValue\":\"Jarrett Logistics Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Jaster-Quintanilla\",\"primaryLabelValue\":\"Jaster-Quintanilla\"}},{\"attributeHeader\":{\"labelValue\":\"Jawood\",\"primaryLabelValue\":\"Jawood\"}},{\"attributeHeader\":{\"labelValue\":\"Jensen Audio Visual\",\"primaryLabelValue\":\"Jensen Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jiffy Lube\",\"primaryLabelValue\":\"Jiffy Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Jimenez Custom Painting\",\"primaryLabelValue\":\"Jimenez Custom Painting\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Jones Day\",\"primaryLabelValue\":\"Jones Day\"}},{\"attributeHeader\":{\"labelValue\":\"Journey Mexico\",\"primaryLabelValue\":\"Journey Mexico\"}},{\"attributeHeader\":{\"labelValue\":\"Juice Pharma Worldwide\",\"primaryLabelValue\":\"Juice Pharma Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Jump2 Group\",\"primaryLabelValue\":\"Jump2 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jung's Trucking\",\"primaryLabelValue\":\"Jung's Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"Just Marketing International\",\"primaryLabelValue\":\"Just Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Kansas City Home Care\",\"primaryLabelValue\":\"Kansas City Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Kapnick Insurance Group\",\"primaryLabelValue\":\"Kapnick Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"KAYA Associates\",\"primaryLabelValue\":\"KAYA Associates\"}},{\"attributeHeader\":{\"labelValue\":\"KaZaK Composites\",\"primaryLabelValue\":\"KaZaK Composites\"}},{\"attributeHeader\":{\"labelValue\":\"KBK Technologies\",\"primaryLabelValue\":\"KBK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Keating Magee Marketing Communications\",\"primaryLabelValue\":\"Keating Magee Marketing Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Capital Properties\",\"primaryLabelValue\":\"Keller Williams Capital Properties\"}},{\"attributeHeader\":{\"labelValue\":\"Kenosia Construction\",\"primaryLabelValue\":\"Kenosia Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Kerusso\",\"primaryLabelValue\":\"Kerusso\"}},{\"attributeHeader\":{\"labelValue\":\"Keste\",\"primaryLabelValue\":\"Keste\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kim and Scott's Gourmet Pretzels\",\"primaryLabelValue\":\"Kim and Scott's Gourmet Pretzels\"}},{\"attributeHeader\":{\"labelValue\":\"King & Spalding\",\"primaryLabelValue\":\"King & Spalding\"}},{\"attributeHeader\":{\"labelValue\":\"KleenMark\",\"primaryLabelValue\":\"KleenMark\"}},{\"attributeHeader\":{\"labelValue\":\"kmG Hauling\",\"primaryLabelValue\":\"kmG Hauling\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Technologies\",\"primaryLabelValue\":\"Knight Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Knock Knock\",\"primaryLabelValue\":\"Knock Knock\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Infusion\",\"primaryLabelValue\":\"Knowledge Infusion\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge United\",\"primaryLabelValue\":\"Knowledge United\"}},{\"attributeHeader\":{\"labelValue\":\"Kobie Marketing\",\"primaryLabelValue\":\"Kobie Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kraus Commercial Roofing\",\"primaryLabelValue\":\"Kraus Commercial Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Kum & Go\",\"primaryLabelValue\":\"Kum & Go\"}},{\"attributeHeader\":{\"labelValue\":\"LabConnect\",\"primaryLabelValue\":\"LabConnect\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert Vet Supply\",\"primaryLabelValue\":\"Lambert Vet Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert, Edwards & Associates\",\"primaryLabelValue\":\"Lambert, Edwards & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Language Line Services\",\"primaryLabelValue\":\"Language Line Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laritech\",\"primaryLabelValue\":\"Laritech\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Spine Institute\",\"primaryLabelValue\":\"Laser Spine Institute\"}},{\"attributeHeader\":{\"labelValue\":\"LaserGifts\",\"primaryLabelValue\":\"LaserGifts\"}},{\"attributeHeader\":{\"labelValue\":\"LasX Industries\",\"primaryLabelValue\":\"LasX Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Latisys\",\"primaryLabelValue\":\"Latisys\"}},{\"attributeHeader\":{\"labelValue\":\"Latshaw Drilling & Exploration\",\"primaryLabelValue\":\"Latshaw Drilling & Exploration\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"Lawyer Trane\",\"primaryLabelValue\":\"Lawyer Trane\"}},{\"attributeHeader\":{\"labelValue\":\"Layla Grayce\",\"primaryLabelValue\":\"Layla Grayce\"}},{\"attributeHeader\":{\"labelValue\":\"LeadDog Marketing Group\",\"primaryLabelValue\":\"LeadDog Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Leader Bank\",\"primaryLabelValue\":\"Leader Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Interactive\",\"primaryLabelValue\":\"LeapFrog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Learning Evolution\",\"primaryLabelValue\":\"Learning Evolution\"}},{\"attributeHeader\":{\"labelValue\":\"LearningRx\",\"primaryLabelValue\":\"LearningRx\"}},{\"attributeHeader\":{\"labelValue\":\"LearnSomething\",\"primaryLabelValue\":\"LearnSomething\"}},{\"attributeHeader\":{\"labelValue\":\"LetterLogic\",\"primaryLabelValue\":\"LetterLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Tree Service\",\"primaryLabelValue\":\"Lewis Tree Service\"}},{\"attributeHeader\":{\"labelValue\":\"Lexco Cable\",\"primaryLabelValue\":\"Lexco Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Lexington Design + Fabrication\",\"primaryLabelValue\":\"Lexington Design + Fabrication\"}},{\"attributeHeader\":{\"labelValue\":\"LibreDigital\",\"primaryLabelValue\":\"LibreDigital\"}},{\"attributeHeader\":{\"labelValue\":\"Libsys\",\"primaryLabelValue\":\"Libsys\"}},{\"attributeHeader\":{\"labelValue\":\"LifeScript\",\"primaryLabelValue\":\"LifeScript\"}},{\"attributeHeader\":{\"labelValue\":\"LightEdge Solutions\",\"primaryLabelValue\":\"LightEdge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lightspeed Systems\",\"primaryLabelValue\":\"Lightspeed Systems\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidAgents Healthcare\",\"primaryLabelValue\":\"LiquidAgents Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidHub\",\"primaryLabelValue\":\"LiquidHub\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidSpoke\",\"primaryLabelValue\":\"LiquidSpoke\"}},{\"attributeHeader\":{\"labelValue\":\"Littler Mendelson\",\"primaryLabelValue\":\"Littler Mendelson\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"LMR Solutions\",\"primaryLabelValue\":\"LMR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Locke Lord Bissell & Liddell\",\"primaryLabelValue\":\"Locke Lord Bissell & Liddell\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"Lokion\",\"primaryLabelValue\":\"Lokion\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Glass Technologies\",\"primaryLabelValue\":\"M3 Glass Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magazines.com\",\"primaryLabelValue\":\"Magazines.com\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"MAIC\",\"primaryLabelValue\":\"MAIC\"}},{\"attributeHeader\":{\"labelValue\":\"Management Solutions\",\"primaryLabelValue\":\"Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Manatt, Phelps & Phillips\",\"primaryLabelValue\":\"Manatt, Phelps & Phillips\"}},{\"attributeHeader\":{\"labelValue\":\"Manifest Digital\",\"primaryLabelValue\":\"Manifest Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Man-Machine Systems Assessment\",\"primaryLabelValue\":\"Man-Machine Systems Assessment\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Maple Systems\",\"primaryLabelValue\":\"Maple Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Maritime International\",\"primaryLabelValue\":\"Maritime International\"}},{\"attributeHeader\":{\"labelValue\":\"Market Force Information\",\"primaryLabelValue\":\"Market Force Information\"}},{\"attributeHeader\":{\"labelValue\":\"Market Probe\",\"primaryLabelValue\":\"Market Probe\"}},{\"attributeHeader\":{\"labelValue\":\"MarketLeverage Interactive Advertising\",\"primaryLabelValue\":\"MarketLeverage Interactive Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Marstel-Day\",\"primaryLabelValue\":\"Marstel-Day\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Dawes Analytics\",\"primaryLabelValue\":\"Martin Dawes Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MAS Medical Staffing\",\"primaryLabelValue\":\"MAS Medical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Masterfit Medical Supply\",\"primaryLabelValue\":\"Masterfit Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"MaxEmail\",\"primaryLabelValue\":\"MaxEmail\"}},{\"attributeHeader\":{\"labelValue\":\"MaxVision\",\"primaryLabelValue\":\"MaxVision\"}},{\"attributeHeader\":{\"labelValue\":\"Mazzone Management Group\",\"primaryLabelValue\":\"Mazzone Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"MC Sign\",\"primaryLabelValue\":\"MC Sign\"}},{\"attributeHeader\":{\"labelValue\":\"MCAD Technologies\",\"primaryLabelValue\":\"MCAD Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"McElvain Oil & Gas Properties\",\"primaryLabelValue\":\"McElvain Oil & Gas Properties\"}},{\"attributeHeader\":{\"labelValue\":\"McGovern Physical Therapy Associates\",\"primaryLabelValue\":\"McGovern Physical Therapy Associates\"}},{\"attributeHeader\":{\"labelValue\":\"McGuireWoods\",\"primaryLabelValue\":\"McGuireWoods\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Group\",\"primaryLabelValue\":\"McKinley Group\"}},{\"attributeHeader\":{\"labelValue\":\"McMurry\",\"primaryLabelValue\":\"McMurry\"}},{\"attributeHeader\":{\"labelValue\":\"MCR\",\"primaryLabelValue\":\"MCR\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MED3000\",\"primaryLabelValue\":\"MED3000\"}},{\"attributeHeader\":{\"labelValue\":\"MedExpress Pharmacy\",\"primaryLabelValue\":\"MedExpress Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"MediaMind\",\"primaryLabelValue\":\"MediaMind\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Packaging\",\"primaryLabelValue\":\"Medical Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Present Value\",\"primaryLabelValue\":\"Medical Present Value\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"Medrec\",\"primaryLabelValue\":\"Medrec\"}},{\"attributeHeader\":{\"labelValue\":\"MedThink Communications\",\"primaryLabelValue\":\"MedThink Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Meeting Alliance\",\"primaryLabelValue\":\"Meeting Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Mellace Family Brands\",\"primaryLabelValue\":\"Mellace Family Brands\"}},{\"attributeHeader\":{\"labelValue\":\"Member Solutions\",\"primaryLabelValue\":\"Member Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Menlo Innovations\",\"primaryLabelValue\":\"Menlo Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Imaging Solutions\",\"primaryLabelValue\":\"Meridian Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"meridianEMR\",\"primaryLabelValue\":\"meridianEMR\"}},{\"attributeHeader\":{\"labelValue\":\"Metastorm\",\"primaryLabelValue\":\"Metastorm\"}},{\"attributeHeader\":{\"labelValue\":\"MetroStar Systems\",\"primaryLabelValue\":\"MetroStar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Microcom Technologies\",\"primaryLabelValue\":\"Microcom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIG\",\"primaryLabelValue\":\"MIG\"}},{\"attributeHeader\":{\"labelValue\":\"Miles-McClellan Construction\",\"primaryLabelValue\":\"Miles-McClellan Construction\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"mindSHIFT Technologies\",\"primaryLabelValue\":\"mindSHIFT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner Houston\",\"primaryLabelValue\":\"Miner Houston\"}},{\"attributeHeader\":{\"labelValue\":\"Miron Construction\",\"primaryLabelValue\":\"Miron Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Monin\",\"primaryLabelValue\":\"Monin\"}},{\"attributeHeader\":{\"labelValue\":\"Moochie\",\"primaryLabelValue\":\"Moochie\"}},{\"attributeHeader\":{\"labelValue\":\"Moody Nolan\",\"primaryLabelValue\":\"Moody Nolan\"}},{\"attributeHeader\":{\"labelValue\":\"Moore & Van Allen\",\"primaryLabelValue\":\"Moore & Van Allen\"}},{\"attributeHeader\":{\"labelValue\":\"MoreVisibility\",\"primaryLabelValue\":\"MoreVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Mosaica Education\",\"primaryLabelValue\":\"Mosaica Education\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MResult\",\"primaryLabelValue\":\"MResult\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"MTCI\",\"primaryLabelValue\":\"MTCI\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Namaste Solar Electric\",\"primaryLabelValue\":\"Namaste Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Narragansett Brewing\",\"primaryLabelValue\":\"Narragansett Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"National Asset Recovery Services\",\"primaryLabelValue\":\"National Asset Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"National Electronic Attachment\",\"primaryLabelValue\":\"National Electronic Attachment\"}},{\"attributeHeader\":{\"labelValue\":\"National Energy Control\",\"primaryLabelValue\":\"National Energy Control\"}},{\"attributeHeader\":{\"labelValue\":\"National Link\",\"primaryLabelValue\":\"National Link\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Nationwide Payment Solutions\",\"primaryLabelValue\":\"Nationwide Payment Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Natural Way Lawn and Tree\",\"primaryLabelValue\":\"Natural Way Lawn and Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Navarro Research and Engineering\",\"primaryLabelValue\":\"Navarro Research and Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Navicus\",\"primaryLabelValue\":\"Navicus\"}},{\"attributeHeader\":{\"labelValue\":\"nCircle\",\"primaryLabelValue\":\"nCircle\"}},{\"attributeHeader\":{\"labelValue\":\"Neibauer Dental\",\"primaryLabelValue\":\"Neibauer Dental\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Mullins Riley & Scarborough\",\"primaryLabelValue\":\"Nelson Mullins Riley & Scarborough\"}},{\"attributeHeader\":{\"labelValue\":\"Net Optics\",\"primaryLabelValue\":\"Net Optics\"}},{\"attributeHeader\":{\"labelValue\":\"NET Systems\",\"primaryLabelValue\":\"NET Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"NETE\",\"primaryLabelValue\":\"NETE\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetPlanner Systems\",\"primaryLabelValue\":\"NetPlanner Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NetSpend\",\"primaryLabelValue\":\"NetSpend\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NetVision Resources\",\"primaryLabelValue\":\"NetVision Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Network Infrastructure Technologies\",\"primaryLabelValue\":\"Network Infrastructure Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Networking for Future\",\"primaryLabelValue\":\"Networking for Future\"}},{\"attributeHeader\":{\"labelValue\":\"Neudesic\",\"primaryLabelValue\":\"Neudesic\"}},{\"attributeHeader\":{\"labelValue\":\"Neumann Systems Group\",\"primaryLabelValue\":\"Neumann Systems Group\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Belgium Brewing\",\"primaryLabelValue\":\"New Belgium Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New England Medical Transcription\",\"primaryLabelValue\":\"New England Medical Transcription\"}},{\"attributeHeader\":{\"labelValue\":\"New England Natural Bakers\",\"primaryLabelValue\":\"New England Natural Bakers\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Gateway\",\"primaryLabelValue\":\"New Media Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"NewAgeSys\",\"primaryLabelValue\":\"NewAgeSys\"}},{\"attributeHeader\":{\"labelValue\":\"NewsGator\",\"primaryLabelValue\":\"NewsGator\"}},{\"attributeHeader\":{\"labelValue\":\"Newsways Services\",\"primaryLabelValue\":\"Newsways Services\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nexcess.net\",\"primaryLabelValue\":\"Nexcess.net\"}},{\"attributeHeader\":{\"labelValue\":\"NikSoft Systems\",\"primaryLabelValue\":\"NikSoft Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NimbleUser\",\"primaryLabelValue\":\"NimbleUser\"}},{\"attributeHeader\":{\"labelValue\":\"Niner Bikes\",\"primaryLabelValue\":\"Niner Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"nLight\",\"primaryLabelValue\":\"nLight\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NMR Consulting\",\"primaryLabelValue\":\"NMR Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Non-Public Educational Services\",\"primaryLabelValue\":\"Non-Public Educational Services\"}},{\"attributeHeader\":{\"labelValue\":\"Norman's Gift Shops\",\"primaryLabelValue\":\"Norman's Gift Shops\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"North Wind\",\"primaryLabelValue\":\"North Wind\"}},{\"attributeHeader\":{\"labelValue\":\"Northern Building Products\",\"primaryLabelValue\":\"Northern Building Products\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Logistics\",\"primaryLabelValue\":\"Northwest Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"NouvEON\",\"primaryLabelValue\":\"NouvEON\"}},{\"attributeHeader\":{\"labelValue\":\"Nova USA Wood Products\",\"primaryLabelValue\":\"Nova USA Wood Products\"}},{\"attributeHeader\":{\"labelValue\":\"NPI Solutions\",\"primaryLabelValue\":\"NPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NSK\",\"primaryLabelValue\":\"NSK\"}},{\"attributeHeader\":{\"labelValue\":\"NSTAR Global Services\",\"primaryLabelValue\":\"NSTAR Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutiva\",\"primaryLabelValue\":\"Nutiva\"}},{\"attributeHeader\":{\"labelValue\":\"NWN\",\"primaryLabelValue\":\"NWN\"}},{\"attributeHeader\":{\"labelValue\":\"O2 Fitness Clubs\",\"primaryLabelValue\":\"O2 Fitness Clubs\"}},{\"attributeHeader\":{\"labelValue\":\"Obtiva\",\"primaryLabelValue\":\"Obtiva\"}},{\"attributeHeader\":{\"labelValue\":\"Octagon Research Solutions\",\"primaryLabelValue\":\"Octagon Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Beacon\",\"primaryLabelValue\":\"Office Beacon\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"OFS Solutions\",\"primaryLabelValue\":\"OFS Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"OMG National\",\"primaryLabelValue\":\"OMG National\"}},{\"attributeHeader\":{\"labelValue\":\"One Source Talent\",\"primaryLabelValue\":\"One Source Talent\"}},{\"attributeHeader\":{\"labelValue\":\"O'Neil & Associates\",\"primaryLabelValue\":\"O'Neil & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"ONLC Training Centers\",\"primaryLabelValue\":\"ONLC Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems Technologies\",\"primaryLabelValue\":\"Open Systems Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Synthesis\",\"primaryLabelValue\":\"Optimal Synthesis\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMech\",\"primaryLabelValue\":\"OptiMech\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OSAM Document Solutions\",\"primaryLabelValue\":\"OSAM Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outdoor Motor Sports\",\"primaryLabelValue\":\"Outdoor Motor Sports\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Ovations Food Services\",\"primaryLabelValue\":\"Ovations Food Services\"}},{\"attributeHeader\":{\"labelValue\":\"Overture Partners\",\"primaryLabelValue\":\"Overture Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pace Computer Solutions\",\"primaryLabelValue\":\"Pace Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Software Publishing\",\"primaryLabelValue\":\"Pacific Software Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Padilla Construction Services\",\"primaryLabelValue\":\"Padilla Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pallet Central Enterprises\",\"primaryLabelValue\":\"Pallet Central Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Palm Beach Tan\",\"primaryLabelValue\":\"Palm Beach Tan\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Corporate Housing\",\"primaryLabelValue\":\"Paragon Corporate Housing\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paramount Technologies\",\"primaryLabelValue\":\"Paramount Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health\",\"primaryLabelValue\":\"Passport Health\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Patel Consultants\",\"primaryLabelValue\":\"Patel Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Pathmark Transportation\",\"primaryLabelValue\":\"Pathmark Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"PatioShoppers.com\",\"primaryLabelValue\":\"PatioShoppers.com\"}},{\"attributeHeader\":{\"labelValue\":\"Patrick Henry Creative Promotions\",\"primaryLabelValue\":\"Patrick Henry Creative Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Patterson Belknap Webb & Tyler\",\"primaryLabelValue\":\"Patterson Belknap Webb & Tyler\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Hastings, Janofsky & Walker\",\"primaryLabelValue\":\"Paul, Hastings, Janofsky & Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\",\"primaryLabelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"Paylocity\",\"primaryLabelValue\":\"Paylocity\"}},{\"attributeHeader\":{\"labelValue\":\"PCD Group\",\"primaryLabelValue\":\"PCD Group\"}},{\"attributeHeader\":{\"labelValue\":\"PCN Network\",\"primaryLabelValue\":\"PCN Network\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Auto Racing Supplies\",\"primaryLabelValue\":\"Pegasus Auto Racing Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"Pelican Products\",\"primaryLabelValue\":\"Pelican Products\"}},{\"attributeHeader\":{\"labelValue\":\"Peloton Advantage\",\"primaryLabelValue\":\"Peloton Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Pensco Trust\",\"primaryLabelValue\":\"Pensco Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Pentec Health\",\"primaryLabelValue\":\"Pentec Health\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleAdmin\",\"primaryLabelValue\":\"PeopleAdmin\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleTec\",\"primaryLabelValue\":\"PeopleTec\"}},{\"attributeHeader\":{\"labelValue\":\"PepperDash Technology\",\"primaryLabelValue\":\"PepperDash Technology\"}},{\"attributeHeader\":{\"labelValue\":\"PERI\",\"primaryLabelValue\":\"PERI\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter E-Security\",\"primaryLabelValue\":\"Perimeter E-Security\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter Technology\",\"primaryLabelValue\":\"Perimeter Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Peritus\",\"primaryLabelValue\":\"Peritus\"}},{\"attributeHeader\":{\"labelValue\":\"Petrus Brands\",\"primaryLabelValue\":\"Petrus Brands\"}},{\"attributeHeader\":{\"labelValue\":\"PetSafe\",\"primaryLabelValue\":\"PetSafe\"}},{\"attributeHeader\":{\"labelValue\":\"Pfister Energy\",\"primaryLabelValue\":\"Pfister Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Phillips Painting\",\"primaryLabelValue\":\"Phillips Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Integration\",\"primaryLabelValue\":\"Phoenix Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Photon Infotech\",\"primaryLabelValue\":\"Photon Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Picis\",\"primaryLabelValue\":\"Picis\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Technical Resources\",\"primaryLabelValue\":\"Pinnacle Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Piston Group\",\"primaryLabelValue\":\"Piston Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Technologies\",\"primaryLabelValue\":\"Plan B Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Plano-Coudon\",\"primaryLabelValue\":\"Plano-Coudon\"}},{\"attributeHeader\":{\"labelValue\":\"PLCs Plus International\",\"primaryLabelValue\":\"PLCs Plus International\"}},{\"attributeHeader\":{\"labelValue\":\"Plenus Group\",\"primaryLabelValue\":\"Plenus Group\"}},{\"attributeHeader\":{\"labelValue\":\"Plus One Health Management\",\"primaryLabelValue\":\"Plus One Health Management\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Direct\",\"primaryLabelValue\":\"Polaris Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Portable Church Industries\",\"primaryLabelValue\":\"Portable Church Industries\"}},{\"attributeHeader\":{\"labelValue\":\"PostcardMania\",\"primaryLabelValue\":\"PostcardMania\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Power Equipment Direct\",\"primaryLabelValue\":\"Power Equipment Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Power Home Technologies\",\"primaryLabelValue\":\"Power Home Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PowerON Services\",\"primaryLabelValue\":\"PowerON Services\"}},{\"attributeHeader\":{\"labelValue\":\"Practical Computer Applications\",\"primaryLabelValue\":\"Practical Computer Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Practice Management Center\",\"primaryLabelValue\":\"Practice Management Center\"}},{\"attributeHeader\":{\"labelValue\":\"PreCash\",\"primaryLabelValue\":\"PreCash\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Flow Technologies\",\"primaryLabelValue\":\"Precision Flow Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Solutions\",\"primaryLabelValue\":\"Preferred Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preludesys\",\"primaryLabelValue\":\"Preludesys\"}},{\"attributeHeader\":{\"labelValue\":\"Premier BPO\",\"primaryLabelValue\":\"Premier BPO\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"PrintFlex Graphics\",\"primaryLabelValue\":\"PrintFlex Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prisma Graphic\",\"primaryLabelValue\":\"Prisma Graphic\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Processes Unlimited International\",\"primaryLabelValue\":\"Processes Unlimited International\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Builders Supply\",\"primaryLabelValue\":\"Professional Builders Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Contractors Services\",\"primaryLabelValue\":\"Professional Contractors Services\"}},{\"attributeHeader\":{\"labelValue\":\"Project Development Services\",\"primaryLabelValue\":\"Project Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Projility\",\"primaryLabelValue\":\"Projility\"}},{\"attributeHeader\":{\"labelValue\":\"Prometheus Laboratories\",\"primaryLabelValue\":\"Prometheus Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"ProSites\",\"primaryLabelValue\":\"ProSites\"}},{\"attributeHeader\":{\"labelValue\":\"Proto Labs\",\"primaryLabelValue\":\"Proto Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Providea Conferencing\",\"primaryLabelValue\":\"Providea Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"PSP & Digital\",\"primaryLabelValue\":\"PSP & Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Purchasing Power\",\"primaryLabelValue\":\"Purchasing Power\"}},{\"attributeHeader\":{\"labelValue\":\"PureSafety\",\"primaryLabelValue\":\"PureSafety\"}},{\"attributeHeader\":{\"labelValue\":\"Puritan Products\",\"primaryLabelValue\":\"Puritan Products\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Consulting\",\"primaryLabelValue\":\"Pyramid Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Services\",\"primaryLabelValue\":\"Pyramid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramyd Air\",\"primaryLabelValue\":\"Pyramyd Air\"}},{\"attributeHeader\":{\"labelValue\":\"QED National\",\"primaryLabelValue\":\"QED National\"}},{\"attributeHeader\":{\"labelValue\":\"Qortex\",\"primaryLabelValue\":\"Qortex\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Qualys\",\"primaryLabelValue\":\"Qualys\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quarles & Brady\",\"primaryLabelValue\":\"Quarles & Brady\"}},{\"attributeHeader\":{\"labelValue\":\"Quickcomm Software Solutions\",\"primaryLabelValue\":\"Quickcomm Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R Square\",\"primaryLabelValue\":\"R Square\"}},{\"attributeHeader\":{\"labelValue\":\"R.W. Garcia\",\"primaryLabelValue\":\"R.W. Garcia\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"RailComm\",\"primaryLabelValue\":\"RailComm\"}},{\"attributeHeader\":{\"labelValue\":\"Raising Cane's Chicken Fingers\",\"primaryLabelValue\":\"Raising Cane's Chicken Fingers\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Product Development Group\",\"primaryLabelValue\":\"Rapid Product Development Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"RDG Planning & Design\",\"primaryLabelValue\":\"RDG Planning & Design\"}},{\"attributeHeader\":{\"labelValue\":\"RDK Engineers\",\"primaryLabelValue\":\"RDK Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"Red Book Solutions\",\"primaryLabelValue\":\"Red Book Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Redemption Plus\",\"primaryLabelValue\":\"Redemption Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Redpepper\",\"primaryLabelValue\":\"Redpepper\"}},{\"attributeHeader\":{\"labelValue\":\"Regenesis Biomedical\",\"primaryLabelValue\":\"Regenesis Biomedical\"}},{\"attributeHeader\":{\"labelValue\":\"RehabAbilities\",\"primaryLabelValue\":\"RehabAbilities\"}},{\"attributeHeader\":{\"labelValue\":\"Reichard Staffing\",\"primaryLabelValue\":\"Reichard Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Comfort\",\"primaryLabelValue\":\"Reliable Comfort\"}},{\"attributeHeader\":{\"labelValue\":\"Relocation.com\",\"primaryLabelValue\":\"Relocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Renters Warehouse\",\"primaryLabelValue\":\"Renters Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Return Path\",\"primaryLabelValue\":\"Return Path\"}},{\"attributeHeader\":{\"labelValue\":\"RevereIT\",\"primaryLabelValue\":\"RevereIT\"}},{\"attributeHeader\":{\"labelValue\":\"Revolution Prep\",\"primaryLabelValue\":\"Revolution Prep\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RHG Group\",\"primaryLabelValue\":\"RHG Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rhythmlink International\",\"primaryLabelValue\":\"Rhythmlink International\"}},{\"attributeHeader\":{\"labelValue\":\"RightStar\",\"primaryLabelValue\":\"RightStar\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"RigPower\",\"primaryLabelValue\":\"RigPower\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun Farms\",\"primaryLabelValue\":\"Rising Sun Farms\"}},{\"attributeHeader\":{\"labelValue\":\"RMI\",\"primaryLabelValue\":\"RMI\"}},{\"attributeHeader\":{\"labelValue\":\"Robanda International\",\"primaryLabelValue\":\"Robanda International\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"RockCorps\",\"primaryLabelValue\":\"RockCorps\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rockhouse Bar\",\"primaryLabelValue\":\"Rockhouse Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Rocky Mountain Sanitation\",\"primaryLabelValue\":\"Rocky Mountain Sanitation\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ropes & Gray\",\"primaryLabelValue\":\"Ropes & Gray\"}},{\"attributeHeader\":{\"labelValue\":\"Ross Mortgage\",\"primaryLabelValue\":\"Ross Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"Rowpar Pharmaceuticals\",\"primaryLabelValue\":\"Rowpar Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Electric\",\"primaryLabelValue\":\"Rumsey Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Engineers\",\"primaryLabelValue\":\"Rumsey Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"S and Y Industries\",\"primaryLabelValue\":\"S and Y Industries\"}},{\"attributeHeader\":{\"labelValue\":\"S3\",\"primaryLabelValue\":\"S3\"}},{\"attributeHeader\":{\"labelValue\":\"Safeguard Properties\",\"primaryLabelValue\":\"Safeguard Properties\"}},{\"attributeHeader\":{\"labelValue\":\"SafeNet\",\"primaryLabelValue\":\"SafeNet\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Technology International\",\"primaryLabelValue\":\"Safety Technology International\"}},{\"attributeHeader\":{\"labelValue\":\"Sanger & Eby\",\"primaryLabelValue\":\"Sanger & Eby\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Savannah Bee\",\"primaryLabelValue\":\"Savannah Bee\"}},{\"attributeHeader\":{\"labelValue\":\"SB&B Foods\",\"primaryLabelValue\":\"SB&B Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SC&H Group\",\"primaryLabelValue\":\"SC&H Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schermer Kuehl\",\"primaryLabelValue\":\"Schermer Kuehl\"}},{\"attributeHeader\":{\"labelValue\":\"Schiff Hardin\",\"primaryLabelValue\":\"Schiff Hardin\"}},{\"attributeHeader\":{\"labelValue\":\"Schipul\",\"primaryLabelValue\":\"Schipul\"}},{\"attributeHeader\":{\"labelValue\":\"Schultz and Summers Engineering\",\"primaryLabelValue\":\"Schultz and Summers Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ScripNet\",\"primaryLabelValue\":\"ScripNet\"}},{\"attributeHeader\":{\"labelValue\":\"SDLC Partners\",\"primaryLabelValue\":\"SDLC Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeaSpine\",\"primaryLabelValue\":\"SeaSpine\"}},{\"attributeHeader\":{\"labelValue\":\"Seaway Printing\",\"primaryLabelValue\":\"Seaway Printing\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security Card Services\",\"primaryLabelValue\":\"Security Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Security Management Consulting\",\"primaryLabelValue\":\"Security Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Sedgwick, Detert, Moran & Arnold\",\"primaryLabelValue\":\"Sedgwick, Detert, Moran & Arnold\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"SEI Boston\",\"primaryLabelValue\":\"SEI Boston\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Selerant\",\"primaryLabelValue\":\"Selerant\"}},{\"attributeHeader\":{\"labelValue\":\"Semper Home Loans\",\"primaryLabelValue\":\"Semper Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Senn Dunn Insurance\",\"primaryLabelValue\":\"Senn Dunn Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Senovva\",\"primaryLabelValue\":\"Senovva\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"Serpa Packaging Solutions\",\"primaryLabelValue\":\"Serpa Packaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Service Express\",\"primaryLabelValue\":\"Service Express\"}},{\"attributeHeader\":{\"labelValue\":\"ServiceForce\",\"primaryLabelValue\":\"ServiceForce\"}},{\"attributeHeader\":{\"labelValue\":\"Servigistics\",\"primaryLabelValue\":\"Servigistics\"}},{\"attributeHeader\":{\"labelValue\":\"SES Advisors\",\"primaryLabelValue\":\"SES Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Sewell Direct\",\"primaryLabelValue\":\"Sewell Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Seyfarth Shaw\",\"primaryLabelValue\":\"Seyfarth Shaw\"}},{\"attributeHeader\":{\"labelValue\":\"SGA Group\",\"primaryLabelValue\":\"SGA Group\"}},{\"attributeHeader\":{\"labelValue\":\"SGIS\",\"primaryLabelValue\":\"SGIS\"}},{\"attributeHeader\":{\"labelValue\":\"Shannon & Wilson\",\"primaryLabelValue\":\"Shannon & Wilson\"}},{\"attributeHeader\":{\"labelValue\":\"Sharper Impressions Painting\",\"primaryLabelValue\":\"Sharper Impressions Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Sheppard, Mullin, Richter & Hampton\",\"primaryLabelValue\":\"Sheppard, Mullin, Richter & Hampton\"}},{\"attributeHeader\":{\"labelValue\":\"Shoptech Industrial Software\",\"primaryLabelValue\":\"Shoptech Industrial Software\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"ShuBee\",\"primaryLabelValue\":\"ShuBee\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Nevada\",\"primaryLabelValue\":\"Sierra Nevada\"}},{\"attributeHeader\":{\"labelValue\":\"Silicon Forest Electronics\",\"primaryLabelValue\":\"Silicon Forest Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SilverTech\",\"primaryLabelValue\":\"SilverTech\"}},{\"attributeHeader\":{\"labelValue\":\"simpleview\",\"primaryLabelValue\":\"simpleview\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Siren Interactive\",\"primaryLabelValue\":\"Siren Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Sitewire\",\"primaryLabelValue\":\"Sitewire\"}},{\"attributeHeader\":{\"labelValue\":\"Skadden, Arps, Slate, Meagher & Flom\",\"primaryLabelValue\":\"Skadden, Arps, Slate, Meagher & Flom\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"SLM - Facility Solutions Nationwide\",\"primaryLabelValue\":\"SLM - Facility Solutions Nationwide\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Destinations\",\"primaryLabelValue\":\"Smart Destinations\"}},{\"attributeHeader\":{\"labelValue\":\"Smart IMS\",\"primaryLabelValue\":\"Smart IMS\"}},{\"attributeHeader\":{\"labelValue\":\"Smarter Security Systems\",\"primaryLabelValue\":\"Smarter Security Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Brands Group\",\"primaryLabelValue\":\"Smile Brands Group\"}},{\"attributeHeader\":{\"labelValue\":\"Smith-Dahmer Associates\",\"primaryLabelValue\":\"Smith-Dahmer Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Smith's Machine\",\"primaryLabelValue\":\"Smith's Machine\"}},{\"attributeHeader\":{\"labelValue\":\"Snack Factory\",\"primaryLabelValue\":\"Snack Factory\"}},{\"attributeHeader\":{\"labelValue\":\"Snapcab By Bostock\",\"primaryLabelValue\":\"Snapcab By Bostock\"}},{\"attributeHeader\":{\"labelValue\":\"SNL Financial\",\"primaryLabelValue\":\"SNL Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Software Transformations\",\"primaryLabelValue\":\"Software Transformations\"}},{\"attributeHeader\":{\"labelValue\":\"SoftWriters\",\"primaryLabelValue\":\"SoftWriters\"}},{\"attributeHeader\":{\"labelValue\":\"Sole Supports\",\"primaryLabelValue\":\"Sole Supports\"}},{\"attributeHeader\":{\"labelValue\":\"Solid Earth\",\"primaryLabelValue\":\"Solid Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Solution Design Group\",\"primaryLabelValue\":\"Solution Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Southeast Media\",\"primaryLabelValue\":\"Southeast Media\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Prestige Industries\",\"primaryLabelValue\":\"Southern Prestige Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spark Public Relations\",\"primaryLabelValue\":\"Spark Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"SpectorSoft\",\"primaryLabelValue\":\"SpectorSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Human Resource Systems\",\"primaryLabelValue\":\"Spectrum Human Resource Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SpeechCycle\",\"primaryLabelValue\":\"SpeechCycle\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Sphere of Influence\",\"primaryLabelValue\":\"Sphere of Influence\"}},{\"attributeHeader\":{\"labelValue\":\"Spillman Technologies\",\"primaryLabelValue\":\"Spillman Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Splice Communications\",\"primaryLabelValue\":\"Splice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"SRSsoft\",\"primaryLabelValue\":\"SRSsoft\"}},{\"attributeHeader\":{\"labelValue\":\"SS&C Technologies Holdings\",\"primaryLabelValue\":\"SS&C Technologies Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"SSD Technology Partners\",\"primaryLabelValue\":\"SSD Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"SSi Furnishings\",\"primaryLabelValue\":\"SSi Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Staffing Plus\",\"primaryLabelValue\":\"Staffing Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Standing Dog Interactive\",\"primaryLabelValue\":\"Standing Dog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Stanek Holdco\",\"primaryLabelValue\":\"Stanek Holdco\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"SteelCell of North America\",\"primaryLabelValue\":\"SteelCell of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Stellar Solutions\",\"primaryLabelValue\":\"Stellar Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"STG International\",\"primaryLabelValue\":\"STG International\"}},{\"attributeHeader\":{\"labelValue\":\"Stoltenberg Consulting\",\"primaryLabelValue\":\"Stoltenberg Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Stone Brewing\",\"primaryLabelValue\":\"Stone Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Storreytime\",\"primaryLabelValue\":\"Storreytime\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Staffing Solutions (Detroit, MI)\",\"primaryLabelValue\":\"Strategic Staffing Solutions (Detroit, MI)\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Structured Communication Systems\",\"primaryLabelValue\":\"Structured Communication Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Technology\",\"primaryLabelValue\":\"Summit Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Sunbelt Software\",\"primaryLabelValue\":\"Sunbelt Software\"}},{\"attributeHeader\":{\"labelValue\":\"Sundance Vacations\",\"primaryLabelValue\":\"Sundance Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Sundt Construction\",\"primaryLabelValue\":\"Sundt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Minting\",\"primaryLabelValue\":\"Sunshine Minting\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Press\",\"primaryLabelValue\":\"Superior Press\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Support Resources\",\"primaryLabelValue\":\"Superior Support Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sustainable Harvest Coffee Importers\",\"primaryLabelValue\":\"Sustainable Harvest Coffee Importers\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Swiger Coil Systems\",\"primaryLabelValue\":\"Swiger Coil Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Swiss Watch International\",\"primaryLabelValue\":\"Swiss Watch International\"}},{\"attributeHeader\":{\"labelValue\":\"Sygnetics\",\"primaryLabelValue\":\"Sygnetics\"}},{\"attributeHeader\":{\"labelValue\":\"SymbolArts\",\"primaryLabelValue\":\"SymbolArts\"}},{\"attributeHeader\":{\"labelValue\":\"Symetra Financial\",\"primaryLabelValue\":\"Symetra Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Synacor\",\"primaryLabelValue\":\"Synacor\"}},{\"attributeHeader\":{\"labelValue\":\"Synch-Solutions\",\"primaryLabelValue\":\"Synch-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&T Solutions\",\"primaryLabelValue\":\"T&T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T.B. Penick & Sons\",\"primaryLabelValue\":\"T.B. Penick & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"T2 Systems\",\"primaryLabelValue\":\"T2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TAJ Technologies\",\"primaryLabelValue\":\"TAJ Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Talyst\",\"primaryLabelValue\":\"Talyst\"}},{\"attributeHeader\":{\"labelValue\":\"TargetCast tcm\",\"primaryLabelValue\":\"TargetCast tcm\"}},{\"attributeHeader\":{\"labelValue\":\"Tastefully Simple\",\"primaryLabelValue\":\"Tastefully Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Tasty Catering\",\"primaryLabelValue\":\"Tasty Catering\"}},{\"attributeHeader\":{\"labelValue\":\"Tax Resolution Services\",\"primaryLabelValue\":\"Tax Resolution Services\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"Techead\",\"primaryLabelValue\":\"Techead\"}},{\"attributeHeader\":{\"labelValue\":\"Technatomy\",\"primaryLabelValue\":\"Technatomy\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Resource Group\",\"primaryLabelValue\":\"Technical Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Technosoft\",\"primaryLabelValue\":\"Technosoft\"}},{\"attributeHeader\":{\"labelValue\":\"TechSmith\",\"primaryLabelValue\":\"TechSmith\"}},{\"attributeHeader\":{\"labelValue\":\"TechSource\",\"primaryLabelValue\":\"TechSource\"}},{\"attributeHeader\":{\"labelValue\":\"TEK Microsystems\",\"primaryLabelValue\":\"TEK Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"Teksavers\",\"primaryLabelValue\":\"Teksavers\"}},{\"attributeHeader\":{\"labelValue\":\"Temporary Housing Directory\",\"primaryLabelValue\":\"Temporary Housing Directory\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Texsun Pools\",\"primaryLabelValue\":\"Texsun Pools\"}},{\"attributeHeader\":{\"labelValue\":\"That's Good HR\",\"primaryLabelValue\":\"That's Good HR\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Alternative Board\",\"primaryLabelValue\":\"The Alternative Board\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Coffee Bean & Tea Leaf\",\"primaryLabelValue\":\"The Coffee Bean & Tea Leaf\"}},{\"attributeHeader\":{\"labelValue\":\"The EMMES Corporation\",\"primaryLabelValue\":\"The EMMES Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Experts\",\"primaryLabelValue\":\"The Experts\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Market\",\"primaryLabelValue\":\"The Fresh Market\"}},{\"attributeHeader\":{\"labelValue\":\"The Glenture Group\",\"primaryLabelValue\":\"The Glenture Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Inspection Group\",\"primaryLabelValue\":\"The Inspection Group\"}},{\"attributeHeader\":{\"labelValue\":\"The James Group\",\"primaryLabelValue\":\"The James Group\"}},{\"attributeHeader\":{\"labelValue\":\"The LaSalle Network\",\"primaryLabelValue\":\"The LaSalle Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Lavidge Company\",\"primaryLabelValue\":\"The Lavidge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Leads Network\",\"primaryLabelValue\":\"The Leads Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Legacy Network\",\"primaryLabelValue\":\"The Legacy Network\"}},{\"attributeHeader\":{\"labelValue\":\"The List\",\"primaryLabelValue\":\"The List\"}},{\"attributeHeader\":{\"labelValue\":\"The Logic Group\",\"primaryLabelValue\":\"The Logic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Logistics Company\",\"primaryLabelValue\":\"The Logistics Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Macomb Group\",\"primaryLabelValue\":\"The Macomb Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Maslow Media Group\",\"primaryLabelValue\":\"The Maslow Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Matrix Companies\",\"primaryLabelValue\":\"The Matrix Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Maven Group\",\"primaryLabelValue\":\"The Maven Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Millennium Group\",\"primaryLabelValue\":\"The Millennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Newtron Group\",\"primaryLabelValue\":\"The Newtron Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Presidio Group\",\"primaryLabelValue\":\"The Presidio Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PTR Group\",\"primaryLabelValue\":\"The PTR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Royalty Network\",\"primaryLabelValue\":\"The Royalty Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Saxon Group\",\"primaryLabelValue\":\"The Saxon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Shams Group\",\"primaryLabelValue\":\"The Shams Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Wentwood Companies\",\"primaryLabelValue\":\"The Wentwood Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Tier 1 Performance Solutions\",\"primaryLabelValue\":\"Tier 1 Performance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Timbercon\",\"primaryLabelValue\":\"Timbercon\"}},{\"attributeHeader\":{\"labelValue\":\"Timeshare Relief\",\"primaryLabelValue\":\"Timeshare Relief\"}},{\"attributeHeader\":{\"labelValue\":\"Tire Group International\",\"primaryLabelValue\":\"Tire Group International\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"TitleVest\",\"primaryLabelValue\":\"TitleVest\"}},{\"attributeHeader\":{\"labelValue\":\"tmg-e*media\",\"primaryLabelValue\":\"tmg-e*media\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"TMW Systems\",\"primaryLabelValue\":\"TMW Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TOD\",\"primaryLabelValue\":\"TOD\"}},{\"attributeHeader\":{\"labelValue\":\"Today's Business Solutions\",\"primaryLabelValue\":\"Today's Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Tolunay-Wong Engineers\",\"primaryLabelValue\":\"Tolunay-Wong Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Topaz Systems\",\"primaryLabelValue\":\"Topaz Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TopSpot Internet Marketing\",\"primaryLabelValue\":\"TopSpot Internet Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Total Medical Solutions\",\"primaryLabelValue\":\"Total Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Total Quality Logistics\",\"primaryLabelValue\":\"Total Quality Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Totally Tickets\",\"primaryLabelValue\":\"Totally Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"TransExpress\",\"primaryLabelValue\":\"TransExpress\"}},{\"attributeHeader\":{\"labelValue\":\"Transfinder\",\"primaryLabelValue\":\"Transfinder\"}},{\"attributeHeader\":{\"labelValue\":\"TransPerfect\",\"primaryLabelValue\":\"TransPerfect\"}},{\"attributeHeader\":{\"labelValue\":\"Transportation Insight\",\"primaryLabelValue\":\"Transportation Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Transtyle\",\"primaryLabelValue\":\"Transtyle\"}},{\"attributeHeader\":{\"labelValue\":\"Tree of Life Bookstores\",\"primaryLabelValue\":\"Tree of Life Bookstores\"}},{\"attributeHeader\":{\"labelValue\":\"Treo Solutions\",\"primaryLabelValue\":\"Treo Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Resources\",\"primaryLabelValue\":\"Triad Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Contract Management\",\"primaryLabelValue\":\"Trident Contract Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trilibis\",\"primaryLabelValue\":\"Trilibis\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Creek\",\"primaryLabelValue\":\"Triple Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Tristar Products\",\"primaryLabelValue\":\"Tristar Products\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TruPay\",\"primaryLabelValue\":\"TruPay\"}},{\"attributeHeader\":{\"labelValue\":\"Trusant Technologies\",\"primaryLabelValue\":\"Trusant Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tully Rinckey\",\"primaryLabelValue\":\"Tully Rinckey\"}},{\"attributeHeader\":{\"labelValue\":\"Turbocam\",\"primaryLabelValue\":\"Turbocam\"}},{\"attributeHeader\":{\"labelValue\":\"Turner Industries\",\"primaryLabelValue\":\"Turner Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Turning Technologies\",\"primaryLabelValue\":\"Turning Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Island Foods\",\"primaryLabelValue\":\"Turtle Island Foods\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Tax Advantage\",\"primaryLabelValue\":\"U.S. Tax Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Unidine\",\"primaryLabelValue\":\"Unidine\"}},{\"attributeHeader\":{\"labelValue\":\"United Data Technologies\",\"primaryLabelValue\":\"United Data Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"US Tech Solutions\",\"primaryLabelValue\":\"US Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US21\",\"primaryLabelValue\":\"US21\"}},{\"attributeHeader\":{\"labelValue\":\"USA Mortgage\",\"primaryLabelValue\":\"USA Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"User Insight\",\"primaryLabelValue\":\"User Insight\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Valir Health\",\"primaryLabelValue\":\"Valir Health\"}},{\"attributeHeader\":{\"labelValue\":\"VanderHouwen\",\"primaryLabelValue\":\"VanderHouwen\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"Vedicsoft\",\"primaryLabelValue\":\"Vedicsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Venable\",\"primaryLabelValue\":\"Venable\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vera Bradley\",\"primaryLabelValue\":\"Vera Bradley\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Engineering\",\"primaryLabelValue\":\"Veracity Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"VeriStor Systems\",\"primaryLabelValue\":\"VeriStor Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Verndale\",\"primaryLabelValue\":\"Verndale\"}},{\"attributeHeader\":{\"labelValue\":\"Verst Group\",\"primaryLabelValue\":\"Verst Group\"}},{\"attributeHeader\":{\"labelValue\":\"Verti-Crete\",\"primaryLabelValue\":\"Verti-Crete\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilan\",\"primaryLabelValue\":\"Vigilan\"}},{\"attributeHeader\":{\"labelValue\":\"Villa Fresh Italian Kitchen\",\"primaryLabelValue\":\"Villa Fresh Italian Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Graffiti\",\"primaryLabelValue\":\"Virtual Graffiti\"}},{\"attributeHeader\":{\"labelValue\":\"Visionet Systems\",\"primaryLabelValue\":\"Visionet Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Visp.net\",\"primaryLabelValue\":\"Visp.net\"}},{\"attributeHeader\":{\"labelValue\":\"Vista Window\",\"primaryLabelValue\":\"Vista Window\"}},{\"attributeHeader\":{\"labelValue\":\"VitaDigest.com\",\"primaryLabelValue\":\"VitaDigest.com\"}},{\"attributeHeader\":{\"labelValue\":\"Vitalize Consulting Solutions\",\"primaryLabelValue\":\"Vitalize Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Vladimir Jones\",\"primaryLabelValue\":\"Vladimir Jones\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Vosges Haut Chocolat\",\"primaryLabelValue\":\"Vosges Haut Chocolat\"}},{\"attributeHeader\":{\"labelValue\":\"Vozzcom\",\"primaryLabelValue\":\"Vozzcom\"}},{\"attributeHeader\":{\"labelValue\":\"VSoft\",\"primaryLabelValue\":\"VSoft\"}},{\"attributeHeader\":{\"labelValue\":\"VST Consulting\",\"primaryLabelValue\":\"VST Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"VXI Global Solutions\",\"primaryLabelValue\":\"VXI Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"WahlcoMetroflex\",\"primaryLabelValue\":\"WahlcoMetroflex\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wallace\",\"primaryLabelValue\":\"Wallace\"}},{\"attributeHeader\":{\"labelValue\":\"Wasatch Software\",\"primaryLabelValue\":\"Wasatch Software\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Direct\",\"primaryLabelValue\":\"Wave Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Form Systems\",\"primaryLabelValue\":\"Wave Form Systems\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"Weather Decision Technologies\",\"primaryLabelValue\":\"Weather Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WebsiteBiz\",\"primaryLabelValue\":\"WebsiteBiz\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"West\",\"primaryLabelValue\":\"West\"}},{\"attributeHeader\":{\"labelValue\":\"Western Dovetail\",\"primaryLabelValue\":\"Western Dovetail\"}},{\"attributeHeader\":{\"labelValue\":\"Western Petroleum\",\"primaryLabelValue\":\"Western Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"WFN Strategies\",\"primaryLabelValue\":\"WFN Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"WhatSheBuys\",\"primaryLabelValue\":\"WhatSheBuys\"}},{\"attributeHeader\":{\"labelValue\":\"White & Case\",\"primaryLabelValue\":\"White & Case\"}},{\"attributeHeader\":{\"labelValue\":\"White Horse\",\"primaryLabelValue\":\"White Horse\"}},{\"attributeHeader\":{\"labelValue\":\"Whiteriver Construction\",\"primaryLabelValue\":\"Whiteriver Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Williams & Connolly\",\"primaryLabelValue\":\"Williams & Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Distribution\",\"primaryLabelValue\":\"Windy City Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless City\",\"primaryLabelValue\":\"Wireless City\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wiss, Janney, Elstner Associates\",\"primaryLabelValue\":\"Wiss, Janney, Elstner Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wittenberg Weiner Consulting\",\"primaryLabelValue\":\"Wittenberg Weiner Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WolfePak\",\"primaryLabelValue\":\"WolfePak\"}},{\"attributeHeader\":{\"labelValue\":\"Wonderland Enchanted Bakery\",\"primaryLabelValue\":\"Wonderland Enchanted Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"WorkSmart\",\"primaryLabelValue\":\"WorkSmart\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Travel Staffing\",\"primaryLabelValue\":\"Worldwide Travel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Wpromote\",\"primaryLabelValue\":\"Wpromote\"}},{\"attributeHeader\":{\"labelValue\":\"XCEND Group\",\"primaryLabelValue\":\"XCEND Group\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"XPO\",\"primaryLabelValue\":\"XPO\"}},{\"attributeHeader\":{\"labelValue\":\"Yellow Cab Company of Dallas Fort Worth\",\"primaryLabelValue\":\"Yellow Cab Company of Dallas Fort Worth\"}},{\"attributeHeader\":{\"labelValue\":\"Yerba Buena Engineering & Construction\",\"primaryLabelValue\":\"Yerba Buena Engineering & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zekiah Technologies\",\"primaryLabelValue\":\"Zekiah Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zillion Technologies\",\"primaryLabelValue\":\"Zillion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zooom Printing\",\"primaryLabelValue\":\"Zooom Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Zoup! Fresh Soup\",\"primaryLabelValue\":\"Zoup! Fresh Soup\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 Postcards\",\"primaryLabelValue\":\"1-800 Postcards\"}},{\"attributeHeader\":{\"labelValue\":\"2HB Software Designs\",\"primaryLabelValue\":\"2HB Software Designs\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"4th Source\",\"primaryLabelValue\":\"4th Source\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"90octane\",\"primaryLabelValue\":\"90octane\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"A Squared Group\",\"primaryLabelValue\":\"A Squared Group\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"ABBTech Staffing Services\",\"primaryLabelValue\":\"ABBTech Staffing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Able Patrol and Guard\",\"primaryLabelValue\":\"Able Patrol and Guard\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Absolute Concrete Construction\",\"primaryLabelValue\":\"Absolute Concrete Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accelera Solutions\",\"primaryLabelValue\":\"Accelera Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Display Group\",\"primaryLabelValue\":\"Access Display Group\"}},{\"attributeHeader\":{\"labelValue\":\"Action Envelope\",\"primaryLabelValue\":\"Action Envelope\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Materials\",\"primaryLabelValue\":\"Adaptive Materials\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage PressurePro\",\"primaryLabelValue\":\"Advantage PressurePro\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Radiology Billing\",\"primaryLabelValue\":\"Advocate Radiology Billing\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aeneas Internet and Telephone\",\"primaryLabelValue\":\"Aeneas Internet and Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Air Serv\",\"primaryLabelValue\":\"Air Serv\"}},{\"attributeHeader\":{\"labelValue\":\"Airnet Group\",\"primaryLabelValue\":\"Airnet Group\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"Akerman Senterfitt\",\"primaryLabelValue\":\"Akerman Senterfitt\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Alcorn McBride\",\"primaryLabelValue\":\"Alcorn McBride\"}},{\"attributeHeader\":{\"labelValue\":\"Alexander Open Systems\",\"primaryLabelValue\":\"Alexander Open Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Copy Products\",\"primaryLabelValue\":\"All Copy Products\"}},{\"attributeHeader\":{\"labelValue\":\"All4\",\"primaryLabelValue\":\"All4\"}},{\"attributeHeader\":{\"labelValue\":\"Allconnect\",\"primaryLabelValue\":\"Allconnect\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Technologies\",\"primaryLabelValue\":\"Alliance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Allied 100\",\"primaryLabelValue\":\"Allied 100\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Source\",\"primaryLabelValue\":\"Alpha Source\"}},{\"attributeHeader\":{\"labelValue\":\"Alston & Bird\",\"primaryLabelValue\":\"Alston & Bird\"}},{\"attributeHeader\":{\"labelValue\":\"altE\",\"primaryLabelValue\":\"altE\"}},{\"attributeHeader\":{\"labelValue\":\"Altec Solutions Group\",\"primaryLabelValue\":\"Altec Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Always Best Care Senior Services\",\"primaryLabelValue\":\"Always Best Care Senior Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"American Broadband\",\"primaryLabelValue\":\"American Broadband\"}},{\"attributeHeader\":{\"labelValue\":\"American Business Solutions\",\"primaryLabelValue\":\"American Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Home Companions\",\"primaryLabelValue\":\"American Home Companions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"American Swiss Products\",\"primaryLabelValue\":\"American Swiss Products\"}},{\"attributeHeader\":{\"labelValue\":\"AmeriQuest Transportation Services\",\"primaryLabelValue\":\"AmeriQuest Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amherst Partners\",\"primaryLabelValue\":\"Amherst Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Amotec\",\"primaryLabelValue\":\"Amotec\"}},{\"attributeHeader\":{\"labelValue\":\"Amyx\",\"primaryLabelValue\":\"Amyx\"}},{\"attributeHeader\":{\"labelValue\":\"Anadarko Industries\",\"primaryLabelValue\":\"Anadarko Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Andera\",\"primaryLabelValue\":\"Andera\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews Kurth\",\"primaryLabelValue\":\"Andrews Kurth\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"AngelVision\",\"primaryLabelValue\":\"AngelVision\"}},{\"attributeHeader\":{\"labelValue\":\"Anthem Media Group\",\"primaryLabelValue\":\"Anthem Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"AnythingIT\",\"primaryLabelValue\":\"AnythingIT\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"AnytimeCostumes.com\",\"primaryLabelValue\":\"AnytimeCostumes.com\"}},{\"attributeHeader\":{\"labelValue\":\"AOD Software\",\"primaryLabelValue\":\"AOD Software\"}},{\"attributeHeader\":{\"labelValue\":\"APCO Worldwide\",\"primaryLabelValue\":\"APCO Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Print Technologies\",\"primaryLabelValue\":\"Apex Print Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Technology Group\",\"primaryLabelValue\":\"Apex Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Apple-Metro\",\"primaryLabelValue\":\"Apple-Metro\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Data\",\"primaryLabelValue\":\"Applied Data\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Scientific Instrumentation\",\"primaryLabelValue\":\"Applied Scientific Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"APT Research\",\"primaryLabelValue\":\"APT Research\"}},{\"attributeHeader\":{\"labelValue\":\"Aqua Superstore\",\"primaryLabelValue\":\"Aqua Superstore\"}},{\"attributeHeader\":{\"labelValue\":\"Aquifer Solutions\",\"primaryLabelValue\":\"Aquifer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Arizon Companies\",\"primaryLabelValue\":\"Arizon Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Arizona Blinds\",\"primaryLabelValue\":\"Arizona Blinds\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arketi Group\",\"primaryLabelValue\":\"Arketi Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Partnership\",\"primaryLabelValue\":\"Arrow Partnership\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Arrowhead Advertising\",\"primaryLabelValue\":\"Arrowhead Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Artech Information Systems\",\"primaryLabelValue\":\"Artech Information Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend One\",\"primaryLabelValue\":\"Ascend One\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ASE Technology\",\"primaryLabelValue\":\"ASE Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ashland Technologies\",\"primaryLabelValue\":\"Ashland Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Transportation\",\"primaryLabelValue\":\"Aspen Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Aspire Systems\",\"primaryLabelValue\":\"Aspire Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Asset Protection and Security Services\",\"primaryLabelValue\":\"Asset Protection and Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Astir IT Solutions\",\"primaryLabelValue\":\"Astir IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A-T Solutions\",\"primaryLabelValue\":\"A-T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Oil Company\",\"primaryLabelValue\":\"Atlas Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"Auction Systems Auctioneers & Appraisers\",\"primaryLabelValue\":\"Auction Systems Auctioneers & Appraisers\"}},{\"attributeHeader\":{\"labelValue\":\"Autohaus Arizona\",\"primaryLabelValue\":\"Autohaus Arizona\"}},{\"attributeHeader\":{\"labelValue\":\"Automated Voice & Data Solutions\",\"primaryLabelValue\":\"Automated Voice & Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Global Solutions\",\"primaryLabelValue\":\"Avalon Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avenue You Beauty Store\",\"primaryLabelValue\":\"Avenue You Beauty Store\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Ink\",\"primaryLabelValue\":\"AVID Ink\"}},{\"attributeHeader\":{\"labelValue\":\"Avisena\",\"primaryLabelValue\":\"Avisena\"}},{\"attributeHeader\":{\"labelValue\":\"Avondale Partners\",\"primaryLabelValue\":\"Avondale Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Aware Web Solutions\",\"primaryLabelValue\":\"Aware Web Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AWSI\",\"primaryLabelValue\":\"AWSI\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Aztec Systems\",\"primaryLabelValue\":\"Aztec Systems\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"BackgroundChecks.com\",\"primaryLabelValue\":\"BackgroundChecks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryLabelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"}},{\"attributeHeader\":{\"labelValue\":\"BankServ\",\"primaryLabelValue\":\"BankServ\"}},{\"attributeHeader\":{\"labelValue\":\"Barhorst Insurance Group\",\"primaryLabelValue\":\"Barhorst Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"Battle Resource Management\",\"primaryLabelValue\":\"Battle Resource Management\"}},{\"attributeHeader\":{\"labelValue\":\"Batzner Pest Management\",\"primaryLabelValue\":\"Batzner Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"BBE\",\"primaryLabelValue\":\"BBE\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Belmont Labs\",\"primaryLabelValue\":\"Belmont Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Benjamin Franklin Plumbing\",\"primaryLabelValue\":\"Benjamin Franklin Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Best Upon Request\",\"primaryLabelValue\":\"Best Upon Request\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"Bevilacqua Research Corporation\",\"primaryLabelValue\":\"Bevilacqua Research Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"BI Consulting Group\",\"primaryLabelValue\":\"BI Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Big Red Fasteners\",\"primaryLabelValue\":\"Big Red Fasteners\"}},{\"attributeHeader\":{\"labelValue\":\"BioPharm Systems\",\"primaryLabelValue\":\"BioPharm Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blair Companies\",\"primaryLabelValue\":\"Blair Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Blinc\",\"primaryLabelValue\":\"Blinc\"}},{\"attributeHeader\":{\"labelValue\":\"Blitz\",\"primaryLabelValue\":\"Blitz\"}},{\"attributeHeader\":{\"labelValue\":\"Blount Fine Foods\",\"primaryLabelValue\":\"Blount Fine Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Baker\",\"primaryLabelValue\":\"Blue Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Blue C Advertising\",\"primaryLabelValue\":\"Blue C Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Moon Works\",\"primaryLabelValue\":\"Blue Moon Works\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Star Partners\",\"primaryLabelValue\":\"Blue Star Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"Bodybuilding.com\",\"primaryLabelValue\":\"Bodybuilding.com\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Brand Up\",\"primaryLabelValue\":\"Brand Up\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"Business Network Consulting\",\"primaryLabelValue\":\"Business Network Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"BusinesSuites\",\"primaryLabelValue\":\"BusinesSuites\"}},{\"attributeHeader\":{\"labelValue\":\"BuyATimeshare.com\",\"primaryLabelValue\":\"BuyATimeshare.com\"}},{\"attributeHeader\":{\"labelValue\":\"Byrum Heating & A/C\",\"primaryLabelValue\":\"Byrum Heating & A/C\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"CableOrganizer.com\",\"primaryLabelValue\":\"CableOrganizer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Rio\",\"primaryLabelValue\":\"Cafe Rio\"}},{\"attributeHeader\":{\"labelValue\":\"Calhoun International\",\"primaryLabelValue\":\"Calhoun International\"}},{\"attributeHeader\":{\"labelValue\":\"Call Experts\",\"primaryLabelValue\":\"Call Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"CalPOP.com\",\"primaryLabelValue\":\"CalPOP.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cambria Solutions\",\"primaryLabelValue\":\"Cambria Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campfire Interactive\",\"primaryLabelValue\":\"Campfire Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Capital Investment Advisors\",\"primaryLabelValue\":\"Capital Investment Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Capital TechSearch\",\"primaryLabelValue\":\"Capital TechSearch\"}},{\"attributeHeader\":{\"labelValue\":\"CapRock Communications\",\"primaryLabelValue\":\"CapRock Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"CapTech Ventures\",\"primaryLabelValue\":\"CapTech Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Culinary Services\",\"primaryLabelValue\":\"Cardinal Culinary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carolina Tree Care\",\"primaryLabelValue\":\"Carolina Tree Care\"}},{\"attributeHeader\":{\"labelValue\":\"Carter Brothers\",\"primaryLabelValue\":\"Carter Brothers\"}},{\"attributeHeader\":{\"labelValue\":\"Cascades Technologies\",\"primaryLabelValue\":\"Cascades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cases By Source\",\"primaryLabelValue\":\"Cases By Source\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Cassaday & Company\",\"primaryLabelValue\":\"Cassaday & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cat5 Commerce\",\"primaryLabelValue\":\"Cat5 Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"Catacel\",\"primaryLabelValue\":\"Catacel\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst\",\"primaryLabelValue\":\"Catalyst\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Repository Systems\",\"primaryLabelValue\":\"Catalyst Repository Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Technology\",\"primaryLabelValue\":\"Catapult Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Centare Group\",\"primaryLabelValue\":\"Centare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Central Welding Supply\",\"primaryLabelValue\":\"Central Welding Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Centrinex\",\"primaryLabelValue\":\"Centrinex\"}},{\"attributeHeader\":{\"labelValue\":\"Centro\",\"primaryLabelValue\":\"Centro\"}},{\"attributeHeader\":{\"labelValue\":\"Century Service Affiliates\",\"primaryLabelValue\":\"Century Service Affiliates\"}},{\"attributeHeader\":{\"labelValue\":\"CH Mack\",\"primaryLabelValue\":\"CH Mack\"}},{\"attributeHeader\":{\"labelValue\":\"Chacon Autos\",\"primaryLabelValue\":\"Chacon Autos\"}},{\"attributeHeader\":{\"labelValue\":\"Chansen Publishing\",\"primaryLabelValue\":\"Chansen Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman and Cutler\",\"primaryLabelValue\":\"Chapman and Cutler\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cherry Optical\",\"primaryLabelValue\":\"Cherry Optical\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Choctaw Professional Resources Enterprise\",\"primaryLabelValue\":\"Choctaw Professional Resources Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Circle Computer Resources\",\"primaryLabelValue\":\"Circle Computer Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CityTwist\",\"primaryLabelValue\":\"CityTwist\"}},{\"attributeHeader\":{\"labelValue\":\"CK Environmental\",\"primaryLabelValue\":\"CK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Consulting\",\"primaryLabelValue\":\"Clarity Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clary Business Machines\",\"primaryLabelValue\":\"Clary Business Machines\"}},{\"attributeHeader\":{\"labelValue\":\"ClassBook.com\",\"primaryLabelValue\":\"ClassBook.com\"}},{\"attributeHeader\":{\"labelValue\":\"Classic Instruments\",\"primaryLabelValue\":\"Classic Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Cleary Gottlieb Steen & Hamilton\",\"primaryLabelValue\":\"Cleary Gottlieb Steen & Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"clevermethod\",\"primaryLabelValue\":\"clevermethod\"}},{\"attributeHeader\":{\"labelValue\":\"Clickstop\",\"primaryLabelValue\":\"Clickstop\"}},{\"attributeHeader\":{\"labelValue\":\"Clockwork Home Services\",\"primaryLabelValue\":\"Clockwork Home Services\"}},{\"attributeHeader\":{\"labelValue\":\"CloseOutStore.net\",\"primaryLabelValue\":\"CloseOutStore.net\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"CMA Consulting Services\",\"primaryLabelValue\":\"CMA Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CMI\",\"primaryLabelValue\":\"CMI\"}},{\"attributeHeader\":{\"labelValue\":\"CMIT Solutions\",\"primaryLabelValue\":\"CMIT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Logistics Group\",\"primaryLabelValue\":\"Coastal Logistics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobb Pediatric Therapy Services\",\"primaryLabelValue\":\"Cobb Pediatric Therapy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cobble Hill Trailer Sales\",\"primaryLabelValue\":\"Cobble Hill Trailer Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Code Shred\",\"primaryLabelValue\":\"Code Shred\"}},{\"attributeHeader\":{\"labelValue\":\"Codeworks\",\"primaryLabelValue\":\"Codeworks\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Solutions\",\"primaryLabelValue\":\"Cogent Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ColdCypress\",\"primaryLabelValue\":\"ColdCypress\"}},{\"attributeHeader\":{\"labelValue\":\"Colo4Dallas\",\"primaryLabelValue\":\"Colo4Dallas\"}},{\"attributeHeader\":{\"labelValue\":\"Color-Ad\",\"primaryLabelValue\":\"Color-Ad\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Comm3\",\"primaryLabelValue\":\"Comm3\"}},{\"attributeHeader\":{\"labelValue\":\"Comp Consults\",\"primaryLabelValue\":\"Comp Consults\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Healthcare Communications\",\"primaryLabelValue\":\"Compass Healthcare Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Compendium\",\"primaryLabelValue\":\"Compendium\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Payroll Processing\",\"primaryLabelValue\":\"Complete Payroll Processing\"}},{\"attributeHeader\":{\"labelValue\":\"CompNation\",\"primaryLabelValue\":\"CompNation\"}},{\"attributeHeader\":{\"labelValue\":\"Compusoft Integrated Solutions\",\"primaryLabelValue\":\"Compusoft Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Solutions and Software International\",\"primaryLabelValue\":\"Computer Solutions and Software International\"}},{\"attributeHeader\":{\"labelValue\":\"Computerized Facility Integration\",\"primaryLabelValue\":\"Computerized Facility Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Concentric Healthcare Solutions\",\"primaryLabelValue\":\"Concentric Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Professional Services\",\"primaryLabelValue\":\"Concord Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Cable Solutions\",\"primaryLabelValue\":\"Consolidated Cable Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Consultedge\",\"primaryLabelValue\":\"Consultedge\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Sales Solutions\",\"primaryLabelValue\":\"Consumer Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contemporary Staffing Solutions\",\"primaryLabelValue\":\"Contemporary Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Data Services\",\"primaryLabelValue\":\"Convention Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Models & Talent\",\"primaryLabelValue\":\"Convention Models & Talent\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Cooley Godward Kronish\",\"primaryLabelValue\":\"Cooley Godward Kronish\"}},{\"attributeHeader\":{\"labelValue\":\"Corbin\",\"primaryLabelValue\":\"Corbin\"}},{\"attributeHeader\":{\"labelValue\":\"CoreMedical Group\",\"primaryLabelValue\":\"CoreMedical Group\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Allocation Services\",\"primaryLabelValue\":\"Corporate Allocation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Safe Specialists\",\"primaryLabelValue\":\"Corporate Safe Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Technologies\",\"primaryLabelValue\":\"Corporate Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate United\",\"primaryLabelValue\":\"Corporate United\"}},{\"attributeHeader\":{\"labelValue\":\"Cotter Consulting\",\"primaryLabelValue\":\"Cotter Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cottonwood Financial\",\"primaryLabelValue\":\"Cottonwood Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CRAssociates\",\"primaryLabelValue\":\"CRAssociates\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Lodging Solutions\",\"primaryLabelValue\":\"Creative Lodging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Presentations\",\"primaryLabelValue\":\"Creative Presentations\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Tent International\",\"primaryLabelValue\":\"Creative Tent International\"}},{\"attributeHeader\":{\"labelValue\":\"Crescent City Packaging\",\"primaryLabelValue\":\"Crescent City Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis\",\"primaryLabelValue\":\"Crowe Paradis\"}},{\"attributeHeader\":{\"labelValue\":\"Crowell & Moring\",\"primaryLabelValue\":\"Crowell & Moring\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Finishing Systems\",\"primaryLabelValue\":\"Crystal Finishing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\",\"primaryLabelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Effective Solutions\",\"primaryLabelValue\":\"Customer Effective Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cutter & Company\",\"primaryLabelValue\":\"Cutter & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cvision Technologies\",\"primaryLabelValue\":\"Cvision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CyDex Pharmaceuticals\",\"primaryLabelValue\":\"CyDex Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Cyquent\",\"primaryLabelValue\":\"Cyquent\"}},{\"attributeHeader\":{\"labelValue\":\"D&K Engineering\",\"primaryLabelValue\":\"D&K Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Dagher Engineering\",\"primaryLabelValue\":\"Dagher Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Data Center Resources\",\"primaryLabelValue\":\"Data Center Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Data Processing Services\",\"primaryLabelValue\":\"Data Processing Services\"}},{\"attributeHeader\":{\"labelValue\":\"DataCert\",\"primaryLabelValue\":\"DataCert\"}},{\"attributeHeader\":{\"labelValue\":\"DataDirect Networks\",\"primaryLabelValue\":\"DataDirect Networks\"}},{\"attributeHeader\":{\"labelValue\":\"DataMart Direct\",\"primaryLabelValue\":\"DataMart Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datotel\",\"primaryLabelValue\":\"Datotel\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Wright Tremaine\",\"primaryLabelValue\":\"Davis Wright Tremaine\"}},{\"attributeHeader\":{\"labelValue\":\"Dawson Logistics\",\"primaryLabelValue\":\"Dawson Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Daymark Solutions\",\"primaryLabelValue\":\"Daymark Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dayspring Restoration\",\"primaryLabelValue\":\"Dayspring Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Evans & Associates\",\"primaryLabelValue\":\"Dean Evans & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dean's Professional Service\",\"primaryLabelValue\":\"Dean's Professional Service\"}},{\"attributeHeader\":{\"labelValue\":\"deciBel Research\",\"primaryLabelValue\":\"deciBel Research\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Resources, Inc.\",\"primaryLabelValue\":\"Decision Resources, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Technologies\",\"primaryLabelValue\":\"Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Defran Systems\",\"primaryLabelValue\":\"Defran Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Del Sol\",\"primaryLabelValue\":\"Del Sol\"}},{\"attributeHeader\":{\"labelValue\":\"Delta T Equipment\",\"primaryLabelValue\":\"Delta T Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Dexclusive.com\",\"primaryLabelValue\":\"Dexclusive.com\"}},{\"attributeHeader\":{\"labelValue\":\"DGE\",\"primaryLabelValue\":\"DGE\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Pharmacy Services\",\"primaryLabelValue\":\"Diamond Pharmacy Services\"}},{\"attributeHeader\":{\"labelValue\":\"DiaTri\",\"primaryLabelValue\":\"DiaTri\"}},{\"attributeHeader\":{\"labelValue\":\"DICE\",\"primaryLabelValue\":\"DICE\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Prospectors\",\"primaryLabelValue\":\"Digital Prospectors\"}},{\"attributeHeader\":{\"labelValue\":\"Digitek Computer Products\",\"primaryLabelValue\":\"Digitek Computer Products\"}},{\"attributeHeader\":{\"labelValue\":\"Dinsmore & Shohl\",\"primaryLabelValue\":\"Dinsmore & Shohl\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomaframe.com\",\"primaryLabelValue\":\"Diplomaframe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Dimensions\",\"primaryLabelValue\":\"Direct Dimensions\"}},{\"attributeHeader\":{\"labelValue\":\"directFX Solutions\",\"primaryLabelValue\":\"directFX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Ramps.com\",\"primaryLabelValue\":\"Discount Ramps.com\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Lynx\",\"primaryLabelValue\":\"Diverse Lynx\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Marketing Group\",\"primaryLabelValue\":\"Diversified Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"DKI Services\",\"primaryLabelValue\":\"DKI Services\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DLT Solutions\",\"primaryLabelValue\":\"DLT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DMG Federal\",\"primaryLabelValue\":\"DMG Federal\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Document Solutions\",\"primaryLabelValue\":\"Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Doherty Enterprises\",\"primaryLabelValue\":\"Doherty Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Dougherty & Associates\",\"primaryLabelValue\":\"Dougherty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DRE\",\"primaryLabelValue\":\"DRE\"}},{\"attributeHeader\":{\"labelValue\":\"Drinker Biddle & Reath\",\"primaryLabelValue\":\"Drinker Biddle & Reath\"}},{\"attributeHeader\":{\"labelValue\":\"DSCI\",\"primaryLabelValue\":\"DSCI\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Dutch Valley Auto Works\",\"primaryLabelValue\":\"Dutch Valley Auto Works\"}},{\"attributeHeader\":{\"labelValue\":\"DyKnow\",\"primaryLabelValue\":\"DyKnow\"}},{\"attributeHeader\":{\"labelValue\":\"DynaFire\",\"primaryLabelValue\":\"DynaFire\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Language Center\",\"primaryLabelValue\":\"Dynamic Language Center\"}},{\"attributeHeader\":{\"labelValue\":\"DynaVox\",\"primaryLabelValue\":\"DynaVox\"}},{\"attributeHeader\":{\"labelValue\":\"E & B Natural Resources Management\",\"primaryLabelValue\":\"E & B Natural Resources Management\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Eagan Insurance Agency\",\"primaryLabelValue\":\"Eagan Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Armored Services\",\"primaryLabelValue\":\"Eastern Armored Services\"}},{\"attributeHeader\":{\"labelValue\":\"Easy-Turf\",\"primaryLabelValue\":\"Easy-Turf\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eckenhoff Saunders Architects\",\"primaryLabelValue\":\"Eckenhoff Saunders Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Chic Consignments\",\"primaryLabelValue\":\"Eco-Chic Consignments\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Edifecs\",\"primaryLabelValue\":\"Edifecs\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Data Systems\",\"primaryLabelValue\":\"Educational Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Efficient Lighting\",\"primaryLabelValue\":\"Efficient Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"eFulfillment Service\",\"primaryLabelValue\":\"eFulfillment Service\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobalTech\",\"primaryLabelValue\":\"eGlobalTech\"}},{\"attributeHeader\":{\"labelValue\":\"El Clasificado\",\"primaryLabelValue\":\"El Clasificado\"}},{\"attributeHeader\":{\"labelValue\":\"El Paseo Limousine\",\"primaryLabelValue\":\"El Paseo Limousine\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Data Payment Systems\",\"primaryLabelValue\":\"Electronic Data Payment Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Elite SEM\",\"primaryLabelValue\":\"Elite SEM\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Storage Solutions\",\"primaryLabelValue\":\"Elite Storage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Management\",\"primaryLabelValue\":\"e-Management\"}},{\"attributeHeader\":{\"labelValue\":\"eMazzanti Technologies\",\"primaryLabelValue\":\"eMazzanti Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"EMC Advertising\",\"primaryLabelValue\":\"EMC Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Emergtech Business Solutions\",\"primaryLabelValue\":\"Emergtech Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emkat\",\"primaryLabelValue\":\"Emkat\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eMortgage Logic\",\"primaryLabelValue\":\"eMortgage Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Emplicity\",\"primaryLabelValue\":\"Emplicity\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Plus\",\"primaryLabelValue\":\"Employment Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Screening Services\",\"primaryLabelValue\":\"Employment Screening Services\"}},{\"attributeHeader\":{\"labelValue\":\"EMS\",\"primaryLabelValue\":\"EMS\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Endsight\",\"primaryLabelValue\":\"Endsight\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Kitchen\",\"primaryLabelValue\":\"Energy Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyFirst\",\"primaryLabelValue\":\"EnergyFirst\"}},{\"attributeHeader\":{\"labelValue\":\"EnerNex\",\"primaryLabelValue\":\"EnerNex\"}},{\"attributeHeader\":{\"labelValue\":\"Enmon Enterprises\",\"primaryLabelValue\":\"Enmon Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Enovate\",\"primaryLabelValue\":\"Enovate\"}},{\"attributeHeader\":{\"labelValue\":\"Entrance Software\",\"primaryLabelValue\":\"Entrance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Envestnet\",\"primaryLabelValue\":\"Envestnet\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro Clean Services\",\"primaryLabelValue\":\"Enviro Clean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro-Safe Consulting\",\"primaryLabelValue\":\"Enviro-Safe Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Equus Software\",\"primaryLabelValue\":\"Equus Software\"}},{\"attributeHeader\":{\"labelValue\":\"eROI\",\"primaryLabelValue\":\"eROI\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"eScreen\",\"primaryLabelValue\":\"eScreen\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSilo\",\"primaryLabelValue\":\"eSilo\"}},{\"attributeHeader\":{\"labelValue\":\"ESP Technologies\",\"primaryLabelValue\":\"ESP Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"E-Technologies Group\",\"primaryLabelValue\":\"E-Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Eureka Holdings\",\"primaryLabelValue\":\"Eureka Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Euro-Pro\",\"primaryLabelValue\":\"Euro-Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Evergreen Lumber & Truss\",\"primaryLabelValue\":\"Evergreen Lumber & Truss\"}},{\"attributeHeader\":{\"labelValue\":\"Everon Technology Services\",\"primaryLabelValue\":\"Everon Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"EverySport.net\",\"primaryLabelValue\":\"EverySport.net\"}},{\"attributeHeader\":{\"labelValue\":\"eVestment Alliance\",\"primaryLabelValue\":\"eVestment Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Evolv Solutions\",\"primaryLabelValue\":\"Evolv Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"eWinWin\",\"primaryLabelValue\":\"eWinWin\"}},{\"attributeHeader\":{\"labelValue\":\"Exclusive Concepts\",\"primaryLabelValue\":\"Exclusive Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"ExecuTeam Staffing\",\"primaryLabelValue\":\"ExecuTeam Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Executive Clothiers\",\"primaryLabelValue\":\"Executive Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"Exploring.com\",\"primaryLabelValue\":\"Exploring.com\"}},{\"attributeHeader\":{\"labelValue\":\"Express Air Freight Unlimited\",\"primaryLabelValue\":\"Express Air Freight Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Extrakare\",\"primaryLabelValue\":\"Extrakare\"}},{\"attributeHeader\":{\"labelValue\":\"Exxel Outdoors\",\"primaryLabelValue\":\"Exxel Outdoors\"}},{\"attributeHeader\":{\"labelValue\":\"Fabrique\",\"primaryLabelValue\":\"Fabrique\"}},{\"attributeHeader\":{\"labelValue\":\"FairCode Associates\",\"primaryLabelValue\":\"FairCode Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Containers\",\"primaryLabelValue\":\"Falcon Containers\"}},{\"attributeHeader\":{\"labelValue\":\"Family Heritage Life Insurance Company of America\",\"primaryLabelValue\":\"Family Heritage Life Insurance Company of America\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fantastic Sams Hair Salons\",\"primaryLabelValue\":\"Fantastic Sams Hair Salons\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Trac Transportation\",\"primaryLabelValue\":\"Fast Trac Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"FastMac\",\"primaryLabelValue\":\"FastMac\"}},{\"attributeHeader\":{\"labelValue\":\"Fathom SEO\",\"primaryLabelValue\":\"Fathom SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Wholesale\",\"primaryLabelValue\":\"Federated Wholesale\"}},{\"attributeHeader\":{\"labelValue\":\"Fellowship Technologies\",\"primaryLabelValue\":\"Fellowship Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"FGM Architects\",\"primaryLabelValue\":\"FGM Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Designs\",\"primaryLabelValue\":\"Fine Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Promotions\",\"primaryLabelValue\":\"Fine Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\",\"primaryLabelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\"}},{\"attributeHeader\":{\"labelValue\":\"Fire & Flavor\",\"primaryLabelValue\":\"Fire & Flavor\"}},{\"attributeHeader\":{\"labelValue\":\"FireStream WorldWide\",\"primaryLabelValue\":\"FireStream WorldWide\"}},{\"attributeHeader\":{\"labelValue\":\"First Dental Health\",\"primaryLabelValue\":\"First Dental Health\"}},{\"attributeHeader\":{\"labelValue\":\"First Hospitality Group\",\"primaryLabelValue\":\"First Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fish & Richardson\",\"primaryLabelValue\":\"Fish & Richardson\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Five Star Restoration & Construction\",\"primaryLabelValue\":\"Five Star Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Management Solutions\",\"primaryLabelValue\":\"Fleet Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FleetCor Technologies\",\"primaryLabelValue\":\"FleetCor Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fluent Language Solutions\",\"primaryLabelValue\":\"Fluent Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Forensics Consulting Solutions\",\"primaryLabelValue\":\"Forensics Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Riders\",\"primaryLabelValue\":\"Fortis Riders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Title\",\"primaryLabelValue\":\"Foundation Title\"}},{\"attributeHeader\":{\"labelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\",\"primaryLabelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\"}},{\"attributeHeader\":{\"labelValue\":\"Fraser Communications\",\"primaryLabelValue\":\"Fraser Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Fredon\",\"primaryLabelValue\":\"Fredon\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Consulting Group\",\"primaryLabelValue\":\"Freedom Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Healthcare Staffing\",\"primaryLabelValue\":\"Freedom Healthcare Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Metals\",\"primaryLabelValue\":\"Freedom Metals\"}},{\"attributeHeader\":{\"labelValue\":\"FreightCenter\",\"primaryLabelValue\":\"FreightCenter\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"Front Gate Tickets\",\"primaryLabelValue\":\"Front Gate Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Fuellgraf Electric\",\"primaryLabelValue\":\"Fuellgraf Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum IT Services\",\"primaryLabelValue\":\"Fulcrum IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"Fulfillment Strategies International\",\"primaryLabelValue\":\"Fulfillment Strategies International\"}},{\"attributeHeader\":{\"labelValue\":\"Full Circle Wireless\",\"primaryLabelValue\":\"Full Circle Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Fullhouse\",\"primaryLabelValue\":\"Fullhouse\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"Future Media Concepts\",\"primaryLabelValue\":\"Future Media Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"G&A Partners\",\"primaryLabelValue\":\"G&A Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Gafcon\",\"primaryLabelValue\":\"Gafcon\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Galaxy Desserts\",\"primaryLabelValue\":\"Galaxy Desserts\"}},{\"attributeHeader\":{\"labelValue\":\"Gallaher & Associates\",\"primaryLabelValue\":\"Gallaher & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"GAME - Great American Merchandise & Events\",\"primaryLabelValue\":\"GAME - Great American Merchandise & Events\"}},{\"attributeHeader\":{\"labelValue\":\"Game Quest & Game Quest International\",\"primaryLabelValue\":\"Game Quest & Game Quest International\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Garcia Research\",\"primaryLabelValue\":\"Garcia Research\"}},{\"attributeHeader\":{\"labelValue\":\"Gardere Wynne Sewell\",\"primaryLabelValue\":\"Gardere Wynne Sewell\"}},{\"attributeHeader\":{\"labelValue\":\"Garland Industries\",\"primaryLabelValue\":\"Garland Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Garvey's Office Products\",\"primaryLabelValue\":\"Garvey's Office Products\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GBCblue\",\"primaryLabelValue\":\"GBCblue\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genica\",\"primaryLabelValue\":\"Genica\"}},{\"attributeHeader\":{\"labelValue\":\"GEO Consultants\",\"primaryLabelValue\":\"GEO Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Gerimedix\",\"primaryLabelValue\":\"Gerimedix\"}},{\"attributeHeader\":{\"labelValue\":\"Gersh Academy\",\"primaryLabelValue\":\"Gersh Academy\"}},{\"attributeHeader\":{\"labelValue\":\"GetWellNetwork\",\"primaryLabelValue\":\"GetWellNetwork\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Gibraltar Construction\",\"primaryLabelValue\":\"Gibraltar Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Gilero\",\"primaryLabelValue\":\"Gilero\"}},{\"attributeHeader\":{\"labelValue\":\"GlassHouse Technologies\",\"primaryLabelValue\":\"GlassHouse Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Aviation Holdings\",\"primaryLabelValue\":\"Global Aviation Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Global Futures & Forex\",\"primaryLabelValue\":\"Global Futures & Forex\"}},{\"attributeHeader\":{\"labelValue\":\"Global Medical Imaging\",\"primaryLabelValue\":\"Global Medical Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Globoforce\",\"primaryLabelValue\":\"Globoforce\"}},{\"attributeHeader\":{\"labelValue\":\"Glory Days Grill\",\"primaryLabelValue\":\"Glory Days Grill\"}},{\"attributeHeader\":{\"labelValue\":\"Glow Networks\",\"primaryLabelValue\":\"Glow Networks\"}},{\"attributeHeader\":{\"labelValue\":\"GMI\",\"primaryLabelValue\":\"GMI\"}},{\"attributeHeader\":{\"labelValue\":\"GNet Group\",\"primaryLabelValue\":\"GNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goddard Systems\",\"primaryLabelValue\":\"Goddard Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gongos Research\",\"primaryLabelValue\":\"Gongos Research\"}},{\"attributeHeader\":{\"labelValue\":\"goodmortgage.com\",\"primaryLabelValue\":\"goodmortgage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Gotham Technology Group\",\"primaryLabelValue\":\"Gotham Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goulston & Storrs\",\"primaryLabelValue\":\"Goulston & Storrs\"}},{\"attributeHeader\":{\"labelValue\":\"Gramercy Insurance\",\"primaryLabelValue\":\"Gramercy Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Greenleaf Environmental Group\",\"primaryLabelValue\":\"Greenleaf Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Greenwood Industries\",\"primaryLabelValue\":\"Greenwood Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Group Insurance Solutions\",\"primaryLabelValue\":\"Group Insurance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Gruskin Group\",\"primaryLabelValue\":\"Gruskin Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gryphon Technologies\",\"primaryLabelValue\":\"Gryphon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Guzov Ofsink\",\"primaryLabelValue\":\"Guzov Ofsink\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Gun Range Shooting Sports Outlet\",\"primaryLabelValue\":\"H&H Gun Range Shooting Sports Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Halperns' Purveyors of Steak & Seafood\",\"primaryLabelValue\":\"Halperns' Purveyors of Steak & Seafood\"}},{\"attributeHeader\":{\"labelValue\":\"Handi-Ramp\",\"primaryLabelValue\":\"Handi-Ramp\"}},{\"attributeHeader\":{\"labelValue\":\"Hanover Fire & Casualty Insurance\",\"primaryLabelValue\":\"Hanover Fire & Casualty Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Hargrove Engineers + Constructors\",\"primaryLabelValue\":\"Hargrove Engineers + Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Hawk Consultants\",\"primaryLabelValue\":\"Hawk Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Hayes Management Consulting\",\"primaryLabelValue\":\"Hayes Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"Health Integrated\",\"primaryLabelValue\":\"Health Integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Health Market Science\",\"primaryLabelValue\":\"Health Market Science\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Strategy Group\",\"primaryLabelValue\":\"Healthcare Strategy Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCareSeeker.com\",\"primaryLabelValue\":\"HealthCareSeeker.com\"}},{\"attributeHeader\":{\"labelValue\":\"Healthwise\",\"primaryLabelValue\":\"Healthwise\"}},{\"attributeHeader\":{\"labelValue\":\"Heartland Business Systems\",\"primaryLabelValue\":\"Heartland Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heartline Fitness Systems\",\"primaryLabelValue\":\"Heartline Fitness Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heath Ceramics\",\"primaryLabelValue\":\"Heath Ceramics\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hendrick Construction\",\"primaryLabelValue\":\"Hendrick Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Herbspro.com\",\"primaryLabelValue\":\"Herbspro.com\"}},{\"attributeHeader\":{\"labelValue\":\"Heschong Mahone Group\",\"primaryLabelValue\":\"Heschong Mahone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hewett-Kier Construction\",\"primaryLabelValue\":\"Hewett-Kier Construction\"}},{\"attributeHeader\":{\"labelValue\":\"HGA Architects and Engineers\",\"primaryLabelValue\":\"HGA Architects and Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Highland Products Group\",\"primaryLabelValue\":\"Highland Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hiller Plumbing, Heating & Cooling\",\"primaryLabelValue\":\"Hiller Plumbing, Heating & Cooling\"}},{\"attributeHeader\":{\"labelValue\":\"Hinda\",\"primaryLabelValue\":\"Hinda\"}},{\"attributeHeader\":{\"labelValue\":\"Hire Methods\",\"primaryLabelValue\":\"Hire Methods\"}},{\"attributeHeader\":{\"labelValue\":\"Hirease\",\"primaryLabelValue\":\"Hirease\"}},{\"attributeHeader\":{\"labelValue\":\"Hi-Speed\",\"primaryLabelValue\":\"Hi-Speed\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Hoffman Media\",\"primaryLabelValue\":\"Hoffman Media\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"Holland & Hart\",\"primaryLabelValue\":\"Holland & Hart\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (AL)\",\"primaryLabelValue\":\"Home Instead Senior Care (AL)\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Technology\",\"primaryLabelValue\":\"Horizon Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Horsemen Investigations\",\"primaryLabelValue\":\"Horsemen Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"Hosted Solutions Acquisitions\",\"primaryLabelValue\":\"Hosted Solutions Acquisitions\"}},{\"attributeHeader\":{\"labelValue\":\"House of Antique Hardware\",\"primaryLabelValue\":\"House of Antique Hardware\"}},{\"attributeHeader\":{\"labelValue\":\"HSP Direct\",\"primaryLabelValue\":\"HSP Direct\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Hudson Baylor\",\"primaryLabelValue\":\"Hudson Baylor\"}},{\"attributeHeader\":{\"labelValue\":\"Human Technologies\",\"primaryLabelValue\":\"Human Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Humble Abode\",\"primaryLabelValue\":\"Humble Abode\"}},{\"attributeHeader\":{\"labelValue\":\"Hunt & Sons\",\"primaryLabelValue\":\"Hunt & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Hunton & Williams\",\"primaryLabelValue\":\"Hunton & Williams\"}},{\"attributeHeader\":{\"labelValue\":\"HVR Advanced Power Components\",\"primaryLabelValue\":\"HVR Advanced Power Components\"}},{\"attributeHeader\":{\"labelValue\":\"I&I Software\",\"primaryLabelValue\":\"I&I Software\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"Iatric Systems\",\"primaryLabelValue\":\"Iatric Systems\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Holdings\",\"primaryLabelValue\":\"IBT Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"ICE Technologies\",\"primaryLabelValue\":\"ICE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Information Consultants\",\"primaryLabelValue\":\"ICON Information Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"iCore Networks\",\"primaryLabelValue\":\"iCore Networks\"}},{\"attributeHeader\":{\"labelValue\":\"iCruise.com\",\"primaryLabelValue\":\"iCruise.com\"}},{\"attributeHeader\":{\"labelValue\":\"ICS Marketing Support Services\",\"primaryLabelValue\":\"ICS Marketing Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"IDC Technologies\",\"primaryLabelValue\":\"IDC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Innovations\",\"primaryLabelValue\":\"Ideal Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"iFreedom Direct\",\"primaryLabelValue\":\"iFreedom Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ikaria\",\"primaryLabelValue\":\"Ikaria\"}},{\"attributeHeader\":{\"labelValue\":\"iLink Systems\",\"primaryLabelValue\":\"iLink Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Image One\",\"primaryLabelValue\":\"Image One\"}},{\"attributeHeader\":{\"labelValue\":\"ImageFIRST Healthcare Laundry Specialists\",\"primaryLabelValue\":\"ImageFIRST Healthcare Laundry Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"ImageSoft\",\"primaryLabelValue\":\"ImageSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging On Call\",\"primaryLabelValue\":\"Imaging On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Networking\",\"primaryLabelValue\":\"Impact Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Technologies\",\"primaryLabelValue\":\"Impact Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Impressions In Print\",\"primaryLabelValue\":\"Impressions In Print\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"InCircuit Development\",\"primaryLabelValue\":\"InCircuit Development\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"InfiniEdge Software\",\"primaryLabelValue\":\"InfiniEdge Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Network Solutions\",\"primaryLabelValue\":\"Infinity Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Info Directions\",\"primaryLabelValue\":\"Info Directions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Access Systems\",\"primaryLabelValue\":\"Information Access Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Inno Pak\",\"primaryLabelValue\":\"Inno Pak\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Analytics\",\"primaryLabelValue\":\"Innovative Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Integration\",\"primaryLabelValue\":\"Innovative Integration\"}},{\"attributeHeader\":{\"labelValue\":\"InsightsNow\",\"primaryLabelValue\":\"InsightsNow\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Office of America\",\"primaryLabelValue\":\"Insurance Office of America\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Revolution\",\"primaryLabelValue\":\"Insurance Revolution\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Enclosures\",\"primaryLabelValue\":\"Integra Enclosures\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Technologies\",\"primaryLabelValue\":\"Integration Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligrated\",\"primaryLabelValue\":\"Intelligrated\"}},{\"attributeHeader\":{\"labelValue\":\"IntePros Federal\",\"primaryLabelValue\":\"IntePros Federal\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterMed Biomedical Services\",\"primaryLabelValue\":\"InterMed Biomedical Services\"}},{\"attributeHeader\":{\"labelValue\":\"International Medical Resources\",\"primaryLabelValue\":\"International Medical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"International Sourcing\",\"primaryLabelValue\":\"International Sourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"IntraLinks Holdings\",\"primaryLabelValue\":\"IntraLinks Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InVue Security Products\",\"primaryLabelValue\":\"InVue Security Products\"}},{\"attributeHeader\":{\"labelValue\":\"iPay Technologies\",\"primaryLabelValue\":\"iPay Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IPiphany\",\"primaryLabelValue\":\"IPiphany\"}},{\"attributeHeader\":{\"labelValue\":\"IPLogic\",\"primaryLabelValue\":\"IPLogic\"}},{\"attributeHeader\":{\"labelValue\":\"iQor\",\"primaryLabelValue\":\"iQor\"}},{\"attributeHeader\":{\"labelValue\":\"IronTraffic\",\"primaryLabelValue\":\"IronTraffic\"}},{\"attributeHeader\":{\"labelValue\":\"Isagenix International\",\"primaryLabelValue\":\"Isagenix International\"}},{\"attributeHeader\":{\"labelValue\":\"iSi Environmental Services\",\"primaryLabelValue\":\"iSi Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"ISITE Design\",\"primaryLabelValue\":\"ISITE Design\"}},{\"attributeHeader\":{\"labelValue\":\"Isokinetics\",\"primaryLabelValue\":\"Isokinetics\"}},{\"attributeHeader\":{\"labelValue\":\"iSpace\",\"primaryLabelValue\":\"iSpace\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"IT Partners\",\"primaryLabelValue\":\"IT Partners\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"ITS\",\"primaryLabelValue\":\"ITS\"}},{\"attributeHeader\":{\"labelValue\":\"IVCi\",\"primaryLabelValue\":\"IVCi\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"ivgStores\",\"primaryLabelValue\":\"ivgStores\"}},{\"attributeHeader\":{\"labelValue\":\"Jack and Adam's Bicycles\",\"primaryLabelValue\":\"Jack and Adam's Bicycles\"}},{\"attributeHeader\":{\"labelValue\":\"Jack's Small Engine & Generator Service\",\"primaryLabelValue\":\"Jack's Small Engine & Generator Service\"}},{\"attributeHeader\":{\"labelValue\":\"Jacksonville Beach Pediatric Care Center\",\"primaryLabelValue\":\"Jacksonville Beach Pediatric Care Center\"}},{\"attributeHeader\":{\"labelValue\":\"Jacobs Agency\",\"primaryLabelValue\":\"Jacobs Agency\"}},{\"attributeHeader\":{\"labelValue\":\"James Engle Custom Homes\",\"primaryLabelValue\":\"James Engle Custom Homes\"}},{\"attributeHeader\":{\"labelValue\":\"JAT Software\",\"primaryLabelValue\":\"JAT Software\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Jazzercise\",\"primaryLabelValue\":\"Jazzercise\"}},{\"attributeHeader\":{\"labelValue\":\"JB Management\",\"primaryLabelValue\":\"JB Management\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"Jeffer, Mangels, Butler & Marmaro\",\"primaryLabelValue\":\"Jeffer, Mangels, Butler & Marmaro\"}},{\"attributeHeader\":{\"labelValue\":\"Jelec USA\",\"primaryLabelValue\":\"Jelec USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jenkins Security Consultants\",\"primaryLabelValue\":\"Jenkins Security Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Jimmy Beans Wool\",\"primaryLabelValue\":\"Jimmy Beans Wool\"}},{\"attributeHeader\":{\"labelValue\":\"Jordan Health Services\",\"primaryLabelValue\":\"Jordan Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"JPL\",\"primaryLabelValue\":\"JPL\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"KaMedData\",\"primaryLabelValue\":\"KaMedData\"}},{\"attributeHeader\":{\"labelValue\":\"Kasowitz, Benson, Torres & Friedman\",\"primaryLabelValue\":\"Kasowitz, Benson, Torres & Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"KaTom Restaurant Supply\",\"primaryLabelValue\":\"KaTom Restaurant Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Kazoo & Company Toys\",\"primaryLabelValue\":\"Kazoo & Company Toys\"}},{\"attributeHeader\":{\"labelValue\":\"KBW Financial Staffing & Recruiting\",\"primaryLabelValue\":\"KBW Financial Staffing & Recruiting\"}},{\"attributeHeader\":{\"labelValue\":\"Kee Safety\",\"primaryLabelValue\":\"Kee Safety\"}},{\"attributeHeader\":{\"labelValue\":\"Keeprs\",\"primaryLabelValue\":\"Keeprs\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Advantage\",\"primaryLabelValue\":\"Keller Williams Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"KeySource Medical\",\"primaryLabelValue\":\"KeySource Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Kimpton Hotels and Restaurants\",\"primaryLabelValue\":\"Kimpton Hotels and Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Knobbe, Martens, Olson & Bear\",\"primaryLabelValue\":\"Knobbe, Martens, Olson & Bear\"}},{\"attributeHeader\":{\"labelValue\":\"Kramer Levin Naftalis & Frankel\",\"primaryLabelValue\":\"Kramer Levin Naftalis & Frankel\"}},{\"attributeHeader\":{\"labelValue\":\"Kutak Rock\",\"primaryLabelValue\":\"Kutak Rock\"}},{\"attributeHeader\":{\"labelValue\":\"Kutir\",\"primaryLabelValue\":\"Kutir\"}},{\"attributeHeader\":{\"labelValue\":\"L & S Retail Ventures\",\"primaryLabelValue\":\"L & S Retail Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"L.A. Burdick Chocolate\",\"primaryLabelValue\":\"L.A. Burdick Chocolate\"}},{\"attributeHeader\":{\"labelValue\":\"LAgraphico\",\"primaryLabelValue\":\"LAgraphico\"}},{\"attributeHeader\":{\"labelValue\":\"LAI International\",\"primaryLabelValue\":\"LAI International\"}},{\"attributeHeader\":{\"labelValue\":\"Lakeshore Engineering Services\",\"primaryLabelValue\":\"Lakeshore Engineering Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lapre Scali & Company Insurance Services\",\"primaryLabelValue\":\"Lapre Scali & Company Insurance Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laptec\",\"primaryLabelValue\":\"Laptec\"}},{\"attributeHeader\":{\"labelValue\":\"Lasertec\",\"primaryLabelValue\":\"Lasertec\"}},{\"attributeHeader\":{\"labelValue\":\"Late July Organic Snacks\",\"primaryLabelValue\":\"Late July Organic Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"Latham & Watkins\",\"primaryLabelValue\":\"Latham & Watkins\"}},{\"attributeHeader\":{\"labelValue\":\"Latitude Software\",\"primaryLabelValue\":\"Latitude Software\"}},{\"attributeHeader\":{\"labelValue\":\"LawLogix Group\",\"primaryLabelValue\":\"LawLogix Group\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Le Chaperone Rouge Schools\",\"primaryLabelValue\":\"Le Chaperone Rouge Schools\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Solutions\",\"primaryLabelValue\":\"LeapFrog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lebakkens of Wisconsin\",\"primaryLabelValue\":\"Lebakkens of Wisconsin\"}},{\"attributeHeader\":{\"labelValue\":\"Lectrus\",\"primaryLabelValue\":\"Lectrus\"}},{\"attributeHeader\":{\"labelValue\":\"Lee Mathews Equipment\",\"primaryLabelValue\":\"Lee Mathews Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"LeGacy Resource\",\"primaryLabelValue\":\"LeGacy Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Lewellyn Technology\",\"primaryLabelValue\":\"Lewellyn Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Pumps\",\"primaryLabelValue\":\"Liberty Pumps\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tax Service\",\"primaryLabelValue\":\"Liberty Tax Service\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeCare Medical Services\",\"primaryLabelValue\":\"LifeCare Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"LimoRes.net\",\"primaryLabelValue\":\"LimoRes.net\"}},{\"attributeHeader\":{\"labelValue\":\"Link Construction Group\",\"primaryLabelValue\":\"Link Construction Group\"}},{\"attributeHeader\":{\"labelValue\":\"Linx\",\"primaryLabelValue\":\"Linx\"}},{\"attributeHeader\":{\"labelValue\":\"Lionfish Creative\",\"primaryLabelValue\":\"Lionfish Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"List Innovative Solutions\",\"primaryLabelValue\":\"List Innovative Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Litigation Services\",\"primaryLabelValue\":\"Litigation Services\"}},{\"attributeHeader\":{\"labelValue\":\"liveBooks\",\"primaryLabelValue\":\"liveBooks\"}},{\"attributeHeader\":{\"labelValue\":\"LiveOffice\",\"primaryLabelValue\":\"LiveOffice\"}},{\"attributeHeader\":{\"labelValue\":\"LivHOME\",\"primaryLabelValue\":\"LivHOME\"}},{\"attributeHeader\":{\"labelValue\":\"LoadSpring Solutions\",\"primaryLabelValue\":\"LoadSpring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Loeb & Loeb\",\"primaryLabelValue\":\"Loeb & Loeb\"}},{\"attributeHeader\":{\"labelValue\":\"Loeffler Randall\",\"primaryLabelValue\":\"Loeffler Randall\"}},{\"attributeHeader\":{\"labelValue\":\"Logan's Roadhouse\",\"primaryLabelValue\":\"Logan's Roadhouse\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"Look's Gourmet Food\",\"primaryLabelValue\":\"Look's Gourmet Food\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lowe Engineers\",\"primaryLabelValue\":\"Lowe Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"LPL Investment Holdings\",\"primaryLabelValue\":\"LPL Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"LTC Financial Partners\",\"primaryLabelValue\":\"LTC Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Lumenate\",\"primaryLabelValue\":\"Lumenate\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Luminit\",\"primaryLabelValue\":\"Luminit\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lyon Roofing\",\"primaryLabelValue\":\"Lyon Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"M S International\",\"primaryLabelValue\":\"M S International\"}},{\"attributeHeader\":{\"labelValue\":\"M Space Holdings\",\"primaryLabelValue\":\"M Space Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"M2M Communications\",\"primaryLabelValue\":\"M2M Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mailings Unlimited\",\"primaryLabelValue\":\"Mailings Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Makovsky + Company\",\"primaryLabelValue\":\"Makovsky + Company\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Management Services Northwest\",\"primaryLabelValue\":\"Management Services Northwest\"}},{\"attributeHeader\":{\"labelValue\":\"Mankin Media Systems\",\"primaryLabelValue\":\"Mankin Media Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Maranda Enterprises\",\"primaryLabelValue\":\"Maranda Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Marco's Franchising\",\"primaryLabelValue\":\"Marco's Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"Market America\",\"primaryLabelValue\":\"Market America\"}},{\"attributeHeader\":{\"labelValue\":\"Market Street Solutions\",\"primaryLabelValue\":\"Market Street Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MarketCounsel\",\"primaryLabelValue\":\"MarketCounsel\"}},{\"attributeHeader\":{\"labelValue\":\"MarketSphere Consulting\",\"primaryLabelValue\":\"MarketSphere Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MarketWave\",\"primaryLabelValue\":\"MarketWave\"}},{\"attributeHeader\":{\"labelValue\":\"Marlin Network\",\"primaryLabelValue\":\"Marlin Network\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Massage Envy\",\"primaryLabelValue\":\"Massage Envy\"}},{\"attributeHeader\":{\"labelValue\":\"MasterGardening.com\",\"primaryLabelValue\":\"MasterGardening.com\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Communications\",\"primaryLabelValue\":\"Maverick Communications\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaximumASP\",\"primaryLabelValue\":\"MaximumASP\"}},{\"attributeHeader\":{\"labelValue\":\"maxIT Healthcare\",\"primaryLabelValue\":\"maxIT Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Mayday Industries\",\"primaryLabelValue\":\"Mayday Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Mayer Brown\",\"primaryLabelValue\":\"Mayer Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Mayorga Coffee\",\"primaryLabelValue\":\"Mayorga Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCFA\",\"primaryLabelValue\":\"MCFA\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Wentworth\",\"primaryLabelValue\":\"McGraw Wentworth\"}},{\"attributeHeader\":{\"labelValue\":\"McMahon Associates\",\"primaryLabelValue\":\"McMahon Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MedAllocators\",\"primaryLabelValue\":\"MedAllocators\"}},{\"attributeHeader\":{\"labelValue\":\"Media Brokers International\",\"primaryLabelValue\":\"Media Brokers International\"}},{\"attributeHeader\":{\"labelValue\":\"MediConnect Global\",\"primaryLabelValue\":\"MediConnect Global\"}},{\"attributeHeader\":{\"labelValue\":\"MediGain\",\"primaryLabelValue\":\"MediGain\"}},{\"attributeHeader\":{\"labelValue\":\"Medistar\",\"primaryLabelValue\":\"Medistar\"}},{\"attributeHeader\":{\"labelValue\":\"MedNet Solutions\",\"primaryLabelValue\":\"MedNet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MedRisk\",\"primaryLabelValue\":\"MedRisk\"}},{\"attributeHeader\":{\"labelValue\":\"MedSeek\",\"primaryLabelValue\":\"MedSeek\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"Medwing.com\",\"primaryLabelValue\":\"Medwing.com\"}},{\"attributeHeader\":{\"labelValue\":\"MegaPath\",\"primaryLabelValue\":\"MegaPath\"}},{\"attributeHeader\":{\"labelValue\":\"Meier Architecture - Engineering\",\"primaryLabelValue\":\"Meier Architecture - Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"MemoryTen\",\"primaryLabelValue\":\"MemoryTen\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Merz Apothecary\",\"primaryLabelValue\":\"Merz Apothecary\"}},{\"attributeHeader\":{\"labelValue\":\"Metal Resource Solutions\",\"primaryLabelValue\":\"Metal Resource Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Metrofuser\",\"primaryLabelValue\":\"Metrofuser\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Michigan Custom Machines\",\"primaryLabelValue\":\"Michigan Custom Machines\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microfluidic Systems\",\"primaryLabelValue\":\"Microfluidic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Micromedics\",\"primaryLabelValue\":\"Micromedics\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTrain Technologies\",\"primaryLabelValue\":\"MicroTrain Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Underground Technology\",\"primaryLabelValue\":\"Midwest Underground Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Systems\",\"primaryLabelValue\":\"Milestone Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Military Products Group\",\"primaryLabelValue\":\"Military Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"MilitaryByOwner Advertising\",\"primaryLabelValue\":\"MilitaryByOwner Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Milsoft Utility Solutions\",\"primaryLabelValue\":\"Milsoft Utility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MindLeaf Technologies\",\"primaryLabelValue\":\"MindLeaf Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner El Paso\",\"primaryLabelValue\":\"Miner El Paso\"}},{\"attributeHeader\":{\"labelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\",\"primaryLabelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\"}},{\"attributeHeader\":{\"labelValue\":\"MIPRO Consulting\",\"primaryLabelValue\":\"MIPRO Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MiresBall\",\"primaryLabelValue\":\"MiresBall\"}},{\"attributeHeader\":{\"labelValue\":\"Mirion Technologies\",\"primaryLabelValue\":\"Mirion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miro Consulting\",\"primaryLabelValue\":\"Miro Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MISource\",\"primaryLabelValue\":\"MISource\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Support\",\"primaryLabelValue\":\"Mission Support\"}},{\"attributeHeader\":{\"labelValue\":\"Modern Technology Solutions\",\"primaryLabelValue\":\"Modern Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Modo\",\"primaryLabelValue\":\"Modo\"}},{\"attributeHeader\":{\"labelValue\":\"Monitoring Solutions\",\"primaryLabelValue\":\"Monitoring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Monitronics International\",\"primaryLabelValue\":\"Monitronics International\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan, Lewis & Bockius\",\"primaryLabelValue\":\"Morgan, Lewis & Bockius\"}},{\"attributeHeader\":{\"labelValue\":\"Morpheus Media\",\"primaryLabelValue\":\"Morpheus Media\"}},{\"attributeHeader\":{\"labelValue\":\"Mortgagebot\",\"primaryLabelValue\":\"Mortgagebot\"}},{\"attributeHeader\":{\"labelValue\":\"MOSAK Advertising & Insights\",\"primaryLabelValue\":\"MOSAK Advertising & Insights\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"Motive Interactive\",\"primaryLabelValue\":\"Motive Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mountainside Fitness Centers\",\"primaryLabelValue\":\"Mountainside Fitness Centers\"}},{\"attributeHeader\":{\"labelValue\":\"MPAY\",\"primaryLabelValue\":\"MPAY\"}},{\"attributeHeader\":{\"labelValue\":\"mPower Software Services\",\"primaryLabelValue\":\"mPower Software Services\"}},{\"attributeHeader\":{\"labelValue\":\"MRM Construction Services\",\"primaryLabelValue\":\"MRM Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"MTCSC\",\"primaryLabelValue\":\"MTCSC\"}},{\"attributeHeader\":{\"labelValue\":\"Multi Business Systems\",\"primaryLabelValue\":\"Multi Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Bank Services\",\"primaryLabelValue\":\"Multi-Bank Services\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Media Masters\",\"primaryLabelValue\":\"Multi-Media Masters\"}},{\"attributeHeader\":{\"labelValue\":\"Munger, Tolles & Olson\",\"primaryLabelValue\":\"Munger, Tolles & Olson\"}},{\"attributeHeader\":{\"labelValue\":\"Murdoch Security & Investigations\",\"primaryLabelValue\":\"Murdoch Security & Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Mutex Systems\",\"primaryLabelValue\":\"Mutex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MVS\",\"primaryLabelValue\":\"MVS\"}},{\"attributeHeader\":{\"labelValue\":\"Myriad Supply\",\"primaryLabelValue\":\"Myriad Supply\"}},{\"attributeHeader\":{\"labelValue\":\"N.P. Construction of North Florida\",\"primaryLabelValue\":\"N.P. Construction of North Florida\"}},{\"attributeHeader\":{\"labelValue\":\"Naplia\",\"primaryLabelValue\":\"Naplia\"}},{\"attributeHeader\":{\"labelValue\":\"Nascent Systems\",\"primaryLabelValue\":\"Nascent Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Food Group\",\"primaryLabelValue\":\"National Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National Recovery Agency\",\"primaryLabelValue\":\"National Recovery Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Navicure\",\"primaryLabelValue\":\"Navicure\"}},{\"attributeHeader\":{\"labelValue\":\"NavigationArts\",\"primaryLabelValue\":\"NavigationArts\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Near Infinity\",\"primaryLabelValue\":\"Near Infinity\"}},{\"attributeHeader\":{\"labelValue\":\"NeoCom Solutions\",\"primaryLabelValue\":\"NeoCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NeoSystems\",\"primaryLabelValue\":\"NeoSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Nerds On Call\",\"primaryLabelValue\":\"Nerds On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net Transcripts\",\"primaryLabelValue\":\"Net Transcripts\"}},{\"attributeHeader\":{\"labelValue\":\"Net@Work\",\"primaryLabelValue\":\"Net@Work\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"Neteon Technologies\",\"primaryLabelValue\":\"Neteon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NetGain\",\"primaryLabelValue\":\"NetGain\"}},{\"attributeHeader\":{\"labelValue\":\"NETtime Solutions\",\"primaryLabelValue\":\"NETtime Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Network International\",\"primaryLabelValue\":\"Network International\"}},{\"attributeHeader\":{\"labelValue\":\"Network9\",\"primaryLabelValue\":\"Network9\"}},{\"attributeHeader\":{\"labelValue\":\"Nevada State Corporate Network\",\"primaryLabelValue\":\"Nevada State Corporate Network\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Flight Charters\",\"primaryLabelValue\":\"New Flight Charters\"}},{\"attributeHeader\":{\"labelValue\":\"New Holland Brewing\",\"primaryLabelValue\":\"New Holland Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Learning\",\"primaryLabelValue\":\"New Media Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Newegg\",\"primaryLabelValue\":\"Newegg\"}},{\"attributeHeader\":{\"labelValue\":\"Newgen Technologies\",\"primaryLabelValue\":\"Newgen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NEXT Financial Holdings\",\"primaryLabelValue\":\"NEXT Financial Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Nextrials\",\"primaryLabelValue\":\"Nextrials\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Nital Trading\",\"primaryLabelValue\":\"Nital Trading\"}},{\"attributeHeader\":{\"labelValue\":\"No Limit Motorsport\",\"primaryLabelValue\":\"No Limit Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Moving\",\"primaryLabelValue\":\"NorthStar Moving\"}},{\"attributeHeader\":{\"labelValue\":\"NovaCopy\",\"primaryLabelValue\":\"NovaCopy\"}},{\"attributeHeader\":{\"labelValue\":\"NOVO 1\",\"primaryLabelValue\":\"NOVO 1\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelicor\",\"primaryLabelValue\":\"Ntelicor\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Safety Associates\",\"primaryLabelValue\":\"Nuclear Safety Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"NuView Systems\",\"primaryLabelValue\":\"NuView Systems\"}},{\"attributeHeader\":{\"labelValue\":\"O2B Kids\",\"primaryLabelValue\":\"O2B Kids\"}},{\"attributeHeader\":{\"labelValue\":\"Oak Grove Technologies\",\"primaryLabelValue\":\"Oak Grove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Systems\",\"primaryLabelValue\":\"Oasis Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Object Technology Solutions\",\"primaryLabelValue\":\"Object Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ObjectNet Technologies\",\"primaryLabelValue\":\"ObjectNet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OmniVue\",\"primaryLabelValue\":\"OmniVue\"}},{\"attributeHeader\":{\"labelValue\":\"OnDemand Resources\",\"primaryLabelValue\":\"OnDemand Resources\"}},{\"attributeHeader\":{\"labelValue\":\"One Call Now\",\"primaryLabelValue\":\"One Call Now\"}},{\"attributeHeader\":{\"labelValue\":\"One Source\",\"primaryLabelValue\":\"One Source\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Environmental\",\"primaryLabelValue\":\"One Stop Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OneMD\",\"primaryLabelValue\":\"OneMD\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"OpenLink Financial\",\"primaryLabelValue\":\"OpenLink Financial\"}},{\"attributeHeader\":{\"labelValue\":\"OpenSpirit\",\"primaryLabelValue\":\"OpenSpirit\"}},{\"attributeHeader\":{\"labelValue\":\"Operative\",\"primaryLabelValue\":\"Operative\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMA\",\"primaryLabelValue\":\"OptiMA\"}},{\"attributeHeader\":{\"labelValue\":\"Optimum Technology Solutions\",\"primaryLabelValue\":\"Optimum Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oracle Diagnostic Laboratories\",\"primaryLabelValue\":\"Oracle Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Logic\",\"primaryLabelValue\":\"Orbit Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Organize.com\",\"primaryLabelValue\":\"Organize.com\"}},{\"attributeHeader\":{\"labelValue\":\"OriGene Technologies\",\"primaryLabelValue\":\"OriGene Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Orrick, Herrington & Sutcliffe\",\"primaryLabelValue\":\"Orrick, Herrington & Sutcliffe\"}},{\"attributeHeader\":{\"labelValue\":\"Otto Environmental Systems\",\"primaryLabelValue\":\"Otto Environmental Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outreach Telecom and Energy\",\"primaryLabelValue\":\"Outreach Telecom and Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Outsource Partners International\",\"primaryLabelValue\":\"Outsource Partners International\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Payroll\",\"primaryLabelValue\":\"Ovation Payroll\"}},{\"attributeHeader\":{\"labelValue\":\"overstockArt.com\",\"primaryLabelValue\":\"overstockArt.com\"}},{\"attributeHeader\":{\"labelValue\":\"P.W. Grosser Consulting\",\"primaryLabelValue\":\"P.W. Grosser Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Market International\",\"primaryLabelValue\":\"Pacific Market International\"}},{\"attributeHeader\":{\"labelValue\":\"Para-Plus Translations\",\"primaryLabelValue\":\"Para-Plus Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Park\",\"primaryLabelValue\":\"Park\"}},{\"attributeHeader\":{\"labelValue\":\"Parks Associates\",\"primaryLabelValue\":\"Parks Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partners + Napier\",\"primaryLabelValue\":\"Partners + Napier\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Electrical Services\",\"primaryLabelValue\":\"Partners Electrical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Parts Town\",\"primaryLabelValue\":\"Parts Town\"}},{\"attributeHeader\":{\"labelValue\":\"Partsearch Technologies\",\"primaryLabelValue\":\"Partsearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PayLock\",\"primaryLabelValue\":\"PayLock\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Processing\",\"primaryLabelValue\":\"Payment Processing\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"PC Parts\",\"primaryLabelValue\":\"PC Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Peach New Media\",\"primaryLabelValue\":\"Peach New Media\"}},{\"attributeHeader\":{\"labelValue\":\"Peak Health Solutions\",\"primaryLabelValue\":\"Peak Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pediatric Therapeutic Services\",\"primaryLabelValue\":\"Pediatric Therapeutic Services\"}},{\"attributeHeader\":{\"labelValue\":\"PEI\",\"primaryLabelValue\":\"PEI\"}},{\"attributeHeader\":{\"labelValue\":\"Pennoni Associates\",\"primaryLabelValue\":\"Pennoni Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Pentagroup Financial\",\"primaryLabelValue\":\"Pentagroup Financial\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleFinders.com\",\"primaryLabelValue\":\"PeopleFinders.com\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"Peppercom\",\"primaryLabelValue\":\"Peppercom\"}},{\"attributeHeader\":{\"labelValue\":\"PerfectPower\",\"primaryLabelValue\":\"PerfectPower\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Results\",\"primaryLabelValue\":\"Performance Results\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Software\",\"primaryLabelValue\":\"Performance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins+Will\",\"primaryLabelValue\":\"Perkins+Will\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Doctors of America\",\"primaryLabelValue\":\"Pet Doctors of America\"}},{\"attributeHeader\":{\"labelValue\":\"Petersen\",\"primaryLabelValue\":\"Petersen\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharma-Care\",\"primaryLabelValue\":\"Pharma-Care\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaSmart\",\"primaryLabelValue\":\"PharmaSmart\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaStrat\",\"primaryLabelValue\":\"PharmaStrat\"}},{\"attributeHeader\":{\"labelValue\":\"Photo Science\",\"primaryLabelValue\":\"Photo Science\"}},{\"attributeHeader\":{\"labelValue\":\"Phydeaux\",\"primaryLabelValue\":\"Phydeaux\"}},{\"attributeHeader\":{\"labelValue\":\"PicScout\",\"primaryLabelValue\":\"PicScout\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Publishing Group\",\"primaryLabelValue\":\"Pinnacle Publishing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Pita Pit USA\",\"primaryLabelValue\":\"Pita Pit USA\"}},{\"attributeHeader\":{\"labelValue\":\"PJA Advertising + Marketing\",\"primaryLabelValue\":\"PJA Advertising + Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"PlainsCapital\",\"primaryLabelValue\":\"PlainsCapital\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Fitness\",\"primaryLabelValue\":\"Planet Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Plant Fantasies\",\"primaryLabelValue\":\"Plant Fantasies\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"PLS Financial Services\",\"primaryLabelValue\":\"PLS Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"PMOLink\",\"primaryLabelValue\":\"PMOLink\"}},{\"attributeHeader\":{\"labelValue\":\"PolicyTech\",\"primaryLabelValue\":\"PolicyTech\"}},{\"attributeHeader\":{\"labelValue\":\"PolySource\",\"primaryLabelValue\":\"PolySource\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portal Solutions\",\"primaryLabelValue\":\"Portal Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Power Pro-Tech Services\",\"primaryLabelValue\":\"Power Pro-Tech Services\"}},{\"attributeHeader\":{\"labelValue\":\"PowerDirect Marketing\",\"primaryLabelValue\":\"PowerDirect Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Laser Services\",\"primaryLabelValue\":\"Precision Laser Services\"}},{\"attributeHeader\":{\"labelValue\":\"Predictive Service\",\"primaryLabelValue\":\"Predictive Service\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Medical Marketing\",\"primaryLabelValue\":\"Preferred Medical Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Graphics\",\"primaryLabelValue\":\"Premier Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prestige Employee Administrators\",\"primaryLabelValue\":\"Prestige Employee Administrators\"}},{\"attributeHeader\":{\"labelValue\":\"Preval\",\"primaryLabelValue\":\"Preval\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PrintRunner\",\"primaryLabelValue\":\"PrintRunner\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pro-Air Services\",\"primaryLabelValue\":\"Pro-Air Services\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Promotion Consultants\",\"primaryLabelValue\":\"Proforma Promotion Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Spectrum Print Graphics\",\"primaryLabelValue\":\"Proforma Spectrum Print Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Progressive Medical\",\"primaryLabelValue\":\"Progressive Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Project Leadership Associates\",\"primaryLabelValue\":\"Project Leadership Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Projections\",\"primaryLabelValue\":\"Projections\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Promedica\",\"primaryLabelValue\":\"Promedica\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prosoft Technology Group\",\"primaryLabelValue\":\"Prosoft Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"ProtoType Industries\",\"primaryLabelValue\":\"ProtoType Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Providus\",\"primaryLabelValue\":\"Providus\"}},{\"attributeHeader\":{\"labelValue\":\"PSS-Product Support Solutions\",\"primaryLabelValue\":\"PSS-Product Support Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Puente Construction Enterprises\",\"primaryLabelValue\":\"Puente Construction Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse 360\",\"primaryLabelValue\":\"Pulse 360\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse Systems\",\"primaryLabelValue\":\"Pulse Systems\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Qosina\",\"primaryLabelValue\":\"Qosina\"}},{\"attributeHeader\":{\"labelValue\":\"Quagga\",\"primaryLabelValue\":\"Quagga\"}},{\"attributeHeader\":{\"labelValue\":\"Quaker Steak & Lube\",\"primaryLabelValue\":\"Quaker Steak & Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Wine & Spirits\",\"primaryLabelValue\":\"Quality Wine & Spirits\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Research International\",\"primaryLabelValue\":\"Quantum Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"QueBIT\",\"primaryLabelValue\":\"QueBIT\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quorum Business Solutions\",\"primaryLabelValue\":\"Quorum Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R2C Group\",\"primaryLabelValue\":\"R2C Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radical Support\",\"primaryLabelValue\":\"Radical Support\"}},{\"attributeHeader\":{\"labelValue\":\"Radio Flyer\",\"primaryLabelValue\":\"Radio Flyer\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"Radius Financial Group\",\"primaryLabelValue\":\"Radius Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"RAM Technologies\",\"primaryLabelValue\":\"RAM Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Learning Deployment\",\"primaryLabelValue\":\"Rapid Learning Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Raven Rock Workwear\",\"primaryLabelValue\":\"Raven Rock Workwear\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reality Check Network\",\"primaryLabelValue\":\"Reality Check Network\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recurrent Technologies\",\"primaryLabelValue\":\"Recurrent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Red Arrow Logistics\",\"primaryLabelValue\":\"Red Arrow Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Red Cloud Promotions\",\"primaryLabelValue\":\"Red Cloud Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Red Restaurant Group\",\"primaryLabelValue\":\"Red Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"Reliant Transportation\",\"primaryLabelValue\":\"Reliant Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Renewal Design-Build\",\"primaryLabelValue\":\"Renewal Design-Build\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"Rescue Social Change Group\",\"primaryLabelValue\":\"Rescue Social Change Group\"}},{\"attributeHeader\":{\"labelValue\":\"Respira Medical\",\"primaryLabelValue\":\"Respira Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Responsys\",\"primaryLabelValue\":\"Responsys\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Maintenance Service\",\"primaryLabelValue\":\"Retail Maintenance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"RevenueMed\",\"primaryLabelValue\":\"RevenueMed\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Richland\",\"primaryLabelValue\":\"Richland\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RightAnswers\",\"primaryLabelValue\":\"RightAnswers\"}},{\"attributeHeader\":{\"labelValue\":\"RightStaff\",\"primaryLabelValue\":\"RightStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Rinkya\",\"primaryLabelValue\":\"Rinkya\"}},{\"attributeHeader\":{\"labelValue\":\"Road Ranger\",\"primaryLabelValue\":\"Road Ranger\"}},{\"attributeHeader\":{\"labelValue\":\"Roadrunner Transportation Services\",\"primaryLabelValue\":\"Roadrunner Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Rocket Direct Communications\",\"primaryLabelValue\":\"Rocket Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Rokkan\",\"primaryLabelValue\":\"Rokkan\"}},{\"attributeHeader\":{\"labelValue\":\"Rothstein Kass\",\"primaryLabelValue\":\"Rothstein Kass\"}},{\"attributeHeader\":{\"labelValue\":\"Roy Englebrecht Promotions\",\"primaryLabelValue\":\"Roy Englebrecht Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"RPA Engineering\",\"primaryLabelValue\":\"RPA Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"RPI\",\"primaryLabelValue\":\"RPI\"}},{\"attributeHeader\":{\"labelValue\":\"Rumors Salon and Spa\",\"primaryLabelValue\":\"Rumors Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Rustic Crust\",\"primaryLabelValue\":\"Rustic Crust\"}},{\"attributeHeader\":{\"labelValue\":\"RW Armstrong\",\"primaryLabelValue\":\"RW Armstrong\"}},{\"attributeHeader\":{\"labelValue\":\"S&A Cherokee\",\"primaryLabelValue\":\"S&A Cherokee\"}},{\"attributeHeader\":{\"labelValue\":\"S.A. Technology\",\"primaryLabelValue\":\"S.A. Technology\"}},{\"attributeHeader\":{\"labelValue\":\"S4\",\"primaryLabelValue\":\"S4\"}},{\"attributeHeader\":{\"labelValue\":\"Saddleback Plumbing\",\"primaryLabelValue\":\"Saddleback Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"Safe Systems\",\"primaryLabelValue\":\"Safe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Safespan Platform Systems\",\"primaryLabelValue\":\"Safespan Platform Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Environmental Consulting\",\"primaryLabelValue\":\"Sage Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Saladworks\",\"primaryLabelValue\":\"Saladworks\"}},{\"attributeHeader\":{\"labelValue\":\"Sales Partnerships\",\"primaryLabelValue\":\"Sales Partnerships\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Sansay\",\"primaryLabelValue\":\"Sansay\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Saratoga Technologies\",\"primaryLabelValue\":\"Saratoga Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Schill Landscaping and Lawn Care Services\",\"primaryLabelValue\":\"Schill Landscaping and Lawn Care Services\"}},{\"attributeHeader\":{\"labelValue\":\"School House Learning Communities\",\"primaryLabelValue\":\"School House Learning Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Schoolwires\",\"primaryLabelValue\":\"Schoolwires\"}},{\"attributeHeader\":{\"labelValue\":\"Schulte Roth & Zabel\",\"primaryLabelValue\":\"Schulte Roth & Zabel\"}},{\"attributeHeader\":{\"labelValue\":\"Schumacher Group\",\"primaryLabelValue\":\"Schumacher Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schweitzer Engineering Laboratories\",\"primaryLabelValue\":\"Schweitzer Engineering Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Your Trip\",\"primaryLabelValue\":\"Scrap Your Trip\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"SDG\",\"primaryLabelValue\":\"SDG\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Second Wind\",\"primaryLabelValue\":\"Second Wind\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Securicon\",\"primaryLabelValue\":\"Securicon\"}},{\"attributeHeader\":{\"labelValue\":\"Select Communications\",\"primaryLabelValue\":\"Select Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Select Transportation\",\"primaryLabelValue\":\"Select Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Whole Health\",\"primaryLabelValue\":\"Senior Whole Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sense Corp\",\"primaryLabelValue\":\"Sense Corp\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Sentient\",\"primaryLabelValue\":\"Sentient\"}},{\"attributeHeader\":{\"labelValue\":\"Sentry Communications & Security\",\"primaryLabelValue\":\"Sentry Communications & Security\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeriousShops.com\",\"primaryLabelValue\":\"SeriousShops.com\"}},{\"attributeHeader\":{\"labelValue\":\"ServerCentral\",\"primaryLabelValue\":\"ServerCentral\"}},{\"attributeHeader\":{\"labelValue\":\"Service By Medallion\",\"primaryLabelValue\":\"Service By Medallion\"}},{\"attributeHeader\":{\"labelValue\":\"Servi-Tek\",\"primaryLabelValue\":\"Servi-Tek\"}},{\"attributeHeader\":{\"labelValue\":\"SetFocus\",\"primaryLabelValue\":\"SetFocus\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"Shook, Hardy & Bacon\",\"primaryLabelValue\":\"Shook, Hardy & Bacon\"}},{\"attributeHeader\":{\"labelValue\":\"Showdown Displays\",\"primaryLabelValue\":\"Showdown Displays\"}},{\"attributeHeader\":{\"labelValue\":\"SIA Group\",\"primaryLabelValue\":\"SIA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sideman & Bancroft\",\"primaryLabelValue\":\"Sideman & Bancroft\"}},{\"attributeHeader\":{\"labelValue\":\"Sidley Austin\",\"primaryLabelValue\":\"Sidley Austin\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Fencing & Flooring Systems\",\"primaryLabelValue\":\"Signature Fencing & Flooring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Gumpertz & Heger\",\"primaryLabelValue\":\"Simpson Gumpertz & Heger\"}},{\"attributeHeader\":{\"labelValue\":\"SkillStorm\",\"primaryLabelValue\":\"SkillStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skoda Minotti\",\"primaryLabelValue\":\"Skoda Minotti\"}},{\"attributeHeader\":{\"labelValue\":\"SkyBitz\",\"primaryLabelValue\":\"SkyBitz\"}},{\"attributeHeader\":{\"labelValue\":\"SmartCEO Media\",\"primaryLabelValue\":\"SmartCEO Media\"}},{\"attributeHeader\":{\"labelValue\":\"SmartLinx Solutions\",\"primaryLabelValue\":\"SmartLinx Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPak Equine\",\"primaryLabelValue\":\"SmartPak Equine\"}},{\"attributeHeader\":{\"labelValue\":\"SmartRevenue\",\"primaryLabelValue\":\"SmartRevenue\"}},{\"attributeHeader\":{\"labelValue\":\"Smartronix\",\"primaryLabelValue\":\"Smartronix\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SofterWare\",\"primaryLabelValue\":\"SofterWare\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorg Architects\",\"primaryLabelValue\":\"Sorg Architects\"}},{\"attributeHeader\":{\"labelValue\":\"SoundSense\",\"primaryLabelValue\":\"SoundSense\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diagnostic Laboratories\",\"primaryLabelValue\":\"Southern Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diversified Technologies\",\"primaryLabelValue\":\"Southern Diversified Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Southwest Solutions Group\",\"primaryLabelValue\":\"Southwest Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sovereign Consulting\",\"primaryLabelValue\":\"Sovereign Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"space150\",\"primaryLabelValue\":\"space150\"}},{\"attributeHeader\":{\"labelValue\":\"SpaceBound\",\"primaryLabelValue\":\"SpaceBound\"}},{\"attributeHeader\":{\"labelValue\":\"SPADAC\",\"primaryLabelValue\":\"SPADAC\"}},{\"attributeHeader\":{\"labelValue\":\"SPEAR Physical Therapy\",\"primaryLabelValue\":\"SPEAR Physical Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"SpectraSensors\",\"primaryLabelValue\":\"SpectraSensors\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Controls\",\"primaryLabelValue\":\"Spectrum Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Industries\",\"primaryLabelValue\":\"Spectrum Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Technologies\",\"primaryLabelValue\":\"Spectrum Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Squire, Sanders & Dempsey\",\"primaryLabelValue\":\"Squire, Sanders & Dempsey\"}},{\"attributeHeader\":{\"labelValue\":\"SRI Telecom\",\"primaryLabelValue\":\"SRI Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stafflogix\",\"primaryLabelValue\":\"Stafflogix\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Stalwart\",\"primaryLabelValue\":\"Stalwart\"}},{\"attributeHeader\":{\"labelValue\":\"StarTech.com\",\"primaryLabelValue\":\"StarTech.com\"}},{\"attributeHeader\":{\"labelValue\":\"Stefan Sydor Optics\",\"primaryLabelValue\":\"Stefan Sydor Optics\"}},{\"attributeHeader\":{\"labelValue\":\"STI Electronics\",\"primaryLabelValue\":\"STI Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Stinson Morrison Hecker\",\"primaryLabelValue\":\"Stinson Morrison Hecker\"}},{\"attributeHeader\":{\"labelValue\":\"Stoel Rives\",\"primaryLabelValue\":\"Stoel Rives\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Fundraising\",\"primaryLabelValue\":\"Strategic Fundraising\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Strike Construction\",\"primaryLabelValue\":\"Strike Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Struxture Architects\",\"primaryLabelValue\":\"Struxture Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Studio 921 Salon & Day Spa\",\"primaryLabelValue\":\"Studio 921 Salon & Day Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sun Light & Power\",\"primaryLabelValue\":\"Sun Light & Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunrise Hitek\",\"primaryLabelValue\":\"Sunrise Hitek\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Kids Juvenile Products\",\"primaryLabelValue\":\"Sunshine Kids Juvenile Products\"}},{\"attributeHeader\":{\"labelValue\":\"SunStar\",\"primaryLabelValue\":\"SunStar\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Linen Service\",\"primaryLabelValue\":\"Superior Linen Service\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Petroleum\",\"primaryLabelValue\":\"Superior Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Supermarket Source\",\"primaryLabelValue\":\"Supermarket Source\"}},{\"attributeHeader\":{\"labelValue\":\"SuperTech\",\"primaryLabelValue\":\"SuperTech\"}},{\"attributeHeader\":{\"labelValue\":\"Supremesoft\",\"primaryLabelValue\":\"Supremesoft\"}},{\"attributeHeader\":{\"labelValue\":\"SureScore\",\"primaryLabelValue\":\"SureScore\"}},{\"attributeHeader\":{\"labelValue\":\"Surf Cowboy\",\"primaryLabelValue\":\"Surf Cowboy\"}},{\"attributeHeader\":{\"labelValue\":\"Surmotech\",\"primaryLabelValue\":\"Surmotech\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Asbill & Brennan\",\"primaryLabelValue\":\"Sutherland Asbill & Brennan\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Global Services\",\"primaryLabelValue\":\"Sutherland Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Suzannes Specialties\",\"primaryLabelValue\":\"Suzannes Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"SWS Re-Distribution\",\"primaryLabelValue\":\"SWS Re-Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Syncroness\",\"primaryLabelValue\":\"Syncroness\"}},{\"attributeHeader\":{\"labelValue\":\"Synergy Solutions\",\"primaryLabelValue\":\"Synergy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&W Operations\",\"primaryLabelValue\":\"T&W Operations\"}},{\"attributeHeader\":{\"labelValue\":\"Tabar\",\"primaryLabelValue\":\"Tabar\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Tailored Label Products\",\"primaryLabelValue\":\"Tailored Label Products\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Talon Professional Services\",\"primaryLabelValue\":\"Talon Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Talon/LPE\",\"primaryLabelValue\":\"Talon/LPE\"}},{\"attributeHeader\":{\"labelValue\":\"Tanager\",\"primaryLabelValue\":\"Tanager\"}},{\"attributeHeader\":{\"labelValue\":\"Tandem HR\",\"primaryLabelValue\":\"Tandem HR\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"Taphandles\",\"primaryLabelValue\":\"Taphandles\"}},{\"attributeHeader\":{\"labelValue\":\"Taras Techniques\",\"primaryLabelValue\":\"Taras Techniques\"}},{\"attributeHeader\":{\"labelValue\":\"TargetX\",\"primaryLabelValue\":\"TargetX\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"TC3 Telecom\",\"primaryLabelValue\":\"TC3 Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"TCG\",\"primaryLabelValue\":\"TCG\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"TDK Technologies\",\"primaryLabelValue\":\"TDK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Manufacturing\",\"primaryLabelValue\":\"Tech Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Techbarn.com\",\"primaryLabelValue\":\"Techbarn.com\"}},{\"attributeHeader\":{\"labelValue\":\"TechniPak\",\"primaryLabelValue\":\"TechniPak\"}},{\"attributeHeader\":{\"labelValue\":\"TechnoDyne\",\"primaryLabelValue\":\"TechnoDyne\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Tekpros\",\"primaryLabelValue\":\"Tekpros\"}},{\"attributeHeader\":{\"labelValue\":\"TeleProviders\",\"primaryLabelValue\":\"TeleProviders\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TGA Solutions\",\"primaryLabelValue\":\"TGA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"TharpeRobbins\",\"primaryLabelValue\":\"TharpeRobbins\"}},{\"attributeHeader\":{\"labelValue\":\"The Allied Power Group\",\"primaryLabelValue\":\"The Allied Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aspen Brands Company\",\"primaryLabelValue\":\"The Aspen Brands Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Barbour Group\",\"primaryLabelValue\":\"The Barbour Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Benecon Group\",\"primaryLabelValue\":\"The Benecon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Design People\",\"primaryLabelValue\":\"The Design People\"}},{\"attributeHeader\":{\"labelValue\":\"The Exit Light Company\",\"primaryLabelValue\":\"The Exit Light Company\"}},{\"attributeHeader\":{\"labelValue\":\"The FruitGuys\",\"primaryLabelValue\":\"The FruitGuys\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Go Daddy Group\",\"primaryLabelValue\":\"The Go Daddy Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Hamister Group\",\"primaryLabelValue\":\"The Hamister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Intermarket Group\",\"primaryLabelValue\":\"The Intermarket Group\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Linc Group\",\"primaryLabelValue\":\"The Linc Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Lobster Place\",\"primaryLabelValue\":\"The Lobster Place\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Online 401(k)\",\"primaryLabelValue\":\"The Online 401(k)\"}},{\"attributeHeader\":{\"labelValue\":\"The Onyx Group\",\"primaryLabelValue\":\"The Onyx Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Phia Group\",\"primaryLabelValue\":\"The Phia Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Planet\",\"primaryLabelValue\":\"The Planet\"}},{\"attributeHeader\":{\"labelValue\":\"The Portaro Group\",\"primaryLabelValue\":\"The Portaro Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PSP Group\",\"primaryLabelValue\":\"The PSP Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Tellennium Group\",\"primaryLabelValue\":\"The Tellennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The TM Group\",\"primaryLabelValue\":\"The TM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Transtec Group\",\"primaryLabelValue\":\"The Transtec Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Velez Corporation\",\"primaryLabelValue\":\"The Velez Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Thinkwell Group\",\"primaryLabelValue\":\"Thinkwell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Third Sun Solar & Wind Power\",\"primaryLabelValue\":\"Third Sun Solar & Wind Power\"}},{\"attributeHeader\":{\"labelValue\":\"Third Wave Systems\",\"primaryLabelValue\":\"Third Wave Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ThomasArts\",\"primaryLabelValue\":\"ThomasArts\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson & Knight\",\"primaryLabelValue\":\"Thompson & Knight\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Creek\",\"primaryLabelValue\":\"Thompson Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Ticket Alternative\",\"primaryLabelValue\":\"Ticket Alternative\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TIG Global\",\"primaryLabelValue\":\"TIG Global\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Claw\",\"primaryLabelValue\":\"Tiger Claw\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Commissary Services\",\"primaryLabelValue\":\"Tiger Commissary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Time Timer\",\"primaryLabelValue\":\"Time Timer\"}},{\"attributeHeader\":{\"labelValue\":\"TIPS Consulting\",\"primaryLabelValue\":\"TIPS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"TireMax of North America\",\"primaryLabelValue\":\"TireMax of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Total Beverage Solution\",\"primaryLabelValue\":\"Total Beverage Solution\"}},{\"attributeHeader\":{\"labelValue\":\"Touchtown\",\"primaryLabelValue\":\"Touchtown\"}},{\"attributeHeader\":{\"labelValue\":\"Town Money Saver\",\"primaryLabelValue\":\"Town Money Saver\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Trade the Markets\",\"primaryLabelValue\":\"Trade the Markets\"}},{\"attributeHeader\":{\"labelValue\":\"Traf-Tex\",\"primaryLabelValue\":\"Traf-Tex\"}},{\"attributeHeader\":{\"labelValue\":\"Trans Atlantic Systems\",\"primaryLabelValue\":\"Trans Atlantic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Traube Tent\",\"primaryLabelValue\":\"Traube Tent\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Digital Media\",\"primaryLabelValue\":\"Triad Digital Media\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Tribeca Technology Solutons\",\"primaryLabelValue\":\"Tribeca Technology Solutons\"}},{\"attributeHeader\":{\"labelValue\":\"Trideum\",\"primaryLabelValue\":\"Trideum\"}},{\"attributeHeader\":{\"labelValue\":\"Trinet Internet Solutions\",\"primaryLabelValue\":\"Trinet Internet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trisonics\",\"primaryLabelValue\":\"Trisonics\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"Tri-Win Digital Print and Mail Services\",\"primaryLabelValue\":\"Tri-Win Digital Print and Mail Services\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TrollAndToad.com\",\"primaryLabelValue\":\"TrollAndToad.com\"}},{\"attributeHeader\":{\"labelValue\":\"Tropical Smoothie Cafe\",\"primaryLabelValue\":\"Tropical Smoothie Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"TrueNorth\",\"primaryLabelValue\":\"TrueNorth\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"T-Scan\",\"primaryLabelValue\":\"T-Scan\"}},{\"attributeHeader\":{\"labelValue\":\"TTS\",\"primaryLabelValue\":\"TTS\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Tundra Specialties\",\"primaryLabelValue\":\"Tundra Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"Two West\",\"primaryLabelValue\":\"Two West\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"U-GRO Learning Centres\",\"primaryLabelValue\":\"U-GRO Learning Centres\"}},{\"attributeHeader\":{\"labelValue\":\"Ultimate Nursing Services\",\"primaryLabelValue\":\"Ultimate Nursing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Unishippers\",\"primaryLabelValue\":\"Unishippers\"}},{\"attributeHeader\":{\"labelValue\":\"United Bank of El Paso del Norte\",\"primaryLabelValue\":\"United Bank of El Paso del Norte\"}},{\"attributeHeader\":{\"labelValue\":\"United Global Logistics\",\"primaryLabelValue\":\"United Global Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"United Source One\",\"primaryLabelValue\":\"United Source One\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Univar\",\"primaryLabelValue\":\"Univar\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Accounting Center\",\"primaryLabelValue\":\"Universal Accounting Center\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Services of America\",\"primaryLabelValue\":\"Universal Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uno Alla Volta\",\"primaryLabelValue\":\"Uno Alla Volta\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Pharmacy\",\"primaryLabelValue\":\"Upstate Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"US LED\",\"primaryLabelValue\":\"US LED\"}},{\"attributeHeader\":{\"labelValue\":\"US Markerboard\",\"primaryLabelValue\":\"US Markerboard\"}},{\"attributeHeader\":{\"labelValue\":\"USGC\",\"primaryLabelValue\":\"USGC\"}},{\"attributeHeader\":{\"labelValue\":\"V12 Group\",\"primaryLabelValue\":\"V12 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Valador\",\"primaryLabelValue\":\"Valador\"}},{\"attributeHeader\":{\"labelValue\":\"Validity Screening Solutions\",\"primaryLabelValue\":\"Validity Screening Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Valley Recycling\",\"primaryLabelValue\":\"Valley Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"VarData\",\"primaryLabelValue\":\"VarData\"}},{\"attributeHeader\":{\"labelValue\":\"VarsityPlaza\",\"primaryLabelValue\":\"VarsityPlaza\"}},{\"attributeHeader\":{\"labelValue\":\"Venda\",\"primaryLabelValue\":\"Venda\"}},{\"attributeHeader\":{\"labelValue\":\"VentureNet\",\"primaryLabelValue\":\"VentureNet\"}},{\"attributeHeader\":{\"labelValue\":\"Venturity Financial Partners\",\"primaryLabelValue\":\"Venturity Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Veritis Group\",\"primaryLabelValue\":\"Veritis Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vernier Software & Technology\",\"primaryLabelValue\":\"Vernier Software & Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Vertafore\",\"primaryLabelValue\":\"Vertafore\"}},{\"attributeHeader\":{\"labelValue\":\"Vertical Marketing Network\",\"primaryLabelValue\":\"Vertical Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"VerticalResponse\",\"primaryLabelValue\":\"VerticalResponse\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vindicia\",\"primaryLabelValue\":\"Vindicia\"}},{\"attributeHeader\":{\"labelValue\":\"Vinson & Elkins\",\"primaryLabelValue\":\"Vinson & Elkins\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual\",\"primaryLabelValue\":\"Virtual\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Hold Technology\",\"primaryLabelValue\":\"Virtual Hold Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Virtustream\",\"primaryLabelValue\":\"Virtustream\"}},{\"attributeHeader\":{\"labelValue\":\"VisionOne\",\"primaryLabelValue\":\"VisionOne\"}},{\"attributeHeader\":{\"labelValue\":\"Visual Concepts\",\"primaryLabelValue\":\"Visual Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Vizio\",\"primaryLabelValue\":\"Vizio\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vocera Communications\",\"primaryLabelValue\":\"Vocera Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Vocon\",\"primaryLabelValue\":\"Vocon\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Vormittag Associates\",\"primaryLabelValue\":\"Vormittag Associates\"}},{\"attributeHeader\":{\"labelValue\":\"V-Soft Consulting Group\",\"primaryLabelValue\":\"V-Soft Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WAGIC\",\"primaryLabelValue\":\"WAGIC\"}},{\"attributeHeader\":{\"labelValue\":\"Walling Data\",\"primaryLabelValue\":\"Walling Data\"}},{\"attributeHeader\":{\"labelValue\":\"Water Associates\",\"primaryLabelValue\":\"Water Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Watermark\",\"primaryLabelValue\":\"Watermark\"}},{\"attributeHeader\":{\"labelValue\":\"WCS Lending\",\"primaryLabelValue\":\"WCS Lending\"}},{\"attributeHeader\":{\"labelValue\":\"WebVisible\",\"primaryLabelValue\":\"WebVisible\"}},{\"attributeHeader\":{\"labelValue\":\"Weed Man\",\"primaryLabelValue\":\"Weed Man\"}},{\"attributeHeader\":{\"labelValue\":\"Weil, Gotshal & Manges\",\"primaryLabelValue\":\"Weil, Gotshal & Manges\"}},{\"attributeHeader\":{\"labelValue\":\"Welocalize\",\"primaryLabelValue\":\"Welocalize\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Western International Securities\",\"primaryLabelValue\":\"Western International Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wheat Systems Integration\",\"primaryLabelValue\":\"Wheat Systems Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Machine & Tool\",\"primaryLabelValue\":\"Whelan Machine & Tool\"}},{\"attributeHeader\":{\"labelValue\":\"White Glove Technologies\",\"primaryLabelValue\":\"White Glove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WideOrbit\",\"primaryLabelValue\":\"WideOrbit\"}},{\"attributeHeader\":{\"labelValue\":\"Wier & Associates\",\"primaryLabelValue\":\"Wier & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wildtree\",\"primaryLabelValue\":\"Wildtree\"}},{\"attributeHeader\":{\"labelValue\":\"Wilshire Connection\",\"primaryLabelValue\":\"Wilshire Connection\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\",\"primaryLabelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Sonsini Goodrich & Rosati\",\"primaryLabelValue\":\"Wilson Sonsini Goodrich & Rosati\"}},{\"attributeHeader\":{\"labelValue\":\"Wimmer Solutions\",\"primaryLabelValue\":\"Wimmer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Winder Farms\",\"primaryLabelValue\":\"Winder Farms\"}},{\"attributeHeader\":{\"labelValue\":\"WineCommune\",\"primaryLabelValue\":\"WineCommune\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Zone\",\"primaryLabelValue\":\"Wireless Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Wiser Company\",\"primaryLabelValue\":\"Wiser Company\"}},{\"attributeHeader\":{\"labelValue\":\"Wojan Window & Door\",\"primaryLabelValue\":\"Wojan Window & Door\"}},{\"attributeHeader\":{\"labelValue\":\"Woodward Design+Build\",\"primaryLabelValue\":\"Woodward Design+Build\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WorldLink\",\"primaryLabelValue\":\"WorldLink\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Supply\",\"primaryLabelValue\":\"Worldwide Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Wound Care Advantage\",\"primaryLabelValue\":\"Wound Care Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Xantrion\",\"primaryLabelValue\":\"Xantrion\"}},{\"attributeHeader\":{\"labelValue\":\"Xchange Telecom\",\"primaryLabelValue\":\"Xchange Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"XeteX\",\"primaryLabelValue\":\"XeteX\"}},{\"attributeHeader\":{\"labelValue\":\"XIFIN\",\"primaryLabelValue\":\"XIFIN\"}},{\"attributeHeader\":{\"labelValue\":\"Xplane\",\"primaryLabelValue\":\"Xplane\"}},{\"attributeHeader\":{\"labelValue\":\"Xterprise\",\"primaryLabelValue\":\"Xterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ZGF Architects\",\"primaryLabelValue\":\"ZGF Architects\"}},{\"attributeHeader\":{\"labelValue\":\"ZirMed\",\"primaryLabelValue\":\"ZirMed\"}},{\"attributeHeader\":{\"labelValue\":\"Zobmondo!! Entertainment\",\"primaryLabelValue\":\"Zobmondo!! Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"123 Exteriors\",\"primaryLabelValue\":\"123 Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"1-888-OhioComp\",\"primaryLabelValue\":\"1-888-OhioComp\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"3E\",\"primaryLabelValue\":\"3E\"}},{\"attributeHeader\":{\"labelValue\":\"4Wall Entertainment\",\"primaryLabelValue\":\"4Wall Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"5LINX Enterprises\",\"primaryLabelValue\":\"5LINX Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"7 Simple Machines\",\"primaryLabelValue\":\"7 Simple Machines\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"A&R Tarpaulins\",\"primaryLabelValue\":\"A&R Tarpaulins\"}},{\"attributeHeader\":{\"labelValue\":\"A. Pomerantz & Co.\",\"primaryLabelValue\":\"A. Pomerantz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Tutor U\",\"primaryLabelValue\":\"A+ Tutor U\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Plumbing\",\"primaryLabelValue\":\"Abacus Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"ABCOMRents.com\",\"primaryLabelValue\":\"ABCOMRents.com\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"ACAI Associates\",\"primaryLabelValue\":\"ACAI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access Worldwide\",\"primaryLabelValue\":\"Access Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaim Technical Services\",\"primaryLabelValue\":\"Acclaim Technical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Account Control Technology\",\"primaryLabelValue\":\"Account Control Technology\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Achieve3000\",\"primaryLabelValue\":\"Achieve3000\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Acquity Group\",\"primaryLabelValue\":\"Acquity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"Actio\",\"primaryLabelValue\":\"Actio\"}},{\"attributeHeader\":{\"labelValue\":\"Action Target\",\"primaryLabelValue\":\"Action Target\"}},{\"attributeHeader\":{\"labelValue\":\"Acxius Strategic Consulting\",\"primaryLabelValue\":\"Acxius Strategic Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Facial Plastic Surgery Center\",\"primaryLabelValue\":\"Advanced Facial Plastic Surgery Center\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Network Solutions\",\"primaryLabelValue\":\"Advanced Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technical Solutions\",\"primaryLabelValue\":\"Advanced Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Vision Research\",\"primaryLabelValue\":\"Advanced Vision Research\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AdvertiseDoorToDoor.com\",\"primaryLabelValue\":\"AdvertiseDoorToDoor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aerodyn Engineering\",\"primaryLabelValue\":\"Aerodyn Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Affinion Group Holdings\",\"primaryLabelValue\":\"Affinion Group Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"AGM Container Controls\",\"primaryLabelValue\":\"AGM Container Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Agosto\",\"primaryLabelValue\":\"Agosto\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"AIReS\",\"primaryLabelValue\":\"AIReS\"}},{\"attributeHeader\":{\"labelValue\":\"AIRSIS\",\"primaryLabelValue\":\"AIRSIS\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"AKA Media\",\"primaryLabelValue\":\"AKA Media\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Albrecht & Co.\",\"primaryLabelValue\":\"Albrecht & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Phase Security\",\"primaryLabelValue\":\"All Phase Security\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Sensors Corporation\",\"primaryLabelValue\":\"All Sensors Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Corporation of America\",\"primaryLabelValue\":\"Allen Corporation of America\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Solutions Group\",\"primaryLabelValue\":\"Alliance Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Allied Industries\",\"primaryLabelValue\":\"Allied Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Alltrust Insurance\",\"primaryLabelValue\":\"Alltrust Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Access\",\"primaryLabelValue\":\"Alpine Access\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Waste & Recycling\",\"primaryLabelValue\":\"Alpine Waste & Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Alps Controls\",\"primaryLabelValue\":\"Alps Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Amadeus Consulting\",\"primaryLabelValue\":\"Amadeus Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amelia's\",\"primaryLabelValue\":\"Amelia's\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American Exteriors\",\"primaryLabelValue\":\"American Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"American Paper Optics\",\"primaryLabelValue\":\"American Paper Optics\"}},{\"attributeHeader\":{\"labelValue\":\"American Portfolios Financial Services\",\"primaryLabelValue\":\"American Portfolios Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"American Specialty Health\",\"primaryLabelValue\":\"American Specialty Health\"}},{\"attributeHeader\":{\"labelValue\":\"AmericaRx.com\",\"primaryLabelValue\":\"AmericaRx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Americollect\",\"primaryLabelValue\":\"Americollect\"}},{\"attributeHeader\":{\"labelValue\":\"Ameri-Kleen\",\"primaryLabelValue\":\"Ameri-Kleen\"}},{\"attributeHeader\":{\"labelValue\":\"Amtek Consulting\",\"primaryLabelValue\":\"Amtek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews & Company\",\"primaryLabelValue\":\"Andrews & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annapolis Micro Systems\",\"primaryLabelValue\":\"Annapolis Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annese & Associates\",\"primaryLabelValue\":\"Annese & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AnthroTronix\",\"primaryLabelValue\":\"AnthroTronix\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Systems\",\"primaryLabelValue\":\"Apex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"Aprimo\",\"primaryLabelValue\":\"Aprimo\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptela\",\"primaryLabelValue\":\"Aptela\"}},{\"attributeHeader\":{\"labelValue\":\"Aquire\",\"primaryLabelValue\":\"Aquire\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Marketing Services\",\"primaryLabelValue\":\"Archway Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Arcus\",\"primaryLabelValue\":\"Arcus\"}},{\"attributeHeader\":{\"labelValue\":\"Area51-ESG\",\"primaryLabelValue\":\"Area51-ESG\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadium\",\"primaryLabelValue\":\"Arkadium\"}},{\"attributeHeader\":{\"labelValue\":\"Armedia\",\"primaryLabelValue\":\"Armedia\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"Arora Engineers\",\"primaryLabelValue\":\"Arora Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Arroyo Process Equipment\",\"primaryLabelValue\":\"Arroyo Process Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASD\",\"primaryLabelValue\":\"ASD\"}},{\"attributeHeader\":{\"labelValue\":\"ASK Staffing\",\"primaryLabelValue\":\"ASK Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"Astek Wallcovering\",\"primaryLabelValue\":\"Astek Wallcovering\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT Conference\",\"primaryLabelValue\":\"AT Conference\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Business Technologies\",\"primaryLabelValue\":\"Atlantic Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Travel International\",\"primaryLabelValue\":\"Atlas Travel International\"}},{\"attributeHeader\":{\"labelValue\":\"AtNetPlus\",\"primaryLabelValue\":\"AtNetPlus\"}},{\"attributeHeader\":{\"labelValue\":\"Atomic Tattoos\",\"primaryLabelValue\":\"Atomic Tattoos\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"Austin Ribbon & Computer\",\"primaryLabelValue\":\"Austin Ribbon & Computer\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Events\",\"primaryLabelValue\":\"Automotive Events\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Product Consultants\",\"primaryLabelValue\":\"Automotive Product Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"AutoTec\",\"primaryLabelValue\":\"AutoTec\"}},{\"attributeHeader\":{\"labelValue\":\"Avalanche Creative Services\",\"primaryLabelValue\":\"Avalanche Creative Services\"}},{\"attributeHeader\":{\"labelValue\":\"Avalex Technologies Corporation\",\"primaryLabelValue\":\"Avalex Technologies Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Avidian Technologies\",\"primaryLabelValue\":\"Avidian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Avineon\",\"primaryLabelValue\":\"Avineon\"}},{\"attributeHeader\":{\"labelValue\":\"AVT Simulation\",\"primaryLabelValue\":\"AVT Simulation\"}},{\"attributeHeader\":{\"labelValue\":\"Axeda\",\"primaryLabelValue\":\"Axeda\"}},{\"attributeHeader\":{\"labelValue\":\"Axis Teknologies\",\"primaryLabelValue\":\"Axis Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axispoint\",\"primaryLabelValue\":\"Axispoint\"}},{\"attributeHeader\":{\"labelValue\":\"Azavea\",\"primaryLabelValue\":\"Azavea\"}},{\"attributeHeader\":{\"labelValue\":\"B Resource\",\"primaryLabelValue\":\"B Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Bailey Kennedy\",\"primaryLabelValue\":\"Bailey Kennedy\"}},{\"attributeHeader\":{\"labelValue\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryLabelValue\":\"Ballard Spahr Andrews & Ingersoll\"}},{\"attributeHeader\":{\"labelValue\":\"Bamko\",\"primaryLabelValue\":\"Bamko\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Barrack's Cater Inn\",\"primaryLabelValue\":\"Barrack's Cater Inn\"}},{\"attributeHeader\":{\"labelValue\":\"Barrister Global Services Network\",\"primaryLabelValue\":\"Barrister Global Services Network\"}},{\"attributeHeader\":{\"labelValue\":\"Basic\",\"primaryLabelValue\":\"Basic\"}},{\"attributeHeader\":{\"labelValue\":\"Basic Commerce and Industries\",\"primaryLabelValue\":\"Basic Commerce and Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Batteries Plus\",\"primaryLabelValue\":\"Batteries Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Baxa\",\"primaryLabelValue\":\"Baxa\"}},{\"attributeHeader\":{\"labelValue\":\"Bay State Computers\",\"primaryLabelValue\":\"Bay State Computers\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Partners\",\"primaryLabelValue\":\"Beacon Partners\"}},{\"attributeHeader\":{\"labelValue\":\"BEAR Data Systems\",\"primaryLabelValue\":\"BEAR Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Bearse Manufacturing\",\"primaryLabelValue\":\"Bearse Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Beauty Supply Warehouse\",\"primaryLabelValue\":\"Beauty Supply Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Benchworks\",\"primaryLabelValue\":\"Benchworks\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Strategies\",\"primaryLabelValue\":\"Benefit Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Best Items International\",\"primaryLabelValue\":\"Best Items International\"}},{\"attributeHeader\":{\"labelValue\":\"BG Medicine\",\"primaryLabelValue\":\"BG Medicine\"}},{\"attributeHeader\":{\"labelValue\":\"BHI Advanced Internet\",\"primaryLabelValue\":\"BHI Advanced Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Big Ass Fan Company\",\"primaryLabelValue\":\"Big Ass Fan Company\"}},{\"attributeHeader\":{\"labelValue\":\"BIGresearch\",\"primaryLabelValue\":\"BIGresearch\"}},{\"attributeHeader\":{\"labelValue\":\"Bingham McCutchen\",\"primaryLabelValue\":\"Bingham McCutchen\"}},{\"attributeHeader\":{\"labelValue\":\"BioHorizons\",\"primaryLabelValue\":\"BioHorizons\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birch Communications\",\"primaryLabelValue\":\"Birch Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Bit-Wizards Custom Software Solutions\",\"primaryLabelValue\":\"Bit-Wizards Custom Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BizXchange\",\"primaryLabelValue\":\"BizXchange\"}},{\"attributeHeader\":{\"labelValue\":\"Blacklist\",\"primaryLabelValue\":\"Blacklist\"}},{\"attributeHeader\":{\"labelValue\":\"Blink Consulting\",\"primaryLabelValue\":\"Blink Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Gecko\",\"primaryLabelValue\":\"Blue Gecko\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bluefish Wireless Management\",\"primaryLabelValue\":\"Bluefish Wireless Management\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"Booz Allen Hamilton\",\"primaryLabelValue\":\"Booz Allen Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"BrakeQuip\",\"primaryLabelValue\":\"BrakeQuip\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Breaking Ground Contracting\",\"primaryLabelValue\":\"Breaking Ground Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Burt Hill\",\"primaryLabelValue\":\"Burt Hill\"}},{\"attributeHeader\":{\"labelValue\":\"Butler/Till Media Services\",\"primaryLabelValue\":\"Butler/Till Media Services\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"Cables Plus\",\"primaryLabelValue\":\"Cables Plus\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Calix Networks\",\"primaryLabelValue\":\"Calix Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Call One\",\"primaryLabelValue\":\"Call One\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"CAM Services\",\"primaryLabelValue\":\"CAM Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge Home Health Care\",\"primaryLabelValue\":\"Cambridge Home Health Care\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"CandyRific\",\"primaryLabelValue\":\"CandyRific\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cape Medical Supply\",\"primaryLabelValue\":\"Cape Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Capinc\",\"primaryLabelValue\":\"Capinc\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Concierge\",\"primaryLabelValue\":\"Capitol Concierge\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Captiva Marketing\",\"primaryLabelValue\":\"Captiva Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Carbon Resources\",\"primaryLabelValue\":\"Carbon Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Cardenas Marketing Network\",\"primaryLabelValue\":\"Cardenas Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"Career Step\",\"primaryLabelValue\":\"Career Step\"}},{\"attributeHeader\":{\"labelValue\":\"Cargo Transportation Services\",\"primaryLabelValue\":\"Cargo Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carlisle Staffing\",\"primaryLabelValue\":\"Carlisle Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Carlton Fields\",\"primaryLabelValue\":\"Carlton Fields\"}},{\"attributeHeader\":{\"labelValue\":\"Cascade Asset Management\",\"primaryLabelValue\":\"Cascade Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Casco Contractors\",\"primaryLabelValue\":\"Casco Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Casey Research\",\"primaryLabelValue\":\"Casey Research\"}},{\"attributeHeader\":{\"labelValue\":\"Castle Rock Innovations\",\"primaryLabelValue\":\"Castle Rock Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Search\",\"primaryLabelValue\":\"Catalyst Search\"}},{\"attributeHeader\":{\"labelValue\":\"Catch the Moment\",\"primaryLabelValue\":\"Catch the Moment\"}},{\"attributeHeader\":{\"labelValue\":\"CBOE Holdings\",\"primaryLabelValue\":\"CBOE Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Marketing Solutions\",\"primaryLabelValue\":\"CCG Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cell Business Equipment\",\"primaryLabelValue\":\"Cell Business Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Centerstance\",\"primaryLabelValue\":\"Centerstance\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Century Bankcard Services\",\"primaryLabelValue\":\"Century Bankcard Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ceteris\",\"primaryLabelValue\":\"Ceteris\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chadbourne & Parke\",\"primaryLabelValue\":\"Chadbourne & Parke\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Charley's Grilled Subs\",\"primaryLabelValue\":\"Charley's Grilled Subs\"}},{\"attributeHeader\":{\"labelValue\":\"Chemco Products\",\"primaryLabelValue\":\"Chemco Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Child Enterprises\",\"primaryLabelValue\":\"Child Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Chop't Creative Salad\",\"primaryLabelValue\":\"Chop't Creative Salad\"}},{\"attributeHeader\":{\"labelValue\":\"ChristianCinema.com\",\"primaryLabelValue\":\"ChristianCinema.com\"}},{\"attributeHeader\":{\"labelValue\":\"Chroma Technology\",\"primaryLabelValue\":\"Chroma Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CiCi's Pizza\",\"primaryLabelValue\":\"CiCi's Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"CJ Pony Parts\",\"primaryLabelValue\":\"CJ Pony Parts\"}},{\"attributeHeader\":{\"labelValue\":\"CJP Communications\",\"primaryLabelValue\":\"CJP Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clinix Medical Information Services\",\"primaryLabelValue\":\"Clinix Medical Information Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CNSI\",\"primaryLabelValue\":\"CNSI\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Environmental Group\",\"primaryLabelValue\":\"Coastal Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobalt\",\"primaryLabelValue\":\"Cobalt\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen, Eric and Associates\",\"primaryLabelValue\":\"Cohen, Eric and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coins For Anything\",\"primaryLabelValue\":\"Coins For Anything\"}},{\"attributeHeader\":{\"labelValue\":\"Coin-Tainer\",\"primaryLabelValue\":\"Coin-Tainer\"}},{\"attributeHeader\":{\"labelValue\":\"Coler & Colantonio\",\"primaryLabelValue\":\"Coler & Colantonio\"}},{\"attributeHeader\":{\"labelValue\":\"Collabera\",\"primaryLabelValue\":\"Collabera\"}},{\"attributeHeader\":{\"labelValue\":\"CollaborateMD\",\"primaryLabelValue\":\"CollaborateMD\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ColorInc\",\"primaryLabelValue\":\"ColorInc\"}},{\"attributeHeader\":{\"labelValue\":\"Combined Public Communications\",\"primaryLabelValue\":\"Combined Public Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Command Decisions Systems & Solutions\",\"primaryLabelValue\":\"Command Decisions Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Commcare Pharmacy\",\"primaryLabelValue\":\"Commcare Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Common Sense Office Furniture\",\"primaryLabelValue\":\"Common Sense Office Furniture\"}},{\"attributeHeader\":{\"labelValue\":\"Commonground\",\"primaryLabelValue\":\"Commonground\"}},{\"attributeHeader\":{\"labelValue\":\"Communique Conferencing\",\"primaryLabelValue\":\"Communique Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"Community Care College\",\"primaryLabelValue\":\"Community Care College\"}},{\"attributeHeader\":{\"labelValue\":\"Company 20\",\"primaryLabelValue\":\"Company 20\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Nutrition\",\"primaryLabelValue\":\"Complete Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Care\",\"primaryLabelValue\":\"Complete Pharmacy Care\"}},{\"attributeHeader\":{\"labelValue\":\"CompleteRx\",\"primaryLabelValue\":\"CompleteRx\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Computer System Designers\",\"primaryLabelValue\":\"Computer System Designers\"}},{\"attributeHeader\":{\"labelValue\":\"ComRent International\",\"primaryLabelValue\":\"ComRent International\"}},{\"attributeHeader\":{\"labelValue\":\"Concerro\",\"primaryLabelValue\":\"Concerro\"}},{\"attributeHeader\":{\"labelValue\":\"ConEst Software Systems\",\"primaryLabelValue\":\"ConEst Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Connectria\",\"primaryLabelValue\":\"Connectria\"}},{\"attributeHeader\":{\"labelValue\":\"Control Cable\",\"primaryLabelValue\":\"Control Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Technology Consulting\",\"primaryLabelValue\":\"Convergence Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cooking Enthusiast\",\"primaryLabelValue\":\"Cooking Enthusiast\"}},{\"attributeHeader\":{\"labelValue\":\"Copier Fax Business Technologies\",\"primaryLabelValue\":\"Copier Fax Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CorePartners\",\"primaryLabelValue\":\"CorePartners\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Research Group\",\"primaryLabelValue\":\"Cornerstone Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Telephone\",\"primaryLabelValue\":\"CornerStone Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"CorpComm\",\"primaryLabelValue\":\"CorpComm\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Family Network\",\"primaryLabelValue\":\"Corporate Family Network\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Floors\",\"primaryLabelValue\":\"Corporate Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Office Centers\",\"primaryLabelValue\":\"Corporate Office Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Research International\",\"primaryLabelValue\":\"Corporate Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Cortech Solutions\",\"primaryLabelValue\":\"Cortech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Costume Craze\",\"primaryLabelValue\":\"Costume Craze\"}},{\"attributeHeader\":{\"labelValue\":\"Coverall Mountain & Pacific\",\"primaryLabelValue\":\"Coverall Mountain & Pacific\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CraigMichaels\",\"primaryLabelValue\":\"CraigMichaels\"}},{\"attributeHeader\":{\"labelValue\":\"Cravath, Swaine & Moore\",\"primaryLabelValue\":\"Cravath, Swaine & Moore\"}},{\"attributeHeader\":{\"labelValue\":\"Credico\",\"primaryLabelValue\":\"Credico\"}},{\"attributeHeader\":{\"labelValue\":\"Crimson Consulting Group\",\"primaryLabelValue\":\"Crimson Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"CriticalTool\",\"primaryLabelValue\":\"CriticalTool\"}},{\"attributeHeader\":{\"labelValue\":\"Crown Partners\",\"primaryLabelValue\":\"Crown Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"CTL Engineering\",\"primaryLabelValue\":\"CTL Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cue Data Services\",\"primaryLabelValue\":\"Cue Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cumberland Consulting Group\",\"primaryLabelValue\":\"Cumberland Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"CurrentMarketing\",\"primaryLabelValue\":\"CurrentMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Curry's Auto Service\",\"primaryLabelValue\":\"Curry's Auto Service\"}},{\"attributeHeader\":{\"labelValue\":\"CustomInk\",\"primaryLabelValue\":\"CustomInk\"}},{\"attributeHeader\":{\"labelValue\":\"Cybera\",\"primaryLabelValue\":\"Cybera\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"CyraCom International\",\"primaryLabelValue\":\"CyraCom International\"}},{\"attributeHeader\":{\"labelValue\":\"Daddies Board Shop\",\"primaryLabelValue\":\"Daddies Board Shop\"}},{\"attributeHeader\":{\"labelValue\":\"Data Systems Analysts\",\"primaryLabelValue\":\"Data Systems Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Dataprise\",\"primaryLabelValue\":\"Dataprise\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"DCO Distribution\",\"primaryLabelValue\":\"DCO Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"DDS Companies\",\"primaryLabelValue\":\"DDS Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debevoise & Plimpton\",\"primaryLabelValue\":\"Debevoise & Plimpton\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Solutions & Strategies\",\"primaryLabelValue\":\"Delta Solutions & Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denihan Hospitality Group\",\"primaryLabelValue\":\"Denihan Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denim Group\",\"primaryLabelValue\":\"Denim Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Derstine's Foodservice Distributor\",\"primaryLabelValue\":\"Derstine's Foodservice Distributor\"}},{\"attributeHeader\":{\"labelValue\":\"Diaspark\",\"primaryLabelValue\":\"Diaspark\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Financial Group\",\"primaryLabelValue\":\"Digital Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Gateway\",\"primaryLabelValue\":\"Digital Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Insurance\",\"primaryLabelValue\":\"Digital Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"Discovery Outsourcing\",\"primaryLabelValue\":\"Discovery Outsourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Dish One Satellite\",\"primaryLabelValue\":\"Dish One Satellite\"}},{\"attributeHeader\":{\"labelValue\":\"Diversant\",\"primaryLabelValue\":\"Diversant\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Computer Supplies\",\"primaryLabelValue\":\"Diversified Computer Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"DNT Environmental Services\",\"primaryLabelValue\":\"DNT Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"Document Technologies\",\"primaryLabelValue\":\"Document Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Docusource Print Management\",\"primaryLabelValue\":\"Docusource Print Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dogtopia\",\"primaryLabelValue\":\"Dogtopia\"}},{\"attributeHeader\":{\"labelValue\":\"Doig Corporation\",\"primaryLabelValue\":\"Doig Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dorsey & Whitney\",\"primaryLabelValue\":\"Dorsey & Whitney\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Dynamics\",\"primaryLabelValue\":\"Douglas Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Dr. Fresh\",\"primaryLabelValue\":\"Dr. Fresh\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"DSP Clinical Research\",\"primaryLabelValue\":\"DSP Clinical Research\"}},{\"attributeHeader\":{\"labelValue\":\"DSR Management\",\"primaryLabelValue\":\"DSR Management\"}},{\"attributeHeader\":{\"labelValue\":\"Duane Morris\",\"primaryLabelValue\":\"Duane Morris\"}},{\"attributeHeader\":{\"labelValue\":\"Ductz\",\"primaryLabelValue\":\"Ductz\"}},{\"attributeHeader\":{\"labelValue\":\"Duffey Petrosky\",\"primaryLabelValue\":\"Duffey Petrosky\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"Dykema Gossett\",\"primaryLabelValue\":\"Dykema Gossett\"}},{\"attributeHeader\":{\"labelValue\":\"Dymax\",\"primaryLabelValue\":\"Dymax\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Systems\",\"primaryLabelValue\":\"Dynamic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Exhibits\",\"primaryLabelValue\":\"E&E Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"EAC Product Development Solutions\",\"primaryLabelValue\":\"EAC Product Development Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Productivity Solutions\",\"primaryLabelValue\":\"Eagle Productivity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Promotions\",\"primaryLabelValue\":\"Eagle Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Earl & Brown\",\"primaryLabelValue\":\"Earl & Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Earth Supplied Products\",\"primaryLabelValue\":\"Earth Supplied Products\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Land Management\",\"primaryLabelValue\":\"Eastern Land Management\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"e-brilliance\",\"primaryLabelValue\":\"e-brilliance\"}},{\"attributeHeader\":{\"labelValue\":\"ECI\",\"primaryLabelValue\":\"ECI\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eclaro International\",\"primaryLabelValue\":\"Eclaro International\"}},{\"attributeHeader\":{\"labelValue\":\"ECSI\",\"primaryLabelValue\":\"ECSI\"}},{\"attributeHeader\":{\"labelValue\":\"EDI\",\"primaryLabelValue\":\"EDI\"}},{\"attributeHeader\":{\"labelValue\":\"Edible Arrangements International\",\"primaryLabelValue\":\"Edible Arrangements International\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Options\",\"primaryLabelValue\":\"Educational Options\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Tools\",\"primaryLabelValue\":\"Educational Tools\"}},{\"attributeHeader\":{\"labelValue\":\"EFI Polymers\",\"primaryLabelValue\":\"EFI Polymers\"}},{\"attributeHeader\":{\"labelValue\":\"Eliassen Group\",\"primaryLabelValue\":\"Eliassen Group\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Food Company\",\"primaryLabelValue\":\"Elite Food Company\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"EM-Assist\",\"primaryLabelValue\":\"EM-Assist\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Embrace Home Loans\",\"primaryLabelValue\":\"Embrace Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empirix\",\"primaryLabelValue\":\"Empirix\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Curtailment Specialists\",\"primaryLabelValue\":\"Energy Curtailment Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Enginuity\",\"primaryLabelValue\":\"Enginuity\"}},{\"attributeHeader\":{\"labelValue\":\"English + Associates Architects\",\"primaryLabelValue\":\"English + Associates Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy the City\",\"primaryLabelValue\":\"Enjoy the City\"}},{\"attributeHeader\":{\"labelValue\":\"Enlighten\",\"primaryLabelValue\":\"Enlighten\"}},{\"attributeHeader\":{\"labelValue\":\"Enrich IT\",\"primaryLabelValue\":\"Enrich IT\"}},{\"attributeHeader\":{\"labelValue\":\"Enseo\",\"primaryLabelValue\":\"Enseo\"}},{\"attributeHeader\":{\"labelValue\":\"Entaire\",\"primaryLabelValue\":\"Entaire\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Entertainment Earth\",\"primaryLabelValue\":\"Entertainment Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Entisys Solutions\",\"primaryLabelValue\":\"Entisys Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EnTitle Insurance\",\"primaryLabelValue\":\"EnTitle Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Envirocon Technologies\",\"primaryLabelValue\":\"Envirocon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"EPE\",\"primaryLabelValue\":\"EPE\"}},{\"attributeHeader\":{\"labelValue\":\"EPIC Insurance Brokers\",\"primaryLabelValue\":\"EPIC Insurance Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"Epocrates\",\"primaryLabelValue\":\"Epocrates\"}},{\"attributeHeader\":{\"labelValue\":\"ePrize\",\"primaryLabelValue\":\"ePrize\"}},{\"attributeHeader\":{\"labelValue\":\"Equator Estate Coffees & Teas\",\"primaryLabelValue\":\"Equator Estate Coffees & Teas\"}},{\"attributeHeader\":{\"labelValue\":\"ERC\",\"primaryLabelValue\":\"ERC\"}},{\"attributeHeader\":{\"labelValue\":\"e-Rewards Market Research\",\"primaryLabelValue\":\"e-Rewards Market Research\"}},{\"attributeHeader\":{\"labelValue\":\"Ergotron\",\"primaryLabelValue\":\"Ergotron\"}},{\"attributeHeader\":{\"labelValue\":\"Eriksen Translations\",\"primaryLabelValue\":\"Eriksen Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Errand Solutions\",\"primaryLabelValue\":\"Errand Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Escalate Media\",\"primaryLabelValue\":\"Escalate Media\"}},{\"attributeHeader\":{\"labelValue\":\"ESi Acquisition\",\"primaryLabelValue\":\"ESi Acquisition\"}},{\"attributeHeader\":{\"labelValue\":\"ESN\",\"primaryLabelValue\":\"ESN\"}},{\"attributeHeader\":{\"labelValue\":\"Essai\",\"primaryLabelValue\":\"Essai\"}},{\"attributeHeader\":{\"labelValue\":\"e-Storm International\",\"primaryLabelValue\":\"e-Storm International\"}},{\"attributeHeader\":{\"labelValue\":\"ESW Partners\",\"primaryLabelValue\":\"ESW Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ETC Institute\",\"primaryLabelValue\":\"ETC Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Europa Sports Products\",\"primaryLabelValue\":\"Europa Sports Products\"}},{\"attributeHeader\":{\"labelValue\":\"EventPro Strategies\",\"primaryLabelValue\":\"EventPro Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Eview 360\",\"primaryLabelValue\":\"Eview 360\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve Media\",\"primaryLabelValue\":\"Evolve Media\"}},{\"attributeHeader\":{\"labelValue\":\"ExactTarget\",\"primaryLabelValue\":\"ExactTarget\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Integrated Systems\",\"primaryLabelValue\":\"Excalibur Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Excella Consulting\",\"primaryLabelValue\":\"Excella Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Exhibit Edge\",\"primaryLabelValue\":\"Exhibit Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Expedited Logistics and Freight Services\",\"primaryLabelValue\":\"Expedited Logistics and Freight Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Expesite\",\"primaryLabelValue\":\"Expesite\"}},{\"attributeHeader\":{\"labelValue\":\"Explore Consulting\",\"primaryLabelValue\":\"Explore Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"ExtensionEngine\",\"primaryLabelValue\":\"ExtensionEngine\"}},{\"attributeHeader\":{\"labelValue\":\"eZanga.com\",\"primaryLabelValue\":\"eZanga.com\"}},{\"attributeHeader\":{\"labelValue\":\"F1 Computer Solutions\",\"primaryLabelValue\":\"F1 Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Facility Wizard Software\",\"primaryLabelValue\":\"Facility Wizard Software\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon International Bank\",\"primaryLabelValue\":\"Falcon International Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Farylrobin\",\"primaryLabelValue\":\"Farylrobin\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Switch\",\"primaryLabelValue\":\"Fast Switch\"}},{\"attributeHeader\":{\"labelValue\":\"Fast-Fix Jewelry\",\"primaryLabelValue\":\"Fast-Fix Jewelry\"}},{\"attributeHeader\":{\"labelValue\":\"FasTracKids International\",\"primaryLabelValue\":\"FasTracKids International\"}},{\"attributeHeader\":{\"labelValue\":\"FeatureTel\",\"primaryLabelValue\":\"FeatureTel\"}},{\"attributeHeader\":{\"labelValue\":\"FedConcepts\",\"primaryLabelValue\":\"FedConcepts\"}},{\"attributeHeader\":{\"labelValue\":\"Fetch Technologies\",\"primaryLabelValue\":\"Fetch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiberall\",\"primaryLabelValue\":\"Fiberall\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertech Networks\",\"primaryLabelValue\":\"Fibertech Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fieldtex Products\",\"primaryLabelValue\":\"Fieldtex Products\"}},{\"attributeHeader\":{\"labelValue\":\"Filmtools\",\"primaryLabelValue\":\"Filmtools\"}},{\"attributeHeader\":{\"labelValue\":\"Finale Desserterie & Bakery\",\"primaryLabelValue\":\"Finale Desserterie & Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Engines\",\"primaryLabelValue\":\"Financial Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fire-Dex\",\"primaryLabelValue\":\"Fire-Dex\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"First American Equipment Finance\",\"primaryLabelValue\":\"First American Equipment Finance\"}},{\"attributeHeader\":{\"labelValue\":\"FirsTrust Mortgage\",\"primaryLabelValue\":\"FirsTrust Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Fish Window Cleaning Services\",\"primaryLabelValue\":\"Fish Window Cleaning Services\"}},{\"attributeHeader\":{\"labelValue\":\"FishNet Security\",\"primaryLabelValue\":\"FishNet Security\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzgerald Analytics\",\"primaryLabelValue\":\"Fitzgerald Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzpatrick, Cella, Harper & Scinto\",\"primaryLabelValue\":\"Fitzpatrick, Cella, Harper & Scinto\"}},{\"attributeHeader\":{\"labelValue\":\"Five9\",\"primaryLabelValue\":\"Five9\"}},{\"attributeHeader\":{\"labelValue\":\"Flatirons Solutions\",\"primaryLabelValue\":\"Flatirons Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Pie Pizzaria\",\"primaryLabelValue\":\"Flying Pie Pizzaria\"}},{\"attributeHeader\":{\"labelValue\":\"Foley Hoag\",\"primaryLabelValue\":\"Foley Hoag\"}},{\"attributeHeader\":{\"labelValue\":\"FONA International\",\"primaryLabelValue\":\"FONA International\"}},{\"attributeHeader\":{\"labelValue\":\"Foot Petals\",\"primaryLabelValue\":\"Foot Petals\"}},{\"attributeHeader\":{\"labelValue\":\"Force Marketing\",\"primaryLabelValue\":\"Force Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forman Motorsport\",\"primaryLabelValue\":\"Forman Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Construction\",\"primaryLabelValue\":\"Fortis Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Fortune-Johnson\",\"primaryLabelValue\":\"Fortune-Johnson\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Fuel Belt\",\"primaryLabelValue\":\"Fuel Belt\"}},{\"attributeHeader\":{\"labelValue\":\"Fulbright & Jaworski\",\"primaryLabelValue\":\"Fulbright & Jaworski\"}},{\"attributeHeader\":{\"labelValue\":\"Fuse\",\"primaryLabelValue\":\"Fuse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Solutions\",\"primaryLabelValue\":\"Fusion Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Systems\",\"primaryLabelValue\":\"Fusion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"FusionStorm\",\"primaryLabelValue\":\"FusionStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Builders Group\",\"primaryLabelValue\":\"Futura Builders Group\"}},{\"attributeHeader\":{\"labelValue\":\"Future Force Personnel\",\"primaryLabelValue\":\"Future Force Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Future Research\",\"primaryLabelValue\":\"Future Research\"}},{\"attributeHeader\":{\"labelValue\":\"FXCM\",\"primaryLabelValue\":\"FXCM\"}},{\"attributeHeader\":{\"labelValue\":\"GaN Corporation\",\"primaryLabelValue\":\"GaN Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Gateway Ticketing Systems\",\"primaryLabelValue\":\"Gateway Ticketing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gateworks\",\"primaryLabelValue\":\"Gateworks\"}},{\"attributeHeader\":{\"labelValue\":\"GB Collects\",\"primaryLabelValue\":\"GB Collects\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"generationE Technologies\",\"primaryLabelValue\":\"generationE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Geocent\",\"primaryLabelValue\":\"Geocent\"}},{\"attributeHeader\":{\"labelValue\":\"geographIT\",\"primaryLabelValue\":\"geographIT\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Logical\",\"primaryLabelValue\":\"Geo-Logical\"}},{\"attributeHeader\":{\"labelValue\":\"GeoStructures\",\"primaryLabelValue\":\"GeoStructures\"}},{\"attributeHeader\":{\"labelValue\":\"Gila\",\"primaryLabelValue\":\"Gila\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Giovanni Food\",\"primaryLabelValue\":\"Giovanni Food\"}},{\"attributeHeader\":{\"labelValue\":\"Giroux Glass\",\"primaryLabelValue\":\"Giroux Glass\"}},{\"attributeHeader\":{\"labelValue\":\"GIS Planning\",\"primaryLabelValue\":\"GIS Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Technology Resources\",\"primaryLabelValue\":\"Global Technology Resources\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalLogic\",\"primaryLabelValue\":\"GlobalLogic\"}},{\"attributeHeader\":{\"labelValue\":\"GNS\",\"primaryLabelValue\":\"GNS\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Goble & Associates\",\"primaryLabelValue\":\"Goble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Star Mortgage Financial Group\",\"primaryLabelValue\":\"Gold Star Mortgage Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Golfballs.com\",\"primaryLabelValue\":\"Golfballs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwives Hors d'oeuvres\",\"primaryLabelValue\":\"Goodwives Hors d'oeuvres\"}},{\"attributeHeader\":{\"labelValue\":\"Gordmans Stores\",\"primaryLabelValue\":\"Gordmans Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GRA\",\"primaryLabelValue\":\"GRA\"}},{\"attributeHeader\":{\"labelValue\":\"Grandstream Networks\",\"primaryLabelValue\":\"Grandstream Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Granicus\",\"primaryLabelValue\":\"Granicus\"}},{\"attributeHeader\":{\"labelValue\":\"Granite Telecommunications\",\"primaryLabelValue\":\"Granite Telecommunications\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GreenSoft Solutions\",\"primaryLabelValue\":\"GreenSoft Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Greentarget Global Group\",\"primaryLabelValue\":\"Greentarget Global Group\"}},{\"attributeHeader\":{\"labelValue\":\"Griswold International\",\"primaryLabelValue\":\"Griswold International\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"Group O\",\"primaryLabelValue\":\"Group O\"}},{\"attributeHeader\":{\"labelValue\":\"Groupware Technology\",\"primaryLabelValue\":\"Groupware Technology\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Payroll Services\",\"primaryLabelValue\":\"GTM Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guardian Power Protection Services\",\"primaryLabelValue\":\"Guardian Power Protection Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guident Technologies\",\"primaryLabelValue\":\"Guident Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HaloSource\",\"primaryLabelValue\":\"HaloSource\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Communications\",\"primaryLabelValue\":\"Hanson Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Harbinger Partners\",\"primaryLabelValue\":\"Harbinger Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Harbor Financial Services\",\"primaryLabelValue\":\"Harbor Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hardy Diagnostics\",\"primaryLabelValue\":\"Hardy Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"Harmonia\",\"primaryLabelValue\":\"Harmonia\"}},{\"attributeHeader\":{\"labelValue\":\"Haynes and Boone\",\"primaryLabelValue\":\"Haynes and Boone\"}},{\"attributeHeader\":{\"labelValue\":\"HDR\",\"primaryLabelValue\":\"HDR\"}},{\"attributeHeader\":{\"labelValue\":\"Health Designs\",\"primaryLabelValue\":\"Health Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Communications Group\",\"primaryLabelValue\":\"Healthcare Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthHelp\",\"primaryLabelValue\":\"HealthHelp\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Healthx\",\"primaryLabelValue\":\"Healthx\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"High Performance Technologies\",\"primaryLabelValue\":\"High Performance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"High Tech Innovations\",\"primaryLabelValue\":\"High Tech Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"Hired Hands\",\"primaryLabelValue\":\"Hired Hands\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"Hissho Sushi\",\"primaryLabelValue\":\"Hissho Sushi\"}},{\"attributeHeader\":{\"labelValue\":\"HMC Architects\",\"primaryLabelValue\":\"HMC Architects\"}},{\"attributeHeader\":{\"labelValue\":\"HMT Associates\",\"primaryLabelValue\":\"HMT Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (TX)\",\"primaryLabelValue\":\"Home Instead Senior Care (TX)\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Consulting\",\"primaryLabelValue\":\"Horizon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Hot Studio\",\"primaryLabelValue\":\"Hot Studio\"}},{\"attributeHeader\":{\"labelValue\":\"Howrey\",\"primaryLabelValue\":\"Howrey\"}},{\"attributeHeader\":{\"labelValue\":\"HSA Engineers & Scientists\",\"primaryLabelValue\":\"HSA Engineers & Scientists\"}},{\"attributeHeader\":{\"labelValue\":\"HTC Global Services\",\"primaryLabelValue\":\"HTC Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Hunter Technical Resources\",\"primaryLabelValue\":\"Hunter Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Hybrid Transit Systems\",\"primaryLabelValue\":\"Hybrid Transit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"I Play\",\"primaryLabelValue\":\"I Play\"}},{\"attributeHeader\":{\"labelValue\":\"i9 Sports\",\"primaryLabelValue\":\"i9 Sports\"}},{\"attributeHeader\":{\"labelValue\":\"IASIS Healthcare\",\"primaryLabelValue\":\"IASIS Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ice Miller\",\"primaryLabelValue\":\"Ice Miller\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"iFAX Solutions\",\"primaryLabelValue\":\"iFAX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iFixit\",\"primaryLabelValue\":\"iFixit\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Image Locations\",\"primaryLabelValue\":\"Image Locations\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging Alliance Group\",\"primaryLabelValue\":\"Imaging Alliance Group\"}},{\"attributeHeader\":{\"labelValue\":\"iMarc\",\"primaryLabelValue\":\"iMarc\"}},{\"attributeHeader\":{\"labelValue\":\"Impex Group\",\"primaryLabelValue\":\"Impex Group\"}},{\"attributeHeader\":{\"labelValue\":\"Incisive Surgical\",\"primaryLabelValue\":\"Incisive Surgical\"}},{\"attributeHeader\":{\"labelValue\":\"Independent Financial Group\",\"primaryLabelValue\":\"Independent Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Industrial Solutions\",\"primaryLabelValue\":\"Industrial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iNET Interactive\",\"primaryLabelValue\":\"iNET Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Infinit Technology Solutions\",\"primaryLabelValue\":\"Infinit Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Consulting Solutions\",\"primaryLabelValue\":\"Infinity Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Systems Engineering\",\"primaryLabelValue\":\"Infinity Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Info Retail\",\"primaryLabelValue\":\"Info Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Information Innovators\",\"primaryLabelValue\":\"Information Innovators\"}},{\"attributeHeader\":{\"labelValue\":\"Information Systems Solutions\",\"primaryLabelValue\":\"Information Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Infoyogi\",\"primaryLabelValue\":\"Infoyogi\"}},{\"attributeHeader\":{\"labelValue\":\"Inkgrabber.com\",\"primaryLabelValue\":\"Inkgrabber.com\"}},{\"attributeHeader\":{\"labelValue\":\"Inland Pipe Rehabilitation\",\"primaryLabelValue\":\"Inland Pipe Rehabilitation\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Computing Systems\",\"primaryLabelValue\":\"Innovative Computing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Office Solutions\",\"primaryLabelValue\":\"Innovative Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Staffing\",\"primaryLabelValue\":\"Innovative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Global\",\"primaryLabelValue\":\"Insight Global\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Sourcing Group\",\"primaryLabelValue\":\"Insight Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Biotechnical\",\"primaryLabelValue\":\"Integra Biotechnical\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Realty Resources\",\"primaryLabelValue\":\"Integra Realty Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integral Senior Living\",\"primaryLabelValue\":\"Integral Senior Living\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Control\",\"primaryLabelValue\":\"Integrated Control\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design\",\"primaryLabelValue\":\"Integrated Design\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design Group\",\"primaryLabelValue\":\"Integrated Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Resources\",\"primaryLabelValue\":\"Integrated Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Partners\",\"primaryLabelValue\":\"Integration Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Applications\",\"primaryLabelValue\":\"Integrity Applications\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"Intelius\",\"primaryLabelValue\":\"Intelius\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Software Solutions\",\"primaryLabelValue\":\"Intelligent Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (TN)\",\"primaryLabelValue\":\"Interactive Solutions (TN)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Foods\",\"primaryLabelValue\":\"Intermark Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Intermarkets\",\"primaryLabelValue\":\"Intermarkets\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"International Software Systems\",\"primaryLabelValue\":\"International Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate International\",\"primaryLabelValue\":\"Interstate International\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate Transport\",\"primaryLabelValue\":\"Interstate Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Intetics\",\"primaryLabelValue\":\"Intetics\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"Irell & Manella\",\"primaryLabelValue\":\"Irell & Manella\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Isis Parenting\",\"primaryLabelValue\":\"Isis Parenting\"}},{\"attributeHeader\":{\"labelValue\":\"Island\",\"primaryLabelValue\":\"Island\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Laboratories\",\"primaryLabelValue\":\"Isotech Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"Issue Media Group\",\"primaryLabelValue\":\"Issue Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"IST Management Services\",\"primaryLabelValue\":\"IST Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"iStrategy Solutions\",\"primaryLabelValue\":\"iStrategy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ISYS Technologies\",\"primaryLabelValue\":\"ISYS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IT First Source\",\"primaryLabelValue\":\"IT First Source\"}},{\"attributeHeader\":{\"labelValue\":\"IT Solutions Consulting\",\"primaryLabelValue\":\"IT Solutions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iTech US\",\"primaryLabelValue\":\"iTech US\"}},{\"attributeHeader\":{\"labelValue\":\"IT-Lifeline\",\"primaryLabelValue\":\"IT-Lifeline\"}},{\"attributeHeader\":{\"labelValue\":\"iVenture Solutions\",\"primaryLabelValue\":\"iVenture Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Clancy\",\"primaryLabelValue\":\"J.R. Clancy\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jackson Walker\",\"primaryLabelValue\":\"Jackson Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Jenner & Block\",\"primaryLabelValue\":\"Jenner & Block\"}},{\"attributeHeader\":{\"labelValue\":\"JG Black Book of Travel\",\"primaryLabelValue\":\"JG Black Book of Travel\"}},{\"attributeHeader\":{\"labelValue\":\"JGear\",\"primaryLabelValue\":\"JGear\"}},{\"attributeHeader\":{\"labelValue\":\"JHE Production Group\",\"primaryLabelValue\":\"JHE Production Group\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"JMC Holdings\",\"primaryLabelValue\":\"JMC Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Johnny Cupcakes\",\"primaryLabelValue\":\"Johnny Cupcakes\"}},{\"attributeHeader\":{\"labelValue\":\"Jo-Kell\",\"primaryLabelValue\":\"Jo-Kell\"}},{\"attributeHeader\":{\"labelValue\":\"JSMN International\",\"primaryLabelValue\":\"JSMN International\"}},{\"attributeHeader\":{\"labelValue\":\"Junk my Car\",\"primaryLabelValue\":\"Junk my Car\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Kahler Automation\",\"primaryLabelValue\":\"Kahler Automation\"}},{\"attributeHeader\":{\"labelValue\":\"Kaizen Technologies\",\"primaryLabelValue\":\"Kaizen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kaye Scholer\",\"primaryLabelValue\":\"Kaye Scholer\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Healthcare\",\"primaryLabelValue\":\"Keen Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Kelly's Industrial Services\",\"primaryLabelValue\":\"Kelly's Industrial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Kelton Research\",\"primaryLabelValue\":\"Kelton Research\"}},{\"attributeHeader\":{\"labelValue\":\"KeyLogic Systems\",\"primaryLabelValue\":\"KeyLogic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kickball.com\",\"primaryLabelValue\":\"Kickball.com\"}},{\"attributeHeader\":{\"labelValue\":\"Kids II\",\"primaryLabelValue\":\"Kids II\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Kinetek Consulting\",\"primaryLabelValue\":\"Kinetek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"King Enterprise Group\",\"primaryLabelValue\":\"King Enterprise Group\"}},{\"attributeHeader\":{\"labelValue\":\"Kingfisher Systems\",\"primaryLabelValue\":\"Kingfisher Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kingston Technology\",\"primaryLabelValue\":\"Kingston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"KIRA\",\"primaryLabelValue\":\"KIRA\"}},{\"attributeHeader\":{\"labelValue\":\"Kirkland & Ellis\",\"primaryLabelValue\":\"Kirkland & Ellis\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"KJ Technology Consulting\",\"primaryLabelValue\":\"KJ Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Klein Buendel\",\"primaryLabelValue\":\"Klein Buendel\"}},{\"attributeHeader\":{\"labelValue\":\"KMRD Partners\",\"primaryLabelValue\":\"KMRD Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Knichel Logistics\",\"primaryLabelValue\":\"Knichel Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Marketing\",\"primaryLabelValue\":\"Knowledge Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Mosaic\",\"primaryLabelValue\":\"Knowledge Mosaic\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeCentrix\",\"primaryLabelValue\":\"KnowledgeCentrix\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Krupp Kommunications\",\"primaryLabelValue\":\"Krupp Kommunications\"}},{\"attributeHeader\":{\"labelValue\":\"KTI\",\"primaryLabelValue\":\"KTI\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"Labor Law Center\",\"primaryLabelValue\":\"Labor Law Center\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Technologies\",\"primaryLabelValue\":\"Laser Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lastar\",\"primaryLabelValue\":\"Lastar\"}},{\"attributeHeader\":{\"labelValue\":\"Lathrop & Gage\",\"primaryLabelValue\":\"Lathrop & Gage\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Launch\",\"primaryLabelValue\":\"Launch\"}},{\"attributeHeader\":{\"labelValue\":\"Laurus Technologies\",\"primaryLabelValue\":\"Laurus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lazorpoint\",\"primaryLabelValue\":\"Lazorpoint\"}},{\"attributeHeader\":{\"labelValue\":\"LeadCreations.com\",\"primaryLabelValue\":\"LeadCreations.com\"}},{\"attributeHeader\":{\"labelValue\":\"LeadPile\",\"primaryLabelValue\":\"LeadPile\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lease A Sales Rep\",\"primaryLabelValue\":\"Lease A Sales Rep\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Financial Advisors\",\"primaryLabelValue\":\"Legend Financial Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Healthcare\",\"primaryLabelValue\":\"Legend Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Levick Strategic Communications\",\"primaryLabelValue\":\"Levick Strategic Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Brisbois Bisgaard & Smith\",\"primaryLabelValue\":\"Lewis Brisbois Bisgaard & Smith\"}},{\"attributeHeader\":{\"labelValue\":\"LFA Group\",\"primaryLabelValue\":\"LFA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lifematters\",\"primaryLabelValue\":\"Lifematters\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Lighthouse Placement Services\",\"primaryLabelValue\":\"Lighthouse Placement Services\"}},{\"attributeHeader\":{\"labelValue\":\"LightWorks Optics\",\"primaryLabelValue\":\"LightWorks Optics\"}},{\"attributeHeader\":{\"labelValue\":\"Lime Brokerage\",\"primaryLabelValue\":\"Lime Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Lindy Paving\",\"primaryLabelValue\":\"Lindy Paving\"}},{\"attributeHeader\":{\"labelValue\":\"Line 6\",\"primaryLabelValue\":\"Line 6\"}},{\"attributeHeader\":{\"labelValue\":\"LiqueColor InkJet Group\",\"primaryLabelValue\":\"LiqueColor InkJet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Litle & Co.\",\"primaryLabelValue\":\"Litle & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Living Direct\",\"primaryLabelValue\":\"Living Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location3 Media\",\"primaryLabelValue\":\"Location3 Media\"}},{\"attributeHeader\":{\"labelValue\":\"Loffler Companies\",\"primaryLabelValue\":\"Loffler Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Planet\",\"primaryLabelValue\":\"Logic Planet\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Supply\",\"primaryLabelValue\":\"Logic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Trends\",\"primaryLabelValue\":\"Logic Trends\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Choice Technologies\",\"primaryLabelValue\":\"Logical Choice Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Management Solutions\",\"primaryLabelValue\":\"Logistics Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LogoSportswear.com\",\"primaryLabelValue\":\"LogoSportswear.com\"}},{\"attributeHeader\":{\"labelValue\":\"Long Term Solutions\",\"primaryLabelValue\":\"Long Term Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lopez Negrete Communications\",\"primaryLabelValue\":\"Lopez Negrete Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Lowenstein Sandler\",\"primaryLabelValue\":\"Lowenstein Sandler\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"Lynx Network Group\",\"primaryLabelValue\":\"Lynx Network Group\"}},{\"attributeHeader\":{\"labelValue\":\"Lyons Consulting Group\",\"primaryLabelValue\":\"Lyons Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"M/E Engineering\",\"primaryLabelValue\":\"M/E Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mabbett & Associates\",\"primaryLabelValue\":\"Mabbett & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MacFarlane Pheasants\",\"primaryLabelValue\":\"MacFarlane Pheasants\"}},{\"attributeHeader\":{\"labelValue\":\"Magnani Caruso Dutton\",\"primaryLabelValue\":\"Magnani Caruso Dutton\"}},{\"attributeHeader\":{\"labelValue\":\"Magnetic\",\"primaryLabelValue\":\"Magnetic\"}},{\"attributeHeader\":{\"labelValue\":\"Malcap Mortgage\",\"primaryLabelValue\":\"Malcap Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Maldonado Nursery & Landscaping\",\"primaryLabelValue\":\"Maldonado Nursery & Landscaping\"}},{\"attributeHeader\":{\"labelValue\":\"Malone AirCharter\",\"primaryLabelValue\":\"Malone AirCharter\"}},{\"attributeHeader\":{\"labelValue\":\"Managed Business Solutions\",\"primaryLabelValue\":\"Managed Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mansell Group\",\"primaryLabelValue\":\"Mansell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield Oil\",\"primaryLabelValue\":\"Mansfield Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Mantz Automation\",\"primaryLabelValue\":\"Mantz Automation\"}},{\"attributeHeader\":{\"labelValue\":\"MAQ Software\",\"primaryLabelValue\":\"MAQ Software\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Direct\",\"primaryLabelValue\":\"Marketing Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"MarketResearch.com\",\"primaryLabelValue\":\"MarketResearch.com\"}},{\"attributeHeader\":{\"labelValue\":\"MarkMaster\",\"primaryLabelValue\":\"MarkMaster\"}},{\"attributeHeader\":{\"labelValue\":\"Marlabs\",\"primaryLabelValue\":\"Marlabs\"}},{\"attributeHeader\":{\"labelValue\":\"Mathnasium Learning Centers\",\"primaryLabelValue\":\"Mathnasium Learning Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Networks\",\"primaryLabelValue\":\"Maverick Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Max Borges Agency\",\"primaryLabelValue\":\"Max Borges Agency\"}},{\"attributeHeader\":{\"labelValue\":\"MBS Dev\",\"primaryLabelValue\":\"MBS Dev\"}},{\"attributeHeader\":{\"labelValue\":\"McCarter & English\",\"primaryLabelValue\":\"McCarter & English\"}},{\"attributeHeader\":{\"labelValue\":\"McGrath Systems\",\"primaryLabelValue\":\"McGrath Systems\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Communications\",\"primaryLabelValue\":\"McGraw Communications\"}},{\"attributeHeader\":{\"labelValue\":\"McKenna Long & Aldridge\",\"primaryLabelValue\":\"McKenna Long & Aldridge\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Meadows Urquhart Acree & Cook\",\"primaryLabelValue\":\"Meadows Urquhart Acree & Cook\"}},{\"attributeHeader\":{\"labelValue\":\"Mechanical Reps\",\"primaryLabelValue\":\"Mechanical Reps\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MEDEX Global Solutions\",\"primaryLabelValue\":\"MEDEX Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"Medica HealthCare Plans\",\"primaryLabelValue\":\"Medica HealthCare Plans\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Emergency Professionals\",\"primaryLabelValue\":\"Medical Emergency Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Management Options\",\"primaryLabelValue\":\"Medical Management Options\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Solutions\",\"primaryLabelValue\":\"Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Transaction Billing\",\"primaryLabelValue\":\"Medical Transaction Billing\"}},{\"attributeHeader\":{\"labelValue\":\"MedSource\",\"primaryLabelValue\":\"MedSource\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"MEI Technologies\",\"primaryLabelValue\":\"MEI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Melink\",\"primaryLabelValue\":\"Melink\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Mentoring Minds\",\"primaryLabelValue\":\"Mentoring Minds\"}},{\"attributeHeader\":{\"labelValue\":\"Meras Engineering\",\"primaryLabelValue\":\"Meras Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Merced Systems\",\"primaryLabelValue\":\"Merced Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Services\",\"primaryLabelValue\":\"Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Home Mortgage\",\"primaryLabelValue\":\"Meridian Home Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Technologies\",\"primaryLabelValue\":\"Meridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Merrick Systems\",\"primaryLabelValue\":\"Merrick Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merrimak Capital\",\"primaryLabelValue\":\"Merrimak Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Merritt Group\",\"primaryLabelValue\":\"Merritt Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meta Pharmaceutical Services\",\"primaryLabelValue\":\"Meta Pharmaceutical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Metrokane\",\"primaryLabelValue\":\"Metrokane\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Microwize Technology\",\"primaryLabelValue\":\"Microwize Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Industrial Supply\",\"primaryLabelValue\":\"Midwest Industrial Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Milbank, Tweed, Hadley & McCloy\",\"primaryLabelValue\":\"Milbank, Tweed, Hadley & McCloy\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Communications Group\",\"primaryLabelValue\":\"Millennium Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Miller & Associates\",\"primaryLabelValue\":\"Miller & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Million Dollar Baby\",\"primaryLabelValue\":\"Million Dollar Baby\"}},{\"attributeHeader\":{\"labelValue\":\"Mimeo.com\",\"primaryLabelValue\":\"Mimeo.com\"}},{\"attributeHeader\":{\"labelValue\":\"MindLance\",\"primaryLabelValue\":\"MindLance\"}},{\"attributeHeader\":{\"labelValue\":\"Mindshare Technologies\",\"primaryLabelValue\":\"Mindshare Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"Mitratech\",\"primaryLabelValue\":\"Mitratech\"}},{\"attributeHeader\":{\"labelValue\":\"MNJ Technologies Direct\",\"primaryLabelValue\":\"MNJ Technologies Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Mobile One Courier & Logistics\",\"primaryLabelValue\":\"Mobile One Courier & Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MobilityWorks\",\"primaryLabelValue\":\"MobilityWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Molly Maid of Greater Austin Texas\",\"primaryLabelValue\":\"Molly Maid of Greater Austin Texas\"}},{\"attributeHeader\":{\"labelValue\":\"Momentum\",\"primaryLabelValue\":\"Momentum\"}},{\"attributeHeader\":{\"labelValue\":\"Mone't\",\"primaryLabelValue\":\"Mone't\"}},{\"attributeHeader\":{\"labelValue\":\"Money Clip Magazine\",\"primaryLabelValue\":\"Money Clip Magazine\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Montbleau & Associates\",\"primaryLabelValue\":\"Montbleau & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Moore Freight Service\",\"primaryLabelValue\":\"Moore Freight Service\"}},{\"attributeHeader\":{\"labelValue\":\"Morrison & Foerster\",\"primaryLabelValue\":\"Morrison & Foerster\"}},{\"attributeHeader\":{\"labelValue\":\"MotherNature.com\",\"primaryLabelValue\":\"MotherNature.com\"}},{\"attributeHeader\":{\"labelValue\":\"M-Pak\",\"primaryLabelValue\":\"M-Pak\"}},{\"attributeHeader\":{\"labelValue\":\"MRE Consulting\",\"primaryLabelValue\":\"MRE Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Multivision\",\"primaryLabelValue\":\"Multivision\"}},{\"attributeHeader\":{\"labelValue\":\"Murthy Law Firm\",\"primaryLabelValue\":\"Murthy Law Firm\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"MxSecure\",\"primaryLabelValue\":\"MxSecure\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Namifiers\",\"primaryLabelValue\":\"Namifiers\"}},{\"attributeHeader\":{\"labelValue\":\"Namtra Business Solutions\",\"primaryLabelValue\":\"Namtra Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"National Bankers Trust\",\"primaryLabelValue\":\"National Bankers Trust\"}},{\"attributeHeader\":{\"labelValue\":\"National Collegiate Scouting Association\",\"primaryLabelValue\":\"National Collegiate Scouting Association\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Ultrasound\",\"primaryLabelValue\":\"National Ultrasound\"}},{\"attributeHeader\":{\"labelValue\":\"NationLink Wireless\",\"primaryLabelValue\":\"NationLink Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Native Land Design\",\"primaryLabelValue\":\"Native Land Design\"}},{\"attributeHeader\":{\"labelValue\":\"NaturaLawn of America\",\"primaryLabelValue\":\"NaturaLawn of America\"}},{\"attributeHeader\":{\"labelValue\":\"Nautilus Environmental\",\"primaryLabelValue\":\"Nautilus Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Neace Lukens\",\"primaryLabelValue\":\"Neace Lukens\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Gamble & Associates\",\"primaryLabelValue\":\"Nelson Gamble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"NeoPhotonics\",\"primaryLabelValue\":\"NeoPhotonics\"}},{\"attributeHeader\":{\"labelValue\":\"Netchex\",\"primaryLabelValue\":\"Netchex\"}},{\"attributeHeader\":{\"labelValue\":\"NetConn Solutions\",\"primaryLabelValue\":\"NetConn Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"Network Hardware Resale\",\"primaryLabelValue\":\"Network Hardware Resale\"}},{\"attributeHeader\":{\"labelValue\":\"Network Outsource\",\"primaryLabelValue\":\"Network Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"NetworkIP\",\"primaryLabelValue\":\"NetworkIP\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"New Creature\",\"primaryLabelValue\":\"New Creature\"}},{\"attributeHeader\":{\"labelValue\":\"New Editions Consulting\",\"primaryLabelValue\":\"New Editions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"New Glarus Brewing\",\"primaryLabelValue\":\"New Glarus Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"NewBath\",\"primaryLabelValue\":\"NewBath\"}},{\"attributeHeader\":{\"labelValue\":\"Newmans Valves\",\"primaryLabelValue\":\"Newmans Valves\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexLevel Information Technology\",\"primaryLabelValue\":\"NexLevel Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Next Generation Wireless\",\"primaryLabelValue\":\"Next Generation Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Next Marketing\",\"primaryLabelValue\":\"Next Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Next Step Learning\",\"primaryLabelValue\":\"Next Step Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Nexum\",\"primaryLabelValue\":\"Nexum\"}},{\"attributeHeader\":{\"labelValue\":\"Nexus IS\",\"primaryLabelValue\":\"Nexus IS\"}},{\"attributeHeader\":{\"labelValue\":\"NGP Software\",\"primaryLabelValue\":\"NGP Software\"}},{\"attributeHeader\":{\"labelValue\":\"Nielsen-Kellerman\",\"primaryLabelValue\":\"Nielsen-Kellerman\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nixon Peabody\",\"primaryLabelValue\":\"Nixon Peabody\"}},{\"attributeHeader\":{\"labelValue\":\"n-Link\",\"primaryLabelValue\":\"n-Link\"}},{\"attributeHeader\":{\"labelValue\":\"NogginLabs\",\"primaryLabelValue\":\"NogginLabs\"}},{\"attributeHeader\":{\"labelValue\":\"Noodles & Company\",\"primaryLabelValue\":\"Noodles & Company\"}},{\"attributeHeader\":{\"labelValue\":\"North Shore Pediatric Therapy\",\"primaryLabelValue\":\"North Shore Pediatric Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"Northridge Systems\",\"primaryLabelValue\":\"Northridge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Crane Service\",\"primaryLabelValue\":\"Northwest Crane Service\"}},{\"attributeHeader\":{\"labelValue\":\"Nova Datacom\",\"primaryLabelValue\":\"Nova Datacom\"}},{\"attributeHeader\":{\"labelValue\":\"Novae\",\"primaryLabelValue\":\"Novae\"}},{\"attributeHeader\":{\"labelValue\":\"NovaVision\",\"primaryLabelValue\":\"NovaVision\"}},{\"attributeHeader\":{\"labelValue\":\"Novus Biologicals\",\"primaryLabelValue\":\"Novus Biologicals\"}},{\"attributeHeader\":{\"labelValue\":\"NRS\",\"primaryLabelValue\":\"NRS\"}},{\"attributeHeader\":{\"labelValue\":\"NT Concepts\",\"primaryLabelValue\":\"NT Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Nutrition S'Mart\",\"primaryLabelValue\":\"Nutrition S'Mart\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Nyhus Communications\",\"primaryLabelValue\":\"Nyhus Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OakTree Solutions\",\"primaryLabelValue\":\"OakTree Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Object CTalk\",\"primaryLabelValue\":\"Object CTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Observant\",\"primaryLabelValue\":\"Observant\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Oddcast\",\"primaryLabelValue\":\"Oddcast\"}},{\"attributeHeader\":{\"labelValue\":\"OfficePro\",\"primaryLabelValue\":\"OfficePro\"}},{\"attributeHeader\":{\"labelValue\":\"OfficeSource\",\"primaryLabelValue\":\"OfficeSource\"}},{\"attributeHeader\":{\"labelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\",\"primaryLabelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Ohio Power Tool\",\"primaryLabelValue\":\"Ohio Power Tool\"}},{\"attributeHeader\":{\"labelValue\":\"OmegaBlue\",\"primaryLabelValue\":\"OmegaBlue\"}},{\"attributeHeader\":{\"labelValue\":\"Omni Systems\",\"primaryLabelValue\":\"Omni Systems\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Systems\",\"primaryLabelValue\":\"One Stop Systems\"}},{\"attributeHeader\":{\"labelValue\":\"One to One Interactive\",\"primaryLabelValue\":\"One to One Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"OneCommand\",\"primaryLabelValue\":\"OneCommand\"}},{\"attributeHeader\":{\"labelValue\":\"OneNeck IT Services\",\"primaryLabelValue\":\"OneNeck IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Online Stores\",\"primaryLabelValue\":\"Online Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems International\",\"primaryLabelValue\":\"Open Systems International\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Systems\",\"primaryLabelValue\":\"Orbit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Organic Laboratories\",\"primaryLabelValue\":\"Organic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"OrthoBanc\",\"primaryLabelValue\":\"OrthoBanc\"}},{\"attributeHeader\":{\"labelValue\":\"Oscor\",\"primaryLabelValue\":\"Oscor\"}},{\"attributeHeader\":{\"labelValue\":\"OSi\",\"primaryLabelValue\":\"OSi\"}},{\"attributeHeader\":{\"labelValue\":\"OstermanCron\",\"primaryLabelValue\":\"OstermanCron\"}},{\"attributeHeader\":{\"labelValue\":\"Other World Computing\",\"primaryLabelValue\":\"Other World Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Travel Group\",\"primaryLabelValue\":\"Ovation Travel Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Dental Services\",\"primaryLabelValue\":\"Pacific Dental Services\"}},{\"attributeHeader\":{\"labelValue\":\"Page Southerland Page\",\"primaryLabelValue\":\"Page Southerland Page\"}},{\"attributeHeader\":{\"labelValue\":\"PainReliever.com\",\"primaryLabelValue\":\"PainReliever.com\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Papa Murphy's International\",\"primaryLabelValue\":\"Papa Murphy's International\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Paramore-Redd Online Marketing\",\"primaryLabelValue\":\"Paramore-Redd Online Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Parature\",\"primaryLabelValue\":\"Parature\"}},{\"attributeHeader\":{\"labelValue\":\"Parrish Services\",\"primaryLabelValue\":\"Parrish Services\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Consulting Services\",\"primaryLabelValue\":\"Partners Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Patton Boggs\",\"primaryLabelValue\":\"Patton Boggs\"}},{\"attributeHeader\":{\"labelValue\":\"PayChoice\",\"primaryLabelValue\":\"PayChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Alliance International\",\"primaryLabelValue\":\"Payment Alliance International\"}},{\"attributeHeader\":{\"labelValue\":\"PayReel\",\"primaryLabelValue\":\"PayReel\"}},{\"attributeHeader\":{\"labelValue\":\"Peaksware\",\"primaryLabelValue\":\"Peaksware\"}},{\"attributeHeader\":{\"labelValue\":\"Peek Packaging\",\"primaryLabelValue\":\"Peek Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Alliance\",\"primaryLabelValue\":\"Pegasus Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Pentadyne Power\",\"primaryLabelValue\":\"Pentadyne Power\"}},{\"attributeHeader\":{\"labelValue\":\"Perceptis\",\"primaryLabelValue\":\"Perceptis\"}},{\"attributeHeader\":{\"labelValue\":\"PercipEnz Technologies\",\"primaryLabelValue\":\"PercipEnz Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Media Group\",\"primaryLabelValue\":\"Performance Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins Coie\",\"primaryLabelValue\":\"Perkins Coie\"}},{\"attributeHeader\":{\"labelValue\":\"Personal Computer Systems\",\"primaryLabelValue\":\"Personal Computer Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Law\",\"primaryLabelValue\":\"Phoenix Law\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Manufacturing\",\"primaryLabelValue\":\"Phoenix Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Marketing International\",\"primaryLabelValue\":\"Phoenix Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Pilgrim Software\",\"primaryLabelValue\":\"Pilgrim Software\"}},{\"attributeHeader\":{\"labelValue\":\"Pinckney Hugo Group\",\"primaryLabelValue\":\"Pinckney Hugo Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Services\",\"primaryLabelValue\":\"Pinnacle Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Shoes\",\"primaryLabelValue\":\"Planet Shoes\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pleasant Hill Grain\",\"primaryLabelValue\":\"Pleasant Hill Grain\"}},{\"attributeHeader\":{\"labelValue\":\"PNT Marketing Services\",\"primaryLabelValue\":\"PNT Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Point Lighting\",\"primaryLabelValue\":\"Point Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Laboratories\",\"primaryLabelValue\":\"Polaris Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Popcorn Palace\",\"primaryLabelValue\":\"Popcorn Palace\"}},{\"attributeHeader\":{\"labelValue\":\"Portfolio Creative Staffing\",\"primaryLabelValue\":\"Portfolio Creative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Posh Boutique\",\"primaryLabelValue\":\"Posh Boutique\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Distribution\",\"primaryLabelValue\":\"Power Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Power Group\",\"primaryLabelValue\":\"Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Powertek\",\"primaryLabelValue\":\"Powertek\"}},{\"attributeHeader\":{\"labelValue\":\"Praetorian Group\",\"primaryLabelValue\":\"Praetorian Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie Quest Consulting\",\"primaryLabelValue\":\"Prairie Quest Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Development Services\",\"primaryLabelValue\":\"Precision Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Pipeline Solutions\",\"primaryLabelValue\":\"Precision Pipeline Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Care Partners\",\"primaryLabelValue\":\"Preferred Care Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Freezer Services\",\"primaryLabelValue\":\"Preferred Freezer Services\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Systems Solutions\",\"primaryLabelValue\":\"Preferred Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Healthcare Exchange\",\"primaryLabelValue\":\"Premier Healthcare Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Placement Media\",\"primaryLabelValue\":\"Premier Placement Media\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Presort Solutions\",\"primaryLabelValue\":\"Presort Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Primatics Financial\",\"primaryLabelValue\":\"Primatics Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Graphics\",\"primaryLabelValue\":\"Prime Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintGlobe\",\"primaryLabelValue\":\"PrintGlobe\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"PriveCo\",\"primaryLabelValue\":\"PriveCo\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Food Systems\",\"primaryLabelValue\":\"Pro Food Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ProCPR\",\"primaryLabelValue\":\"ProCPR\"}},{\"attributeHeader\":{\"labelValue\":\"Product Partners\",\"primaryLabelValue\":\"Product Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Production Robotics\",\"primaryLabelValue\":\"Production Robotics\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitFuel\",\"primaryLabelValue\":\"ProfitFuel\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Brand Proformance\",\"primaryLabelValue\":\"Proforma Brand Proformance\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma InPrint\",\"primaryLabelValue\":\"Proforma InPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Printed Images\",\"primaryLabelValue\":\"Proforma Printed Images\"}},{\"attributeHeader\":{\"labelValue\":\"Program Productions\",\"primaryLabelValue\":\"Program Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"ProKarma\",\"primaryLabelValue\":\"ProKarma\"}},{\"attributeHeader\":{\"labelValue\":\"ProMed Molded Products\",\"primaryLabelValue\":\"ProMed Molded Products\"}},{\"attributeHeader\":{\"labelValue\":\"ProPay\",\"primaryLabelValue\":\"ProPay\"}},{\"attributeHeader\":{\"labelValue\":\"Proskauer Rose\",\"primaryLabelValue\":\"Proskauer Rose\"}},{\"attributeHeader\":{\"labelValue\":\"ProSync\",\"primaryLabelValue\":\"ProSync\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ProTranslating\",\"primaryLabelValue\":\"ProTranslating\"}},{\"attributeHeader\":{\"labelValue\":\"PsiNapse Staffing\",\"primaryLabelValue\":\"PsiNapse Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Psyop\",\"primaryLabelValue\":\"Psyop\"}},{\"attributeHeader\":{\"labelValue\":\"Purple Wave Auction\",\"primaryLabelValue\":\"Purple Wave Auction\"}},{\"attributeHeader\":{\"labelValue\":\"PWR\",\"primaryLabelValue\":\"PWR\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSR Steel\",\"primaryLabelValue\":\"QSR Steel\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Health\",\"primaryLabelValue\":\"Quantum Health\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"QuinStreet\",\"primaryLabelValue\":\"QuinStreet\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rackmount Solutions\",\"primaryLabelValue\":\"Rackmount Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RagingWire Enterprise Solutions\",\"primaryLabelValue\":\"RagingWire Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Rainbow Station\",\"primaryLabelValue\":\"Rainbow Station\"}},{\"attributeHeader\":{\"labelValue\":\"Raining Rose\",\"primaryLabelValue\":\"Raining Rose\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Refill\",\"primaryLabelValue\":\"Rapid Refill\"}},{\"attributeHeader\":{\"labelValue\":\"Rauxa Direct\",\"primaryLabelValue\":\"Rauxa Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ravi's Import Warehouse\",\"primaryLabelValue\":\"Ravi's Import Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Razorleaf\",\"primaryLabelValue\":\"Razorleaf\"}},{\"attributeHeader\":{\"labelValue\":\"rbb Public Relations\",\"primaryLabelValue\":\"rbb Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Reaction Audio Visual\",\"primaryLabelValue\":\"Reaction Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Realty ONE Group\",\"primaryLabelValue\":\"Realty ONE Group\"}},{\"attributeHeader\":{\"labelValue\":\"Red F Marketing\",\"primaryLabelValue\":\"Red F Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Reed Smith\",\"primaryLabelValue\":\"Reed Smith\"}},{\"attributeHeader\":{\"labelValue\":\"Regent Bank\",\"primaryLabelValue\":\"Regent Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Regional Contracting Services\",\"primaryLabelValue\":\"Regional Contracting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Relay Express\",\"primaryLabelValue\":\"Relay Express\"}},{\"attributeHeader\":{\"labelValue\":\"Relectric\",\"primaryLabelValue\":\"Relectric\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Jet Maintenance\",\"primaryLabelValue\":\"Reliable Jet Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Respiratory\",\"primaryLabelValue\":\"Reliable Respiratory\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Software Resources\",\"primaryLabelValue\":\"Reliable Software Resources\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Rensselaer Honda\",\"primaryLabelValue\":\"Rensselaer Honda\"}},{\"attributeHeader\":{\"labelValue\":\"Rent a Coder\",\"primaryLabelValue\":\"Rent a Coder\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reply!\",\"primaryLabelValue\":\"Reply!\"}},{\"attributeHeader\":{\"labelValue\":\"Residential Finance\",\"primaryLabelValue\":\"Residential Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Re-Source Partners Asset Management\",\"primaryLabelValue\":\"Re-Source Partners Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Resourcesoft\",\"primaryLabelValue\":\"Resourcesoft\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"ReStockIt.com\",\"primaryLabelValue\":\"ReStockIt.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Media\",\"primaryLabelValue\":\"Restoration Media\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"rEvolution\",\"primaryLabelValue\":\"rEvolution\"}},{\"attributeHeader\":{\"labelValue\":\"Rey's Cleaners\",\"primaryLabelValue\":\"Rey's Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RideSafely.com\",\"primaryLabelValue\":\"RideSafely.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Medical Solutions\",\"primaryLabelValue\":\"Rising Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"River Road Asset Management\",\"primaryLabelValue\":\"River Road Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Riverside Manufacturing\",\"primaryLabelValue\":\"Riverside Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"RKA Petroleum Companies\",\"primaryLabelValue\":\"RKA Petroleum Companies\"}},{\"attributeHeader\":{\"labelValue\":\"RMCN Credit Services\",\"primaryLabelValue\":\"RMCN Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"RNB Technologies\",\"primaryLabelValue\":\"RNB Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Roamware\",\"primaryLabelValue\":\"Roamware\"}},{\"attributeHeader\":{\"labelValue\":\"RockBottomGolf.com\",\"primaryLabelValue\":\"RockBottomGolf.com\"}},{\"attributeHeader\":{\"labelValue\":\"Roman Fountains\",\"primaryLabelValue\":\"Roman Fountains\"}},{\"attributeHeader\":{\"labelValue\":\"Root Design\",\"primaryLabelValue\":\"Root Design\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Rosetta\",\"primaryLabelValue\":\"Rosetta\"}},{\"attributeHeader\":{\"labelValue\":\"Roxbury Technology\",\"primaryLabelValue\":\"Roxbury Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Document Destruction\",\"primaryLabelValue\":\"Royal Document Destruction\"}},{\"attributeHeader\":{\"labelValue\":\"RuffaloCODY\",\"primaryLabelValue\":\"RuffaloCODY\"}},{\"attributeHeader\":{\"labelValue\":\"Ryonet\",\"primaryLabelValue\":\"Ryonet\"}},{\"attributeHeader\":{\"labelValue\":\"Sabot Technologies\",\"primaryLabelValue\":\"Sabot Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sabre Industries\",\"primaryLabelValue\":\"Sabre Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Sacred Power\",\"primaryLabelValue\":\"Sacred Power\"}},{\"attributeHeader\":{\"labelValue\":\"SADA Systems\",\"primaryLabelValue\":\"SADA Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SafeMart\",\"primaryLabelValue\":\"SafeMart\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sagient Research Systems\",\"primaryLabelValue\":\"Sagient Research Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Salem Printing\",\"primaryLabelValue\":\"Salem Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Salesify\",\"primaryLabelValue\":\"Salesify\"}},{\"attributeHeader\":{\"labelValue\":\"SAM Medical Products\",\"primaryLabelValue\":\"SAM Medical Products\"}},{\"attributeHeader\":{\"labelValue\":\"SamsonBrands\",\"primaryLabelValue\":\"SamsonBrands\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Satcom Resources\",\"primaryLabelValue\":\"Satcom Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Satuit Technologies\",\"primaryLabelValue\":\"Satuit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saveology.com\",\"primaryLabelValue\":\"Saveology.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savi Technologies\",\"primaryLabelValue\":\"Savi Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Sawgrass Asset Management\",\"primaryLabelValue\":\"Sawgrass Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Schaeffer Manufacturing\",\"primaryLabelValue\":\"Schaeffer Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Schneider Associates\",\"primaryLabelValue\":\"Schneider Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Schwartz Benefit Services\",\"primaryLabelValue\":\"Schwartz Benefit Services\"}},{\"attributeHeader\":{\"labelValue\":\"SciQuest\",\"primaryLabelValue\":\"SciQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Scivantage\",\"primaryLabelValue\":\"Scivantage\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Metal Services\",\"primaryLabelValue\":\"Scrap Metal Services\"}},{\"attributeHeader\":{\"labelValue\":\"ScriptSave\",\"primaryLabelValue\":\"ScriptSave\"}},{\"attributeHeader\":{\"labelValue\":\"SEA Corp\",\"primaryLabelValue\":\"SEA Corp\"}},{\"attributeHeader\":{\"labelValue\":\"SeatAdvisor\",\"primaryLabelValue\":\"SeatAdvisor\"}},{\"attributeHeader\":{\"labelValue\":\"See Jane Run\",\"primaryLabelValue\":\"See Jane Run\"}},{\"attributeHeader\":{\"labelValue\":\"See Kai Run\",\"primaryLabelValue\":\"See Kai Run\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sena Cases\",\"primaryLabelValue\":\"Sena Cases\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Sensatronics\",\"primaryLabelValue\":\"Sensatronics\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sentinel Fence\",\"primaryLabelValue\":\"Sentinel Fence\"}},{\"attributeHeader\":{\"labelValue\":\"SentriLock\",\"primaryLabelValue\":\"SentriLock\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"Sew What?\",\"primaryLabelValue\":\"Sew What?\"}},{\"attributeHeader\":{\"labelValue\":\"Shearer & Associates\",\"primaryLabelValue\":\"Shearer & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Sherri May & Company\",\"primaryLabelValue\":\"Sherri May & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Shift Global\",\"primaryLabelValue\":\"Shift Global\"}},{\"attributeHeader\":{\"labelValue\":\"ShoppersChoice.com\",\"primaryLabelValue\":\"ShoppersChoice.com\"}},{\"attributeHeader\":{\"labelValue\":\"SHW Group\",\"primaryLabelValue\":\"SHW Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Sign-A-Rama Greensboro\",\"primaryLabelValue\":\"Sign-A-Rama Greensboro\"}},{\"attributeHeader\":{\"labelValue\":\"Signature HealthCARE\",\"primaryLabelValue\":\"Signature HealthCARE\"}},{\"attributeHeader\":{\"labelValue\":\"Silverado\",\"primaryLabelValue\":\"Silverado\"}},{\"attributeHeader\":{\"labelValue\":\"Simplion Technologies\",\"primaryLabelValue\":\"Simplion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Thacher & Bartlett\",\"primaryLabelValue\":\"Simpson Thacher & Bartlett\"}},{\"attributeHeader\":{\"labelValue\":\"Siteworx\",\"primaryLabelValue\":\"Siteworx\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skyline DFW Exhibits & Graphics\",\"primaryLabelValue\":\"Skyline DFW Exhibits & Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"SLR Contracting & Service\",\"primaryLabelValue\":\"SLR Contracting & Service\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Lines\",\"primaryLabelValue\":\"Smart Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SMSi\",\"primaryLabelValue\":\"SMSi\"}},{\"attributeHeader\":{\"labelValue\":\"Smuka Trading\",\"primaryLabelValue\":\"Smuka Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Snell & Wilmer\",\"primaryLabelValue\":\"Snell & Wilmer\"}},{\"attributeHeader\":{\"labelValue\":\"SNtial Technologies\",\"primaryLabelValue\":\"SNtial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SOAProjects\",\"primaryLabelValue\":\"SOAProjects\"}},{\"attributeHeader\":{\"labelValue\":\"SofTec Solutions\",\"primaryLabelValue\":\"SofTec Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SolidSignal.com\",\"primaryLabelValue\":\"SolidSignal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonnenschein Nath & Rosenthal\",\"primaryLabelValue\":\"Sonnenschein Nath & Rosenthal\"}},{\"attributeHeader\":{\"labelValue\":\"Souplantation / Sweet Tomatoes\",\"primaryLabelValue\":\"Souplantation / Sweet Tomatoes\"}},{\"attributeHeader\":{\"labelValue\":\"South Miami Pharmacy\",\"primaryLabelValue\":\"South Miami Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"SouthData\",\"primaryLabelValue\":\"SouthData\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Light\",\"primaryLabelValue\":\"Southern Light\"}},{\"attributeHeader\":{\"labelValue\":\"Southland Technology\",\"primaryLabelValue\":\"Southland Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Special T's\",\"primaryLabelValue\":\"Special T's\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Direct\",\"primaryLabelValue\":\"Spectrum Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spiech Farms\",\"primaryLabelValue\":\"Spiech Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Spohn Ranch\",\"primaryLabelValue\":\"Spohn Ranch\"}},{\"attributeHeader\":{\"labelValue\":\"SQA Services\",\"primaryLabelValue\":\"SQA Services\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Squeaky Wheel Media\",\"primaryLabelValue\":\"Squeaky Wheel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stafford Associates Computer Specialists\",\"primaryLabelValue\":\"Stafford Associates Computer Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"StarchTech\",\"primaryLabelValue\":\"StarchTech\"}},{\"attributeHeader\":{\"labelValue\":\"Stark Excavating\",\"primaryLabelValue\":\"Stark Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Starlite Productions\",\"primaryLabelValue\":\"Starlite Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Starmount Life Insurance\",\"primaryLabelValue\":\"Starmount Life Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StemCyte\",\"primaryLabelValue\":\"StemCyte\"}},{\"attributeHeader\":{\"labelValue\":\"STEMTech International\",\"primaryLabelValue\":\"STEMTech International\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Commerce Group\",\"primaryLabelValue\":\"Sterling Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Communications\",\"primaryLabelValue\":\"Sterling Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Stinger Ghaffarian Technologies\",\"primaryLabelValue\":\"Stinger Ghaffarian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Stop Aging Now\",\"primaryLabelValue\":\"Stop Aging Now\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stream\",\"primaryLabelValue\":\"Stream\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"StudyPoint\",\"primaryLabelValue\":\"StudyPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan & Cromwell\",\"primaryLabelValue\":\"Sullivan & Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SVTronics\",\"primaryLabelValue\":\"SVTronics\"}},{\"attributeHeader\":{\"labelValue\":\"SweeDee\",\"primaryLabelValue\":\"SweeDee\"}},{\"attributeHeader\":{\"labelValue\":\"SwipeClock\",\"primaryLabelValue\":\"SwipeClock\"}},{\"attributeHeader\":{\"labelValue\":\"Sword & Shield Enterprise Security\",\"primaryLabelValue\":\"Sword & Shield Enterprise Security\"}},{\"attributeHeader\":{\"labelValue\":\"Sydor Instruments\",\"primaryLabelValue\":\"Sydor Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Synergistix\",\"primaryLabelValue\":\"Synergistix\"}},{\"attributeHeader\":{\"labelValue\":\"Synoptek\",\"primaryLabelValue\":\"Synoptek\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Integration & Development\",\"primaryLabelValue\":\"Systems Integration & Development\"}},{\"attributeHeader\":{\"labelValue\":\"T2 International\",\"primaryLabelValue\":\"T2 International\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Taradel\",\"primaryLabelValue\":\"Taradel\"}},{\"attributeHeader\":{\"labelValue\":\"Tarte\",\"primaryLabelValue\":\"Tarte\"}},{\"attributeHeader\":{\"labelValue\":\"TBJ\",\"primaryLabelValue\":\"TBJ\"}},{\"attributeHeader\":{\"labelValue\":\"Team Clean\",\"primaryLabelValue\":\"Team Clean\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Resouces\",\"primaryLabelValue\":\"Tech Resouces\"}},{\"attributeHeader\":{\"labelValue\":\"TechFlow\",\"primaryLabelValue\":\"TechFlow\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Communities\",\"primaryLabelValue\":\"Technical Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Resource Center of America\",\"primaryLabelValue\":\"Technology Resource Center of America\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Support\",\"primaryLabelValue\":\"Technology Support\"}},{\"attributeHeader\":{\"labelValue\":\"Techno-Sciences\",\"primaryLabelValue\":\"Techno-Sciences\"}},{\"attributeHeader\":{\"labelValue\":\"Teddy's Transportation System\",\"primaryLabelValue\":\"Teddy's Transportation System\"}},{\"attributeHeader\":{\"labelValue\":\"TeleContact Resource Services\",\"primaryLabelValue\":\"TeleContact Resource Services\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"TelePacific Communications\",\"primaryLabelValue\":\"TelePacific Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Telescope\",\"primaryLabelValue\":\"Telescope\"}},{\"attributeHeader\":{\"labelValue\":\"TeleTracking Technologies\",\"primaryLabelValue\":\"TeleTracking Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tenacity Solutions\",\"primaryLabelValue\":\"Tenacity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TengoInternet\",\"primaryLabelValue\":\"TengoInternet\"}},{\"attributeHeader\":{\"labelValue\":\"Tenmast Software\",\"primaryLabelValue\":\"Tenmast Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tenrox\",\"primaryLabelValue\":\"Tenrox\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Terralever\",\"primaryLabelValue\":\"Terralever\"}},{\"attributeHeader\":{\"labelValue\":\"The Analysis Group\",\"primaryLabelValue\":\"The Analysis Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Beryl Companies\",\"primaryLabelValue\":\"The Beryl Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Booksource\",\"primaryLabelValue\":\"The Booksource\"}},{\"attributeHeader\":{\"labelValue\":\"The Brookeside Group\",\"primaryLabelValue\":\"The Brookeside Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Buckner Company\",\"primaryLabelValue\":\"The Buckner Company\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Cellular Connection\",\"primaryLabelValue\":\"The Cellular Connection\"}},{\"attributeHeader\":{\"labelValue\":\"The Computer Company\",\"primaryLabelValue\":\"The Computer Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Dentist's Choice\",\"primaryLabelValue\":\"The Dentist's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"The Ellison Nursing Group\",\"primaryLabelValue\":\"The Ellison Nursing Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Express Design Group\",\"primaryLabelValue\":\"The Express Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Hub Meeting and Event Centers\",\"primaryLabelValue\":\"The Hub Meeting and Event Centers\"}},{\"attributeHeader\":{\"labelValue\":\"The Human Resource Consulting Group\",\"primaryLabelValue\":\"The Human Resource Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"The I.T. Pros\",\"primaryLabelValue\":\"The I.T. Pros\"}},{\"attributeHeader\":{\"labelValue\":\"The Judge Group\",\"primaryLabelValue\":\"The Judge Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Launch Pad\",\"primaryLabelValue\":\"The Launch Pad\"}},{\"attributeHeader\":{\"labelValue\":\"The Learning House\",\"primaryLabelValue\":\"The Learning House\"}},{\"attributeHeader\":{\"labelValue\":\"The LiRo Group\",\"primaryLabelValue\":\"The LiRo Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Macaluso Group\",\"primaryLabelValue\":\"The Macaluso Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mortgage Group\",\"primaryLabelValue\":\"The Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mosaic Company\",\"primaryLabelValue\":\"The Mosaic Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Mutual Fund Store\",\"primaryLabelValue\":\"The Mutual Fund Store\"}},{\"attributeHeader\":{\"labelValue\":\"The Plaza Group\",\"primaryLabelValue\":\"The Plaza Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pond Guy\",\"primaryLabelValue\":\"The Pond Guy\"}},{\"attributeHeader\":{\"labelValue\":\"The Queensboro Shirt Company\",\"primaryLabelValue\":\"The Queensboro Shirt Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Refuge-A Healing Place\",\"primaryLabelValue\":\"The Refuge-A Healing Place\"}},{\"attributeHeader\":{\"labelValue\":\"The Squires Group\",\"primaryLabelValue\":\"The Squires Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Truland Group\",\"primaryLabelValue\":\"The Truland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Twister Group\",\"primaryLabelValue\":\"The Twister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Watchery\",\"primaryLabelValue\":\"The Watchery\"}},{\"attributeHeader\":{\"labelValue\":\"Think Finance\",\"primaryLabelValue\":\"Think Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Thomas G. Gallagher\",\"primaryLabelValue\":\"Thomas G. Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Coburn\",\"primaryLabelValue\":\"Thompson Coburn\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Hine\",\"primaryLabelValue\":\"Thompson Hine\"}},{\"attributeHeader\":{\"labelValue\":\"Thoroughbred Research Group\",\"primaryLabelValue\":\"Thoroughbred Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TMC Orthopedic\",\"primaryLabelValue\":\"TMC Orthopedic\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"Toolmex\",\"primaryLabelValue\":\"Toolmex\"}},{\"attributeHeader\":{\"labelValue\":\"TOPCON\",\"primaryLabelValue\":\"TOPCON\"}},{\"attributeHeader\":{\"labelValue\":\"Topline Products\",\"primaryLabelValue\":\"Topline Products\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tortuga Rum Cake\",\"primaryLabelValue\":\"Tortuga Rum Cake\"}},{\"attributeHeader\":{\"labelValue\":\"Total Mortgage Services\",\"primaryLabelValue\":\"Total Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Touchstone Wireless\",\"primaryLabelValue\":\"Touchstone Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"ToysR\",\"primaryLabelValue\":\"ToysR\"}},{\"attributeHeader\":{\"labelValue\":\"Traction\",\"primaryLabelValue\":\"Traction\"}},{\"attributeHeader\":{\"labelValue\":\"Traffic and Parking Control\",\"primaryLabelValue\":\"Traffic and Parking Control\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Transnational Foods\",\"primaryLabelValue\":\"Transnational Foods\"}},{\"attributeHeader\":{\"labelValue\":\"TravelClick\",\"primaryLabelValue\":\"TravelClick\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"TreadmillDoctor.com\",\"primaryLabelValue\":\"TreadmillDoctor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Trend Personnel Services\",\"primaryLabelValue\":\"Trend Personnel Services\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Marketing\",\"primaryLabelValue\":\"Trident Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Trims Unlimited\",\"primaryLabelValue\":\"Trims Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Sterile\",\"primaryLabelValue\":\"Trinity Sterile\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TriTech Software Systems\",\"primaryLabelValue\":\"TriTech Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Triton Pacific Capital Partners\",\"primaryLabelValue\":\"Triton Pacific Capital Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Troutman Sanders\",\"primaryLabelValue\":\"Troutman Sanders\"}},{\"attributeHeader\":{\"labelValue\":\"Truck Lease Services\",\"primaryLabelValue\":\"Truck Lease Services\"}},{\"attributeHeader\":{\"labelValue\":\"True Fabrications\",\"primaryLabelValue\":\"True Fabrications\"}},{\"attributeHeader\":{\"labelValue\":\"Truevance Management\",\"primaryLabelValue\":\"Truevance Management\"}},{\"attributeHeader\":{\"labelValue\":\"TRUSTe\",\"primaryLabelValue\":\"TRUSTe\"}},{\"attributeHeader\":{\"labelValue\":\"TSL Staff Leasing\",\"primaryLabelValue\":\"TSL Staff Leasing\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"TWR Lighting\",\"primaryLabelValue\":\"TWR Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"TyrrellTech\",\"primaryLabelValue\":\"TyrrellTech\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Energy Services\",\"primaryLabelValue\":\"U.S. Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"UberPrints.com\",\"primaryLabelValue\":\"UberPrints.com\"}},{\"attributeHeader\":{\"labelValue\":\"Uckele Health & Nutrition\",\"primaryLabelValue\":\"Uckele Health & Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underground Printing\",\"primaryLabelValue\":\"Underground Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Understand.com\",\"primaryLabelValue\":\"Understand.com\"}},{\"attributeHeader\":{\"labelValue\":\"Unicon International\",\"primaryLabelValue\":\"Unicon International\"}},{\"attributeHeader\":{\"labelValue\":\"Uniflex Church Furnishings\",\"primaryLabelValue\":\"Uniflex Church Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United National Consumer Suppliers\",\"primaryLabelValue\":\"United National Consumer Suppliers\"}},{\"attributeHeader\":{\"labelValue\":\"United States Homeland Investigations\",\"primaryLabelValue\":\"United States Homeland Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"United Technology Group\",\"primaryLabelValue\":\"United Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Environmental Consulting\",\"primaryLabelValue\":\"Universal Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Wiring\",\"primaryLabelValue\":\"Universal Wiring\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"Unlimited Furniture Group\",\"primaryLabelValue\":\"Unlimited Furniture Group\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Shredding\",\"primaryLabelValue\":\"Upstate Shredding\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Science\",\"primaryLabelValue\":\"Urban Science\"}},{\"attributeHeader\":{\"labelValue\":\"UrsaNav\",\"primaryLabelValue\":\"UrsaNav\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"User Centric\",\"primaryLabelValue\":\"User Centric\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"V.L.S Systems\",\"primaryLabelValue\":\"V.L.S Systems\"}},{\"attributeHeader\":{\"labelValue\":\"V2 Systems\",\"primaryLabelValue\":\"V2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaco\",\"primaryLabelValue\":\"Vaco\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ValueCentric Marketing Group\",\"primaryLabelValue\":\"ValueCentric Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vantage Hospitality Group\",\"primaryLabelValue\":\"Vantage Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Vedder, Price, Kaufman & Kammholz\",\"primaryLabelValue\":\"Vedder, Price, Kaufman & Kammholz\"}},{\"attributeHeader\":{\"labelValue\":\"Venator Holdings\",\"primaryLabelValue\":\"Venator Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Venn Strategies\",\"primaryLabelValue\":\"Venn Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Versacom\",\"primaryLabelValue\":\"Versacom\"}},{\"attributeHeader\":{\"labelValue\":\"Verteks Consulting\",\"primaryLabelValue\":\"Verteks Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"VideoLink\",\"primaryLabelValue\":\"VideoLink\"}},{\"attributeHeader\":{\"labelValue\":\"VIPdesk\",\"primaryLabelValue\":\"VIPdesk\"}},{\"attributeHeader\":{\"labelValue\":\"Virtue Group\",\"primaryLabelValue\":\"Virtue Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vision Technologies\",\"primaryLabelValue\":\"Vision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Painting Services\",\"primaryLabelValue\":\"Visionary Painting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visiting Angels\",\"primaryLabelValue\":\"Visiting Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Visix\",\"primaryLabelValue\":\"Visix\"}},{\"attributeHeader\":{\"labelValue\":\"VitalSmarts\",\"primaryLabelValue\":\"VitalSmarts\"}},{\"attributeHeader\":{\"labelValue\":\"VLS Recovery Services\",\"primaryLabelValue\":\"VLS Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"Voce Communications\",\"primaryLabelValue\":\"Voce Communications\"}},{\"attributeHeader\":{\"labelValue\":\"VoIP Logic\",\"primaryLabelValue\":\"VoIP Logic\"}},{\"attributeHeader\":{\"labelValue\":\"W.L. French Excavating\",\"primaryLabelValue\":\"W.L. French Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Wachtell, Lipton, Rosen & Katz\",\"primaryLabelValue\":\"Wachtell, Lipton, Rosen & Katz\"}},{\"attributeHeader\":{\"labelValue\":\"WageWorks\",\"primaryLabelValue\":\"WageWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Warren & Baerg Manufacturing\",\"primaryLabelValue\":\"Warren & Baerg Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"We R Memory Keepers\",\"primaryLabelValue\":\"We R Memory Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"WebCollage\",\"primaryLabelValue\":\"WebCollage\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"Wellington Technologies\",\"primaryLabelValue\":\"Wellington Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Wellpartner\",\"primaryLabelValue\":\"Wellpartner\"}},{\"attributeHeader\":{\"labelValue\":\"Wendoh Media\",\"primaryLabelValue\":\"Wendoh Media\"}},{\"attributeHeader\":{\"labelValue\":\"Western Wats\",\"primaryLabelValue\":\"Western Wats\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Security\",\"primaryLabelValue\":\"Whelan Security\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wholesale Food Equipment\",\"primaryLabelValue\":\"Wholesale Food Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Williams Mullen\",\"primaryLabelValue\":\"Williams Mullen\"}},{\"attributeHeader\":{\"labelValue\":\"Willkie Farr Gallagher\",\"primaryLabelValue\":\"Willkie Farr Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Wilmer Cutler Pickering Hale and Dorr\",\"primaryLabelValue\":\"Wilmer Cutler Pickering Hale and Dorr\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Associates\",\"primaryLabelValue\":\"Wilson Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Winco\",\"primaryLabelValue\":\"Winco\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Wire\",\"primaryLabelValue\":\"Windy City Wire\"}},{\"attributeHeader\":{\"labelValue\":\"Winning Strategies ITS\",\"primaryLabelValue\":\"Winning Strategies ITS\"}},{\"attributeHeader\":{\"labelValue\":\"Winston & Strawn\",\"primaryLabelValue\":\"Winston & Strawn\"}},{\"attributeHeader\":{\"labelValue\":\"Wongdoody\",\"primaryLabelValue\":\"Wongdoody\"}},{\"attributeHeader\":{\"labelValue\":\"WorkForce Software\",\"primaryLabelValue\":\"WorkForce Software\"}},{\"attributeHeader\":{\"labelValue\":\"World Pac Paper\",\"primaryLabelValue\":\"World Pac Paper\"}},{\"attributeHeader\":{\"labelValue\":\"WorldVentures\",\"primaryLabelValue\":\"WorldVentures\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Xcentric\",\"primaryLabelValue\":\"Xcentric\"}},{\"attributeHeader\":{\"labelValue\":\"Xelleration\",\"primaryLabelValue\":\"Xelleration\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"XT Global\",\"primaryLabelValue\":\"XT Global\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YOR Health\",\"primaryLabelValue\":\"YOR Health\"}},{\"attributeHeader\":{\"labelValue\":\"York Telecom\",\"primaryLabelValue\":\"York Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Youngsoft\",\"primaryLabelValue\":\"Youngsoft\"}},{\"attributeHeader\":{\"labelValue\":\"YU & Associates\",\"primaryLabelValue\":\"YU & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Zahava Group\",\"primaryLabelValue\":\"Zahava Group\"}},{\"attributeHeader\":{\"labelValue\":\"ZapTel\",\"primaryLabelValue\":\"ZapTel\"}},{\"attributeHeader\":{\"labelValue\":\"ZeroChaos\",\"primaryLabelValue\":\"ZeroChaos\"}},{\"attributeHeader\":{\"labelValue\":\"Zia Engineering & Environmental Consultants\",\"primaryLabelValue\":\"Zia Engineering & Environmental Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Zipcar\",\"primaryLabelValue\":\"Zipcar\"}},{\"attributeHeader\":{\"labelValue\":\"Zther Interactive\",\"primaryLabelValue\":\"Zther Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"614 Media Group\",\"primaryLabelValue\":\"614 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Planning\",\"primaryLabelValue\":\"Adaptive Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"AIT Laboratories\",\"primaryLabelValue\":\"AIT Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"AK Environmental\",\"primaryLabelValue\":\"AK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambit Energy\",\"primaryLabelValue\":\"Ambit Energy\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"Ampcus\",\"primaryLabelValue\":\"Ampcus\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Animax Entertainment\",\"primaryLabelValue\":\"Animax Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"Anulex Technologies\",\"primaryLabelValue\":\"Anulex Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"APEXteriors\",\"primaryLabelValue\":\"APEXteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Array Information Technology\",\"primaryLabelValue\":\"Array Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"AutoRevo\",\"primaryLabelValue\":\"AutoRevo\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalara\",\"primaryLabelValue\":\"Avalara\"}},{\"attributeHeader\":{\"labelValue\":\"AvantLink.com\",\"primaryLabelValue\":\"AvantLink.com\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Avian Engineering\",\"primaryLabelValue\":\"Avian Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Axom Technologies\",\"primaryLabelValue\":\"Axom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bill Bartmann Enterprises\",\"primaryLabelValue\":\"Bill Bartmann Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birds Barbershop\",\"primaryLabelValue\":\"Birds Barbershop\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Crest Communities\",\"primaryLabelValue\":\"Campus Crest Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Canon Recruiting Group\",\"primaryLabelValue\":\"Canon Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carbonite\",\"primaryLabelValue\":\"Carbonite\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CareNet\",\"primaryLabelValue\":\"CareNet\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Consultants\",\"primaryLabelValue\":\"Catapult Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy\",\"primaryLabelValue\":\"Cenergy\"}},{\"attributeHeader\":{\"labelValue\":\"CFN Services\",\"primaryLabelValue\":\"CFN Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Progress\",\"primaryLabelValue\":\"Children's Progress\"}},{\"attributeHeader\":{\"labelValue\":\"ChiroNET\",\"primaryLabelValue\":\"ChiroNET\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ciplex\",\"primaryLabelValue\":\"Ciplex\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"CleanScapes\",\"primaryLabelValue\":\"CleanScapes\"}},{\"attributeHeader\":{\"labelValue\":\"clearAvenue\",\"primaryLabelValue\":\"clearAvenue\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Construction and Service Solutions\",\"primaryLabelValue\":\"Construction and Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour\",\"primaryLabelValue\":\"Contour\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis Services\",\"primaryLabelValue\":\"Crowe Paradis Services\"}},{\"attributeHeader\":{\"labelValue\":\"CSS Distribution Group\",\"primaryLabelValue\":\"CSS Distribution Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cube 3 Studio\",\"primaryLabelValue\":\"Cube 3 Studio\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debt Free Associates\",\"primaryLabelValue\":\"Debt Free Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Deep Water Point\",\"primaryLabelValue\":\"Deep Water Point\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Disaster Services\",\"primaryLabelValue\":\"Delta Disaster Services\"}},{\"attributeHeader\":{\"labelValue\":\"Deluxe Marketing\",\"primaryLabelValue\":\"Deluxe Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Demandforce\",\"primaryLabelValue\":\"Demandforce\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dialogue Marketing\",\"primaryLabelValue\":\"Dialogue Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Mind\",\"primaryLabelValue\":\"Diamond Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Digispace Solutions\",\"primaryLabelValue\":\"Digispace Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Advertising\",\"primaryLabelValue\":\"Digital Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Communications\",\"primaryLabelValue\":\"Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Exteriors\",\"primaryLabelValue\":\"Direct Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DrillSpot.com\",\"primaryLabelValue\":\"DrillSpot.com\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"EasySeat\",\"primaryLabelValue\":\"EasySeat\"}},{\"attributeHeader\":{\"labelValue\":\"EDC Consulting\",\"primaryLabelValue\":\"EDC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"EffectiveUI\",\"primaryLabelValue\":\"EffectiveUI\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EmoryDay\",\"primaryLabelValue\":\"EmoryDay\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empyrean Services\",\"primaryLabelValue\":\"Empyrean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Ensurity Group\",\"primaryLabelValue\":\"Ensurity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Software Deployment\",\"primaryLabelValue\":\"Enterprise Software Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSolution Architects\",\"primaryLabelValue\":\"eSolution Architects\"}},{\"attributeHeader\":{\"labelValue\":\"eVisibility\",\"primaryLabelValue\":\"eVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"EVO2\",\"primaryLabelValue\":\"EVO2\"}},{\"attributeHeader\":{\"labelValue\":\"Exceptional Risk Advisors\",\"primaryLabelValue\":\"Exceptional Risk Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"FitnessRepairParts.com\",\"primaryLabelValue\":\"FitnessRepairParts.com\"}},{\"attributeHeader\":{\"labelValue\":\"FlexPrint\",\"primaryLabelValue\":\"FlexPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"FM Facility Maintenance\",\"primaryLabelValue\":\"FM Facility Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"FortuneBuilders\",\"primaryLabelValue\":\"FortuneBuilders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"FriendFinder Networks\",\"primaryLabelValue\":\"FriendFinder Networks\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"FundingUniverse\",\"primaryLabelValue\":\"FundingUniverse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Future Ads\",\"primaryLabelValue\":\"Future Ads\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"GlowTouch Technologies\",\"primaryLabelValue\":\"GlowTouch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harkcon\",\"primaryLabelValue\":\"Harkcon\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Resource Network\",\"primaryLabelValue\":\"Healthcare Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"HealthE Goods\",\"primaryLabelValue\":\"HealthE Goods\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS\",\"primaryLabelValue\":\"HMS\"}},{\"attributeHeader\":{\"labelValue\":\"Homeland HealthCare\",\"primaryLabelValue\":\"Homeland HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"IndiSoft\",\"primaryLabelValue\":\"IndiSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"InGenesis Diversified Healthcare Solutions\",\"primaryLabelValue\":\"InGenesis Diversified Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"InMage Systems\",\"primaryLabelValue\":\"InMage Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"InsuranceAgents.com\",\"primaryLabelValue\":\"InsuranceAgents.com\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Medical Solutions\",\"primaryLabelValue\":\"Integrated Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Secure\",\"primaryLabelValue\":\"Integrated Secure\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"InterGroup International\",\"primaryLabelValue\":\"InterGroup International\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"Involta\",\"primaryLabelValue\":\"Involta\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"ISR Group\",\"primaryLabelValue\":\"ISR Group\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"Jacob Tyler Creative Group\",\"primaryLabelValue\":\"Jacob Tyler Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JLab Audio\",\"primaryLabelValue\":\"JLab Audio\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"JVista\",\"primaryLabelValue\":\"JVista\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"Kinnser Software\",\"primaryLabelValue\":\"Kinnser Software\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Point Systems\",\"primaryLabelValue\":\"Knight Point Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"LeadQual\",\"primaryLabelValue\":\"LeadQual\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeStreet Media\",\"primaryLabelValue\":\"LifeStreet Media\"}},{\"attributeHeader\":{\"labelValue\":\"Listen Up Espanol\",\"primaryLabelValue\":\"Listen Up Espanol\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location Labs\",\"primaryLabelValue\":\"Location Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LoyaltyExpress\",\"primaryLabelValue\":\"LoyaltyExpress\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Magic Logix\",\"primaryLabelValue\":\"Magic Logix\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Marathon Consulting\",\"primaryLabelValue\":\"Marathon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaxLinear\",\"primaryLabelValue\":\"MaxLinear\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCG\",\"primaryLabelValue\":\"MCG\"}},{\"attributeHeader\":{\"labelValue\":\"McKean Defense Group\",\"primaryLabelValue\":\"McKean Defense Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"ModCloth\",\"primaryLabelValue\":\"ModCloth\"}},{\"attributeHeader\":{\"labelValue\":\"MonoPrice.com\",\"primaryLabelValue\":\"MonoPrice.com\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Morton Consulting\",\"primaryLabelValue\":\"Morton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mpire\",\"primaryLabelValue\":\"Mpire\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NetSteps\",\"primaryLabelValue\":\"NetSteps\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexAge Technologies USA\",\"primaryLabelValue\":\"NexAge Technologies USA\"}},{\"attributeHeader\":{\"labelValue\":\"NextDocs\",\"primaryLabelValue\":\"NextDocs\"}},{\"attributeHeader\":{\"labelValue\":\"NIKA Technologies\",\"primaryLabelValue\":\"NIKA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NorAm International Partners\",\"primaryLabelValue\":\"NorAm International Partners\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Business and Property Brokers\",\"primaryLabelValue\":\"NorthStar Business and Property Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"NPE\",\"primaryLabelValue\":\"NPE\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Supply & Trade\",\"primaryLabelValue\":\"Oasis Supply & Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Octo Consulting Group\",\"primaryLabelValue\":\"Octo Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Strategix\",\"primaryLabelValue\":\"Optimal Strategix\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OtterBox\",\"primaryLabelValue\":\"OtterBox\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partnership Capital Growth Advisors\",\"primaryLabelValue\":\"Partnership Capital Growth Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"People To My Site\",\"primaryLabelValue\":\"People To My Site\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"PetPlace.com\",\"primaryLabelValue\":\"PetPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Phase One Consulting Group\",\"primaryLabelValue\":\"Phase One Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Physique 57\",\"primaryLabelValue\":\"Physique 57\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"PlumChoice\",\"primaryLabelValue\":\"PlumChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintPlace.com\",\"primaryLabelValue\":\"PrintPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"ProDPI\",\"primaryLabelValue\":\"ProDPI\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Roofing and Exteriors\",\"primaryLabelValue\":\"Professional Roofing and Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"Provideo Management\",\"primaryLabelValue\":\"Provideo Management\"}},{\"attributeHeader\":{\"labelValue\":\"Pukoa Scientific\",\"primaryLabelValue\":\"Pukoa Scientific\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSS International\",\"primaryLabelValue\":\"QSS International\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Electrodynamics\",\"primaryLabelValue\":\"Quality Electrodynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quidsi\",\"primaryLabelValue\":\"Quidsi\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"Reach Sports Marketing Group\",\"primaryLabelValue\":\"Reach Sports Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReachLocal\",\"primaryLabelValue\":\"ReachLocal\"}},{\"attributeHeader\":{\"labelValue\":\"Real Property Management\",\"primaryLabelValue\":\"Real Property Management\"}},{\"attributeHeader\":{\"labelValue\":\"Recurve\",\"primaryLabelValue\":\"Recurve\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Solutions\",\"primaryLabelValue\":\"Retail Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RFIP\",\"primaryLabelValue\":\"RFIP\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"RTL Networks\",\"primaryLabelValue\":\"RTL Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security Credit Services\",\"primaryLabelValue\":\"Security Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Service Foods\",\"primaryLabelValue\":\"Service Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Service-now.com\",\"primaryLabelValue\":\"Service-now.com\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"ShelfGenie\",\"primaryLabelValue\":\"ShelfGenie\"}},{\"attributeHeader\":{\"labelValue\":\"ShopForBags.com\",\"primaryLabelValue\":\"ShopForBags.com\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Show Media\",\"primaryLabelValue\":\"Show Media\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simplex Healthcare\",\"primaryLabelValue\":\"Simplex Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"Smarsh\",\"primaryLabelValue\":\"Smarsh\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPrice Sales & Marketing\",\"primaryLabelValue\":\"SmartPrice Sales & Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Smiley Media\",\"primaryLabelValue\":\"Smiley Media\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Spellbinders Paper Arts\",\"primaryLabelValue\":\"Spellbinders Paper Arts\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SproutLoud Media Networks\",\"primaryLabelValue\":\"SproutLoud Media Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StealthCom Solutions\",\"primaryLabelValue\":\"StealthCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stella & Dot\",\"primaryLabelValue\":\"Stella & Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Sundia\",\"primaryLabelValue\":\"Sundia\"}},{\"attributeHeader\":{\"labelValue\":\"Suntiva Executive Consulting\",\"primaryLabelValue\":\"Suntiva Executive Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Syscom Technologies\",\"primaryLabelValue\":\"Syscom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tableau Software\",\"primaryLabelValue\":\"Tableau Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tagged\",\"primaryLabelValue\":\"Tagged\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"TechRadium\",\"primaryLabelValue\":\"TechRadium\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Telogis\",\"primaryLabelValue\":\"Telogis\"}},{\"attributeHeader\":{\"labelValue\":\"Telx Group\",\"primaryLabelValue\":\"Telx Group\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Diet\",\"primaryLabelValue\":\"The Fresh Diet\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pursuant Group\",\"primaryLabelValue\":\"The Pursuant Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Three Dog Logistics\",\"primaryLabelValue\":\"Three Dog Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Tris3ct\",\"primaryLabelValue\":\"Tris3ct\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Gas & Electric\",\"primaryLabelValue\":\"U.S. Gas & Electric\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Business Solutions\",\"primaryLabelValue\":\"Universal Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Lending Solutions\",\"primaryLabelValue\":\"Urban Lending Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US Media Consulting\",\"primaryLabelValue\":\"US Media Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"vAuto\",\"primaryLabelValue\":\"vAuto\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilant\",\"primaryLabelValue\":\"Vigilant\"}},{\"attributeHeader\":{\"labelValue\":\"Virtualosity Solutions\",\"primaryLabelValue\":\"Virtualosity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Vital Networks\",\"primaryLabelValue\":\"Vital Networks\"}},{\"attributeHeader\":{\"labelValue\":\"VitalWear\",\"primaryLabelValue\":\"VitalWear\"}},{\"attributeHeader\":{\"labelValue\":\"Vivax Pro Painting\",\"primaryLabelValue\":\"Vivax Pro Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Walz Group\",\"primaryLabelValue\":\"Walz Group\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"WDFA Marketing\",\"primaryLabelValue\":\"WDFA Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Wellfount Pharmacy\",\"primaryLabelValue\":\"Wellfount Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WTech\",\"primaryLabelValue\":\"WTech\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YouSendIt\",\"primaryLabelValue\":\"YouSendIt\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"1Source International\",\"primaryLabelValue\":\"1Source International\"}},{\"attributeHeader\":{\"labelValue\":\"1st Choice Staffing & Consulting\",\"primaryLabelValue\":\"1st Choice Staffing & Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Clinical Solutions\",\"primaryLabelValue\":\"A10 Clinical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Networks\",\"primaryLabelValue\":\"A10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aasent Mortgage Corporation\",\"primaryLabelValue\":\"Aasent Mortgage Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"Accuvant\",\"primaryLabelValue\":\"Accuvant\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ageatia Technology Consultancy Services\",\"primaryLabelValue\":\"Ageatia Technology Consultancy Services\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"Alatec\",\"primaryLabelValue\":\"Alatec\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant National Title Insurance\",\"primaryLabelValue\":\"Alliant National Title Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"An Amazing Organization\",\"primaryLabelValue\":\"An Amazing Organization\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Technology Partners\",\"primaryLabelValue\":\"Archway Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Glass & Mirror\",\"primaryLabelValue\":\"Arrow Glass & Mirror\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"AutoAccessoriesGarage.com\",\"primaryLabelValue\":\"AutoAccessoriesGarage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Avtec Homes\",\"primaryLabelValue\":\"Avtec Homes\"}},{\"attributeHeader\":{\"labelValue\":\"AXIA Consulting\",\"primaryLabelValue\":\"AXIA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ayuda Management\",\"primaryLabelValue\":\"Ayuda Management\"}},{\"attributeHeader\":{\"labelValue\":\"BackJoy Orthotics\",\"primaryLabelValue\":\"BackJoy Orthotics\"}},{\"attributeHeader\":{\"labelValue\":\"Balance Staffing\",\"primaryLabelValue\":\"Balance Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"BancVue\",\"primaryLabelValue\":\"BancVue\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beceem Communications\",\"primaryLabelValue\":\"Beceem Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"BidSync\",\"primaryLabelValue\":\"BidSync\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"BlackLine Systems\",\"primaryLabelValue\":\"BlackLine Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"BuildASign.com\",\"primaryLabelValue\":\"BuildASign.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cantaloupe Systems\",\"primaryLabelValue\":\"Cantaloupe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"CareerLink\",\"primaryLabelValue\":\"CareerLink\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Cellit\",\"primaryLabelValue\":\"Cellit\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"CenTauri Solutions\",\"primaryLabelValue\":\"CenTauri Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Central Desktop\",\"primaryLabelValue\":\"Central Desktop\"}},{\"attributeHeader\":{\"labelValue\":\"Central Payment\",\"primaryLabelValue\":\"Central Payment\"}},{\"attributeHeader\":{\"labelValue\":\"Centuria\",\"primaryLabelValue\":\"Centuria\"}},{\"attributeHeader\":{\"labelValue\":\"Century Payments\",\"primaryLabelValue\":\"Century Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CheckOutStore\",\"primaryLabelValue\":\"CheckOutStore\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Ci2i Services\",\"primaryLabelValue\":\"Ci2i Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ciphent\",\"primaryLabelValue\":\"Ciphent\"}},{\"attributeHeader\":{\"labelValue\":\"Clarisonic\",\"primaryLabelValue\":\"Clarisonic\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Align\",\"primaryLabelValue\":\"Clear Align\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"ClearAccess\",\"primaryLabelValue\":\"ClearAccess\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpath Solutions Group\",\"primaryLabelValue\":\"Clearpath Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resources\",\"primaryLabelValue\":\"Clinical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Clinipace Worldwide\",\"primaryLabelValue\":\"Clinipace Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"Collective Intellect\",\"primaryLabelValue\":\"Collective Intellect\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Landscaping Systems\",\"primaryLabelValue\":\"Complete Landscaping Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Confirmation.com\",\"primaryLabelValue\":\"Confirmation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covario\",\"primaryLabelValue\":\"Covario\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coyote Logistics\",\"primaryLabelValue\":\"Coyote Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"cPrime\",\"primaryLabelValue\":\"cPrime\"}},{\"attributeHeader\":{\"labelValue\":\"Crosslake Sales\",\"primaryLabelValue\":\"Crosslake Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Crumbs\",\"primaryLabelValue\":\"Crumbs\"}},{\"attributeHeader\":{\"labelValue\":\"CSI\",\"primaryLabelValue\":\"CSI\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Distribution\",\"primaryLabelValue\":\"Decision Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"DoMyOwnPestControl.com\",\"primaryLabelValue\":\"DoMyOwnPestControl.com\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drakontas\",\"primaryLabelValue\":\"Drakontas\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge (KY)\",\"primaryLabelValue\":\"eBridge (KY)\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Payments\",\"primaryLabelValue\":\"Electronic Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Employer Flexible\",\"primaryLabelValue\":\"Employer Flexible\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Ace\",\"primaryLabelValue\":\"Energy Ace\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions Realized\",\"primaryLabelValue\":\"Enterprise Solutions Realized\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Everything2go.com\",\"primaryLabelValue\":\"Everything2go.com\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Exacq Technologies\",\"primaryLabelValue\":\"Exacq Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Faast Pharmacy\",\"primaryLabelValue\":\"Faast Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Fashionphile\",\"primaryLabelValue\":\"Fashionphile\"}},{\"attributeHeader\":{\"labelValue\":\"FastSpring\",\"primaryLabelValue\":\"FastSpring\"}},{\"attributeHeader\":{\"labelValue\":\"FedStore\",\"primaryLabelValue\":\"FedStore\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiesta Insurance Franchise\",\"primaryLabelValue\":\"Fiesta Insurance Franchise\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Food Should Taste Good\",\"primaryLabelValue\":\"Food Should Taste Good\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forex Club Financial\",\"primaryLabelValue\":\"Forex Club Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTEN\",\"primaryLabelValue\":\"FTEN\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"Geckotech\",\"primaryLabelValue\":\"Geckotech\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genius.com\",\"primaryLabelValue\":\"Genius.com\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Global Wedge\",\"primaryLabelValue\":\"Global Wedge\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Golden Key Group\",\"primaryLabelValue\":\"Golden Key Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"GourmetGiftBaskets.com\",\"primaryLabelValue\":\"GourmetGiftBaskets.com\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Group Z\",\"primaryLabelValue\":\"Group Z\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GSG\",\"primaryLabelValue\":\"GSG\"}},{\"attributeHeader\":{\"labelValue\":\"GyanSys\",\"primaryLabelValue\":\"GyanSys\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"HPC Development\",\"primaryLabelValue\":\"HPC Development\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"iBuyOfficeSupply.com\",\"primaryLabelValue\":\"iBuyOfficeSupply.com\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"iClick\",\"primaryLabelValue\":\"iClick\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"IData\",\"primaryLabelValue\":\"IData\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"Improving Enterprises\",\"primaryLabelValue\":\"Improving Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"InfoSync Services\",\"primaryLabelValue\":\"InfoSync Services\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Resource Group\",\"primaryLabelValue\":\"Insight Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"IntegriChain\",\"primaryLabelValue\":\"IntegriChain\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Management Consulting\",\"primaryLabelValue\":\"Integrity Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Solutions for Government\",\"primaryLabelValue\":\"Interim Solutions for Government\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Invertix\",\"primaryLabelValue\":\"Invertix\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kore Federal\",\"primaryLabelValue\":\"Kore Federal\"}},{\"attributeHeader\":{\"labelValue\":\"KPaul\",\"primaryLabelValue\":\"KPaul\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lattice Engines\",\"primaryLabelValue\":\"Lattice Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lexicon Consulting\",\"primaryLabelValue\":\"Lexicon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"LifeLock\",\"primaryLabelValue\":\"LifeLock\"}},{\"attributeHeader\":{\"labelValue\":\"LimitLess International\",\"primaryLabelValue\":\"LimitLess International\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Livin' Lite Recreational Vehicles\",\"primaryLabelValue\":\"Livin' Lite Recreational Vehicles\"}},{\"attributeHeader\":{\"labelValue\":\"Local Splash\",\"primaryLabelValue\":\"Local Splash\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Luke & Associates\",\"primaryLabelValue\":\"Luke & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lusive Decor\",\"primaryLabelValue\":\"Lusive Decor\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M33 Integrated Solutions\",\"primaryLabelValue\":\"M33 Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mainstreet Property Group\",\"primaryLabelValue\":\"Mainstreet Property Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MD Orthopaedics\",\"primaryLabelValue\":\"MD Orthopaedics\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"MediaTrust\",\"primaryLabelValue\":\"MediaTrust\"}},{\"attributeHeader\":{\"labelValue\":\"merchant one\",\"primaryLabelValue\":\"merchant one\"}},{\"attributeHeader\":{\"labelValue\":\"Mercury Solar Systems\",\"primaryLabelValue\":\"Mercury Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Essential Personnel\",\"primaryLabelValue\":\"Mission Essential Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Modea\",\"primaryLabelValue\":\"Modea\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Most Brand Development + Advertising\",\"primaryLabelValue\":\"Most Brand Development + Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetWitness\",\"primaryLabelValue\":\"NetWitness\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nityo Infotech\",\"primaryLabelValue\":\"Nityo Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Nutricap Labs\",\"primaryLabelValue\":\"Nutricap Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"PaymentMax\",\"primaryLabelValue\":\"PaymentMax\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"PetRays\",\"primaryLabelValue\":\"PetRays\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Realty\",\"primaryLabelValue\":\"Platinum Realty\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PropelMG\",\"primaryLabelValue\":\"PropelMG\"}},{\"attributeHeader\":{\"labelValue\":\"Property Solutions\",\"primaryLabelValue\":\"Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramed Health Services\",\"primaryLabelValue\":\"Pyramed Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Q2ebanking\",\"primaryLabelValue\":\"Q2ebanking\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"RedVision Systems\",\"primaryLabelValue\":\"RedVision Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rennen International\",\"primaryLabelValue\":\"Rennen International\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"ReSource Pro\",\"primaryLabelValue\":\"ReSource Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun\",\"primaryLabelValue\":\"Rising Sun\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"SaveOnResorts.com\",\"primaryLabelValue\":\"SaveOnResorts.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Scentsy\",\"primaryLabelValue\":\"Scentsy\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Secure-24\",\"primaryLabelValue\":\"Secure-24\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security by Design\",\"primaryLabelValue\":\"Security by Design\"}},{\"attributeHeader\":{\"labelValue\":\"SeekingSitters\",\"primaryLabelValue\":\"SeekingSitters\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"SEOmoz\",\"primaryLabelValue\":\"SEOmoz\"}},{\"attributeHeader\":{\"labelValue\":\"ShareFile\",\"primaryLabelValue\":\"ShareFile\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"SightLine Health\",\"primaryLabelValue\":\"SightLine Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Silex Interiors\",\"primaryLabelValue\":\"Silex Interiors\"}},{\"attributeHeader\":{\"labelValue\":\"Single Digits\",\"primaryLabelValue\":\"Single Digits\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skullcandy\",\"primaryLabelValue\":\"Skullcandy\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SmartIT Staffing\",\"primaryLabelValue\":\"SmartIT Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"SnapAV\",\"primaryLabelValue\":\"SnapAV\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"SNS Logistics\",\"primaryLabelValue\":\"SNS Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorrento Capital\",\"primaryLabelValue\":\"Sorrento Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Squarespace\",\"primaryLabelValue\":\"Squarespace\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Made Simple\",\"primaryLabelValue\":\"Systems Made Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Talented IT\",\"primaryLabelValue\":\"Talented IT\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Sales International\",\"primaryLabelValue\":\"Technical Sales International\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"Telovations\",\"primaryLabelValue\":\"Telovations\"}},{\"attributeHeader\":{\"labelValue\":\"Terra Infotech\",\"primaryLabelValue\":\"Terra Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Energy Holdings\",\"primaryLabelValue\":\"Texas Energy Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Intersect Group\",\"primaryLabelValue\":\"The Intersect Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Media Crew\",\"primaryLabelValue\":\"The Media Crew\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Trademark Company\",\"primaryLabelValue\":\"The Trademark Company\"}},{\"attributeHeader\":{\"labelValue\":\"TheFind\",\"primaryLabelValue\":\"TheFind\"}},{\"attributeHeader\":{\"labelValue\":\"Thrillist.com\",\"primaryLabelValue\":\"Thrillist.com\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TicketZoom\",\"primaryLabelValue\":\"TicketZoom\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TowerCo\",\"primaryLabelValue\":\"TowerCo\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Traffiq\",\"primaryLabelValue\":\"Traffiq\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"TrueCar\",\"primaryLabelValue\":\"TrueCar\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Translation\",\"primaryLabelValue\":\"U.S. Translation\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"US Lighting Tech\",\"primaryLabelValue\":\"US Lighting Tech\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"uShip\",\"primaryLabelValue\":\"uShip\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"Varrow\",\"primaryLabelValue\":\"Varrow\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"VinSolutions\",\"primaryLabelValue\":\"VinSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Viverae\",\"primaryLabelValue\":\"Viverae\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vycon\",\"primaryLabelValue\":\"Vycon\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"WebSafe Shield\",\"primaryLabelValue\":\"WebSafe Shield\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Wyngate International\",\"primaryLabelValue\":\"Wyngate International\"}},{\"attributeHeader\":{\"labelValue\":\"Xirrus\",\"primaryLabelValue\":\"Xirrus\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Yodle\",\"primaryLabelValue\":\"Yodle\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zenoss\",\"primaryLabelValue\":\"Zenoss\"}},{\"attributeHeader\":{\"labelValue\":\"Zeon Solutions\",\"primaryLabelValue\":\"Zeon Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"2 Wheel Bikes\",\"primaryLabelValue\":\"2 Wheel Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"A.R.M. Solutions\",\"primaryLabelValue\":\"A.R.M. Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AAC Enterprises\",\"primaryLabelValue\":\"AAC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Addison Search\",\"primaryLabelValue\":\"Addison Search\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advantedge Healthcare Solutions\",\"primaryLabelValue\":\"Advantedge Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Alteris Renewables\",\"primaryLabelValue\":\"Alteris Renewables\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Anakam\",\"primaryLabelValue\":\"Anakam\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Apparatus\",\"primaryLabelValue\":\"Apparatus\"}},{\"attributeHeader\":{\"labelValue\":\"Appliance Zone\",\"primaryLabelValue\":\"Appliance Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"Archimedes Global\",\"primaryLabelValue\":\"Archimedes Global\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Associates\",\"primaryLabelValue\":\"Argent Associates\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aromatic Fusion\",\"primaryLabelValue\":\"Aromatic Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT HOME PERSONAL CARE\",\"primaryLabelValue\":\"AT HOME PERSONAL CARE\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Metro Communications\",\"primaryLabelValue\":\"Atlantic Metro Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"AtTask\",\"primaryLabelValue\":\"AtTask\"}},{\"attributeHeader\":{\"labelValue\":\"Aurora Networks\",\"primaryLabelValue\":\"Aurora Networks\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AvePoint\",\"primaryLabelValue\":\"AvePoint\"}},{\"attributeHeader\":{\"labelValue\":\"BabyEarth\",\"primaryLabelValue\":\"BabyEarth\"}},{\"attributeHeader\":{\"labelValue\":\"Balihoo\",\"primaryLabelValue\":\"Balihoo\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Beal\",\"primaryLabelValue\":\"Beal\"}},{\"attributeHeader\":{\"labelValue\":\"Behavioral Health Group\",\"primaryLabelValue\":\"Behavioral Health Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Links Consulting\",\"primaryLabelValue\":\"Cable Links Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Call-Em-All\",\"primaryLabelValue\":\"Call-Em-All\"}},{\"attributeHeader\":{\"labelValue\":\"CallFire\",\"primaryLabelValue\":\"CallFire\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Partners\",\"primaryLabelValue\":\"CCG Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Charity Dynamics\",\"primaryLabelValue\":\"Charity Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chasing Fireflies\",\"primaryLabelValue\":\"Chasing Fireflies\"}},{\"attributeHeader\":{\"labelValue\":\"Clarabridge\",\"primaryLabelValue\":\"Clarabridge\"}},{\"attributeHeader\":{\"labelValue\":\"CLEAResult Consulting\",\"primaryLabelValue\":\"CLEAResult Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud 9 Living\",\"primaryLabelValue\":\"Cloud 9 Living\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"Codexis\",\"primaryLabelValue\":\"Codexis\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Fibre\",\"primaryLabelValue\":\"Cogent Fibre\"}},{\"attributeHeader\":{\"labelValue\":\"Coleman Research Group\",\"primaryLabelValue\":\"Coleman Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Medical Supply\",\"primaryLabelValue\":\"Comfort Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Commdex Consulting\",\"primaryLabelValue\":\"Commdex Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Conductor\",\"primaryLabelValue\":\"Conductor\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consero\",\"primaryLabelValue\":\"Consero\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"Davinci Virtual Office Solutions\",\"primaryLabelValue\":\"Davinci Virtual Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Media Group\",\"primaryLabelValue\":\"Dean Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Debtmerica\",\"primaryLabelValue\":\"Debtmerica\"}},{\"attributeHeader\":{\"labelValue\":\"Delan Associates\",\"primaryLabelValue\":\"Delan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dexter Field Services\",\"primaryLabelValue\":\"Dexter Field Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dialect Technologies\",\"primaryLabelValue\":\"Dialect Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dice Electronics\",\"primaryLabelValue\":\"Dice Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DMC Construction\",\"primaryLabelValue\":\"DMC Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eCardio Diagnostics\",\"primaryLabelValue\":\"eCardio Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"EcomNets\",\"primaryLabelValue\":\"EcomNets\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Products\",\"primaryLabelValue\":\"Eco-Products\"}},{\"attributeHeader\":{\"labelValue\":\"EcoTech Marine\",\"primaryLabelValue\":\"EcoTech Marine\"}},{\"attributeHeader\":{\"labelValue\":\"ELC Technologies\",\"primaryLabelValue\":\"ELC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"ElJet Aviation Services\",\"primaryLabelValue\":\"ElJet Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"eMason\",\"primaryLabelValue\":\"eMason\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Epicenter Network\",\"primaryLabelValue\":\"Epicenter Network\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ERT\",\"primaryLabelValue\":\"ERT\"}},{\"attributeHeader\":{\"labelValue\":\"eTERA Consulting\",\"primaryLabelValue\":\"eTERA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"Extend Health\",\"primaryLabelValue\":\"Extend Health\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"Fab Fours\",\"primaryLabelValue\":\"Fab Fours\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Findaway World\",\"primaryLabelValue\":\"Findaway World\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Anywhere\",\"primaryLabelValue\":\"Fitness Anywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Foreground Security\",\"primaryLabelValue\":\"Foreground Security\"}},{\"attributeHeader\":{\"labelValue\":\"Forensic Fluids Laboratories\",\"primaryLabelValue\":\"Forensic Fluids Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"FranNet\",\"primaryLabelValue\":\"FranNet\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Group\",\"primaryLabelValue\":\"Freedom Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Health\",\"primaryLabelValue\":\"Freedom Health\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"G5 Search Marketing\",\"primaryLabelValue\":\"G5 Search Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Galen Healthcare Solutions\",\"primaryLabelValue\":\"Galen Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Gazelle\",\"primaryLabelValue\":\"Gazelle\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Glacier Bay\",\"primaryLabelValue\":\"Glacier Bay\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GPS Insight\",\"primaryLabelValue\":\"GPS Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"GreenLogic\",\"primaryLabelValue\":\"GreenLogic\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"GrubHub.com\",\"primaryLabelValue\":\"GrubHub.com\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GSS Gear\",\"primaryLabelValue\":\"GSS Gear\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"H2 Performance Consulting\",\"primaryLabelValue\":\"H2 Performance Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"HoldCube\",\"primaryLabelValue\":\"HoldCube\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Oxygen\",\"primaryLabelValue\":\"Hometown Oxygen\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Telecom\",\"primaryLabelValue\":\"Hometown Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"I.T. Source\",\"primaryLabelValue\":\"I.T. Source\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"iContact\",\"primaryLabelValue\":\"iContact\"}},{\"attributeHeader\":{\"labelValue\":\"Ignify\",\"primaryLabelValue\":\"Ignify\"}},{\"attributeHeader\":{\"labelValue\":\"IguanaMed\",\"primaryLabelValue\":\"IguanaMed\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMVU\",\"primaryLabelValue\":\"IMVU\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Infovision Technologies\",\"primaryLabelValue\":\"Infovision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infoway Software\",\"primaryLabelValue\":\"Infoway Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Insignia Technology Services\",\"primaryLabelValue\":\"Insignia Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Interfacial Solutions\",\"primaryLabelValue\":\"Interfacial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"International Inspirations\",\"primaryLabelValue\":\"International Inspirations\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"ion interactive\",\"primaryLabelValue\":\"ion interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"IP5280 Communications\",\"primaryLabelValue\":\"IP5280 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"IPKeys Technologies\",\"primaryLabelValue\":\"IPKeys Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITG Solutions\",\"primaryLabelValue\":\"ITG Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ItsHot.com\",\"primaryLabelValue\":\"ItsHot.com\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"JeffreyM Consulting\",\"primaryLabelValue\":\"JeffreyM Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Jobs2Web\",\"primaryLabelValue\":\"Jobs2Web\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Infotek\",\"primaryLabelValue\":\"Keen Infotek\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Tracking Solutions\",\"primaryLabelValue\":\"Lead Tracking Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Link America\",\"primaryLabelValue\":\"Link America\"}},{\"attributeHeader\":{\"labelValue\":\"Link Solutions\",\"primaryLabelValue\":\"Link Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Motors\",\"primaryLabelValue\":\"Liquid Motors\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"LPS Integration\",\"primaryLabelValue\":\"LPS Integration\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"MacUpdate\",\"primaryLabelValue\":\"MacUpdate\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"McDonald Hearing Aid Center\",\"primaryLabelValue\":\"McDonald Hearing Aid Center\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meru Networks\",\"primaryLabelValue\":\"Meru Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Micah Group Environmental Contractors\",\"primaryLabelValue\":\"Micah Group Environmental Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTech\",\"primaryLabelValue\":\"MicroTech\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium\",\"primaryLabelValue\":\"Millennium\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Medical\",\"primaryLabelValue\":\"Millennium Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MindSmack.com\",\"primaryLabelValue\":\"MindSmack.com\"}},{\"attributeHeader\":{\"labelValue\":\"MMC Systems\",\"primaryLabelValue\":\"MMC Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Molding Box\",\"primaryLabelValue\":\"Molding Box\"}},{\"attributeHeader\":{\"labelValue\":\"Monster Scooter Parts\",\"primaryLabelValue\":\"Monster Scooter Parts\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Mu Sigma\",\"primaryLabelValue\":\"Mu Sigma\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Positions\",\"primaryLabelValue\":\"National Positions\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nerdery Interactive Labs\",\"primaryLabelValue\":\"Nerdery Interactive Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Neutron Interactive\",\"primaryLabelValue\":\"Neutron Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New West Technologies\",\"primaryLabelValue\":\"New West Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NII Brokerage\",\"primaryLabelValue\":\"NII Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"N-Tech Solutions\",\"primaryLabelValue\":\"N-Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Ocenture\",\"primaryLabelValue\":\"Ocenture\"}},{\"attributeHeader\":{\"labelValue\":\"oDesk\",\"primaryLabelValue\":\"oDesk\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Online Rewards\",\"primaryLabelValue\":\"Online Rewards\"}},{\"attributeHeader\":{\"labelValue\":\"Ookla\",\"primaryLabelValue\":\"Ookla\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"P3S\",\"primaryLabelValue\":\"P3S\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pandora\",\"primaryLabelValue\":\"Pandora\"}},{\"attributeHeader\":{\"labelValue\":\"PanTerra Networks\",\"primaryLabelValue\":\"PanTerra Networks\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"PayLease\",\"primaryLabelValue\":\"PayLease\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Physicians' Pharmaceutical\",\"primaryLabelValue\":\"Physicians' Pharmaceutical\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"Point One Technologies\",\"primaryLabelValue\":\"Point One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pontiflex\",\"primaryLabelValue\":\"Pontiflex\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Principle Solutions Group\",\"primaryLabelValue\":\"Principle Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Prudent Technologies\",\"primaryLabelValue\":\"Prudent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Psychological Software Solutions\",\"primaryLabelValue\":\"Psychological Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pursuit of Excellence\",\"primaryLabelValue\":\"Pursuit of Excellence\"}},{\"attributeHeader\":{\"labelValue\":\"QuoteWizard\",\"primaryLabelValue\":\"QuoteWizard\"}},{\"attributeHeader\":{\"labelValue\":\"Randa Solutions\",\"primaryLabelValue\":\"Randa Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RBA Consulting\",\"primaryLabelValue\":\"RBA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"RealD\",\"primaryLabelValue\":\"RealD\"}},{\"attributeHeader\":{\"labelValue\":\"Reliance\",\"primaryLabelValue\":\"Reliance\"}},{\"attributeHeader\":{\"labelValue\":\"Remedy Roofing\",\"primaryLabelValue\":\"Remedy Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Remote Medical International\",\"primaryLabelValue\":\"Remote Medical International\"}},{\"attributeHeader\":{\"labelValue\":\"rentbits.com\",\"primaryLabelValue\":\"rentbits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"Reveal Imaging Technologies\",\"primaryLabelValue\":\"Reveal Imaging Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"Rise Interactive\",\"primaryLabelValue\":\"Rise Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Rockfish Interactive\",\"primaryLabelValue\":\"Rockfish Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ryla\",\"primaryLabelValue\":\"Ryla\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"SBG Technology Solutions\",\"primaryLabelValue\":\"SBG Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sensys Networks\",\"primaryLabelValue\":\"Sensys Networks\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Foods\",\"primaryLabelValue\":\"Signature Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SingleHop\",\"primaryLabelValue\":\"SingleHop\"}},{\"attributeHeader\":{\"labelValue\":\"SoftLayer Technologies\",\"primaryLabelValue\":\"SoftLayer Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sound Physicians\",\"primaryLabelValue\":\"Sound Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Spine & Sport\",\"primaryLabelValue\":\"Spine & Sport\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Standard Solar\",\"primaryLabelValue\":\"Standard Solar\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"StumbleUpon\",\"primaryLabelValue\":\"StumbleUpon\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SwarmBuilder\",\"primaryLabelValue\":\"SwarmBuilder\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Synteractive\",\"primaryLabelValue\":\"Synteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TAG Employer Services\",\"primaryLabelValue\":\"TAG Employer Services\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Technical and Project Engineering\",\"primaryLabelValue\":\"Technical and Project Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technovant\",\"primaryLabelValue\":\"Technovant\"}},{\"attributeHeader\":{\"labelValue\":\"Tenable Network Security\",\"primaryLabelValue\":\"Tenable Network Security\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Elf on the Shelf\",\"primaryLabelValue\":\"The Elf on the Shelf\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Knowland Group\",\"primaryLabelValue\":\"The Knowland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Penna Group\",\"primaryLabelValue\":\"The Penna Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Retail Outsource\",\"primaryLabelValue\":\"The Retail Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"The Select Group\",\"primaryLabelValue\":\"The Select Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Visionaire Group\",\"primaryLabelValue\":\"The Visionaire Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"The1stMovement\",\"primaryLabelValue\":\"The1stMovement\"}},{\"attributeHeader\":{\"labelValue\":\"Three Pillar Global\",\"primaryLabelValue\":\"Three Pillar Global\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"Travelers Haven\",\"primaryLabelValue\":\"Travelers Haven\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Web Design\",\"primaryLabelValue\":\"Triad Web Design\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Triplefin\",\"primaryLabelValue\":\"Triplefin\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"Uppercase Living\",\"primaryLabelValue\":\"Uppercase Living\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Veloxion\",\"primaryLabelValue\":\"Veloxion\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vendormate\",\"primaryLabelValue\":\"Vendormate\"}},{\"attributeHeader\":{\"labelValue\":\"Ventureforth\",\"primaryLabelValue\":\"Ventureforth\"}},{\"attributeHeader\":{\"labelValue\":\"Veteran Corps of America\",\"primaryLabelValue\":\"Veteran Corps of America\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Enterprise Technology Solutions\",\"primaryLabelValue\":\"Veterans Enterprise Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"Vinitech\",\"primaryLabelValue\":\"Vinitech\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visible Technologies\",\"primaryLabelValue\":\"Visible Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Vivo\",\"primaryLabelValue\":\"Vivo\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Ward Williston Oil\",\"primaryLabelValue\":\"Ward Williston Oil\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"WnR\",\"primaryLabelValue\":\"WnR\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Information Network Systems\",\"primaryLabelValue\":\"Worldwide Information Network Systems\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"Yeti Coolers\",\"primaryLabelValue\":\"Yeti Coolers\"}},{\"attributeHeader\":{\"labelValue\":\"Zempleo\",\"primaryLabelValue\":\"Zempleo\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"1st in Video - Music World\",\"primaryLabelValue\":\"1st in Video - Music World\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"Bonterra Consulting\",\"primaryLabelValue\":\"Bonterra Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's\",\"primaryLabelValue\":\"Aaron's\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus 24-7\",\"primaryLabelValue\":\"Abacus 24-7\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Broadway Electric Service\",\"primaryLabelValue\":\"Broadway Electric Service\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Bross Group\",\"primaryLabelValue\":\"Bross Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Brothers Air & Heat\",\"primaryLabelValue\":\"Brothers Air & Heat\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"BRS Media\",\"primaryLabelValue\":\"BRS Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bryan Cave\",\"primaryLabelValue\":\"Bryan Cave\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Accusoft Pegasus\",\"primaryLabelValue\":\"Accusoft Pegasus\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ace Underwriting Group\",\"primaryLabelValue\":\"Ace Underwriting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bulldog Solutions\",\"primaryLabelValue\":\"Bulldog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,5992],\"offset\":[0,0],\"total\":[1,5992]}}", + "body": "{\"data\":[[1421087,1341064,1079646,639461,639971,639691,721627,720589,1082419,642235,649957,720325,649521,1203573,640155,1306030,641281,644970,726382,726788,643520,1212221,644996,643330,642831,1291440,645475,725507,1452143,727142,647245,643153,642552,2457448,1287073,649081,644842,3478896,1211652,646552,644695,643265,2517665,645211,643953,646556,646823,644071,644736,2380614,645979,650598,643439,645723,724273,726854,645093,1245939,1290496,644093,645082,647007,727134,643984,1167560,645418,725080,728184,1248532,647506,1300714,1085904,646014,724266,644733,644617,724741,648058,647771,645807,647365,1331188,645785,648756,644561,645757,644534,648289,725744,1208634,1087431,647527,645781,1290073,730345,644694,1291352,1290959,1294649,647661,644880,1372637,727854,646907,645648,1307349,1087953,645011,644012,725030,644521,1288879,1208382,1459513,1288805,647754,650119,644776,729934,1452704,644555,647495,646083,727061,725617,644687,643991,645787,727229,648585,727213,2670178,651227,646394,646253,1129320,1333167,650158,728776,651823,1249516,646087,645433,1334106,646150,731960,726581,647964,648915,729685,2421615,1250642,646824,645333,1169629,1290529,1330928,725968,645673,646522,652934,647640,1290885,645144,645722,727453,1456619,726070,1169934,645659,1467159,729033,645760,645244,648122,1211181,2423120,1371694,1250676,644984,654733,1291970,646965,1299751,2177349,1291528,725864,2419011,647821,1373481,646340,646225,1251707,1309353,647942,650118,645912,1088778,653102,1209993,647069,1291640,2420580,1089045,2609562,1335440,1453452,727640,1210080,2730581,647720,2419782,651210,1088637,1538857,646078,645801,646504,647078,1414297,647122,650337,1414827,2420301,646228,1089339,1374444,648272,1332483,1494328,2669962,1542586,645806,1089720,647852,646872,1210710,646230,1210788,647602,647145,5324979,2421042,646943,1089627,649203,646291,1210890,1533957,1494129,1536118,647785,2744137,1534009,1535439,1416843,648058,1536084,1413539,1535216,727472,1414115,1414178,1413777,2746370,2744743,1535593,645340,654004,2744733,2745298,1413528,1414035,1413853,646425,1538179,1537827,1415745,5670944,649629,1417054,1416060,647255,646001,645936,726785,727765,1535375,1535917,1414157,648019,1414190,649257,1535553,1535542,729889,1536233,1535747,1536877,1414555,1414953,1414414,648754,1414563,1535694,652140,731638,733454,1415654,649231,652536,729103,648584,1414490,733843,728919,1414628,1537814,1536262,1535956,649139,650405,1414560,1417483,1333188,1414662,647691,653578,1414805,648233,1421376,652756,1211028,1332639,647616,1418770,1538337,1539464,1540604,730940,730380,649589,1538412,1418650,1414735,1415161,647094,1536357,1212060,653115,650002,654538,653174,648581,1212246,728589,1539927,1539570,1415260,649469,729634,1534364,1456541,648870,1413853,647327,647076,1535888,1415413,646314,647251,649158,646532,1331235,1413601,1416723,1413488,650548,1211154,1535255,1534977,1414116,1417756,1534934,652530,1538050,1295411,1418009,1416851,648739,649303,1538753,1463634,1415486,1333587,1415531,1415505,652230,648980,607743,1212900,1416089,1536834,1540084,1538198,647427,647222,648178,1415668,1415806,650047,1415680,1415731,1537062,607509,647235,1417144,1415923,650793,652942,650076,1417068,728866,1416620,647678,1537623,648772,1213026,611254,649767,1418574,1418733,647568,1296208,1417710,1540203,1296466,650225,651843,732802,1416442,1418336,1537439,728639,1294958,650097,647808,1420247,653351,1538021,1537936,730440,1417115,650051,649517,1539824,1541335,1419108,1417191,1417301,1417185,649523,649984,1541846,1538848,647954,652775,649108,649758,1417557,1417395,1417395,1213917,653053,1539114,1417443,653802,1417465,648114,1539152,1539152,1419942,1541246,1541548,1542886,1541401,1335819,1417500,650452,1419295,1539173,731157,651426,2390417,651731,1539240,1418018,648389,1417902,1417955,730367,1542302,1417953,1420461,650747,1093386,1540844,1540216,1540961,1418655,1336725,649809,1540292,730905,1539646,1418095,651879,1420132,1418865,1540424,733956,1418248,1421458,1419156,1418922,1381241,1422115,1384221,1543251,1539722,1540596,1215867,649879,1540862,1419128,1543167,1419447,1420855,650221,1541861,654293,1419729,1215120,1424382,1336926,1336581,1335702,1418235,649718,729462,1541940,1540392,1419431,651452,1419246,1301240,2157554,1418393,1092387,1418401,1215171,1215129,1418656,649365,4252956,650037,649893,650459,654996,1420642,1542329,1464349,1541926,649616,1542282,733459,1302057,652065,650927,1542154,1542128,1542425,1215744,649742,1542420,1542642,1386262,1302144,2396031,1422629,1301592,1422061,1384083,734063,1261858,1216935,653383,1420895,649610,1342028,651727,1216167,1542838,731664,1421287,1541896,649728,1419440,655890,652172,651155,1420083,1419635,1419687,1421517,1421502,1301576,1385954,1542615,651263,650248,649898,1422218,650050,1221637,649926,1545099,1421930,1541430,1419838,1543805,1419933,1094799,650786,1541710,652591,1216551,1337958,1420457,1420773,1541854,1420357,654759,1420255,1420160,649424,651661,1420432,1541926,1420263,652066,1506412,1421111,1339155,1422463,1263353,654315,1421825,732281,1543404,1421117,1544213,1421280,651887,1421706,1543671,650068,1544364,651107,4255569,655228,1383944,1543271,655107,1544164,1421665,651562,1422485,1543850,2319980,1095561,652357,1544838,653745,1544455,1422109,4262217,652388,652563,734105,652235,1544549,734467,654265,1422155,1422325,1543940,1543940,733998,649290,650742,2397263,1423301,1422567,651425,1422120,1545083,1545628,652575,1544850,650970,654732,2398007,651301,1340034,1342793,1384021,1263475,650556,1423196,653406,1422938,1423088,654026,733267,1544303,655234,2080284,2398426,1423392,1422610,1223245,654665,1386397,1218741,1544644,2398405,653719,1544797,1545126,652297,1545143,1544974,727350,1423989,1422890,651692,651432,1385507,1426004,1343784,1425359,651009,1221734,1343627,1422890,650829,1423126,1423273,1423100,731969,1545590,651159,1423275,1181695,735565,1545256,652264,1303916,2158494,652155,652492,652624,734126,652152,734755,1545612,654043,1423555,1302477,1423645,1221769,652413,1383866,1423752,1424679,1546120,654567,1545840,1545840,1305364,651455,1423850,1545916,1423870,733341,735102,652566,653151,652430,1101249,652790,1225863,1219632,1097937,652271,1546636,652027,1341990,1424080,1096602,652237,657218,1424429,2361404,652493,1424465,655108,652979,2401643,1098225,1424772,1343761,1222207,650785,1223205,1342881,1101075,652647,652189,653112,652716,733847,1344636,1181706,1101483,654033,653338,652269,651974,1425060,2402481,653800,1425323,654037,735352,1222320,654127,1141684,1100784,652328,1223199,1224651,734289,733280,654873,2402900,1102347,1100310,1140551,656624,1222167,1221930,652966,652788,1101996,1102377,652825,1224927,1100775,653209,653035,1222368,653052,2080545,654105,655139,1099890,656193,1222263,1425480,1222140,653472,2077485,652000,1099866,1343409,735457,1101147,1222260,652187,655434,1343541,657198,1222410,1223805,655119,652357,734392,1100088,2078256,2080254,1101846,1100250,1222530,1222746,1221429,1222482,653473,652088,1102113,655697,1222707,1100397,2078745,2080023,655137,1100439,1222866,1100466,1100493,1100493,654019,1222860,1344279,1100439,1102068,734200,655729,1222935,656582,1100682,1101987,654842,653010,1223160,1101918,655600,653134,734869,652599,1100763,1100940,2081235,655588,1100892,1224315,1223190,1102386,1103754,1103277,1103757,654357,1102215,1224429,1225521,1225902,653560,735830,1344105,1100799,1222281,735090,1223391,1100922,1223304,1223388,1102248,1100979,1101027,1101006,1101078,654184,1101090,654005,1101657,1100505,1101486,1226319,1223520,1101168,655635,1101195,653275,1223601,652396,1101222,1101258,654522,1102314,656839,1225959,1222656,658660,656633,653649,1102248,655929,734763,735677,1227261,656426,1101408,655647,654059,656427,654953,653361,1102050,1101582,656442,1224237,1225083,654084,1224219,1224477,1101897,653061,657982,1226262,654339,654014,653755,2082858,1106091,1102932,1104072,656783,1102089,1101969,1102515,1102923,655355,1224450,1224828,735006,654037,656652,1224888,1102152,654214,1102167,1103070,1102194,1225125,653603,1102275,1104387,1102884,1102863,1103772,653558,1104231,654018,654046,654414,1102380,1102419,1104822,2083293,1102491,653589,1102545,1225587,1225350,655080,656263,654338,654998,1103025,655438,1228167,1104978,1226556,1227744,1228848,654623,1102836,1102734,1102734,654511,1225260,1226064,1225449,1102842,1347093,1225428,657282,736371,1104984,736463,1102950,655561,1104276,1103292,1225662,654668,1226361,1226172,1225812,654963,654040,1225887,1226073,1226100,656453,1103406,1103391,1103310,1104321,656375,655563,1227453,1103436,654787,1104936,2085384,1103436,1103478,656204,1227636,657191,1103490,655387,654309,1103619,1226130,1105743,1103517,655422,659792,655330,1103856,1103868,654016,1103652,1226310,655804,1103706,1103706,654989,737127,1105953,1104201,1227792,1104807,1103814,1103976,1105098,1225335,655120,1104930,655604,655110,1104300,1103868,655794,1106076,1228419,1103895,656113,654245,1104468,1226640,1225743,1103103,736493,1105488,2085747,656387,655520,1104828,655688,656689,1226850,1226973,1104315,1104318,1104201,656574,1227474,1228251,655113,1104381,1104528,656173,655686,1227852,654550,2088498,655493,1105707,1227318,1227261,1227285,655966,1105785,1227543,1105230,1228365,656393,657084,1104849,656180,655255,1105131,1105137,655965,655972,655864,655943,655972,655979,655683,656029,655935,1106529,1105614,1105218,737209,1228467,655678,1105407,1105407,655518,1228260,671659,656378,655082,1105374,1105542,1105542,1228518,1228560,655352,1105923,656154,656616,1106685,1105866,655454,656203,656355,656263,656249,656356,737602,657185,1228842,1105716,2088717,656467,656668,1228800,1228623,1105920,658072,656267,657316,656852,1105776,1106619,1105953,656791,656505,1106319,1229532,1228896,1106097,655719,1106055,656753,1229415,658313,657133,656242,655838,1106307,1106715,655789,1230543,1228416,1229472,655923,656858,1106163,656779,2089701,1106298,1107186,1229991,1106736,1230774,655867,1106535,656432,1229370,658337,656541,1229601,656939,656318,656881,1106541,1107408,1106706,1229958,1229460,1352061,1106730,1230363,1229763,656669,655968,1107048,1229820,1230117,1229850,657742,1230204,1106892,1107513,655070,2087547,1227510,656383,1227810,656487,1227855,1105686,1228245,1227750,2087226,1105551,656366,1107039,1230327,657179,656046,1107468,657639,1107135,656772,658548,1230039,1107120,1107027,1107060,651976,1107405,657137,658214,1107420,1107480,1230282,656938,656135,656754,657292,1107144,657111,1230540,657018,1230162,1107354,1230381,657001,1107249,657055,1107411,1230342,1230423,658019,657414,656801,1107546,1230897,1230843,1107903,656616,1107471,658716,1107888,1231206,657322,657429,657240,657487,658328,1230393,1107819,1231056,1230795,657300,1107501,657042,1108113,1107465,1107420,656909,1231035,658144,1107825,1230585,1230630,1107624,656775,1107855,1230981,656887,657272,1108038,2092332,641911,641244,1335215,719769,645065,645125,639648,639329,647443,1203576,643351,642810,641266,640826,1040259,1038434,642722,649675,646640,639881,642721,1164886,640486,642123,1201595,726382,1330975,726200,644728,645077,1084299,721449,644836,1123849,645157,645473,644728,1206951,725803,642361,646936,643820,642487,642607,722715,724873,645292,645177,643077,1211668,644409,642911,1334816,645613,646721,645943,644917,1084839,649760,645408,645355,726995,650726,725216,643652,2142195,644220,643274,727509,645428,1209123,647052,646822,1209795,725620,1250207,644097,644016,1086975,643698,647615,725664,647772,1330166,644794,648316,647019,644265,1209231,650392,726657,644833,1128328,645072,1251087,1415688,727928,644829,646268,1258342,650686,725042,1290371,644744,644528,646067,651489,645466,645290,645102,645198,644945,1212059,644321,650874,1207647,726023,643974,646062,1087050,647253,647853,647026,1334439,645161,646226,724345,644407,644577,653485,1252570,652346,645759,731181,1250126,725696,1088154,644607,647910,647656,650029,645943,644761,1250015,644837,645122,1249912,1290152,651786,652612,1208928,647611,646488,645299,1251238,645929,1292623,645381,652822,645596,645633,727038,648779,645752,728183,1332146,1088793,648399,1372163,731421,728378,648651,652251,1376279,1210653,645383,645836,645215,1332828,1291976,1293288,1336204,1372152,648635,1209939,1088919,646585,727532,1209915,1089168,645722,1250923,1494739,1250841,647224,646346,1373041,1533795,648857,727071,646345,646364,1250610,645502,650115,1496858,645465,646280,646612,647131,646722,646103,1210380,1417350,1210260,1089423,1089423,649203,1089438,645843,729703,1495344,647034,648140,651016,647863,645902,646012,1251209,1453599,1210590,648174,647033,1210851,727580,647648,648315,646833,646866,1412827,1533870,1534158,1534553,646334,1416170,652568,731847,646096,1540522,648531,648060,2383541,1413965,1534174,727100,645524,1534212,1535114,1413201,646230,647676,1539542,1416620,1537900,1536996,647408,646640,1416460,2391026,647377,648494,727705,1535767,1536875,649716,645995,1535356,727593,1534305,1501414,2383921,1535854,1537213,1414272,646888,732133,648313,648201,1414539,1536728,1536567,728449,1539862,651719,650898,1414933,646742,650093,649555,648465,1414770,1414560,652665,649189,652603,649474,1537519,647375,1211502,1536168,649553,1501602,647230,1415230,4239567,648463,648132,1420045,648249,1414749,1090359,730102,647373,1536226,1536264,651280,2316067,647014,649445,648860,647830,648521,1536584,1536340,1209615,729163,1538683,1212339,1378066,1415343,1537437,729940,1538730,649721,657079,649011,648849,1534516,1534752,646874,647148,646879,729424,1536848,1536718,1536819,1537695,1539227,646213,1416469,1415681,1415942,727825,646276,1536538,1539292,1534668,1535028,1414785,1413545,1414107,1536230,1536129,1536260,1332531,1418950,1413978,647032,1534896,1536160,1414737,647695,1332063,1415751,1331370,1413790,1416819,1092192,1538438,648119,4248099,1416726,648430,649282,731745,653085,650353,650244,1536844,729761,648564,1417428,1417369,1537198,1537062,652455,1538342,649579,647828,648288,649864,1537138,1538478,1417367,1213635,1537217,1416975,2391634,1415750,1415955,1415830,1538986,1538801,1463055,1540148,1417950,1416993,648712,1537310,728565,1416055,1420449,651322,1463237,1541259,648371,648599,649389,650763,648077,728416,1418454,1538685,649186,648556,1416020,1416606,649052,647377,1537699,1294930,650229,1416275,1416450,1416487,1416946,728848,1416496,1295088,1417382,1417252,650967,1542302,1420376,730206,651753,2388910,648579,1417185,1419537,1213845,1538876,649792,1417220,1417403,1538941,1417605,1418899,1417487,1418462,1093071,1540863,649834,1091385,1418012,1417484,650605,650041,648108,648775,650208,1214418,730603,729455,1539380,2390090,1418051,1418196,1336287,649253,1382491,1540162,730278,1539491,1539456,1336212,1417963,1418790,1420475,1542391,649155,1540930,1540320,1419896,648732,1419886,1419344,1336830,1418052,648436,1418117,1541347,1539884,1418865,651894,1381866,1418993,1214850,1539753,649701,1419001,651063,1418935,648957,1541310,1418970,649626,1419231,1419424,649352,1540852,1419317,1419177,1420200,1419318,1337328,649574,1541174,1384563,654286,648668,1418200,731668,648413,651030,1420676,653787,650933,1540178,1095090,650295,653656,1420320,1420405,2394220,649868,1542078,1542170,1420440,1420370,649550,650214,2395333,1420892,1420561,651102,1542420,1542577,650373,1420700,1542420,1542571,1420960,649542,649527,1338642,730860,731377,1263211,652387,650343,2395287,1420825,1421505,1423494,1542759,732008,1542686,1216692,2240424,656105,651969,1420971,1301685,1095714,1544873,1421035,1542838,1542851,1421070,1338813,4257015,2395518,1421070,1421070,650194,1541341,1419425,1541610,1541242,1541860,1419565,1419690,1419670,1216284,1541318,734433,730496,650065,1419635,651114,1422277,1421109,1421657,650781,731332,731240,650142,649989,650253,649863,1421587,1543229,1542414,1421507,1421668,649499,1422740,650209,1421070,1419833,649903,1541508,1420055,1420503,1094631,1300610,731570,1216767,654601,1420508,1541926,1542347,4261341,652812,652040,732675,651706,2395931,653619,1217601,1421420,652047,1338702,1140608,650192,1421843,651079,650727,1217577,1543646,1543807,1422393,1423464,651772,1217988,1544378,653597,1304524,1305347,2318388,650102,1383137,1543918,1422442,1544388,1543823,650171,651163,1421980,1422005,645645,652336,652679,652254,651137,1421875,1185504,1223830,651323,1422416,1423812,650735,1422260,651793,1422605,1544281,1544220,734465,1422341,1544282,1422754,651668,1422558,1544574,1544708,650533,651035,655802,652505,1422540,652086,732633,1424913,732625,652106,1304270,655812,1422785,653031,1544814,1423287,2398527,2398847,1423271,1303925,652015,651735,1265200,1423563,652453,651466,651798,651607,1423437,2399970,1422890,1422995,1423100,652443,651721,1545270,653470,651532,1302449,1545346,1545346,652402,2201171,1303360,1423771,1221287,1222068,1545498,650898,651819,651817,733607,651880,1545771,651698,1424945,652359,651666,1096995,654659,1545847,1305367,651353,4266195,1423774,1339998,1423749,733438,1545650,1096374,1545840,652101,1181638,2160470,1182615,1341480,1423921,1545916,1546131,1423870,1545916,652954,652490,652638,652672,1344564,1424010,2400717,733917,733284,1546296,654680,1546768,733021,1224438,652142,655478,1222390,1262770,1424465,655467,1098033,1546750,1546745,652427,655690,655005,651925,1424745,653711,651771,652215,652307,1547004,1304142,1424815,2401831,1424897,1425095,656452,1141167,1547166,733106,1547217,651569,1547335,1425252,1425018,1547318,1304189,1142143,2402539,654136,1141689,652258,733960,734878,1425199,654948,655906,651840,652676,655290,1262789,652263,1101561,1547474,1344145,1344078,1101567,1101687,652896,1101807,652191,652318,735794,1223475,652129,1100046,655472,1425445,654335,652084,1222821,653598,652760,2080413,2081592,1102578,652758,734670,734293,652161,2078178,1102005,1547664,1099818,1222053,1222764,656836,1099854,1100460,1222569,1222095,654945,1222374,653626,1100115,655344,1222944,1099443,1222440,1343961,1100478,1104084,1100304,1222641,1222560,1100304,734864,1223124,652189,1222740,1222848,1100532,1102083,1100727,1100448,1102725,1221219,652721,652384,1100574,1100601,653104,1100673,1100973,655226,1223199,734459,655289,1100733,2079066,1100682,1103913,1223223,654873,1100982,1224609,653835,1225506,1103886,1102689,2082927,652706,1100790,1100805,2079270,1344450,1100859,1100790,1100790,653408,733896,654557,1223280,655080,1100952,656577,1102464,1101006,1101006,1223835,1223427,1223352,1223340,653234,1101060,1101303,1101117,1223490,1101246,735815,655183,2080035,1101195,1101195,1224048,655099,735861,1223763,653930,1101222,1101249,654887,1222437,656089,655318,1101846,1101375,655383,1101414,652918,1102602,654229,653364,1223940,652978,655233,653744,1224597,1103403,1224150,1224150,1224285,653257,655324,1224387,655467,655254,1103802,1105104,654762,654131,736095,654042,654248,1104759,654314,1101795,1224951,736540,1102161,4282668,1101981,1102134,656750,1102005,1226079,655221,655161,655896,653685,653267,657003,1103328,1102152,653120,653595,1224693,653487,1102983,1102383,1224750,654711,1228941,1224861,1104114,655782,1103979,654303,654077,653816,655364,1102638,1103352,655755,655933,1103514,655726,1102605,1102572,1225335,1225563,1224333,655105,655068,1102707,1225230,1227672,655890,654793,1225617,1102740,1102761,1225290,1225638,1102827,654939,1102851,1103223,1103571,1103166,1226811,654875,1225455,655364,655168,2087370,1103580,735458,1225614,1225713,656761,1225680,1104720,1227216,1225869,736736,1103622,1103430,656042,655676,1103235,653844,1225866,1227972,656742,655861,1103319,1103316,1103328,1103550,1104843,1104798,1225479,655747,1226178,651930,654330,1103490,654747,1103907,1103517,1226130,736329,1103832,1104909,655372,654281,1225491,735851,1226310,1228776,1104429,1103964,736039,1103829,1103814,657008,1103814,1102692,1226490,1104756,1227234,656118,1226712,1226694,1103868,1226682,1226520,1226535,1103895,1348491,1104870,1226760,1104582,1104084,1104576,1104690,654919,1106127,1104339,657113,1226940,655826,1227774,1104927,1104300,1104525,1227081,1105005,1104522,1104462,1227315,1228311,654610,1106355,655955,655939,1227270,655093,1105104,1105542,1104597,655443,736715,2087889,658235,656912,1105110,655185,1105740,655523,1227900,1228119,1227990,1105137,655831,655867,656126,655776,656202,656062,655410,657575,1105422,656453,654992,655201,656050,656220,1228200,655819,2087940,1105530,1105389,1105407,1228488,655997,657951,1228482,1228350,1106862,1105650,658777,656636,1105989,656976,1106994,1106277,1105650,1105704,1105752,655820,656327,656117,656523,656468,1228596,1229739,1228584,1105704,656348,656524,1106463,1105809,656423,655826,656373,1105863,655843,656414,1228875,1105974,656383,1106232,1105974,1351179,656767,1106340,1229160,1229511,1106082,1106688,1106382,1106709,1107279,656844,1229310,657835,1106109,1229118,1229010,2089464,1106151,656838,658097,1106268,656498,658374,1229526,1106289,1106700,1106415,658055,657886,1106532,1106790,1106352,1106445,656785,1230075,1349223,1107531,656752,656810,657164,656188,1106526,655826,1106730,1106730,1230126,656744,1229763,1106796,657113,657653,1106811,1106838,1230000,1106853,1230162,1107039,1227540,737404,656042,1104813,655151,1106019,655019,1104909,656448,1227510,655440,656520,1104963,662019,657606,655116,1104975,1105365,1105860,1104333,657601,657710,1107579,1107519,657236,658055,656871,657699,2091132,1107183,656443,656134,1230237,657052,2091453,657101,1107108,656974,657089,1107153,657254,1107318,657017,656777,1107348,1230306,657184,656846,1107285,1107546,656539,1230417,1107360,1107801,1107858,657685,1230477,657011,656570,657374,657240,1107846,657191,657078,657490,657239,657165,657263,657107,657242,657014,1107423,657941,1230810,657433,1107870,657114,1230471,1230540,656833,657702,2092578,1107564,657326,1107948,1230798,1230564,1230909,1230516,1230660,656927,658364,658572,638912,639296,640804,1039357,641352,646802,640294,643782,645988,647117,638979,721356,725492,639140,641985,653147,645976,1120438,640604,643518,643022,641199,639982,642468,647076,721176,648632,643044,642017,642105,651578,642186,642791,643760,1204641,726066,724494,725153,644138,643269,1245791,1250575,642331,644639,642118,1083564,644362,645037,645748,644779,642339,642355,643474,644487,1167357,647404,724651,643631,645814,643323,646145,643439,645433,723284,723884,644636,648824,1333281,645206,723931,1205748,1287833,723995,724480,643673,643604,645655,726932,643598,647387,646080,647437,644394,643509,1332591,1335996,644418,645143,645566,645458,645385,647046,725967,1205832,1207776,724516,644284,646288,728871,728805,644307,645185,644544,645264,644303,2053389,645096,645464,647416,725819,1417737,1087014,728660,650453,644590,645073,726699,644587,647318,644901,1087749,725865,644767,651414,654046,1249818,1250398,644959,1207740,647406,647160,643994,728587,647103,2176347,1087194,646106,646124,724870,725299,646939,644197,644971,645756,647277,644639,645117,645238,651675,730918,726336,1252747,645367,646053,646281,645386,650607,646349,725634,726022,645324,648223,647717,647361,1168849,726947,1088709,645603,649532,645908,726894,649016,1458936,726318,645271,646778,647048,645084,728502,645101,646107,645680,1250675,1209555,726000,1251286,645783,645800,645523,1088790,652738,1455694,646347,727065,728618,1170663,646441,646052,645282,1453766,1414148,1412963,1088838,645955,646837,731129,1414801,647329,2387271,1089324,652013,1210149,647737,729534,1498011,1089099,1251744,647007,1089255,1210819,1210110,1210677,646149,728327,727783,1495050,1088721,1088637,726678,645730,727008,1331456,1170519,645505,1414322,1089342,729940,646776,728120,647337,1089261,650469,1332596,1330626,646263,726891,1210350,648759,1089504,1089504,731508,1089531,1534499,1089693,645781,647639,646706,646890,1414764,1412740,647632,648482,1538777,1536129,1533920,1330809,1417114,1415540,1535124,1210320,1534398,726798,1414241,1415427,1539089,1538261,647688,1417258,1535279,1535238,729369,1414161,1534098,1210488,1536231,648634,1416200,1417585,645936,1413382,646877,646037,646804,1535172,1535174,1332504,1414350,1414175,648430,1414175,1536074,729549,1538628,1333038,650633,1414490,1415867,1414565,1419460,648765,647931,1535770,648926,1536143,650678,1299176,647406,1415499,646675,1535808,1537315,730453,1536744,2384603,649003,652993,1537876,1535922,1210965,1537080,1536534,1416213,1415086,1540163,1538565,647966,1538907,647913,649257,1420056,1414900,649493,652333,1210983,1211880,1416866,650016,647963,647741,647249,651818,1415899,647131,1415558,1415435,1415435,1413830,1419118,1413544,1416703,1538456,1537531,649351,647044,648654,648198,648127,649152,1415488,1415140,1415279,646291,647420,728008,1413737,1413545,652791,647142,1415770,1210110,646271,730227,1540220,1413809,647033,647305,1210914,1210974,727771,1537430,1413923,652014,1536160,1413892,2383246,1416599,649700,648026,728568,608567,1538088,649848,1538131,728954,1416913,649100,1417400,647882,736360,647818,608761,1415912,1415505,1415505,1537093,1212864,654611,650076,1416905,1417836,1416964,1537138,647897,1538513,1296079,1417940,648549,1415853,649114,1538739,1295520,1420008,1417218,1417197,1418252,1420276,608597,1538031,729472,1294583,1537290,1539357,2386845,652299,652527,647555,1540450,608203,1539777,1540222,1539657,651829,1416765,649478,649039,1301077,648802,648545,1541603,1537328,1219080,1540998,607545,649480,1415995,647813,1416534,608030,730510,1213203,1416680,648122,1416865,1296857,1538588,648497,1383105,1295839,649790,661444,1418413,1417115,648818,648454,730817,649005,1541801,1418416,1417449,1417404,1538700,1538859,1538848,1538848,649823,651268,1417440,650845,1539056,1417635,1539114,653626,648177,1417548,648815,650574,1213254,1335804,650052,650345,649839,650523,1539208,729812,1417675,1417745,1419209,1417745,648440,1418070,1540225,1539228,1417855,1539228,1417885,652381,1214121,650351,1418459,1417920,1092741,651331,652250,1540262,1418620,652091,1541158,1420104,649626,649206,650889,651600,649652,1419051,2390604,1418916,1419596,651903,650152,1213716,734322,651517,652800,649367,1419304,1420164,1419893,1540862,732755,1419794,1419390,1422958,649892,1419395,651977,1214634,1418262,648919,648999,1418655,648425,650724,649864,648986,1418480,1540041,650039,652751,1540247,1420112,1420619,654063,1541926,649644,1144280,1420711,1421152,1420511,1421882,649929,1543814,651571,1420615,1421136,651828,1542420,1421373,1342026,1420748,1542762,1542592,650377,651553,650657,650290,649525,1420825,731464,1542686,1420930,1421007,1543150,653590,1542838,1095594,1338852,1421070,1421070,650831,1419460,733361,1541242,651126,1541798,1541526,730969,1421523,1421874,1422785,1302719,731469,650051,1422950,1544572,1422466,1543352,1542811,650533,1422050,649017,649776,1342156,649056,1421573,1421877,1544266,1342272,1544206,652068,1419880,1420233,1419927,1541508,731193,1094871,1216401,1216014,1419937,654394,1542158,1542236,732130,1544388,1420646,2394311,651821,1420549,1216428,1542928,1542914,1421478,649985,650383,1543349,1384790,650197,648607,1263232,1421420,1222537,1543252,1095675,651296,652423,654011,732597,651648,1543585,1221552,2279441,1339527,1339371,1422235,653651,1218165,651660,1544174,1304951,650599,1342486,1095543,1218105,1543999,1343787,650945,1424017,1543712,1424940,2397111,1422050,1422241,1422262,654046,1422879,1422050,654374,1217607,652784,653496,653858,650813,1422345,654396,1544054,1422545,2398163,1422421,1422351,1422330,653682,1422690,653420,1544312,1545611,654323,1306091,1544715,1545163,1423455,654193,1422365,650929,652351,652451,1544434,651219,1422540,1423928,1340133,651928,1544510,654629,1424229,1422645,1423221,2398438,652441,1544776,1545296,652946,651537,651127,1423033,653738,652658,1344050,652023,1465799,652538,1303461,1222807,652973,1096599,1096440,734604,733898,1544852,1423069,1422995,1217619,1545174,1545270,653236,654142,1423441,1423294,2399152,657846,1423240,1303639,1423793,1423395,1218387,654084,1423657,651279,733160,651548,652199,651859,652516,652281,1182877,1182406,652020,651554,2400018,2399847,1423822,651640,1217583,1545968,1218816,654868,1545764,653682,1423765,1141009,1545827,1546965,1097622,1101282,655071,654486,1545916,652295,1262628,652119,653135,652750,1546429,1546697,733110,1424010,2400655,652336,1424045,652451,652362,1546351,654909,1546372,1262933,653459,1424625,1424570,1219854,1546624,1546676,652868,1546829,1546714,1547605,655182,2402199,1340736,1262455,653617,1341183,1098123,733150,1547171,2401359,652132,653203,650773,1384377,652274,1344703,1098378,1546942,1424815,652559,1425060,1266271,1303867,1222917,1181377,656576,654750,2402558,1101915,1425239,1425006,1102020,1266142,1303228,1425053,655780,1342167,1425060,653280,654003,1263958,654079,1098540,1547702,653312,653482,1101708,652722,1100631,1466280,1344090,1100211,2081205,1181437,653993,1220919,1222629,653001,653021,653285,652788,654346,652559,657280,652192,1547664,1222296,652549,653487,653125,1100589,1100580,655833,1222248,1223049,1222080,652006,655120,1100175,1343559,1103271,735197,1100001,735796,1222320,1101684,1101174,1101522,653056,653086,1100307,1222527,654031,2078226,1100277,1100823,1222560,1222560,1100553,1222470,1222650,653288,1100811,1101813,653860,652692,652485,1222740,1100712,734637,1103181,2078709,2078709,1100493,1101912,1222851,1223133,1222893,654938,1100817,1100691,656411,734349,655622,1223061,654054,1100724,652785,1100907,1223196,1223070,1100790,1100871,1344468,653526,652368,1223070,734712,1223100,653809,1226799,653733,1102566,655785,1100790,1100790,653123,653550,653793,1102299,654752,653909,655770,736088,653281,1101033,1102767,654907,652800,1224663,1224366,652999,655685,1102323,1101195,1101597,1101195,655569,655390,1101249,1101249,1345305,1225731,655264,734874,653936,653692,653679,655752,653666,1101357,1223772,1102128,653163,655095,1100061,1103100,1101519,2080647,1101555,652983,653957,735727,1223940,1101678,1224372,1225101,653677,652901,1102293,1101720,1102188,1224006,736512,1224030,655371,1102296,1102359,2081262,1102563,654738,1101708,655414,654618,1101735,655113,653405,655327,1224573,2082132,1104813,1103604,1103568,735999,1225587,1225170,1102128,1101789,653767,736077,1224372,1102542,1101987,1102884,735496,1102782,1102086,655731,1229430,656133,654399,656514,653739,1224810,1102167,1102299,1225353,1224912,653617,1103697,1103319,653547,655137,654922,1227285,736287,654430,654207,654586,1102302,1103046,1102317,1224810,735595,1225392,1224870,1224975,1225020,1102554,654276,1225419,655065,653855,1102791,1102830,1102899,1103100,655969,655138,1104354,654736,1102707,1104543,653958,1228998,1225368,1225290,1103307,1103040,654982,1102725,655825,654867,654711,1102923,1103271,1106619,656392,1103010,655678,1225884,653786,735936,1103097,1103007,2084247,654685,654530,1103052,654128,1104696,655304,656417,1103811,655161,656435,1103430,1226025,1226352,656372,1226079,1226796,1104033,1103601,1103472,1227669,654452,737173,657777,659393,1226130,1103613,655056,1103706,655061,1226361,1224408,656754,1348374,2085621,1103673,654524,655765,656537,1226460,1103814,656393,657277,655937,656052,1105347,1104036,1104693,657007,736164,1226520,654674,1104021,1104522,655209,1226730,654787,1227162,1104132,656415,1227108,1226850,1104534,654725,654779,1104450,654545,1227288,1226880,1104381,656362,1104699,656549,1227120,1226589,656838,655104,655739,1105536,654559,1105638,1105833,655761,1104543,654796,657111,1104567,1228461,2087142,656261,656609,1104954,1227612,1227933,1104741,1227912,656098,656009,655890,655815,656217,656944,655974,656599,737693,656024,1106694,1105176,655307,1105521,1105482,656027,1228422,1105545,656715,1105794,656958,656341,1105569,1228476,1228500,655493,1106256,1106217,1107066,1106562,656155,1228650,1228722,1229037,656413,1105866,658523,656621,656522,656330,656519,1106016,655453,1106346,656624,657674,656620,657111,1105836,656548,1106289,1228998,656770,1229577,1228800,655367,1105758,1106013,1105956,1229010,1228860,1106001,2089215,655462,1106244,661000,1106082,1106082,1106766,1229136,1106109,657390,656818,1229028,1106136,656728,656589,1106298,655888,656853,1106589,1229253,1106532,656910,658246,1106994,651411,1106682,1106802,1229382,1349661,1350069,1106451,657753,656882,658113,656835,1106691,2090556,1106730,657865,657066,1230291,656921,1106901,2090997,1106955,656568,1230177,1106889,2090775,657932,1104786,1227672,1105047,657437,657096,737835,1227657,655434,655884,1104945,655231,1104981,1226358,1227600,1104882,1227861,655901,1105020,1104948,656155,1106301,655224,1227750,655997,1105002,656688,657395,1105785,659329,1229955,656009,738192,656927,656231,1107309,659031,1107114,1107141,1107258,1230264,1107288,1107102,1107153,656902,657550,1230525,657283,657040,657005,656887,1107546,657312,1107198,1107198,1107231,657029,661403,657975,656608,656975,656458,656752,1230753,656542,1107426,656622,658480,657418,657469,657230,657271,657172,657188,657373,657214,657476,1231017,1230837,657174,1107744,1230465,657570,656505,1107825,1107825,1107852,1107813,1230969,1107663,1107621,2091987,656945,1107759,656795,1107675,656406,1230804,657328,1107636,1914235,1170663,720777,641293,643877,646303,1243097,643509,644485,644057,648441,1256708,646270,644955,652254,1331990,643532,644015,724998,645220,649678,644303,647107,647013,643915,2052831,1088160,645271,645986,644607,1333505,644599,647312,645139,1087023,644468,1374808,1208547,1086429,646509,728096,726770,728755,649956,1128941,727019,726600,726890,652489,647755,1088199,1252656,726322,728424,728535,1454586,1375405,645611,647133,727733,729329,645481,647762,1292033,647405,645953,647131,1089144,2057187,726158,1372105,1415115,1209618,726221,1537299,647558,653356,646586,1413195,1331945,1251217,1413172,1412740,1412845,1413345,647055,647549,1414416,1210668,1413055,649226,1534174,646422,1416295,648606,1414296,1415870,1539575,730578,651187,648117,1414595,1332981,1414648,647253,1332036,646991,729762,1415509,733377,647165,1542689,1536806,655434,1418504,1417818,650351,1413290,647287,1534440,1331790,650110,647384,1415425,1535331,650052,646160,1536532,727841,1535170,648386,650492,1538102,1416695,1333974,1536872,1537006,1415788,1537062,607804,1538548,1537062,1416975,1417418,649627,1416721,1538851,1417369,1539109,647957,1541252,653575,728459,1539204,652108,1537758,1537796,1537964,649686,1419158,650109,1419040,1418378,2389441,648906,1420426,1539190,651950,1420407,1381605,1539380,1417885,651925,648614,2392518,1420314,1542570,1093146,1419135,1540520,1388306,655639,652254,650671,1540806,650184,649757,1419333,1539930,1418340,1418406,1341440,650200,649837,1420516,650173,1216713,1542116,651010,1421585,1542423,649493,652062,1543538,1216611,1420974,1422108,1420895,654950,1421855,649683,652160,1541394,650675,1422479,1421869,1541318,1419670,652314,1419994,1419856,653661,652054,1094811,1420128,1344469,1541812,653163,1420160,650236,1543354,651257,1464726,1543398,1339284,1339665,1421630,1421875,1543788,651162,1505828,650539,650540,1545255,1217964,652090,1422155,654114,733660,1545172,652433,1422750,1423966,1302933,734693,1303211,1221518,1343700,651787,1423100,733919,1545257,1423240,735242,1423380,1423560,646182,1423681,1545498,1466308,1423485,735503,732809,1097526,1423765,1424375,652889,1304618,651515,1545916,1546290,652524,652664,652333,1424045,1181388,1263418,1182054,1262480,653078,652320,1384750,653664,1546980,1222067,1425766,655970,652913,1547346,1425495,654381,652110,655571,1220988,653208,734248,1099845,653179,1099884,1222428,1222260,1100304,653885,1100181,1100391,652848,1222086,1224141,1222782,652402,653202,1222740,655051,653766,1222740,1100850,654965,1100829,734406,1100967,1226676,1103331,1105635,1100790,1223280,1224525,1227168,1223478,1101210,1223631,1223550,656969,1101195,1225608,2080944,1222329,1223928,653422,656088,1102479,736372,1224030,1101627,1102059,1101708,654409,653863,1226208,1226145,734886,1224210,1224390,1101993,1224678,734670,655148,1225596,2082783,1224843,1102329,1102722,1102476,1102275,1225032,1102719,736322,1103148,1102566,1102914,1225080,735048,1103838,655489,653509,1225464,654337,656543,1103658,1103139,653865,657792,1103862,1104435,653915,1226040,735848,655630,1103697,1226130,737021,1103862,1103598,1103829,654771,1103871,657210,655368,655276,1103688,1226460,1104276,1104084,1104819,736734,1104696,1105122,1104138,657100,1227087,1227024,1104246,1226850,655127,1104630,1106079,655928,736353,654909,1229868,656320,657636,1106754,1104570,1104570,1105386,656285,1228002,655956,738027,1106172,655920,656917,1105587,1228410,1105596,1228650,1228689,1228764,1229943,1106478,655675,1228800,656524,1228143,1106964,1106082,1229103,657128,657313,2089938,655960,1229568,656991,1106703,1229781,1106826,657145,659547,1107264,656701,656654,1105557,1104948,1106427,1227810,1105002,1105002,656867,657009,658104,658595,656474,656450,1107234,1107138,656755,657072,656986,658529,656910,1107411,657109,657128,1107687,1231089,651009,656999,1230588,656586,657617,1107834,657006,1108116,656980,657442,638064,720123,721234,724026,1248302,639307,642597,723625,1165310,722683,643183,645276,642533,1413569,645951,642929,1126631,1369920,1171192,644908,646724,1169776,2051361,644747,644626,644684,647575,1374933,725355,651053,1292334,644334,647733,645545,645966,652498,1334815,644148,727077,646537,644309,1087569,652423,727616,645309,644784,644823,1088241,730545,647556,645188,645132,726808,652628,646978,645351,646686,652315,646328,729147,648728,647086,645834,1371827,1210266,1416279,652884,645249,1414120,729574,649756,1209975,1494811,647497,1374579,1210197,727501,646165,645669,727638,726886,646098,1413068,651575,726870,646518,1331936,727455,728856,651925,647304,647495,647458,1089612,1412761,1454096,647459,646274,1413174,728265,648435,1534724,1535162,647062,1413135,649670,730325,1414329,1535501,1413090,1331334,1330380,1538875,1415525,1535276,1535475,1414402,648065,1414782,2384344,1414280,2386786,1538785,648676,647529,729576,647003,1415092,647119,1415092,647804,1417667,1537989,730967,648833,646757,1536489,1415051,648232,647866,2386250,647537,728844,648431,648627,1534364,646283,1539994,2386124,1415525,727852,647322,1534744,1415891,1413685,1332147,647946,1211154,1534934,647859,1334757,1416743,1416695,1538164,2387814,1539034,2386373,650361,650578,1416137,1538269,1538693,1415850,647758,729655,1539070,1335267,651217,1416135,648589,1539304,1543074,610473,1342156,1334316,1416602,1537654,652641,650186,730914,1541411,1418797,1538848,649047,653856,731290,1539610,1212339,730393,4247292,1542730,651200,1335417,1418339,1539378,1539228,653573,1214745,645659,1419533,1419722,1540312,1214766,1542778,648867,1336950,1421631,1419232,733908,1419223,1540762,1419390,1421493,730301,1419101,1418274,1541125,1542303,1421018,1336482,651876,1542040,1216440,1420791,653646,1543165,1464889,1420660,650081,1420825,1542655,1506168,1422849,1217172,1542876,1541749,732697,1420249,1419440,1419870,1541318,1542783,650711,649866,649940,1423279,1543390,1421595,1544783,1541356,1419880,1420257,1301911,1420102,1541898,1420406,1420160,1216632,730526,1543044,1542914,1466844,1423057,1543608,734380,731596,651326,1543799,1423708,1262726,1504809,651610,2397111,1262670,1544738,1218141,1422529,1343326,1422365,731740,1422724,1544681,1544586,1422921,1423979,655175,651706,733366,1424168,652354,1545195,651870,1545252,1423941,1423992,651002,1384925,650869,733186,654036,650813,1545612,1263683,1225012,652117,651835,651778,1423590,652062,1424306,2400002,1222971,1545878,652481,1546030,1424045,652334,1220340,1546714,732715,1546853,651763,653846,1226688,652808,1181899,1425035,734916,1425264,653925,654320,652414,1303287,654573,652844,1224147,1102236,1140791,653474,653277,1105227,653138,652672,652774,1101834,1224078,653271,656085,1222683,1102554,1100415,1100592,1100493,1222860,734770,2078913,1101285,1223091,1101672,653765,1223526,652438,1100907,652702,654206,653321,653934,653215,1100790,1345140,654302,1223433,1225662,1101090,1102986,1101195,1224546,1103352,655674,1101438,735829,653900,1223760,735597,656631,654678,1224861,1103043,1104621,654441,1102905,1103955,1101912,1101789,1225116,1221156,1224411,1102284,654808,1102098,655803,654644,1102887,656338,653357,1226412,1103022,1103763,1103898,654613,1224810,656531,653943,655980,655382,1225818,655911,1103472,653943,1103049,1225965,1103037,1103142,1103004,1103112,1104495,2084163,1103325,651928,1104861,653983,1103301,1226829,653991,1103661,1103970,1226838,1103478,1226130,1228320,1229199,736826,1103706,1227279,1226604,1227447,1103892,1103814,1103814,1226490,1227648,656273,655035,1104921,1104663,655009,1226520,2085390,655856,1103895,1226622,737119,1227087,1104516,1227600,1105629,656210,655557,656546,657282,655809,655859,1229217,1106598,1228170,1106871,1105584,736866,1228380,656377,1106397,656239,656903,1106802,655611,656027,656502,1105866,1228785,655878,657140,1229343,1105845,1228950,656115,1229403,1228515,1229496,1106250,1106136,1106136,1106193,1106763,1107507,1229790,1106520,1106946,659133,657666,1106613,656659,659360,655162,656871,656298,1105137,1227774,656847,1105299,1229994,651605,658378,1230000,1230234,657327,1230153,656750,1107375,1107432,2091723,657045,1107687,1230924,657217,657283,1230741,657427,1107471,1107501,1107897,657310,1231242,1231071,1107498,1107807,1107807,1230909,658455,1107582,1107582,641347,640565,1293260,646529,721141,641415,721980,643059,641291,642834,1082187,642614,1328847,722819,643648,725140,644753,649417,723508,725861,724804,723442,646699,642785,1085982,647310,1249208,646233,644860,646763,644795,728224,644676,1290098,646593,645383,653078,725515,644530,646143,651629,725819,727717,725524,2054823,1168893,725247,649347,644503,646034,645715,647408,647251,647064,644522,647927,1087323,651542,649457,646977,726341,1371409,651911,1453515,1292644,1415585,645519,645561,647395,646388,1332581,1372854,1252365,1372358,657106,1372075,1210182,646120,1412965,1089297,646894,645191,2221478,1211220,645838,727731,1210524,1089705,646858,731083,1413436,1331046,647115,727869,1533990,650080,1534467,731897,647157,646587,1540122,649612,650264,1534908,1211373,646799,645936,726787,1542669,1414462,646737,1414245,1535694,1332474,1416348,1535808,729083,1414665,1535960,650707,1538201,730005,1212183,1417814,1415276,1417582,728287,1416650,651771,1534421,727287,1331739,1416938,727048,647089,727302,652553,648990,647817,1413790,1331037,1295200,727143,1538249,649231,1295316,1543671,1538184,1539128,653050,1538202,2388746,649231,648148,648009,730912,1296035,732131,654169,1212579,1416485,1540594,649274,1416168,1419704,1416333,1416553,1416380,1416485,650656,651618,648229,650547,649152,731309,1419821,1418253,649292,650916,1417684,1538980,1418590,1420165,1539266,1417710,1417710,1417850,1335402,1417885,1417885,1540485,648726,733377,649408,1420911,652112,1418992,733369,1418468,2391892,1419428,1093551,1214850,1539684,1419116,1419847,1541660,656162,1420363,649129,648411,651921,729713,1540950,1423373,1420115,655849,1542154,1382316,651472,652887,1420895,1216143,1217058,1420895,1421035,1421635,651892,1541128,2392804,650011,1541692,2398493,1541479,649948,649836,1422566,1463434,649213,1542978,1422133,2397626,1341356,1383020,1541356,730662,1422523,651384,1094634,1420055,1420134,1421335,1421613,1542929,1421140,1095846,1094037,1421105,652821,1421554,1421482,1422454,649859,4255656,1339467,1336386,1421567,653691,650495,1543637,1544495,1543636,1424211,652457,2396865,651913,1543824,650674,1421971,1545315,654071,1422733,655077,1544408,651161,1095777,1545326,652226,651271,734050,651391,1545389,2399969,650981,652208,652221,1344763,733863,733501,1545773,654218,1423625,654988,1423835,652866,654051,653758,1341642,651848,654841,655068,654182,656659,1424533,654845,1546927,1546942,1262474,1226136,2118522,1425365,654984,654956,1425305,1101339,653752,1101342,651965,734087,1099839,1222482,734621,652701,1099782,653798,1262929,735266,733555,654201,1099926,1222500,734466,2078340,735164,735093,1343859,1100583,1100601,653089,1100598,652901,1223154,1100601,656230,655392,1101012,654373,1103595,1103202,653491,2079780,653381,1223490,655912,655276,654227,736608,653219,654837,657221,1101519,654270,1224066,1104255,654728,656152,1101726,1224954,654816,1225845,1102110,657042,1224612,656328,1102296,654585,1102500,735113,1227921,1226820,654294,655472,1102464,1102728,654950,653774,1224024,654942,2082840,736475,1225977,654643,1347210,656178,654084,655220,653940,1103247,1226943,655622,1226490,1103406,653970,655581,1226088,1103490,1103853,1226430,1226919,1227084,656226,1225485,1104300,2086479,655672,656375,2086854,656805,655471,1104435,1227459,655010,1104651,1228002,655992,656103,1106205,655855,656281,655738,1106139,656840,1228572,1105509,656579,1105596,1105617,656897,1230090,1107144,1105788,1106973,1106037,1228653,737447,655787,1228815,1229184,655392,1106073,656603,656853,2089929,656497,656483,1106136,1105707,1103787,1106313,1106298,1230546,1351080,656872,657494,2091042,1106649,657805,1106514,656903,656700,1106730,658009,657089,656629,1229820,1105971,1104966,656150,1105239,1104840,1227564,1105482,737552,1104951,1105452,1105002,1107441,1106976,657257,656767,656784,1107195,1107249,1230405,1107435,1107168,1107135,657031,1230657,656865,1230561,1107576,657343,657273,657683,1107468,657352,657317,657444,1107804,1230780,1107711,1107816,1107639,1230708,1230666,1230834,1230768,657335,1230657,656917,656875,1107936,1107831,1107954,658254,1230972,656854,1107981,657672,656677,1107912,656874,1107897,1107981,1107876,1107963,1108047,1107990,657492,1107969,1107936,657339,1231101,1107957,1106769,1231086,738705,1231200,653718,1107969,658423,1231104,656808,658244,1107999,656629,1108005,657897,656806,657582,1107927,1231293,1231137,1231062,656806,657679,657659,657901,657518,657715,657385,657882,657777,657431,657844,657532,657758,657673,657985,657850,657480,657886,657439,1108041,1108092,657539,656792,1108152,1106601,1106625,1231032,657740,1231200,1231182,658775,1231152,1107975,1108137,657080,1108098,1108173,1108128,1108263,659355,1231317,1231263,1231290,1108128,2093124,657428,1108110,656964,1108278,657280]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}}]}]},{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"168549\",\"primaryLabelValue\":\"168549\"}},{\"attributeHeader\":{\"labelValue\":\"168698\",\"primaryLabelValue\":\"168698\"}},{\"attributeHeader\":{\"labelValue\":\"168944\",\"primaryLabelValue\":\"168944\"}},{\"attributeHeader\":{\"labelValue\":\"955130\",\"primaryLabelValue\":\"955130\"}},{\"attributeHeader\":{\"labelValue\":\"955132\",\"primaryLabelValue\":\"955132\"}},{\"attributeHeader\":{\"labelValue\":\"955134\",\"primaryLabelValue\":\"955134\"}},{\"attributeHeader\":{\"labelValue\":\"955140\",\"primaryLabelValue\":\"955140\"}},{\"attributeHeader\":{\"labelValue\":\"955142\",\"primaryLabelValue\":\"955142\"}},{\"attributeHeader\":{\"labelValue\":\"955144\",\"primaryLabelValue\":\"955144\"}},{\"attributeHeader\":{\"labelValue\":\"955146\",\"primaryLabelValue\":\"955146\"}},{\"attributeHeader\":{\"labelValue\":\"955148\",\"primaryLabelValue\":\"955148\"}},{\"attributeHeader\":{\"labelValue\":\"955154\",\"primaryLabelValue\":\"955154\"}},{\"attributeHeader\":{\"labelValue\":\"955156\",\"primaryLabelValue\":\"955156\"}},{\"attributeHeader\":{\"labelValue\":\"955158\",\"primaryLabelValue\":\"955158\"}},{\"attributeHeader\":{\"labelValue\":\"955160\",\"primaryLabelValue\":\"955160\"}},{\"attributeHeader\":{\"labelValue\":\"955164\",\"primaryLabelValue\":\"955164\"}},{\"attributeHeader\":{\"labelValue\":\"955166\",\"primaryLabelValue\":\"955166\"}},{\"attributeHeader\":{\"labelValue\":\"955168\",\"primaryLabelValue\":\"955168\"}},{\"attributeHeader\":{\"labelValue\":\"955174\",\"primaryLabelValue\":\"955174\"}},{\"attributeHeader\":{\"labelValue\":\"955176\",\"primaryLabelValue\":\"955176\"}},{\"attributeHeader\":{\"labelValue\":\"955178\",\"primaryLabelValue\":\"955178\"}},{\"attributeHeader\":{\"labelValue\":\"955180\",\"primaryLabelValue\":\"955180\"}},{\"attributeHeader\":{\"labelValue\":\"955182\",\"primaryLabelValue\":\"955182\"}},{\"attributeHeader\":{\"labelValue\":\"955184\",\"primaryLabelValue\":\"955184\"}},{\"attributeHeader\":{\"labelValue\":\"955186\",\"primaryLabelValue\":\"955186\"}},{\"attributeHeader\":{\"labelValue\":\"955188\",\"primaryLabelValue\":\"955188\"}},{\"attributeHeader\":{\"labelValue\":\"955190\",\"primaryLabelValue\":\"955190\"}},{\"attributeHeader\":{\"labelValue\":\"955192\",\"primaryLabelValue\":\"955192\"}},{\"attributeHeader\":{\"labelValue\":\"955194\",\"primaryLabelValue\":\"955194\"}},{\"attributeHeader\":{\"labelValue\":\"955196\",\"primaryLabelValue\":\"955196\"}},{\"attributeHeader\":{\"labelValue\":\"955198\",\"primaryLabelValue\":\"955198\"}},{\"attributeHeader\":{\"labelValue\":\"955200\",\"primaryLabelValue\":\"955200\"}},{\"attributeHeader\":{\"labelValue\":\"955202\",\"primaryLabelValue\":\"955202\"}},{\"attributeHeader\":{\"labelValue\":\"955204\",\"primaryLabelValue\":\"955204\"}},{\"attributeHeader\":{\"labelValue\":\"955208\",\"primaryLabelValue\":\"955208\"}},{\"attributeHeader\":{\"labelValue\":\"955210\",\"primaryLabelValue\":\"955210\"}},{\"attributeHeader\":{\"labelValue\":\"955212\",\"primaryLabelValue\":\"955212\"}},{\"attributeHeader\":{\"labelValue\":\"955214\",\"primaryLabelValue\":\"955214\"}},{\"attributeHeader\":{\"labelValue\":\"955216\",\"primaryLabelValue\":\"955216\"}},{\"attributeHeader\":{\"labelValue\":\"955218\",\"primaryLabelValue\":\"955218\"}},{\"attributeHeader\":{\"labelValue\":\"955220\",\"primaryLabelValue\":\"955220\"}},{\"attributeHeader\":{\"labelValue\":\"955222\",\"primaryLabelValue\":\"955222\"}},{\"attributeHeader\":{\"labelValue\":\"955224\",\"primaryLabelValue\":\"955224\"}},{\"attributeHeader\":{\"labelValue\":\"955226\",\"primaryLabelValue\":\"955226\"}},{\"attributeHeader\":{\"labelValue\":\"955228\",\"primaryLabelValue\":\"955228\"}},{\"attributeHeader\":{\"labelValue\":\"955230\",\"primaryLabelValue\":\"955230\"}},{\"attributeHeader\":{\"labelValue\":\"955232\",\"primaryLabelValue\":\"955232\"}},{\"attributeHeader\":{\"labelValue\":\"955234\",\"primaryLabelValue\":\"955234\"}},{\"attributeHeader\":{\"labelValue\":\"955236\",\"primaryLabelValue\":\"955236\"}},{\"attributeHeader\":{\"labelValue\":\"955240\",\"primaryLabelValue\":\"955240\"}},{\"attributeHeader\":{\"labelValue\":\"955242\",\"primaryLabelValue\":\"955242\"}},{\"attributeHeader\":{\"labelValue\":\"955244\",\"primaryLabelValue\":\"955244\"}},{\"attributeHeader\":{\"labelValue\":\"955246\",\"primaryLabelValue\":\"955246\"}},{\"attributeHeader\":{\"labelValue\":\"955248\",\"primaryLabelValue\":\"955248\"}},{\"attributeHeader\":{\"labelValue\":\"955250\",\"primaryLabelValue\":\"955250\"}},{\"attributeHeader\":{\"labelValue\":\"955252\",\"primaryLabelValue\":\"955252\"}},{\"attributeHeader\":{\"labelValue\":\"955254\",\"primaryLabelValue\":\"955254\"}},{\"attributeHeader\":{\"labelValue\":\"955256\",\"primaryLabelValue\":\"955256\"}},{\"attributeHeader\":{\"labelValue\":\"955258\",\"primaryLabelValue\":\"955258\"}},{\"attributeHeader\":{\"labelValue\":\"955260\",\"primaryLabelValue\":\"955260\"}},{\"attributeHeader\":{\"labelValue\":\"955262\",\"primaryLabelValue\":\"955262\"}},{\"attributeHeader\":{\"labelValue\":\"955264\",\"primaryLabelValue\":\"955264\"}},{\"attributeHeader\":{\"labelValue\":\"955268\",\"primaryLabelValue\":\"955268\"}},{\"attributeHeader\":{\"labelValue\":\"955272\",\"primaryLabelValue\":\"955272\"}},{\"attributeHeader\":{\"labelValue\":\"955274\",\"primaryLabelValue\":\"955274\"}},{\"attributeHeader\":{\"labelValue\":\"955276\",\"primaryLabelValue\":\"955276\"}},{\"attributeHeader\":{\"labelValue\":\"955278\",\"primaryLabelValue\":\"955278\"}},{\"attributeHeader\":{\"labelValue\":\"955280\",\"primaryLabelValue\":\"955280\"}},{\"attributeHeader\":{\"labelValue\":\"955282\",\"primaryLabelValue\":\"955282\"}},{\"attributeHeader\":{\"labelValue\":\"955284\",\"primaryLabelValue\":\"955284\"}},{\"attributeHeader\":{\"labelValue\":\"955286\",\"primaryLabelValue\":\"955286\"}},{\"attributeHeader\":{\"labelValue\":\"955290\",\"primaryLabelValue\":\"955290\"}},{\"attributeHeader\":{\"labelValue\":\"955292\",\"primaryLabelValue\":\"955292\"}},{\"attributeHeader\":{\"labelValue\":\"955294\",\"primaryLabelValue\":\"955294\"}},{\"attributeHeader\":{\"labelValue\":\"955298\",\"primaryLabelValue\":\"955298\"}},{\"attributeHeader\":{\"labelValue\":\"955300\",\"primaryLabelValue\":\"955300\"}},{\"attributeHeader\":{\"labelValue\":\"955302\",\"primaryLabelValue\":\"955302\"}},{\"attributeHeader\":{\"labelValue\":\"955304\",\"primaryLabelValue\":\"955304\"}},{\"attributeHeader\":{\"labelValue\":\"955306\",\"primaryLabelValue\":\"955306\"}},{\"attributeHeader\":{\"labelValue\":\"955308\",\"primaryLabelValue\":\"955308\"}},{\"attributeHeader\":{\"labelValue\":\"955312\",\"primaryLabelValue\":\"955312\"}},{\"attributeHeader\":{\"labelValue\":\"955314\",\"primaryLabelValue\":\"955314\"}},{\"attributeHeader\":{\"labelValue\":\"955316\",\"primaryLabelValue\":\"955316\"}},{\"attributeHeader\":{\"labelValue\":\"955318\",\"primaryLabelValue\":\"955318\"}},{\"attributeHeader\":{\"labelValue\":\"955320\",\"primaryLabelValue\":\"955320\"}},{\"attributeHeader\":{\"labelValue\":\"955322\",\"primaryLabelValue\":\"955322\"}},{\"attributeHeader\":{\"labelValue\":\"955324\",\"primaryLabelValue\":\"955324\"}},{\"attributeHeader\":{\"labelValue\":\"955326\",\"primaryLabelValue\":\"955326\"}},{\"attributeHeader\":{\"labelValue\":\"955328\",\"primaryLabelValue\":\"955328\"}},{\"attributeHeader\":{\"labelValue\":\"955330\",\"primaryLabelValue\":\"955330\"}},{\"attributeHeader\":{\"labelValue\":\"955336\",\"primaryLabelValue\":\"955336\"}},{\"attributeHeader\":{\"labelValue\":\"955338\",\"primaryLabelValue\":\"955338\"}},{\"attributeHeader\":{\"labelValue\":\"955340\",\"primaryLabelValue\":\"955340\"}},{\"attributeHeader\":{\"labelValue\":\"955342\",\"primaryLabelValue\":\"955342\"}},{\"attributeHeader\":{\"labelValue\":\"955344\",\"primaryLabelValue\":\"955344\"}},{\"attributeHeader\":{\"labelValue\":\"955346\",\"primaryLabelValue\":\"955346\"}},{\"attributeHeader\":{\"labelValue\":\"955348\",\"primaryLabelValue\":\"955348\"}},{\"attributeHeader\":{\"labelValue\":\"955350\",\"primaryLabelValue\":\"955350\"}},{\"attributeHeader\":{\"labelValue\":\"955352\",\"primaryLabelValue\":\"955352\"}},{\"attributeHeader\":{\"labelValue\":\"955354\",\"primaryLabelValue\":\"955354\"}},{\"attributeHeader\":{\"labelValue\":\"955356\",\"primaryLabelValue\":\"955356\"}},{\"attributeHeader\":{\"labelValue\":\"955358\",\"primaryLabelValue\":\"955358\"}},{\"attributeHeader\":{\"labelValue\":\"955360\",\"primaryLabelValue\":\"955360\"}},{\"attributeHeader\":{\"labelValue\":\"955362\",\"primaryLabelValue\":\"955362\"}},{\"attributeHeader\":{\"labelValue\":\"955364\",\"primaryLabelValue\":\"955364\"}},{\"attributeHeader\":{\"labelValue\":\"955366\",\"primaryLabelValue\":\"955366\"}},{\"attributeHeader\":{\"labelValue\":\"955368\",\"primaryLabelValue\":\"955368\"}},{\"attributeHeader\":{\"labelValue\":\"955370\",\"primaryLabelValue\":\"955370\"}},{\"attributeHeader\":{\"labelValue\":\"955372\",\"primaryLabelValue\":\"955372\"}},{\"attributeHeader\":{\"labelValue\":\"955374\",\"primaryLabelValue\":\"955374\"}},{\"attributeHeader\":{\"labelValue\":\"955376\",\"primaryLabelValue\":\"955376\"}},{\"attributeHeader\":{\"labelValue\":\"955378\",\"primaryLabelValue\":\"955378\"}},{\"attributeHeader\":{\"labelValue\":\"955380\",\"primaryLabelValue\":\"955380\"}},{\"attributeHeader\":{\"labelValue\":\"955382\",\"primaryLabelValue\":\"955382\"}},{\"attributeHeader\":{\"labelValue\":\"955384\",\"primaryLabelValue\":\"955384\"}},{\"attributeHeader\":{\"labelValue\":\"955386\",\"primaryLabelValue\":\"955386\"}},{\"attributeHeader\":{\"labelValue\":\"955388\",\"primaryLabelValue\":\"955388\"}},{\"attributeHeader\":{\"labelValue\":\"955390\",\"primaryLabelValue\":\"955390\"}},{\"attributeHeader\":{\"labelValue\":\"955392\",\"primaryLabelValue\":\"955392\"}},{\"attributeHeader\":{\"labelValue\":\"955394\",\"primaryLabelValue\":\"955394\"}},{\"attributeHeader\":{\"labelValue\":\"955398\",\"primaryLabelValue\":\"955398\"}},{\"attributeHeader\":{\"labelValue\":\"955402\",\"primaryLabelValue\":\"955402\"}},{\"attributeHeader\":{\"labelValue\":\"955406\",\"primaryLabelValue\":\"955406\"}},{\"attributeHeader\":{\"labelValue\":\"955408\",\"primaryLabelValue\":\"955408\"}},{\"attributeHeader\":{\"labelValue\":\"955410\",\"primaryLabelValue\":\"955410\"}},{\"attributeHeader\":{\"labelValue\":\"955414\",\"primaryLabelValue\":\"955414\"}},{\"attributeHeader\":{\"labelValue\":\"955420\",\"primaryLabelValue\":\"955420\"}},{\"attributeHeader\":{\"labelValue\":\"955422\",\"primaryLabelValue\":\"955422\"}},{\"attributeHeader\":{\"labelValue\":\"955424\",\"primaryLabelValue\":\"955424\"}},{\"attributeHeader\":{\"labelValue\":\"955426\",\"primaryLabelValue\":\"955426\"}},{\"attributeHeader\":{\"labelValue\":\"955428\",\"primaryLabelValue\":\"955428\"}},{\"attributeHeader\":{\"labelValue\":\"955430\",\"primaryLabelValue\":\"955430\"}},{\"attributeHeader\":{\"labelValue\":\"955432\",\"primaryLabelValue\":\"955432\"}},{\"attributeHeader\":{\"labelValue\":\"955434\",\"primaryLabelValue\":\"955434\"}},{\"attributeHeader\":{\"labelValue\":\"955436\",\"primaryLabelValue\":\"955436\"}},{\"attributeHeader\":{\"labelValue\":\"955440\",\"primaryLabelValue\":\"955440\"}},{\"attributeHeader\":{\"labelValue\":\"955442\",\"primaryLabelValue\":\"955442\"}},{\"attributeHeader\":{\"labelValue\":\"955444\",\"primaryLabelValue\":\"955444\"}},{\"attributeHeader\":{\"labelValue\":\"955446\",\"primaryLabelValue\":\"955446\"}},{\"attributeHeader\":{\"labelValue\":\"955448\",\"primaryLabelValue\":\"955448\"}},{\"attributeHeader\":{\"labelValue\":\"955452\",\"primaryLabelValue\":\"955452\"}},{\"attributeHeader\":{\"labelValue\":\"955454\",\"primaryLabelValue\":\"955454\"}},{\"attributeHeader\":{\"labelValue\":\"955456\",\"primaryLabelValue\":\"955456\"}},{\"attributeHeader\":{\"labelValue\":\"955458\",\"primaryLabelValue\":\"955458\"}},{\"attributeHeader\":{\"labelValue\":\"955460\",\"primaryLabelValue\":\"955460\"}},{\"attributeHeader\":{\"labelValue\":\"955462\",\"primaryLabelValue\":\"955462\"}},{\"attributeHeader\":{\"labelValue\":\"955464\",\"primaryLabelValue\":\"955464\"}},{\"attributeHeader\":{\"labelValue\":\"955466\",\"primaryLabelValue\":\"955466\"}},{\"attributeHeader\":{\"labelValue\":\"955468\",\"primaryLabelValue\":\"955468\"}},{\"attributeHeader\":{\"labelValue\":\"955470\",\"primaryLabelValue\":\"955470\"}},{\"attributeHeader\":{\"labelValue\":\"955472\",\"primaryLabelValue\":\"955472\"}},{\"attributeHeader\":{\"labelValue\":\"955474\",\"primaryLabelValue\":\"955474\"}},{\"attributeHeader\":{\"labelValue\":\"955476\",\"primaryLabelValue\":\"955476\"}},{\"attributeHeader\":{\"labelValue\":\"955478\",\"primaryLabelValue\":\"955478\"}},{\"attributeHeader\":{\"labelValue\":\"955480\",\"primaryLabelValue\":\"955480\"}},{\"attributeHeader\":{\"labelValue\":\"955482\",\"primaryLabelValue\":\"955482\"}},{\"attributeHeader\":{\"labelValue\":\"955484\",\"primaryLabelValue\":\"955484\"}},{\"attributeHeader\":{\"labelValue\":\"955486\",\"primaryLabelValue\":\"955486\"}},{\"attributeHeader\":{\"labelValue\":\"955488\",\"primaryLabelValue\":\"955488\"}},{\"attributeHeader\":{\"labelValue\":\"955490\",\"primaryLabelValue\":\"955490\"}},{\"attributeHeader\":{\"labelValue\":\"955492\",\"primaryLabelValue\":\"955492\"}},{\"attributeHeader\":{\"labelValue\":\"955494\",\"primaryLabelValue\":\"955494\"}},{\"attributeHeader\":{\"labelValue\":\"955496\",\"primaryLabelValue\":\"955496\"}},{\"attributeHeader\":{\"labelValue\":\"955498\",\"primaryLabelValue\":\"955498\"}},{\"attributeHeader\":{\"labelValue\":\"955500\",\"primaryLabelValue\":\"955500\"}},{\"attributeHeader\":{\"labelValue\":\"955502\",\"primaryLabelValue\":\"955502\"}},{\"attributeHeader\":{\"labelValue\":\"955504\",\"primaryLabelValue\":\"955504\"}},{\"attributeHeader\":{\"labelValue\":\"955506\",\"primaryLabelValue\":\"955506\"}},{\"attributeHeader\":{\"labelValue\":\"955508\",\"primaryLabelValue\":\"955508\"}},{\"attributeHeader\":{\"labelValue\":\"955510\",\"primaryLabelValue\":\"955510\"}},{\"attributeHeader\":{\"labelValue\":\"955512\",\"primaryLabelValue\":\"955512\"}},{\"attributeHeader\":{\"labelValue\":\"955514\",\"primaryLabelValue\":\"955514\"}},{\"attributeHeader\":{\"labelValue\":\"955516\",\"primaryLabelValue\":\"955516\"}},{\"attributeHeader\":{\"labelValue\":\"955518\",\"primaryLabelValue\":\"955518\"}},{\"attributeHeader\":{\"labelValue\":\"955520\",\"primaryLabelValue\":\"955520\"}},{\"attributeHeader\":{\"labelValue\":\"955522\",\"primaryLabelValue\":\"955522\"}},{\"attributeHeader\":{\"labelValue\":\"955524\",\"primaryLabelValue\":\"955524\"}},{\"attributeHeader\":{\"labelValue\":\"955526\",\"primaryLabelValue\":\"955526\"}},{\"attributeHeader\":{\"labelValue\":\"955528\",\"primaryLabelValue\":\"955528\"}},{\"attributeHeader\":{\"labelValue\":\"955530\",\"primaryLabelValue\":\"955530\"}},{\"attributeHeader\":{\"labelValue\":\"955532\",\"primaryLabelValue\":\"955532\"}},{\"attributeHeader\":{\"labelValue\":\"955534\",\"primaryLabelValue\":\"955534\"}},{\"attributeHeader\":{\"labelValue\":\"955536\",\"primaryLabelValue\":\"955536\"}},{\"attributeHeader\":{\"labelValue\":\"955538\",\"primaryLabelValue\":\"955538\"}},{\"attributeHeader\":{\"labelValue\":\"955540\",\"primaryLabelValue\":\"955540\"}},{\"attributeHeader\":{\"labelValue\":\"955542\",\"primaryLabelValue\":\"955542\"}},{\"attributeHeader\":{\"labelValue\":\"955544\",\"primaryLabelValue\":\"955544\"}},{\"attributeHeader\":{\"labelValue\":\"955546\",\"primaryLabelValue\":\"955546\"}},{\"attributeHeader\":{\"labelValue\":\"955548\",\"primaryLabelValue\":\"955548\"}},{\"attributeHeader\":{\"labelValue\":\"955550\",\"primaryLabelValue\":\"955550\"}},{\"attributeHeader\":{\"labelValue\":\"955552\",\"primaryLabelValue\":\"955552\"}},{\"attributeHeader\":{\"labelValue\":\"955554\",\"primaryLabelValue\":\"955554\"}},{\"attributeHeader\":{\"labelValue\":\"955556\",\"primaryLabelValue\":\"955556\"}},{\"attributeHeader\":{\"labelValue\":\"955558\",\"primaryLabelValue\":\"955558\"}},{\"attributeHeader\":{\"labelValue\":\"955560\",\"primaryLabelValue\":\"955560\"}},{\"attributeHeader\":{\"labelValue\":\"955562\",\"primaryLabelValue\":\"955562\"}},{\"attributeHeader\":{\"labelValue\":\"955564\",\"primaryLabelValue\":\"955564\"}},{\"attributeHeader\":{\"labelValue\":\"955566\",\"primaryLabelValue\":\"955566\"}},{\"attributeHeader\":{\"labelValue\":\"955568\",\"primaryLabelValue\":\"955568\"}},{\"attributeHeader\":{\"labelValue\":\"955570\",\"primaryLabelValue\":\"955570\"}},{\"attributeHeader\":{\"labelValue\":\"955572\",\"primaryLabelValue\":\"955572\"}},{\"attributeHeader\":{\"labelValue\":\"955574\",\"primaryLabelValue\":\"955574\"}},{\"attributeHeader\":{\"labelValue\":\"955576\",\"primaryLabelValue\":\"955576\"}},{\"attributeHeader\":{\"labelValue\":\"955578\",\"primaryLabelValue\":\"955578\"}},{\"attributeHeader\":{\"labelValue\":\"955580\",\"primaryLabelValue\":\"955580\"}},{\"attributeHeader\":{\"labelValue\":\"955582\",\"primaryLabelValue\":\"955582\"}},{\"attributeHeader\":{\"labelValue\":\"955584\",\"primaryLabelValue\":\"955584\"}},{\"attributeHeader\":{\"labelValue\":\"955586\",\"primaryLabelValue\":\"955586\"}},{\"attributeHeader\":{\"labelValue\":\"955588\",\"primaryLabelValue\":\"955588\"}},{\"attributeHeader\":{\"labelValue\":\"955590\",\"primaryLabelValue\":\"955590\"}},{\"attributeHeader\":{\"labelValue\":\"955592\",\"primaryLabelValue\":\"955592\"}},{\"attributeHeader\":{\"labelValue\":\"955594\",\"primaryLabelValue\":\"955594\"}},{\"attributeHeader\":{\"labelValue\":\"955596\",\"primaryLabelValue\":\"955596\"}},{\"attributeHeader\":{\"labelValue\":\"955598\",\"primaryLabelValue\":\"955598\"}},{\"attributeHeader\":{\"labelValue\":\"955600\",\"primaryLabelValue\":\"955600\"}},{\"attributeHeader\":{\"labelValue\":\"955602\",\"primaryLabelValue\":\"955602\"}},{\"attributeHeader\":{\"labelValue\":\"955604\",\"primaryLabelValue\":\"955604\"}},{\"attributeHeader\":{\"labelValue\":\"955606\",\"primaryLabelValue\":\"955606\"}},{\"attributeHeader\":{\"labelValue\":\"955608\",\"primaryLabelValue\":\"955608\"}},{\"attributeHeader\":{\"labelValue\":\"955610\",\"primaryLabelValue\":\"955610\"}},{\"attributeHeader\":{\"labelValue\":\"955612\",\"primaryLabelValue\":\"955612\"}},{\"attributeHeader\":{\"labelValue\":\"955614\",\"primaryLabelValue\":\"955614\"}},{\"attributeHeader\":{\"labelValue\":\"955616\",\"primaryLabelValue\":\"955616\"}},{\"attributeHeader\":{\"labelValue\":\"955618\",\"primaryLabelValue\":\"955618\"}},{\"attributeHeader\":{\"labelValue\":\"955620\",\"primaryLabelValue\":\"955620\"}},{\"attributeHeader\":{\"labelValue\":\"955622\",\"primaryLabelValue\":\"955622\"}},{\"attributeHeader\":{\"labelValue\":\"955624\",\"primaryLabelValue\":\"955624\"}},{\"attributeHeader\":{\"labelValue\":\"955626\",\"primaryLabelValue\":\"955626\"}},{\"attributeHeader\":{\"labelValue\":\"955628\",\"primaryLabelValue\":\"955628\"}},{\"attributeHeader\":{\"labelValue\":\"955630\",\"primaryLabelValue\":\"955630\"}},{\"attributeHeader\":{\"labelValue\":\"955632\",\"primaryLabelValue\":\"955632\"}},{\"attributeHeader\":{\"labelValue\":\"955634\",\"primaryLabelValue\":\"955634\"}},{\"attributeHeader\":{\"labelValue\":\"955636\",\"primaryLabelValue\":\"955636\"}},{\"attributeHeader\":{\"labelValue\":\"955638\",\"primaryLabelValue\":\"955638\"}},{\"attributeHeader\":{\"labelValue\":\"955640\",\"primaryLabelValue\":\"955640\"}},{\"attributeHeader\":{\"labelValue\":\"955642\",\"primaryLabelValue\":\"955642\"}},{\"attributeHeader\":{\"labelValue\":\"955644\",\"primaryLabelValue\":\"955644\"}},{\"attributeHeader\":{\"labelValue\":\"955646\",\"primaryLabelValue\":\"955646\"}},{\"attributeHeader\":{\"labelValue\":\"955648\",\"primaryLabelValue\":\"955648\"}},{\"attributeHeader\":{\"labelValue\":\"955650\",\"primaryLabelValue\":\"955650\"}},{\"attributeHeader\":{\"labelValue\":\"955652\",\"primaryLabelValue\":\"955652\"}},{\"attributeHeader\":{\"labelValue\":\"955654\",\"primaryLabelValue\":\"955654\"}},{\"attributeHeader\":{\"labelValue\":\"955656\",\"primaryLabelValue\":\"955656\"}},{\"attributeHeader\":{\"labelValue\":\"955658\",\"primaryLabelValue\":\"955658\"}},{\"attributeHeader\":{\"labelValue\":\"955660\",\"primaryLabelValue\":\"955660\"}},{\"attributeHeader\":{\"labelValue\":\"955662\",\"primaryLabelValue\":\"955662\"}},{\"attributeHeader\":{\"labelValue\":\"955664\",\"primaryLabelValue\":\"955664\"}},{\"attributeHeader\":{\"labelValue\":\"955666\",\"primaryLabelValue\":\"955666\"}},{\"attributeHeader\":{\"labelValue\":\"955668\",\"primaryLabelValue\":\"955668\"}},{\"attributeHeader\":{\"labelValue\":\"955670\",\"primaryLabelValue\":\"955670\"}},{\"attributeHeader\":{\"labelValue\":\"955672\",\"primaryLabelValue\":\"955672\"}},{\"attributeHeader\":{\"labelValue\":\"955674\",\"primaryLabelValue\":\"955674\"}},{\"attributeHeader\":{\"labelValue\":\"955676\",\"primaryLabelValue\":\"955676\"}},{\"attributeHeader\":{\"labelValue\":\"955678\",\"primaryLabelValue\":\"955678\"}},{\"attributeHeader\":{\"labelValue\":\"955680\",\"primaryLabelValue\":\"955680\"}},{\"attributeHeader\":{\"labelValue\":\"955682\",\"primaryLabelValue\":\"955682\"}},{\"attributeHeader\":{\"labelValue\":\"955684\",\"primaryLabelValue\":\"955684\"}},{\"attributeHeader\":{\"labelValue\":\"955686\",\"primaryLabelValue\":\"955686\"}},{\"attributeHeader\":{\"labelValue\":\"955688\",\"primaryLabelValue\":\"955688\"}},{\"attributeHeader\":{\"labelValue\":\"955690\",\"primaryLabelValue\":\"955690\"}},{\"attributeHeader\":{\"labelValue\":\"955692\",\"primaryLabelValue\":\"955692\"}},{\"attributeHeader\":{\"labelValue\":\"955694\",\"primaryLabelValue\":\"955694\"}},{\"attributeHeader\":{\"labelValue\":\"955696\",\"primaryLabelValue\":\"955696\"}},{\"attributeHeader\":{\"labelValue\":\"955698\",\"primaryLabelValue\":\"955698\"}},{\"attributeHeader\":{\"labelValue\":\"955700\",\"primaryLabelValue\":\"955700\"}},{\"attributeHeader\":{\"labelValue\":\"955702\",\"primaryLabelValue\":\"955702\"}},{\"attributeHeader\":{\"labelValue\":\"955704\",\"primaryLabelValue\":\"955704\"}},{\"attributeHeader\":{\"labelValue\":\"955706\",\"primaryLabelValue\":\"955706\"}},{\"attributeHeader\":{\"labelValue\":\"955708\",\"primaryLabelValue\":\"955708\"}},{\"attributeHeader\":{\"labelValue\":\"955710\",\"primaryLabelValue\":\"955710\"}},{\"attributeHeader\":{\"labelValue\":\"955712\",\"primaryLabelValue\":\"955712\"}},{\"attributeHeader\":{\"labelValue\":\"955714\",\"primaryLabelValue\":\"955714\"}},{\"attributeHeader\":{\"labelValue\":\"955716\",\"primaryLabelValue\":\"955716\"}},{\"attributeHeader\":{\"labelValue\":\"955718\",\"primaryLabelValue\":\"955718\"}},{\"attributeHeader\":{\"labelValue\":\"955720\",\"primaryLabelValue\":\"955720\"}},{\"attributeHeader\":{\"labelValue\":\"955722\",\"primaryLabelValue\":\"955722\"}},{\"attributeHeader\":{\"labelValue\":\"955724\",\"primaryLabelValue\":\"955724\"}},{\"attributeHeader\":{\"labelValue\":\"955726\",\"primaryLabelValue\":\"955726\"}},{\"attributeHeader\":{\"labelValue\":\"955728\",\"primaryLabelValue\":\"955728\"}},{\"attributeHeader\":{\"labelValue\":\"955730\",\"primaryLabelValue\":\"955730\"}},{\"attributeHeader\":{\"labelValue\":\"955732\",\"primaryLabelValue\":\"955732\"}},{\"attributeHeader\":{\"labelValue\":\"955734\",\"primaryLabelValue\":\"955734\"}},{\"attributeHeader\":{\"labelValue\":\"955736\",\"primaryLabelValue\":\"955736\"}},{\"attributeHeader\":{\"labelValue\":\"955738\",\"primaryLabelValue\":\"955738\"}},{\"attributeHeader\":{\"labelValue\":\"955740\",\"primaryLabelValue\":\"955740\"}},{\"attributeHeader\":{\"labelValue\":\"955742\",\"primaryLabelValue\":\"955742\"}},{\"attributeHeader\":{\"labelValue\":\"955744\",\"primaryLabelValue\":\"955744\"}},{\"attributeHeader\":{\"labelValue\":\"955746\",\"primaryLabelValue\":\"955746\"}},{\"attributeHeader\":{\"labelValue\":\"955748\",\"primaryLabelValue\":\"955748\"}},{\"attributeHeader\":{\"labelValue\":\"955750\",\"primaryLabelValue\":\"955750\"}},{\"attributeHeader\":{\"labelValue\":\"955752\",\"primaryLabelValue\":\"955752\"}},{\"attributeHeader\":{\"labelValue\":\"955754\",\"primaryLabelValue\":\"955754\"}},{\"attributeHeader\":{\"labelValue\":\"955756\",\"primaryLabelValue\":\"955756\"}},{\"attributeHeader\":{\"labelValue\":\"955758\",\"primaryLabelValue\":\"955758\"}},{\"attributeHeader\":{\"labelValue\":\"955760\",\"primaryLabelValue\":\"955760\"}},{\"attributeHeader\":{\"labelValue\":\"955762\",\"primaryLabelValue\":\"955762\"}},{\"attributeHeader\":{\"labelValue\":\"955764\",\"primaryLabelValue\":\"955764\"}},{\"attributeHeader\":{\"labelValue\":\"955766\",\"primaryLabelValue\":\"955766\"}},{\"attributeHeader\":{\"labelValue\":\"955768\",\"primaryLabelValue\":\"955768\"}},{\"attributeHeader\":{\"labelValue\":\"955770\",\"primaryLabelValue\":\"955770\"}},{\"attributeHeader\":{\"labelValue\":\"955772\",\"primaryLabelValue\":\"955772\"}},{\"attributeHeader\":{\"labelValue\":\"955774\",\"primaryLabelValue\":\"955774\"}},{\"attributeHeader\":{\"labelValue\":\"955776\",\"primaryLabelValue\":\"955776\"}},{\"attributeHeader\":{\"labelValue\":\"955778\",\"primaryLabelValue\":\"955778\"}},{\"attributeHeader\":{\"labelValue\":\"955780\",\"primaryLabelValue\":\"955780\"}},{\"attributeHeader\":{\"labelValue\":\"955782\",\"primaryLabelValue\":\"955782\"}},{\"attributeHeader\":{\"labelValue\":\"955784\",\"primaryLabelValue\":\"955784\"}},{\"attributeHeader\":{\"labelValue\":\"955786\",\"primaryLabelValue\":\"955786\"}},{\"attributeHeader\":{\"labelValue\":\"955788\",\"primaryLabelValue\":\"955788\"}},{\"attributeHeader\":{\"labelValue\":\"955790\",\"primaryLabelValue\":\"955790\"}},{\"attributeHeader\":{\"labelValue\":\"955792\",\"primaryLabelValue\":\"955792\"}},{\"attributeHeader\":{\"labelValue\":\"955794\",\"primaryLabelValue\":\"955794\"}},{\"attributeHeader\":{\"labelValue\":\"955796\",\"primaryLabelValue\":\"955796\"}},{\"attributeHeader\":{\"labelValue\":\"955798\",\"primaryLabelValue\":\"955798\"}},{\"attributeHeader\":{\"labelValue\":\"955800\",\"primaryLabelValue\":\"955800\"}},{\"attributeHeader\":{\"labelValue\":\"955802\",\"primaryLabelValue\":\"955802\"}},{\"attributeHeader\":{\"labelValue\":\"955804\",\"primaryLabelValue\":\"955804\"}},{\"attributeHeader\":{\"labelValue\":\"955806\",\"primaryLabelValue\":\"955806\"}},{\"attributeHeader\":{\"labelValue\":\"955808\",\"primaryLabelValue\":\"955808\"}},{\"attributeHeader\":{\"labelValue\":\"955810\",\"primaryLabelValue\":\"955810\"}},{\"attributeHeader\":{\"labelValue\":\"955812\",\"primaryLabelValue\":\"955812\"}},{\"attributeHeader\":{\"labelValue\":\"955814\",\"primaryLabelValue\":\"955814\"}},{\"attributeHeader\":{\"labelValue\":\"955816\",\"primaryLabelValue\":\"955816\"}},{\"attributeHeader\":{\"labelValue\":\"955818\",\"primaryLabelValue\":\"955818\"}},{\"attributeHeader\":{\"labelValue\":\"955820\",\"primaryLabelValue\":\"955820\"}},{\"attributeHeader\":{\"labelValue\":\"955822\",\"primaryLabelValue\":\"955822\"}},{\"attributeHeader\":{\"labelValue\":\"955824\",\"primaryLabelValue\":\"955824\"}},{\"attributeHeader\":{\"labelValue\":\"955826\",\"primaryLabelValue\":\"955826\"}},{\"attributeHeader\":{\"labelValue\":\"955828\",\"primaryLabelValue\":\"955828\"}},{\"attributeHeader\":{\"labelValue\":\"955830\",\"primaryLabelValue\":\"955830\"}},{\"attributeHeader\":{\"labelValue\":\"955832\",\"primaryLabelValue\":\"955832\"}},{\"attributeHeader\":{\"labelValue\":\"955834\",\"primaryLabelValue\":\"955834\"}},{\"attributeHeader\":{\"labelValue\":\"955836\",\"primaryLabelValue\":\"955836\"}},{\"attributeHeader\":{\"labelValue\":\"955838\",\"primaryLabelValue\":\"955838\"}},{\"attributeHeader\":{\"labelValue\":\"955840\",\"primaryLabelValue\":\"955840\"}},{\"attributeHeader\":{\"labelValue\":\"955842\",\"primaryLabelValue\":\"955842\"}},{\"attributeHeader\":{\"labelValue\":\"955844\",\"primaryLabelValue\":\"955844\"}},{\"attributeHeader\":{\"labelValue\":\"955846\",\"primaryLabelValue\":\"955846\"}},{\"attributeHeader\":{\"labelValue\":\"955848\",\"primaryLabelValue\":\"955848\"}},{\"attributeHeader\":{\"labelValue\":\"955850\",\"primaryLabelValue\":\"955850\"}},{\"attributeHeader\":{\"labelValue\":\"955852\",\"primaryLabelValue\":\"955852\"}},{\"attributeHeader\":{\"labelValue\":\"955854\",\"primaryLabelValue\":\"955854\"}},{\"attributeHeader\":{\"labelValue\":\"955856\",\"primaryLabelValue\":\"955856\"}},{\"attributeHeader\":{\"labelValue\":\"955858\",\"primaryLabelValue\":\"955858\"}},{\"attributeHeader\":{\"labelValue\":\"955860\",\"primaryLabelValue\":\"955860\"}},{\"attributeHeader\":{\"labelValue\":\"955862\",\"primaryLabelValue\":\"955862\"}},{\"attributeHeader\":{\"labelValue\":\"955864\",\"primaryLabelValue\":\"955864\"}},{\"attributeHeader\":{\"labelValue\":\"955866\",\"primaryLabelValue\":\"955866\"}},{\"attributeHeader\":{\"labelValue\":\"955868\",\"primaryLabelValue\":\"955868\"}},{\"attributeHeader\":{\"labelValue\":\"955870\",\"primaryLabelValue\":\"955870\"}},{\"attributeHeader\":{\"labelValue\":\"955872\",\"primaryLabelValue\":\"955872\"}},{\"attributeHeader\":{\"labelValue\":\"955874\",\"primaryLabelValue\":\"955874\"}},{\"attributeHeader\":{\"labelValue\":\"955876\",\"primaryLabelValue\":\"955876\"}},{\"attributeHeader\":{\"labelValue\":\"955878\",\"primaryLabelValue\":\"955878\"}},{\"attributeHeader\":{\"labelValue\":\"955880\",\"primaryLabelValue\":\"955880\"}},{\"attributeHeader\":{\"labelValue\":\"955882\",\"primaryLabelValue\":\"955882\"}},{\"attributeHeader\":{\"labelValue\":\"955884\",\"primaryLabelValue\":\"955884\"}},{\"attributeHeader\":{\"labelValue\":\"955886\",\"primaryLabelValue\":\"955886\"}},{\"attributeHeader\":{\"labelValue\":\"955888\",\"primaryLabelValue\":\"955888\"}},{\"attributeHeader\":{\"labelValue\":\"955890\",\"primaryLabelValue\":\"955890\"}},{\"attributeHeader\":{\"labelValue\":\"955892\",\"primaryLabelValue\":\"955892\"}},{\"attributeHeader\":{\"labelValue\":\"955894\",\"primaryLabelValue\":\"955894\"}},{\"attributeHeader\":{\"labelValue\":\"955896\",\"primaryLabelValue\":\"955896\"}},{\"attributeHeader\":{\"labelValue\":\"955898\",\"primaryLabelValue\":\"955898\"}},{\"attributeHeader\":{\"labelValue\":\"955900\",\"primaryLabelValue\":\"955900\"}},{\"attributeHeader\":{\"labelValue\":\"955902\",\"primaryLabelValue\":\"955902\"}},{\"attributeHeader\":{\"labelValue\":\"955904\",\"primaryLabelValue\":\"955904\"}},{\"attributeHeader\":{\"labelValue\":\"955906\",\"primaryLabelValue\":\"955906\"}},{\"attributeHeader\":{\"labelValue\":\"955908\",\"primaryLabelValue\":\"955908\"}},{\"attributeHeader\":{\"labelValue\":\"955910\",\"primaryLabelValue\":\"955910\"}},{\"attributeHeader\":{\"labelValue\":\"955912\",\"primaryLabelValue\":\"955912\"}},{\"attributeHeader\":{\"labelValue\":\"955914\",\"primaryLabelValue\":\"955914\"}},{\"attributeHeader\":{\"labelValue\":\"955916\",\"primaryLabelValue\":\"955916\"}},{\"attributeHeader\":{\"labelValue\":\"955918\",\"primaryLabelValue\":\"955918\"}},{\"attributeHeader\":{\"labelValue\":\"955920\",\"primaryLabelValue\":\"955920\"}},{\"attributeHeader\":{\"labelValue\":\"955922\",\"primaryLabelValue\":\"955922\"}},{\"attributeHeader\":{\"labelValue\":\"955924\",\"primaryLabelValue\":\"955924\"}},{\"attributeHeader\":{\"labelValue\":\"955926\",\"primaryLabelValue\":\"955926\"}},{\"attributeHeader\":{\"labelValue\":\"955928\",\"primaryLabelValue\":\"955928\"}},{\"attributeHeader\":{\"labelValue\":\"955930\",\"primaryLabelValue\":\"955930\"}},{\"attributeHeader\":{\"labelValue\":\"955932\",\"primaryLabelValue\":\"955932\"}},{\"attributeHeader\":{\"labelValue\":\"955934\",\"primaryLabelValue\":\"955934\"}},{\"attributeHeader\":{\"labelValue\":\"955936\",\"primaryLabelValue\":\"955936\"}},{\"attributeHeader\":{\"labelValue\":\"955938\",\"primaryLabelValue\":\"955938\"}},{\"attributeHeader\":{\"labelValue\":\"955940\",\"primaryLabelValue\":\"955940\"}},{\"attributeHeader\":{\"labelValue\":\"955942\",\"primaryLabelValue\":\"955942\"}},{\"attributeHeader\":{\"labelValue\":\"955944\",\"primaryLabelValue\":\"955944\"}},{\"attributeHeader\":{\"labelValue\":\"955946\",\"primaryLabelValue\":\"955946\"}},{\"attributeHeader\":{\"labelValue\":\"955948\",\"primaryLabelValue\":\"955948\"}},{\"attributeHeader\":{\"labelValue\":\"955950\",\"primaryLabelValue\":\"955950\"}},{\"attributeHeader\":{\"labelValue\":\"955952\",\"primaryLabelValue\":\"955952\"}},{\"attributeHeader\":{\"labelValue\":\"955954\",\"primaryLabelValue\":\"955954\"}},{\"attributeHeader\":{\"labelValue\":\"955958\",\"primaryLabelValue\":\"955958\"}},{\"attributeHeader\":{\"labelValue\":\"955960\",\"primaryLabelValue\":\"955960\"}},{\"attributeHeader\":{\"labelValue\":\"955962\",\"primaryLabelValue\":\"955962\"}},{\"attributeHeader\":{\"labelValue\":\"955964\",\"primaryLabelValue\":\"955964\"}},{\"attributeHeader\":{\"labelValue\":\"955966\",\"primaryLabelValue\":\"955966\"}},{\"attributeHeader\":{\"labelValue\":\"955968\",\"primaryLabelValue\":\"955968\"}},{\"attributeHeader\":{\"labelValue\":\"955970\",\"primaryLabelValue\":\"955970\"}},{\"attributeHeader\":{\"labelValue\":\"955972\",\"primaryLabelValue\":\"955972\"}},{\"attributeHeader\":{\"labelValue\":\"955974\",\"primaryLabelValue\":\"955974\"}},{\"attributeHeader\":{\"labelValue\":\"955976\",\"primaryLabelValue\":\"955976\"}},{\"attributeHeader\":{\"labelValue\":\"955978\",\"primaryLabelValue\":\"955978\"}},{\"attributeHeader\":{\"labelValue\":\"955980\",\"primaryLabelValue\":\"955980\"}},{\"attributeHeader\":{\"labelValue\":\"955982\",\"primaryLabelValue\":\"955982\"}},{\"attributeHeader\":{\"labelValue\":\"955984\",\"primaryLabelValue\":\"955984\"}},{\"attributeHeader\":{\"labelValue\":\"955986\",\"primaryLabelValue\":\"955986\"}},{\"attributeHeader\":{\"labelValue\":\"955988\",\"primaryLabelValue\":\"955988\"}},{\"attributeHeader\":{\"labelValue\":\"955990\",\"primaryLabelValue\":\"955990\"}},{\"attributeHeader\":{\"labelValue\":\"955992\",\"primaryLabelValue\":\"955992\"}},{\"attributeHeader\":{\"labelValue\":\"955994\",\"primaryLabelValue\":\"955994\"}},{\"attributeHeader\":{\"labelValue\":\"955996\",\"primaryLabelValue\":\"955996\"}},{\"attributeHeader\":{\"labelValue\":\"955998\",\"primaryLabelValue\":\"955998\"}},{\"attributeHeader\":{\"labelValue\":\"956000\",\"primaryLabelValue\":\"956000\"}},{\"attributeHeader\":{\"labelValue\":\"956002\",\"primaryLabelValue\":\"956002\"}},{\"attributeHeader\":{\"labelValue\":\"956004\",\"primaryLabelValue\":\"956004\"}},{\"attributeHeader\":{\"labelValue\":\"956006\",\"primaryLabelValue\":\"956006\"}},{\"attributeHeader\":{\"labelValue\":\"956008\",\"primaryLabelValue\":\"956008\"}},{\"attributeHeader\":{\"labelValue\":\"956010\",\"primaryLabelValue\":\"956010\"}},{\"attributeHeader\":{\"labelValue\":\"956012\",\"primaryLabelValue\":\"956012\"}},{\"attributeHeader\":{\"labelValue\":\"956014\",\"primaryLabelValue\":\"956014\"}},{\"attributeHeader\":{\"labelValue\":\"956016\",\"primaryLabelValue\":\"956016\"}},{\"attributeHeader\":{\"labelValue\":\"956018\",\"primaryLabelValue\":\"956018\"}},{\"attributeHeader\":{\"labelValue\":\"956020\",\"primaryLabelValue\":\"956020\"}},{\"attributeHeader\":{\"labelValue\":\"956022\",\"primaryLabelValue\":\"956022\"}},{\"attributeHeader\":{\"labelValue\":\"956024\",\"primaryLabelValue\":\"956024\"}},{\"attributeHeader\":{\"labelValue\":\"956026\",\"primaryLabelValue\":\"956026\"}},{\"attributeHeader\":{\"labelValue\":\"956028\",\"primaryLabelValue\":\"956028\"}},{\"attributeHeader\":{\"labelValue\":\"956030\",\"primaryLabelValue\":\"956030\"}},{\"attributeHeader\":{\"labelValue\":\"956032\",\"primaryLabelValue\":\"956032\"}},{\"attributeHeader\":{\"labelValue\":\"956034\",\"primaryLabelValue\":\"956034\"}},{\"attributeHeader\":{\"labelValue\":\"956036\",\"primaryLabelValue\":\"956036\"}},{\"attributeHeader\":{\"labelValue\":\"956038\",\"primaryLabelValue\":\"956038\"}},{\"attributeHeader\":{\"labelValue\":\"956040\",\"primaryLabelValue\":\"956040\"}},{\"attributeHeader\":{\"labelValue\":\"956042\",\"primaryLabelValue\":\"956042\"}},{\"attributeHeader\":{\"labelValue\":\"956044\",\"primaryLabelValue\":\"956044\"}},{\"attributeHeader\":{\"labelValue\":\"956046\",\"primaryLabelValue\":\"956046\"}},{\"attributeHeader\":{\"labelValue\":\"956048\",\"primaryLabelValue\":\"956048\"}},{\"attributeHeader\":{\"labelValue\":\"956050\",\"primaryLabelValue\":\"956050\"}},{\"attributeHeader\":{\"labelValue\":\"956052\",\"primaryLabelValue\":\"956052\"}},{\"attributeHeader\":{\"labelValue\":\"956054\",\"primaryLabelValue\":\"956054\"}},{\"attributeHeader\":{\"labelValue\":\"956056\",\"primaryLabelValue\":\"956056\"}},{\"attributeHeader\":{\"labelValue\":\"956058\",\"primaryLabelValue\":\"956058\"}},{\"attributeHeader\":{\"labelValue\":\"956060\",\"primaryLabelValue\":\"956060\"}},{\"attributeHeader\":{\"labelValue\":\"956062\",\"primaryLabelValue\":\"956062\"}},{\"attributeHeader\":{\"labelValue\":\"956064\",\"primaryLabelValue\":\"956064\"}},{\"attributeHeader\":{\"labelValue\":\"956066\",\"primaryLabelValue\":\"956066\"}},{\"attributeHeader\":{\"labelValue\":\"956068\",\"primaryLabelValue\":\"956068\"}},{\"attributeHeader\":{\"labelValue\":\"956070\",\"primaryLabelValue\":\"956070\"}},{\"attributeHeader\":{\"labelValue\":\"956072\",\"primaryLabelValue\":\"956072\"}},{\"attributeHeader\":{\"labelValue\":\"956074\",\"primaryLabelValue\":\"956074\"}},{\"attributeHeader\":{\"labelValue\":\"956076\",\"primaryLabelValue\":\"956076\"}},{\"attributeHeader\":{\"labelValue\":\"956078\",\"primaryLabelValue\":\"956078\"}},{\"attributeHeader\":{\"labelValue\":\"956080\",\"primaryLabelValue\":\"956080\"}},{\"attributeHeader\":{\"labelValue\":\"956082\",\"primaryLabelValue\":\"956082\"}},{\"attributeHeader\":{\"labelValue\":\"956084\",\"primaryLabelValue\":\"956084\"}},{\"attributeHeader\":{\"labelValue\":\"956086\",\"primaryLabelValue\":\"956086\"}},{\"attributeHeader\":{\"labelValue\":\"956088\",\"primaryLabelValue\":\"956088\"}},{\"attributeHeader\":{\"labelValue\":\"956090\",\"primaryLabelValue\":\"956090\"}},{\"attributeHeader\":{\"labelValue\":\"956092\",\"primaryLabelValue\":\"956092\"}},{\"attributeHeader\":{\"labelValue\":\"956094\",\"primaryLabelValue\":\"956094\"}},{\"attributeHeader\":{\"labelValue\":\"956096\",\"primaryLabelValue\":\"956096\"}},{\"attributeHeader\":{\"labelValue\":\"956098\",\"primaryLabelValue\":\"956098\"}},{\"attributeHeader\":{\"labelValue\":\"956100\",\"primaryLabelValue\":\"956100\"}},{\"attributeHeader\":{\"labelValue\":\"956102\",\"primaryLabelValue\":\"956102\"}},{\"attributeHeader\":{\"labelValue\":\"956104\",\"primaryLabelValue\":\"956104\"}},{\"attributeHeader\":{\"labelValue\":\"956106\",\"primaryLabelValue\":\"956106\"}},{\"attributeHeader\":{\"labelValue\":\"956108\",\"primaryLabelValue\":\"956108\"}},{\"attributeHeader\":{\"labelValue\":\"956110\",\"primaryLabelValue\":\"956110\"}},{\"attributeHeader\":{\"labelValue\":\"956112\",\"primaryLabelValue\":\"956112\"}},{\"attributeHeader\":{\"labelValue\":\"956114\",\"primaryLabelValue\":\"956114\"}},{\"attributeHeader\":{\"labelValue\":\"956116\",\"primaryLabelValue\":\"956116\"}},{\"attributeHeader\":{\"labelValue\":\"956118\",\"primaryLabelValue\":\"956118\"}},{\"attributeHeader\":{\"labelValue\":\"956120\",\"primaryLabelValue\":\"956120\"}},{\"attributeHeader\":{\"labelValue\":\"956122\",\"primaryLabelValue\":\"956122\"}},{\"attributeHeader\":{\"labelValue\":\"956124\",\"primaryLabelValue\":\"956124\"}},{\"attributeHeader\":{\"labelValue\":\"956126\",\"primaryLabelValue\":\"956126\"}},{\"attributeHeader\":{\"labelValue\":\"956128\",\"primaryLabelValue\":\"956128\"}},{\"attributeHeader\":{\"labelValue\":\"956130\",\"primaryLabelValue\":\"956130\"}},{\"attributeHeader\":{\"labelValue\":\"956132\",\"primaryLabelValue\":\"956132\"}},{\"attributeHeader\":{\"labelValue\":\"956134\",\"primaryLabelValue\":\"956134\"}},{\"attributeHeader\":{\"labelValue\":\"956136\",\"primaryLabelValue\":\"956136\"}},{\"attributeHeader\":{\"labelValue\":\"956138\",\"primaryLabelValue\":\"956138\"}},{\"attributeHeader\":{\"labelValue\":\"956140\",\"primaryLabelValue\":\"956140\"}},{\"attributeHeader\":{\"labelValue\":\"956142\",\"primaryLabelValue\":\"956142\"}},{\"attributeHeader\":{\"labelValue\":\"956144\",\"primaryLabelValue\":\"956144\"}},{\"attributeHeader\":{\"labelValue\":\"956146\",\"primaryLabelValue\":\"956146\"}},{\"attributeHeader\":{\"labelValue\":\"956148\",\"primaryLabelValue\":\"956148\"}},{\"attributeHeader\":{\"labelValue\":\"956150\",\"primaryLabelValue\":\"956150\"}},{\"attributeHeader\":{\"labelValue\":\"956152\",\"primaryLabelValue\":\"956152\"}},{\"attributeHeader\":{\"labelValue\":\"956154\",\"primaryLabelValue\":\"956154\"}},{\"attributeHeader\":{\"labelValue\":\"956156\",\"primaryLabelValue\":\"956156\"}},{\"attributeHeader\":{\"labelValue\":\"956158\",\"primaryLabelValue\":\"956158\"}},{\"attributeHeader\":{\"labelValue\":\"956160\",\"primaryLabelValue\":\"956160\"}},{\"attributeHeader\":{\"labelValue\":\"956162\",\"primaryLabelValue\":\"956162\"}},{\"attributeHeader\":{\"labelValue\":\"956164\",\"primaryLabelValue\":\"956164\"}},{\"attributeHeader\":{\"labelValue\":\"956166\",\"primaryLabelValue\":\"956166\"}},{\"attributeHeader\":{\"labelValue\":\"956168\",\"primaryLabelValue\":\"956168\"}},{\"attributeHeader\":{\"labelValue\":\"956170\",\"primaryLabelValue\":\"956170\"}},{\"attributeHeader\":{\"labelValue\":\"956172\",\"primaryLabelValue\":\"956172\"}},{\"attributeHeader\":{\"labelValue\":\"956174\",\"primaryLabelValue\":\"956174\"}},{\"attributeHeader\":{\"labelValue\":\"956176\",\"primaryLabelValue\":\"956176\"}},{\"attributeHeader\":{\"labelValue\":\"956178\",\"primaryLabelValue\":\"956178\"}},{\"attributeHeader\":{\"labelValue\":\"956180\",\"primaryLabelValue\":\"956180\"}},{\"attributeHeader\":{\"labelValue\":\"956182\",\"primaryLabelValue\":\"956182\"}},{\"attributeHeader\":{\"labelValue\":\"956184\",\"primaryLabelValue\":\"956184\"}},{\"attributeHeader\":{\"labelValue\":\"956186\",\"primaryLabelValue\":\"956186\"}},{\"attributeHeader\":{\"labelValue\":\"956188\",\"primaryLabelValue\":\"956188\"}},{\"attributeHeader\":{\"labelValue\":\"956190\",\"primaryLabelValue\":\"956190\"}},{\"attributeHeader\":{\"labelValue\":\"956192\",\"primaryLabelValue\":\"956192\"}},{\"attributeHeader\":{\"labelValue\":\"956194\",\"primaryLabelValue\":\"956194\"}},{\"attributeHeader\":{\"labelValue\":\"956196\",\"primaryLabelValue\":\"956196\"}},{\"attributeHeader\":{\"labelValue\":\"956198\",\"primaryLabelValue\":\"956198\"}},{\"attributeHeader\":{\"labelValue\":\"956200\",\"primaryLabelValue\":\"956200\"}},{\"attributeHeader\":{\"labelValue\":\"956202\",\"primaryLabelValue\":\"956202\"}},{\"attributeHeader\":{\"labelValue\":\"956204\",\"primaryLabelValue\":\"956204\"}},{\"attributeHeader\":{\"labelValue\":\"956206\",\"primaryLabelValue\":\"956206\"}},{\"attributeHeader\":{\"labelValue\":\"956208\",\"primaryLabelValue\":\"956208\"}},{\"attributeHeader\":{\"labelValue\":\"956210\",\"primaryLabelValue\":\"956210\"}},{\"attributeHeader\":{\"labelValue\":\"956212\",\"primaryLabelValue\":\"956212\"}},{\"attributeHeader\":{\"labelValue\":\"956216\",\"primaryLabelValue\":\"956216\"}},{\"attributeHeader\":{\"labelValue\":\"956218\",\"primaryLabelValue\":\"956218\"}},{\"attributeHeader\":{\"labelValue\":\"956220\",\"primaryLabelValue\":\"956220\"}},{\"attributeHeader\":{\"labelValue\":\"956222\",\"primaryLabelValue\":\"956222\"}},{\"attributeHeader\":{\"labelValue\":\"956224\",\"primaryLabelValue\":\"956224\"}},{\"attributeHeader\":{\"labelValue\":\"956226\",\"primaryLabelValue\":\"956226\"}},{\"attributeHeader\":{\"labelValue\":\"956228\",\"primaryLabelValue\":\"956228\"}},{\"attributeHeader\":{\"labelValue\":\"956230\",\"primaryLabelValue\":\"956230\"}},{\"attributeHeader\":{\"labelValue\":\"956232\",\"primaryLabelValue\":\"956232\"}},{\"attributeHeader\":{\"labelValue\":\"956234\",\"primaryLabelValue\":\"956234\"}},{\"attributeHeader\":{\"labelValue\":\"956236\",\"primaryLabelValue\":\"956236\"}},{\"attributeHeader\":{\"labelValue\":\"956238\",\"primaryLabelValue\":\"956238\"}},{\"attributeHeader\":{\"labelValue\":\"956240\",\"primaryLabelValue\":\"956240\"}},{\"attributeHeader\":{\"labelValue\":\"956242\",\"primaryLabelValue\":\"956242\"}},{\"attributeHeader\":{\"labelValue\":\"956244\",\"primaryLabelValue\":\"956244\"}},{\"attributeHeader\":{\"labelValue\":\"956246\",\"primaryLabelValue\":\"956246\"}},{\"attributeHeader\":{\"labelValue\":\"956248\",\"primaryLabelValue\":\"956248\"}},{\"attributeHeader\":{\"labelValue\":\"956250\",\"primaryLabelValue\":\"956250\"}},{\"attributeHeader\":{\"labelValue\":\"956252\",\"primaryLabelValue\":\"956252\"}},{\"attributeHeader\":{\"labelValue\":\"956254\",\"primaryLabelValue\":\"956254\"}},{\"attributeHeader\":{\"labelValue\":\"956256\",\"primaryLabelValue\":\"956256\"}},{\"attributeHeader\":{\"labelValue\":\"956258\",\"primaryLabelValue\":\"956258\"}},{\"attributeHeader\":{\"labelValue\":\"956260\",\"primaryLabelValue\":\"956260\"}},{\"attributeHeader\":{\"labelValue\":\"956262\",\"primaryLabelValue\":\"956262\"}},{\"attributeHeader\":{\"labelValue\":\"956264\",\"primaryLabelValue\":\"956264\"}},{\"attributeHeader\":{\"labelValue\":\"956266\",\"primaryLabelValue\":\"956266\"}},{\"attributeHeader\":{\"labelValue\":\"956268\",\"primaryLabelValue\":\"956268\"}},{\"attributeHeader\":{\"labelValue\":\"956270\",\"primaryLabelValue\":\"956270\"}},{\"attributeHeader\":{\"labelValue\":\"956272\",\"primaryLabelValue\":\"956272\"}},{\"attributeHeader\":{\"labelValue\":\"956274\",\"primaryLabelValue\":\"956274\"}},{\"attributeHeader\":{\"labelValue\":\"956276\",\"primaryLabelValue\":\"956276\"}},{\"attributeHeader\":{\"labelValue\":\"956278\",\"primaryLabelValue\":\"956278\"}},{\"attributeHeader\":{\"labelValue\":\"956280\",\"primaryLabelValue\":\"956280\"}},{\"attributeHeader\":{\"labelValue\":\"956282\",\"primaryLabelValue\":\"956282\"}},{\"attributeHeader\":{\"labelValue\":\"956284\",\"primaryLabelValue\":\"956284\"}},{\"attributeHeader\":{\"labelValue\":\"956286\",\"primaryLabelValue\":\"956286\"}},{\"attributeHeader\":{\"labelValue\":\"956288\",\"primaryLabelValue\":\"956288\"}},{\"attributeHeader\":{\"labelValue\":\"956292\",\"primaryLabelValue\":\"956292\"}},{\"attributeHeader\":{\"labelValue\":\"956294\",\"primaryLabelValue\":\"956294\"}},{\"attributeHeader\":{\"labelValue\":\"956296\",\"primaryLabelValue\":\"956296\"}},{\"attributeHeader\":{\"labelValue\":\"956298\",\"primaryLabelValue\":\"956298\"}},{\"attributeHeader\":{\"labelValue\":\"956300\",\"primaryLabelValue\":\"956300\"}},{\"attributeHeader\":{\"labelValue\":\"956302\",\"primaryLabelValue\":\"956302\"}},{\"attributeHeader\":{\"labelValue\":\"956304\",\"primaryLabelValue\":\"956304\"}},{\"attributeHeader\":{\"labelValue\":\"956306\",\"primaryLabelValue\":\"956306\"}},{\"attributeHeader\":{\"labelValue\":\"956308\",\"primaryLabelValue\":\"956308\"}},{\"attributeHeader\":{\"labelValue\":\"956310\",\"primaryLabelValue\":\"956310\"}},{\"attributeHeader\":{\"labelValue\":\"956312\",\"primaryLabelValue\":\"956312\"}},{\"attributeHeader\":{\"labelValue\":\"956314\",\"primaryLabelValue\":\"956314\"}},{\"attributeHeader\":{\"labelValue\":\"956316\",\"primaryLabelValue\":\"956316\"}},{\"attributeHeader\":{\"labelValue\":\"956318\",\"primaryLabelValue\":\"956318\"}},{\"attributeHeader\":{\"labelValue\":\"956320\",\"primaryLabelValue\":\"956320\"}},{\"attributeHeader\":{\"labelValue\":\"956322\",\"primaryLabelValue\":\"956322\"}},{\"attributeHeader\":{\"labelValue\":\"956324\",\"primaryLabelValue\":\"956324\"}},{\"attributeHeader\":{\"labelValue\":\"956326\",\"primaryLabelValue\":\"956326\"}},{\"attributeHeader\":{\"labelValue\":\"956328\",\"primaryLabelValue\":\"956328\"}},{\"attributeHeader\":{\"labelValue\":\"956330\",\"primaryLabelValue\":\"956330\"}},{\"attributeHeader\":{\"labelValue\":\"956332\",\"primaryLabelValue\":\"956332\"}},{\"attributeHeader\":{\"labelValue\":\"956334\",\"primaryLabelValue\":\"956334\"}},{\"attributeHeader\":{\"labelValue\":\"956336\",\"primaryLabelValue\":\"956336\"}},{\"attributeHeader\":{\"labelValue\":\"956338\",\"primaryLabelValue\":\"956338\"}},{\"attributeHeader\":{\"labelValue\":\"956340\",\"primaryLabelValue\":\"956340\"}},{\"attributeHeader\":{\"labelValue\":\"956342\",\"primaryLabelValue\":\"956342\"}},{\"attributeHeader\":{\"labelValue\":\"956344\",\"primaryLabelValue\":\"956344\"}},{\"attributeHeader\":{\"labelValue\":\"956346\",\"primaryLabelValue\":\"956346\"}},{\"attributeHeader\":{\"labelValue\":\"956348\",\"primaryLabelValue\":\"956348\"}},{\"attributeHeader\":{\"labelValue\":\"956350\",\"primaryLabelValue\":\"956350\"}},{\"attributeHeader\":{\"labelValue\":\"956352\",\"primaryLabelValue\":\"956352\"}},{\"attributeHeader\":{\"labelValue\":\"956354\",\"primaryLabelValue\":\"956354\"}},{\"attributeHeader\":{\"labelValue\":\"956356\",\"primaryLabelValue\":\"956356\"}},{\"attributeHeader\":{\"labelValue\":\"956358\",\"primaryLabelValue\":\"956358\"}},{\"attributeHeader\":{\"labelValue\":\"956360\",\"primaryLabelValue\":\"956360\"}},{\"attributeHeader\":{\"labelValue\":\"956362\",\"primaryLabelValue\":\"956362\"}},{\"attributeHeader\":{\"labelValue\":\"956364\",\"primaryLabelValue\":\"956364\"}},{\"attributeHeader\":{\"labelValue\":\"956366\",\"primaryLabelValue\":\"956366\"}},{\"attributeHeader\":{\"labelValue\":\"956368\",\"primaryLabelValue\":\"956368\"}},{\"attributeHeader\":{\"labelValue\":\"956370\",\"primaryLabelValue\":\"956370\"}},{\"attributeHeader\":{\"labelValue\":\"956372\",\"primaryLabelValue\":\"956372\"}},{\"attributeHeader\":{\"labelValue\":\"956374\",\"primaryLabelValue\":\"956374\"}},{\"attributeHeader\":{\"labelValue\":\"956376\",\"primaryLabelValue\":\"956376\"}},{\"attributeHeader\":{\"labelValue\":\"956378\",\"primaryLabelValue\":\"956378\"}},{\"attributeHeader\":{\"labelValue\":\"956380\",\"primaryLabelValue\":\"956380\"}},{\"attributeHeader\":{\"labelValue\":\"956382\",\"primaryLabelValue\":\"956382\"}},{\"attributeHeader\":{\"labelValue\":\"956384\",\"primaryLabelValue\":\"956384\"}},{\"attributeHeader\":{\"labelValue\":\"956386\",\"primaryLabelValue\":\"956386\"}},{\"attributeHeader\":{\"labelValue\":\"956388\",\"primaryLabelValue\":\"956388\"}},{\"attributeHeader\":{\"labelValue\":\"956390\",\"primaryLabelValue\":\"956390\"}},{\"attributeHeader\":{\"labelValue\":\"956392\",\"primaryLabelValue\":\"956392\"}},{\"attributeHeader\":{\"labelValue\":\"956394\",\"primaryLabelValue\":\"956394\"}},{\"attributeHeader\":{\"labelValue\":\"956396\",\"primaryLabelValue\":\"956396\"}},{\"attributeHeader\":{\"labelValue\":\"956398\",\"primaryLabelValue\":\"956398\"}},{\"attributeHeader\":{\"labelValue\":\"956400\",\"primaryLabelValue\":\"956400\"}},{\"attributeHeader\":{\"labelValue\":\"956402\",\"primaryLabelValue\":\"956402\"}},{\"attributeHeader\":{\"labelValue\":\"956404\",\"primaryLabelValue\":\"956404\"}},{\"attributeHeader\":{\"labelValue\":\"956406\",\"primaryLabelValue\":\"956406\"}},{\"attributeHeader\":{\"labelValue\":\"956408\",\"primaryLabelValue\":\"956408\"}},{\"attributeHeader\":{\"labelValue\":\"956410\",\"primaryLabelValue\":\"956410\"}},{\"attributeHeader\":{\"labelValue\":\"956412\",\"primaryLabelValue\":\"956412\"}},{\"attributeHeader\":{\"labelValue\":\"956414\",\"primaryLabelValue\":\"956414\"}},{\"attributeHeader\":{\"labelValue\":\"956416\",\"primaryLabelValue\":\"956416\"}},{\"attributeHeader\":{\"labelValue\":\"956418\",\"primaryLabelValue\":\"956418\"}},{\"attributeHeader\":{\"labelValue\":\"956420\",\"primaryLabelValue\":\"956420\"}},{\"attributeHeader\":{\"labelValue\":\"956422\",\"primaryLabelValue\":\"956422\"}},{\"attributeHeader\":{\"labelValue\":\"956424\",\"primaryLabelValue\":\"956424\"}},{\"attributeHeader\":{\"labelValue\":\"956426\",\"primaryLabelValue\":\"956426\"}},{\"attributeHeader\":{\"labelValue\":\"956428\",\"primaryLabelValue\":\"956428\"}},{\"attributeHeader\":{\"labelValue\":\"956430\",\"primaryLabelValue\":\"956430\"}},{\"attributeHeader\":{\"labelValue\":\"956432\",\"primaryLabelValue\":\"956432\"}},{\"attributeHeader\":{\"labelValue\":\"956434\",\"primaryLabelValue\":\"956434\"}},{\"attributeHeader\":{\"labelValue\":\"956436\",\"primaryLabelValue\":\"956436\"}},{\"attributeHeader\":{\"labelValue\":\"956438\",\"primaryLabelValue\":\"956438\"}},{\"attributeHeader\":{\"labelValue\":\"956440\",\"primaryLabelValue\":\"956440\"}},{\"attributeHeader\":{\"labelValue\":\"956442\",\"primaryLabelValue\":\"956442\"}},{\"attributeHeader\":{\"labelValue\":\"956444\",\"primaryLabelValue\":\"956444\"}},{\"attributeHeader\":{\"labelValue\":\"956446\",\"primaryLabelValue\":\"956446\"}},{\"attributeHeader\":{\"labelValue\":\"956448\",\"primaryLabelValue\":\"956448\"}},{\"attributeHeader\":{\"labelValue\":\"956450\",\"primaryLabelValue\":\"956450\"}},{\"attributeHeader\":{\"labelValue\":\"956452\",\"primaryLabelValue\":\"956452\"}},{\"attributeHeader\":{\"labelValue\":\"956454\",\"primaryLabelValue\":\"956454\"}},{\"attributeHeader\":{\"labelValue\":\"956456\",\"primaryLabelValue\":\"956456\"}},{\"attributeHeader\":{\"labelValue\":\"956458\",\"primaryLabelValue\":\"956458\"}},{\"attributeHeader\":{\"labelValue\":\"956460\",\"primaryLabelValue\":\"956460\"}},{\"attributeHeader\":{\"labelValue\":\"956462\",\"primaryLabelValue\":\"956462\"}},{\"attributeHeader\":{\"labelValue\":\"956464\",\"primaryLabelValue\":\"956464\"}},{\"attributeHeader\":{\"labelValue\":\"956466\",\"primaryLabelValue\":\"956466\"}},{\"attributeHeader\":{\"labelValue\":\"956468\",\"primaryLabelValue\":\"956468\"}},{\"attributeHeader\":{\"labelValue\":\"956470\",\"primaryLabelValue\":\"956470\"}},{\"attributeHeader\":{\"labelValue\":\"956472\",\"primaryLabelValue\":\"956472\"}},{\"attributeHeader\":{\"labelValue\":\"956474\",\"primaryLabelValue\":\"956474\"}},{\"attributeHeader\":{\"labelValue\":\"956476\",\"primaryLabelValue\":\"956476\"}},{\"attributeHeader\":{\"labelValue\":\"956478\",\"primaryLabelValue\":\"956478\"}},{\"attributeHeader\":{\"labelValue\":\"956480\",\"primaryLabelValue\":\"956480\"}},{\"attributeHeader\":{\"labelValue\":\"956482\",\"primaryLabelValue\":\"956482\"}},{\"attributeHeader\":{\"labelValue\":\"956484\",\"primaryLabelValue\":\"956484\"}},{\"attributeHeader\":{\"labelValue\":\"956486\",\"primaryLabelValue\":\"956486\"}},{\"attributeHeader\":{\"labelValue\":\"956488\",\"primaryLabelValue\":\"956488\"}},{\"attributeHeader\":{\"labelValue\":\"956490\",\"primaryLabelValue\":\"956490\"}},{\"attributeHeader\":{\"labelValue\":\"956492\",\"primaryLabelValue\":\"956492\"}},{\"attributeHeader\":{\"labelValue\":\"956494\",\"primaryLabelValue\":\"956494\"}},{\"attributeHeader\":{\"labelValue\":\"956496\",\"primaryLabelValue\":\"956496\"}},{\"attributeHeader\":{\"labelValue\":\"956498\",\"primaryLabelValue\":\"956498\"}},{\"attributeHeader\":{\"labelValue\":\"956500\",\"primaryLabelValue\":\"956500\"}},{\"attributeHeader\":{\"labelValue\":\"956502\",\"primaryLabelValue\":\"956502\"}},{\"attributeHeader\":{\"labelValue\":\"956504\",\"primaryLabelValue\":\"956504\"}},{\"attributeHeader\":{\"labelValue\":\"956506\",\"primaryLabelValue\":\"956506\"}},{\"attributeHeader\":{\"labelValue\":\"956508\",\"primaryLabelValue\":\"956508\"}},{\"attributeHeader\":{\"labelValue\":\"956510\",\"primaryLabelValue\":\"956510\"}},{\"attributeHeader\":{\"labelValue\":\"956512\",\"primaryLabelValue\":\"956512\"}},{\"attributeHeader\":{\"labelValue\":\"956514\",\"primaryLabelValue\":\"956514\"}},{\"attributeHeader\":{\"labelValue\":\"956516\",\"primaryLabelValue\":\"956516\"}},{\"attributeHeader\":{\"labelValue\":\"956518\",\"primaryLabelValue\":\"956518\"}},{\"attributeHeader\":{\"labelValue\":\"956520\",\"primaryLabelValue\":\"956520\"}},{\"attributeHeader\":{\"labelValue\":\"956522\",\"primaryLabelValue\":\"956522\"}},{\"attributeHeader\":{\"labelValue\":\"956524\",\"primaryLabelValue\":\"956524\"}},{\"attributeHeader\":{\"labelValue\":\"956526\",\"primaryLabelValue\":\"956526\"}},{\"attributeHeader\":{\"labelValue\":\"956528\",\"primaryLabelValue\":\"956528\"}},{\"attributeHeader\":{\"labelValue\":\"956530\",\"primaryLabelValue\":\"956530\"}},{\"attributeHeader\":{\"labelValue\":\"956532\",\"primaryLabelValue\":\"956532\"}},{\"attributeHeader\":{\"labelValue\":\"956534\",\"primaryLabelValue\":\"956534\"}},{\"attributeHeader\":{\"labelValue\":\"956536\",\"primaryLabelValue\":\"956536\"}},{\"attributeHeader\":{\"labelValue\":\"956538\",\"primaryLabelValue\":\"956538\"}},{\"attributeHeader\":{\"labelValue\":\"956540\",\"primaryLabelValue\":\"956540\"}},{\"attributeHeader\":{\"labelValue\":\"956542\",\"primaryLabelValue\":\"956542\"}},{\"attributeHeader\":{\"labelValue\":\"956544\",\"primaryLabelValue\":\"956544\"}},{\"attributeHeader\":{\"labelValue\":\"956546\",\"primaryLabelValue\":\"956546\"}},{\"attributeHeader\":{\"labelValue\":\"956548\",\"primaryLabelValue\":\"956548\"}},{\"attributeHeader\":{\"labelValue\":\"956550\",\"primaryLabelValue\":\"956550\"}},{\"attributeHeader\":{\"labelValue\":\"956552\",\"primaryLabelValue\":\"956552\"}},{\"attributeHeader\":{\"labelValue\":\"956554\",\"primaryLabelValue\":\"956554\"}},{\"attributeHeader\":{\"labelValue\":\"956556\",\"primaryLabelValue\":\"956556\"}},{\"attributeHeader\":{\"labelValue\":\"956558\",\"primaryLabelValue\":\"956558\"}},{\"attributeHeader\":{\"labelValue\":\"956560\",\"primaryLabelValue\":\"956560\"}},{\"attributeHeader\":{\"labelValue\":\"956562\",\"primaryLabelValue\":\"956562\"}},{\"attributeHeader\":{\"labelValue\":\"956564\",\"primaryLabelValue\":\"956564\"}},{\"attributeHeader\":{\"labelValue\":\"956566\",\"primaryLabelValue\":\"956566\"}},{\"attributeHeader\":{\"labelValue\":\"956568\",\"primaryLabelValue\":\"956568\"}},{\"attributeHeader\":{\"labelValue\":\"956570\",\"primaryLabelValue\":\"956570\"}},{\"attributeHeader\":{\"labelValue\":\"956572\",\"primaryLabelValue\":\"956572\"}},{\"attributeHeader\":{\"labelValue\":\"956574\",\"primaryLabelValue\":\"956574\"}},{\"attributeHeader\":{\"labelValue\":\"956576\",\"primaryLabelValue\":\"956576\"}},{\"attributeHeader\":{\"labelValue\":\"956578\",\"primaryLabelValue\":\"956578\"}},{\"attributeHeader\":{\"labelValue\":\"956580\",\"primaryLabelValue\":\"956580\"}},{\"attributeHeader\":{\"labelValue\":\"956582\",\"primaryLabelValue\":\"956582\"}},{\"attributeHeader\":{\"labelValue\":\"956584\",\"primaryLabelValue\":\"956584\"}},{\"attributeHeader\":{\"labelValue\":\"956586\",\"primaryLabelValue\":\"956586\"}},{\"attributeHeader\":{\"labelValue\":\"956588\",\"primaryLabelValue\":\"956588\"}},{\"attributeHeader\":{\"labelValue\":\"956590\",\"primaryLabelValue\":\"956590\"}},{\"attributeHeader\":{\"labelValue\":\"956592\",\"primaryLabelValue\":\"956592\"}},{\"attributeHeader\":{\"labelValue\":\"956594\",\"primaryLabelValue\":\"956594\"}},{\"attributeHeader\":{\"labelValue\":\"956596\",\"primaryLabelValue\":\"956596\"}},{\"attributeHeader\":{\"labelValue\":\"956598\",\"primaryLabelValue\":\"956598\"}},{\"attributeHeader\":{\"labelValue\":\"956600\",\"primaryLabelValue\":\"956600\"}},{\"attributeHeader\":{\"labelValue\":\"956602\",\"primaryLabelValue\":\"956602\"}},{\"attributeHeader\":{\"labelValue\":\"956604\",\"primaryLabelValue\":\"956604\"}},{\"attributeHeader\":{\"labelValue\":\"956606\",\"primaryLabelValue\":\"956606\"}},{\"attributeHeader\":{\"labelValue\":\"956608\",\"primaryLabelValue\":\"956608\"}},{\"attributeHeader\":{\"labelValue\":\"956610\",\"primaryLabelValue\":\"956610\"}},{\"attributeHeader\":{\"labelValue\":\"956612\",\"primaryLabelValue\":\"956612\"}},{\"attributeHeader\":{\"labelValue\":\"956614\",\"primaryLabelValue\":\"956614\"}},{\"attributeHeader\":{\"labelValue\":\"956616\",\"primaryLabelValue\":\"956616\"}},{\"attributeHeader\":{\"labelValue\":\"956618\",\"primaryLabelValue\":\"956618\"}},{\"attributeHeader\":{\"labelValue\":\"956620\",\"primaryLabelValue\":\"956620\"}},{\"attributeHeader\":{\"labelValue\":\"956622\",\"primaryLabelValue\":\"956622\"}},{\"attributeHeader\":{\"labelValue\":\"956624\",\"primaryLabelValue\":\"956624\"}},{\"attributeHeader\":{\"labelValue\":\"956626\",\"primaryLabelValue\":\"956626\"}},{\"attributeHeader\":{\"labelValue\":\"956628\",\"primaryLabelValue\":\"956628\"}},{\"attributeHeader\":{\"labelValue\":\"956630\",\"primaryLabelValue\":\"956630\"}},{\"attributeHeader\":{\"labelValue\":\"956632\",\"primaryLabelValue\":\"956632\"}},{\"attributeHeader\":{\"labelValue\":\"956634\",\"primaryLabelValue\":\"956634\"}},{\"attributeHeader\":{\"labelValue\":\"956636\",\"primaryLabelValue\":\"956636\"}},{\"attributeHeader\":{\"labelValue\":\"956638\",\"primaryLabelValue\":\"956638\"}},{\"attributeHeader\":{\"labelValue\":\"956640\",\"primaryLabelValue\":\"956640\"}},{\"attributeHeader\":{\"labelValue\":\"956642\",\"primaryLabelValue\":\"956642\"}},{\"attributeHeader\":{\"labelValue\":\"956644\",\"primaryLabelValue\":\"956644\"}},{\"attributeHeader\":{\"labelValue\":\"956646\",\"primaryLabelValue\":\"956646\"}},{\"attributeHeader\":{\"labelValue\":\"956648\",\"primaryLabelValue\":\"956648\"}},{\"attributeHeader\":{\"labelValue\":\"956650\",\"primaryLabelValue\":\"956650\"}},{\"attributeHeader\":{\"labelValue\":\"956652\",\"primaryLabelValue\":\"956652\"}},{\"attributeHeader\":{\"labelValue\":\"956654\",\"primaryLabelValue\":\"956654\"}},{\"attributeHeader\":{\"labelValue\":\"956656\",\"primaryLabelValue\":\"956656\"}},{\"attributeHeader\":{\"labelValue\":\"956658\",\"primaryLabelValue\":\"956658\"}},{\"attributeHeader\":{\"labelValue\":\"956660\",\"primaryLabelValue\":\"956660\"}},{\"attributeHeader\":{\"labelValue\":\"956662\",\"primaryLabelValue\":\"956662\"}},{\"attributeHeader\":{\"labelValue\":\"956664\",\"primaryLabelValue\":\"956664\"}},{\"attributeHeader\":{\"labelValue\":\"956666\",\"primaryLabelValue\":\"956666\"}},{\"attributeHeader\":{\"labelValue\":\"956668\",\"primaryLabelValue\":\"956668\"}},{\"attributeHeader\":{\"labelValue\":\"956670\",\"primaryLabelValue\":\"956670\"}},{\"attributeHeader\":{\"labelValue\":\"956672\",\"primaryLabelValue\":\"956672\"}},{\"attributeHeader\":{\"labelValue\":\"956674\",\"primaryLabelValue\":\"956674\"}},{\"attributeHeader\":{\"labelValue\":\"956676\",\"primaryLabelValue\":\"956676\"}},{\"attributeHeader\":{\"labelValue\":\"956678\",\"primaryLabelValue\":\"956678\"}},{\"attributeHeader\":{\"labelValue\":\"956680\",\"primaryLabelValue\":\"956680\"}},{\"attributeHeader\":{\"labelValue\":\"956684\",\"primaryLabelValue\":\"956684\"}},{\"attributeHeader\":{\"labelValue\":\"956686\",\"primaryLabelValue\":\"956686\"}},{\"attributeHeader\":{\"labelValue\":\"956688\",\"primaryLabelValue\":\"956688\"}},{\"attributeHeader\":{\"labelValue\":\"956690\",\"primaryLabelValue\":\"956690\"}},{\"attributeHeader\":{\"labelValue\":\"956692\",\"primaryLabelValue\":\"956692\"}},{\"attributeHeader\":{\"labelValue\":\"956694\",\"primaryLabelValue\":\"956694\"}},{\"attributeHeader\":{\"labelValue\":\"956696\",\"primaryLabelValue\":\"956696\"}},{\"attributeHeader\":{\"labelValue\":\"956698\",\"primaryLabelValue\":\"956698\"}},{\"attributeHeader\":{\"labelValue\":\"956700\",\"primaryLabelValue\":\"956700\"}},{\"attributeHeader\":{\"labelValue\":\"956702\",\"primaryLabelValue\":\"956702\"}},{\"attributeHeader\":{\"labelValue\":\"956704\",\"primaryLabelValue\":\"956704\"}},{\"attributeHeader\":{\"labelValue\":\"956706\",\"primaryLabelValue\":\"956706\"}},{\"attributeHeader\":{\"labelValue\":\"956708\",\"primaryLabelValue\":\"956708\"}},{\"attributeHeader\":{\"labelValue\":\"956710\",\"primaryLabelValue\":\"956710\"}},{\"attributeHeader\":{\"labelValue\":\"956712\",\"primaryLabelValue\":\"956712\"}},{\"attributeHeader\":{\"labelValue\":\"956714\",\"primaryLabelValue\":\"956714\"}},{\"attributeHeader\":{\"labelValue\":\"956716\",\"primaryLabelValue\":\"956716\"}},{\"attributeHeader\":{\"labelValue\":\"956718\",\"primaryLabelValue\":\"956718\"}},{\"attributeHeader\":{\"labelValue\":\"956720\",\"primaryLabelValue\":\"956720\"}},{\"attributeHeader\":{\"labelValue\":\"956722\",\"primaryLabelValue\":\"956722\"}},{\"attributeHeader\":{\"labelValue\":\"956724\",\"primaryLabelValue\":\"956724\"}},{\"attributeHeader\":{\"labelValue\":\"956726\",\"primaryLabelValue\":\"956726\"}},{\"attributeHeader\":{\"labelValue\":\"956728\",\"primaryLabelValue\":\"956728\"}},{\"attributeHeader\":{\"labelValue\":\"956730\",\"primaryLabelValue\":\"956730\"}},{\"attributeHeader\":{\"labelValue\":\"956732\",\"primaryLabelValue\":\"956732\"}},{\"attributeHeader\":{\"labelValue\":\"956734\",\"primaryLabelValue\":\"956734\"}},{\"attributeHeader\":{\"labelValue\":\"956736\",\"primaryLabelValue\":\"956736\"}},{\"attributeHeader\":{\"labelValue\":\"956738\",\"primaryLabelValue\":\"956738\"}},{\"attributeHeader\":{\"labelValue\":\"956740\",\"primaryLabelValue\":\"956740\"}},{\"attributeHeader\":{\"labelValue\":\"956742\",\"primaryLabelValue\":\"956742\"}},{\"attributeHeader\":{\"labelValue\":\"956744\",\"primaryLabelValue\":\"956744\"}},{\"attributeHeader\":{\"labelValue\":\"956746\",\"primaryLabelValue\":\"956746\"}},{\"attributeHeader\":{\"labelValue\":\"956748\",\"primaryLabelValue\":\"956748\"}},{\"attributeHeader\":{\"labelValue\":\"956750\",\"primaryLabelValue\":\"956750\"}},{\"attributeHeader\":{\"labelValue\":\"956752\",\"primaryLabelValue\":\"956752\"}},{\"attributeHeader\":{\"labelValue\":\"956754\",\"primaryLabelValue\":\"956754\"}},{\"attributeHeader\":{\"labelValue\":\"956756\",\"primaryLabelValue\":\"956756\"}},{\"attributeHeader\":{\"labelValue\":\"956758\",\"primaryLabelValue\":\"956758\"}},{\"attributeHeader\":{\"labelValue\":\"956760\",\"primaryLabelValue\":\"956760\"}},{\"attributeHeader\":{\"labelValue\":\"956762\",\"primaryLabelValue\":\"956762\"}},{\"attributeHeader\":{\"labelValue\":\"956766\",\"primaryLabelValue\":\"956766\"}},{\"attributeHeader\":{\"labelValue\":\"956768\",\"primaryLabelValue\":\"956768\"}},{\"attributeHeader\":{\"labelValue\":\"956770\",\"primaryLabelValue\":\"956770\"}},{\"attributeHeader\":{\"labelValue\":\"956772\",\"primaryLabelValue\":\"956772\"}},{\"attributeHeader\":{\"labelValue\":\"956774\",\"primaryLabelValue\":\"956774\"}},{\"attributeHeader\":{\"labelValue\":\"956776\",\"primaryLabelValue\":\"956776\"}},{\"attributeHeader\":{\"labelValue\":\"956778\",\"primaryLabelValue\":\"956778\"}},{\"attributeHeader\":{\"labelValue\":\"956780\",\"primaryLabelValue\":\"956780\"}},{\"attributeHeader\":{\"labelValue\":\"956782\",\"primaryLabelValue\":\"956782\"}},{\"attributeHeader\":{\"labelValue\":\"956784\",\"primaryLabelValue\":\"956784\"}},{\"attributeHeader\":{\"labelValue\":\"956786\",\"primaryLabelValue\":\"956786\"}},{\"attributeHeader\":{\"labelValue\":\"956788\",\"primaryLabelValue\":\"956788\"}},{\"attributeHeader\":{\"labelValue\":\"956790\",\"primaryLabelValue\":\"956790\"}},{\"attributeHeader\":{\"labelValue\":\"956792\",\"primaryLabelValue\":\"956792\"}},{\"attributeHeader\":{\"labelValue\":\"956794\",\"primaryLabelValue\":\"956794\"}},{\"attributeHeader\":{\"labelValue\":\"956796\",\"primaryLabelValue\":\"956796\"}},{\"attributeHeader\":{\"labelValue\":\"956798\",\"primaryLabelValue\":\"956798\"}},{\"attributeHeader\":{\"labelValue\":\"956800\",\"primaryLabelValue\":\"956800\"}},{\"attributeHeader\":{\"labelValue\":\"956802\",\"primaryLabelValue\":\"956802\"}},{\"attributeHeader\":{\"labelValue\":\"956804\",\"primaryLabelValue\":\"956804\"}},{\"attributeHeader\":{\"labelValue\":\"956806\",\"primaryLabelValue\":\"956806\"}},{\"attributeHeader\":{\"labelValue\":\"956808\",\"primaryLabelValue\":\"956808\"}},{\"attributeHeader\":{\"labelValue\":\"956810\",\"primaryLabelValue\":\"956810\"}},{\"attributeHeader\":{\"labelValue\":\"956812\",\"primaryLabelValue\":\"956812\"}},{\"attributeHeader\":{\"labelValue\":\"956814\",\"primaryLabelValue\":\"956814\"}},{\"attributeHeader\":{\"labelValue\":\"956816\",\"primaryLabelValue\":\"956816\"}},{\"attributeHeader\":{\"labelValue\":\"956818\",\"primaryLabelValue\":\"956818\"}},{\"attributeHeader\":{\"labelValue\":\"956820\",\"primaryLabelValue\":\"956820\"}},{\"attributeHeader\":{\"labelValue\":\"956822\",\"primaryLabelValue\":\"956822\"}},{\"attributeHeader\":{\"labelValue\":\"956826\",\"primaryLabelValue\":\"956826\"}},{\"attributeHeader\":{\"labelValue\":\"956828\",\"primaryLabelValue\":\"956828\"}},{\"attributeHeader\":{\"labelValue\":\"956830\",\"primaryLabelValue\":\"956830\"}},{\"attributeHeader\":{\"labelValue\":\"956832\",\"primaryLabelValue\":\"956832\"}},{\"attributeHeader\":{\"labelValue\":\"956834\",\"primaryLabelValue\":\"956834\"}},{\"attributeHeader\":{\"labelValue\":\"956838\",\"primaryLabelValue\":\"956838\"}},{\"attributeHeader\":{\"labelValue\":\"956840\",\"primaryLabelValue\":\"956840\"}},{\"attributeHeader\":{\"labelValue\":\"956842\",\"primaryLabelValue\":\"956842\"}},{\"attributeHeader\":{\"labelValue\":\"956844\",\"primaryLabelValue\":\"956844\"}},{\"attributeHeader\":{\"labelValue\":\"956846\",\"primaryLabelValue\":\"956846\"}},{\"attributeHeader\":{\"labelValue\":\"956848\",\"primaryLabelValue\":\"956848\"}},{\"attributeHeader\":{\"labelValue\":\"956852\",\"primaryLabelValue\":\"956852\"}},{\"attributeHeader\":{\"labelValue\":\"956854\",\"primaryLabelValue\":\"956854\"}},{\"attributeHeader\":{\"labelValue\":\"956856\",\"primaryLabelValue\":\"956856\"}},{\"attributeHeader\":{\"labelValue\":\"956858\",\"primaryLabelValue\":\"956858\"}},{\"attributeHeader\":{\"labelValue\":\"956860\",\"primaryLabelValue\":\"956860\"}},{\"attributeHeader\":{\"labelValue\":\"956862\",\"primaryLabelValue\":\"956862\"}},{\"attributeHeader\":{\"labelValue\":\"956864\",\"primaryLabelValue\":\"956864\"}},{\"attributeHeader\":{\"labelValue\":\"956866\",\"primaryLabelValue\":\"956866\"}},{\"attributeHeader\":{\"labelValue\":\"956868\",\"primaryLabelValue\":\"956868\"}},{\"attributeHeader\":{\"labelValue\":\"956870\",\"primaryLabelValue\":\"956870\"}},{\"attributeHeader\":{\"labelValue\":\"956872\",\"primaryLabelValue\":\"956872\"}},{\"attributeHeader\":{\"labelValue\":\"956874\",\"primaryLabelValue\":\"956874\"}},{\"attributeHeader\":{\"labelValue\":\"956876\",\"primaryLabelValue\":\"956876\"}},{\"attributeHeader\":{\"labelValue\":\"956878\",\"primaryLabelValue\":\"956878\"}},{\"attributeHeader\":{\"labelValue\":\"956880\",\"primaryLabelValue\":\"956880\"}},{\"attributeHeader\":{\"labelValue\":\"956882\",\"primaryLabelValue\":\"956882\"}},{\"attributeHeader\":{\"labelValue\":\"956884\",\"primaryLabelValue\":\"956884\"}},{\"attributeHeader\":{\"labelValue\":\"956886\",\"primaryLabelValue\":\"956886\"}},{\"attributeHeader\":{\"labelValue\":\"956888\",\"primaryLabelValue\":\"956888\"}},{\"attributeHeader\":{\"labelValue\":\"956890\",\"primaryLabelValue\":\"956890\"}},{\"attributeHeader\":{\"labelValue\":\"956892\",\"primaryLabelValue\":\"956892\"}},{\"attributeHeader\":{\"labelValue\":\"956894\",\"primaryLabelValue\":\"956894\"}},{\"attributeHeader\":{\"labelValue\":\"956896\",\"primaryLabelValue\":\"956896\"}},{\"attributeHeader\":{\"labelValue\":\"956898\",\"primaryLabelValue\":\"956898\"}},{\"attributeHeader\":{\"labelValue\":\"956900\",\"primaryLabelValue\":\"956900\"}},{\"attributeHeader\":{\"labelValue\":\"956902\",\"primaryLabelValue\":\"956902\"}},{\"attributeHeader\":{\"labelValue\":\"956904\",\"primaryLabelValue\":\"956904\"}},{\"attributeHeader\":{\"labelValue\":\"956906\",\"primaryLabelValue\":\"956906\"}},{\"attributeHeader\":{\"labelValue\":\"956908\",\"primaryLabelValue\":\"956908\"}},{\"attributeHeader\":{\"labelValue\":\"956910\",\"primaryLabelValue\":\"956910\"}},{\"attributeHeader\":{\"labelValue\":\"956912\",\"primaryLabelValue\":\"956912\"}},{\"attributeHeader\":{\"labelValue\":\"956914\",\"primaryLabelValue\":\"956914\"}},{\"attributeHeader\":{\"labelValue\":\"956916\",\"primaryLabelValue\":\"956916\"}},{\"attributeHeader\":{\"labelValue\":\"956918\",\"primaryLabelValue\":\"956918\"}},{\"attributeHeader\":{\"labelValue\":\"956920\",\"primaryLabelValue\":\"956920\"}},{\"attributeHeader\":{\"labelValue\":\"956922\",\"primaryLabelValue\":\"956922\"}},{\"attributeHeader\":{\"labelValue\":\"956924\",\"primaryLabelValue\":\"956924\"}},{\"attributeHeader\":{\"labelValue\":\"956926\",\"primaryLabelValue\":\"956926\"}},{\"attributeHeader\":{\"labelValue\":\"956928\",\"primaryLabelValue\":\"956928\"}},{\"attributeHeader\":{\"labelValue\":\"956930\",\"primaryLabelValue\":\"956930\"}},{\"attributeHeader\":{\"labelValue\":\"956932\",\"primaryLabelValue\":\"956932\"}},{\"attributeHeader\":{\"labelValue\":\"956934\",\"primaryLabelValue\":\"956934\"}},{\"attributeHeader\":{\"labelValue\":\"956936\",\"primaryLabelValue\":\"956936\"}},{\"attributeHeader\":{\"labelValue\":\"956938\",\"primaryLabelValue\":\"956938\"}},{\"attributeHeader\":{\"labelValue\":\"956940\",\"primaryLabelValue\":\"956940\"}},{\"attributeHeader\":{\"labelValue\":\"956942\",\"primaryLabelValue\":\"956942\"}},{\"attributeHeader\":{\"labelValue\":\"956944\",\"primaryLabelValue\":\"956944\"}},{\"attributeHeader\":{\"labelValue\":\"956946\",\"primaryLabelValue\":\"956946\"}},{\"attributeHeader\":{\"labelValue\":\"956948\",\"primaryLabelValue\":\"956948\"}},{\"attributeHeader\":{\"labelValue\":\"956950\",\"primaryLabelValue\":\"956950\"}},{\"attributeHeader\":{\"labelValue\":\"956952\",\"primaryLabelValue\":\"956952\"}},{\"attributeHeader\":{\"labelValue\":\"956954\",\"primaryLabelValue\":\"956954\"}},{\"attributeHeader\":{\"labelValue\":\"956956\",\"primaryLabelValue\":\"956956\"}},{\"attributeHeader\":{\"labelValue\":\"956958\",\"primaryLabelValue\":\"956958\"}},{\"attributeHeader\":{\"labelValue\":\"956960\",\"primaryLabelValue\":\"956960\"}},{\"attributeHeader\":{\"labelValue\":\"956962\",\"primaryLabelValue\":\"956962\"}},{\"attributeHeader\":{\"labelValue\":\"956964\",\"primaryLabelValue\":\"956964\"}},{\"attributeHeader\":{\"labelValue\":\"956966\",\"primaryLabelValue\":\"956966\"}},{\"attributeHeader\":{\"labelValue\":\"956968\",\"primaryLabelValue\":\"956968\"}},{\"attributeHeader\":{\"labelValue\":\"956970\",\"primaryLabelValue\":\"956970\"}},{\"attributeHeader\":{\"labelValue\":\"956972\",\"primaryLabelValue\":\"956972\"}},{\"attributeHeader\":{\"labelValue\":\"956974\",\"primaryLabelValue\":\"956974\"}},{\"attributeHeader\":{\"labelValue\":\"956976\",\"primaryLabelValue\":\"956976\"}},{\"attributeHeader\":{\"labelValue\":\"956978\",\"primaryLabelValue\":\"956978\"}},{\"attributeHeader\":{\"labelValue\":\"956980\",\"primaryLabelValue\":\"956980\"}},{\"attributeHeader\":{\"labelValue\":\"956982\",\"primaryLabelValue\":\"956982\"}},{\"attributeHeader\":{\"labelValue\":\"956984\",\"primaryLabelValue\":\"956984\"}},{\"attributeHeader\":{\"labelValue\":\"956986\",\"primaryLabelValue\":\"956986\"}},{\"attributeHeader\":{\"labelValue\":\"956988\",\"primaryLabelValue\":\"956988\"}},{\"attributeHeader\":{\"labelValue\":\"956990\",\"primaryLabelValue\":\"956990\"}},{\"attributeHeader\":{\"labelValue\":\"956992\",\"primaryLabelValue\":\"956992\"}},{\"attributeHeader\":{\"labelValue\":\"956994\",\"primaryLabelValue\":\"956994\"}},{\"attributeHeader\":{\"labelValue\":\"956996\",\"primaryLabelValue\":\"956996\"}},{\"attributeHeader\":{\"labelValue\":\"956998\",\"primaryLabelValue\":\"956998\"}},{\"attributeHeader\":{\"labelValue\":\"957000\",\"primaryLabelValue\":\"957000\"}},{\"attributeHeader\":{\"labelValue\":\"957002\",\"primaryLabelValue\":\"957002\"}},{\"attributeHeader\":{\"labelValue\":\"957004\",\"primaryLabelValue\":\"957004\"}},{\"attributeHeader\":{\"labelValue\":\"957006\",\"primaryLabelValue\":\"957006\"}},{\"attributeHeader\":{\"labelValue\":\"957008\",\"primaryLabelValue\":\"957008\"}},{\"attributeHeader\":{\"labelValue\":\"957010\",\"primaryLabelValue\":\"957010\"}},{\"attributeHeader\":{\"labelValue\":\"957012\",\"primaryLabelValue\":\"957012\"}},{\"attributeHeader\":{\"labelValue\":\"957014\",\"primaryLabelValue\":\"957014\"}},{\"attributeHeader\":{\"labelValue\":\"957016\",\"primaryLabelValue\":\"957016\"}},{\"attributeHeader\":{\"labelValue\":\"957018\",\"primaryLabelValue\":\"957018\"}},{\"attributeHeader\":{\"labelValue\":\"957020\",\"primaryLabelValue\":\"957020\"}},{\"attributeHeader\":{\"labelValue\":\"957022\",\"primaryLabelValue\":\"957022\"}},{\"attributeHeader\":{\"labelValue\":\"957024\",\"primaryLabelValue\":\"957024\"}},{\"attributeHeader\":{\"labelValue\":\"957026\",\"primaryLabelValue\":\"957026\"}},{\"attributeHeader\":{\"labelValue\":\"957028\",\"primaryLabelValue\":\"957028\"}},{\"attributeHeader\":{\"labelValue\":\"957030\",\"primaryLabelValue\":\"957030\"}},{\"attributeHeader\":{\"labelValue\":\"957032\",\"primaryLabelValue\":\"957032\"}},{\"attributeHeader\":{\"labelValue\":\"957034\",\"primaryLabelValue\":\"957034\"}},{\"attributeHeader\":{\"labelValue\":\"957036\",\"primaryLabelValue\":\"957036\"}},{\"attributeHeader\":{\"labelValue\":\"957038\",\"primaryLabelValue\":\"957038\"}},{\"attributeHeader\":{\"labelValue\":\"957040\",\"primaryLabelValue\":\"957040\"}},{\"attributeHeader\":{\"labelValue\":\"957042\",\"primaryLabelValue\":\"957042\"}},{\"attributeHeader\":{\"labelValue\":\"957044\",\"primaryLabelValue\":\"957044\"}},{\"attributeHeader\":{\"labelValue\":\"957046\",\"primaryLabelValue\":\"957046\"}},{\"attributeHeader\":{\"labelValue\":\"957048\",\"primaryLabelValue\":\"957048\"}},{\"attributeHeader\":{\"labelValue\":\"957050\",\"primaryLabelValue\":\"957050\"}},{\"attributeHeader\":{\"labelValue\":\"957052\",\"primaryLabelValue\":\"957052\"}},{\"attributeHeader\":{\"labelValue\":\"957054\",\"primaryLabelValue\":\"957054\"}},{\"attributeHeader\":{\"labelValue\":\"957056\",\"primaryLabelValue\":\"957056\"}},{\"attributeHeader\":{\"labelValue\":\"957058\",\"primaryLabelValue\":\"957058\"}},{\"attributeHeader\":{\"labelValue\":\"957060\",\"primaryLabelValue\":\"957060\"}},{\"attributeHeader\":{\"labelValue\":\"957062\",\"primaryLabelValue\":\"957062\"}},{\"attributeHeader\":{\"labelValue\":\"957064\",\"primaryLabelValue\":\"957064\"}},{\"attributeHeader\":{\"labelValue\":\"957066\",\"primaryLabelValue\":\"957066\"}},{\"attributeHeader\":{\"labelValue\":\"957068\",\"primaryLabelValue\":\"957068\"}},{\"attributeHeader\":{\"labelValue\":\"957070\",\"primaryLabelValue\":\"957070\"}},{\"attributeHeader\":{\"labelValue\":\"957072\",\"primaryLabelValue\":\"957072\"}},{\"attributeHeader\":{\"labelValue\":\"957074\",\"primaryLabelValue\":\"957074\"}},{\"attributeHeader\":{\"labelValue\":\"957076\",\"primaryLabelValue\":\"957076\"}},{\"attributeHeader\":{\"labelValue\":\"957078\",\"primaryLabelValue\":\"957078\"}},{\"attributeHeader\":{\"labelValue\":\"957080\",\"primaryLabelValue\":\"957080\"}},{\"attributeHeader\":{\"labelValue\":\"957082\",\"primaryLabelValue\":\"957082\"}},{\"attributeHeader\":{\"labelValue\":\"957084\",\"primaryLabelValue\":\"957084\"}},{\"attributeHeader\":{\"labelValue\":\"957086\",\"primaryLabelValue\":\"957086\"}},{\"attributeHeader\":{\"labelValue\":\"957088\",\"primaryLabelValue\":\"957088\"}},{\"attributeHeader\":{\"labelValue\":\"957090\",\"primaryLabelValue\":\"957090\"}},{\"attributeHeader\":{\"labelValue\":\"957092\",\"primaryLabelValue\":\"957092\"}},{\"attributeHeader\":{\"labelValue\":\"957094\",\"primaryLabelValue\":\"957094\"}},{\"attributeHeader\":{\"labelValue\":\"957098\",\"primaryLabelValue\":\"957098\"}},{\"attributeHeader\":{\"labelValue\":\"957100\",\"primaryLabelValue\":\"957100\"}},{\"attributeHeader\":{\"labelValue\":\"957102\",\"primaryLabelValue\":\"957102\"}},{\"attributeHeader\":{\"labelValue\":\"957104\",\"primaryLabelValue\":\"957104\"}},{\"attributeHeader\":{\"labelValue\":\"957106\",\"primaryLabelValue\":\"957106\"}},{\"attributeHeader\":{\"labelValue\":\"957108\",\"primaryLabelValue\":\"957108\"}},{\"attributeHeader\":{\"labelValue\":\"957110\",\"primaryLabelValue\":\"957110\"}},{\"attributeHeader\":{\"labelValue\":\"957112\",\"primaryLabelValue\":\"957112\"}},{\"attributeHeader\":{\"labelValue\":\"957114\",\"primaryLabelValue\":\"957114\"}},{\"attributeHeader\":{\"labelValue\":\"957116\",\"primaryLabelValue\":\"957116\"}},{\"attributeHeader\":{\"labelValue\":\"957118\",\"primaryLabelValue\":\"957118\"}},{\"attributeHeader\":{\"labelValue\":\"957120\",\"primaryLabelValue\":\"957120\"}},{\"attributeHeader\":{\"labelValue\":\"957122\",\"primaryLabelValue\":\"957122\"}},{\"attributeHeader\":{\"labelValue\":\"957124\",\"primaryLabelValue\":\"957124\"}},{\"attributeHeader\":{\"labelValue\":\"957128\",\"primaryLabelValue\":\"957128\"}},{\"attributeHeader\":{\"labelValue\":\"957130\",\"primaryLabelValue\":\"957130\"}},{\"attributeHeader\":{\"labelValue\":\"957132\",\"primaryLabelValue\":\"957132\"}},{\"attributeHeader\":{\"labelValue\":\"957134\",\"primaryLabelValue\":\"957134\"}},{\"attributeHeader\":{\"labelValue\":\"957136\",\"primaryLabelValue\":\"957136\"}},{\"attributeHeader\":{\"labelValue\":\"957138\",\"primaryLabelValue\":\"957138\"}},{\"attributeHeader\":{\"labelValue\":\"957140\",\"primaryLabelValue\":\"957140\"}},{\"attributeHeader\":{\"labelValue\":\"957142\",\"primaryLabelValue\":\"957142\"}},{\"attributeHeader\":{\"labelValue\":\"957144\",\"primaryLabelValue\":\"957144\"}},{\"attributeHeader\":{\"labelValue\":\"957146\",\"primaryLabelValue\":\"957146\"}},{\"attributeHeader\":{\"labelValue\":\"957148\",\"primaryLabelValue\":\"957148\"}},{\"attributeHeader\":{\"labelValue\":\"957150\",\"primaryLabelValue\":\"957150\"}},{\"attributeHeader\":{\"labelValue\":\"957152\",\"primaryLabelValue\":\"957152\"}},{\"attributeHeader\":{\"labelValue\":\"957154\",\"primaryLabelValue\":\"957154\"}},{\"attributeHeader\":{\"labelValue\":\"957156\",\"primaryLabelValue\":\"957156\"}},{\"attributeHeader\":{\"labelValue\":\"957158\",\"primaryLabelValue\":\"957158\"}},{\"attributeHeader\":{\"labelValue\":\"957160\",\"primaryLabelValue\":\"957160\"}},{\"attributeHeader\":{\"labelValue\":\"957162\",\"primaryLabelValue\":\"957162\"}},{\"attributeHeader\":{\"labelValue\":\"957164\",\"primaryLabelValue\":\"957164\"}},{\"attributeHeader\":{\"labelValue\":\"957166\",\"primaryLabelValue\":\"957166\"}},{\"attributeHeader\":{\"labelValue\":\"957168\",\"primaryLabelValue\":\"957168\"}},{\"attributeHeader\":{\"labelValue\":\"957170\",\"primaryLabelValue\":\"957170\"}},{\"attributeHeader\":{\"labelValue\":\"957172\",\"primaryLabelValue\":\"957172\"}},{\"attributeHeader\":{\"labelValue\":\"957174\",\"primaryLabelValue\":\"957174\"}},{\"attributeHeader\":{\"labelValue\":\"957176\",\"primaryLabelValue\":\"957176\"}},{\"attributeHeader\":{\"labelValue\":\"957178\",\"primaryLabelValue\":\"957178\"}},{\"attributeHeader\":{\"labelValue\":\"957180\",\"primaryLabelValue\":\"957180\"}},{\"attributeHeader\":{\"labelValue\":\"957182\",\"primaryLabelValue\":\"957182\"}},{\"attributeHeader\":{\"labelValue\":\"957184\",\"primaryLabelValue\":\"957184\"}},{\"attributeHeader\":{\"labelValue\":\"957186\",\"primaryLabelValue\":\"957186\"}},{\"attributeHeader\":{\"labelValue\":\"957188\",\"primaryLabelValue\":\"957188\"}},{\"attributeHeader\":{\"labelValue\":\"957190\",\"primaryLabelValue\":\"957190\"}},{\"attributeHeader\":{\"labelValue\":\"957192\",\"primaryLabelValue\":\"957192\"}},{\"attributeHeader\":{\"labelValue\":\"957194\",\"primaryLabelValue\":\"957194\"}},{\"attributeHeader\":{\"labelValue\":\"957196\",\"primaryLabelValue\":\"957196\"}},{\"attributeHeader\":{\"labelValue\":\"957198\",\"primaryLabelValue\":\"957198\"}},{\"attributeHeader\":{\"labelValue\":\"957200\",\"primaryLabelValue\":\"957200\"}},{\"attributeHeader\":{\"labelValue\":\"957202\",\"primaryLabelValue\":\"957202\"}},{\"attributeHeader\":{\"labelValue\":\"957204\",\"primaryLabelValue\":\"957204\"}},{\"attributeHeader\":{\"labelValue\":\"957206\",\"primaryLabelValue\":\"957206\"}},{\"attributeHeader\":{\"labelValue\":\"957208\",\"primaryLabelValue\":\"957208\"}},{\"attributeHeader\":{\"labelValue\":\"957210\",\"primaryLabelValue\":\"957210\"}},{\"attributeHeader\":{\"labelValue\":\"957212\",\"primaryLabelValue\":\"957212\"}},{\"attributeHeader\":{\"labelValue\":\"957214\",\"primaryLabelValue\":\"957214\"}},{\"attributeHeader\":{\"labelValue\":\"957216\",\"primaryLabelValue\":\"957216\"}},{\"attributeHeader\":{\"labelValue\":\"957218\",\"primaryLabelValue\":\"957218\"}},{\"attributeHeader\":{\"labelValue\":\"957222\",\"primaryLabelValue\":\"957222\"}},{\"attributeHeader\":{\"labelValue\":\"957224\",\"primaryLabelValue\":\"957224\"}},{\"attributeHeader\":{\"labelValue\":\"957226\",\"primaryLabelValue\":\"957226\"}},{\"attributeHeader\":{\"labelValue\":\"957228\",\"primaryLabelValue\":\"957228\"}},{\"attributeHeader\":{\"labelValue\":\"957230\",\"primaryLabelValue\":\"957230\"}},{\"attributeHeader\":{\"labelValue\":\"957232\",\"primaryLabelValue\":\"957232\"}},{\"attributeHeader\":{\"labelValue\":\"957234\",\"primaryLabelValue\":\"957234\"}},{\"attributeHeader\":{\"labelValue\":\"957236\",\"primaryLabelValue\":\"957236\"}},{\"attributeHeader\":{\"labelValue\":\"957238\",\"primaryLabelValue\":\"957238\"}},{\"attributeHeader\":{\"labelValue\":\"957240\",\"primaryLabelValue\":\"957240\"}},{\"attributeHeader\":{\"labelValue\":\"957242\",\"primaryLabelValue\":\"957242\"}},{\"attributeHeader\":{\"labelValue\":\"957244\",\"primaryLabelValue\":\"957244\"}},{\"attributeHeader\":{\"labelValue\":\"957246\",\"primaryLabelValue\":\"957246\"}},{\"attributeHeader\":{\"labelValue\":\"957248\",\"primaryLabelValue\":\"957248\"}},{\"attributeHeader\":{\"labelValue\":\"957250\",\"primaryLabelValue\":\"957250\"}},{\"attributeHeader\":{\"labelValue\":\"957252\",\"primaryLabelValue\":\"957252\"}},{\"attributeHeader\":{\"labelValue\":\"957254\",\"primaryLabelValue\":\"957254\"}},{\"attributeHeader\":{\"labelValue\":\"957256\",\"primaryLabelValue\":\"957256\"}},{\"attributeHeader\":{\"labelValue\":\"957258\",\"primaryLabelValue\":\"957258\"}},{\"attributeHeader\":{\"labelValue\":\"957260\",\"primaryLabelValue\":\"957260\"}},{\"attributeHeader\":{\"labelValue\":\"957262\",\"primaryLabelValue\":\"957262\"}},{\"attributeHeader\":{\"labelValue\":\"957264\",\"primaryLabelValue\":\"957264\"}},{\"attributeHeader\":{\"labelValue\":\"957266\",\"primaryLabelValue\":\"957266\"}},{\"attributeHeader\":{\"labelValue\":\"957268\",\"primaryLabelValue\":\"957268\"}},{\"attributeHeader\":{\"labelValue\":\"957270\",\"primaryLabelValue\":\"957270\"}},{\"attributeHeader\":{\"labelValue\":\"957272\",\"primaryLabelValue\":\"957272\"}},{\"attributeHeader\":{\"labelValue\":\"957274\",\"primaryLabelValue\":\"957274\"}},{\"attributeHeader\":{\"labelValue\":\"957276\",\"primaryLabelValue\":\"957276\"}},{\"attributeHeader\":{\"labelValue\":\"957278\",\"primaryLabelValue\":\"957278\"}},{\"attributeHeader\":{\"labelValue\":\"957280\",\"primaryLabelValue\":\"957280\"}},{\"attributeHeader\":{\"labelValue\":\"957282\",\"primaryLabelValue\":\"957282\"}},{\"attributeHeader\":{\"labelValue\":\"957284\",\"primaryLabelValue\":\"957284\"}},{\"attributeHeader\":{\"labelValue\":\"957286\",\"primaryLabelValue\":\"957286\"}},{\"attributeHeader\":{\"labelValue\":\"957288\",\"primaryLabelValue\":\"957288\"}},{\"attributeHeader\":{\"labelValue\":\"957290\",\"primaryLabelValue\":\"957290\"}},{\"attributeHeader\":{\"labelValue\":\"957292\",\"primaryLabelValue\":\"957292\"}},{\"attributeHeader\":{\"labelValue\":\"957294\",\"primaryLabelValue\":\"957294\"}},{\"attributeHeader\":{\"labelValue\":\"957296\",\"primaryLabelValue\":\"957296\"}},{\"attributeHeader\":{\"labelValue\":\"957298\",\"primaryLabelValue\":\"957298\"}},{\"attributeHeader\":{\"labelValue\":\"957300\",\"primaryLabelValue\":\"957300\"}},{\"attributeHeader\":{\"labelValue\":\"957302\",\"primaryLabelValue\":\"957302\"}},{\"attributeHeader\":{\"labelValue\":\"957304\",\"primaryLabelValue\":\"957304\"}},{\"attributeHeader\":{\"labelValue\":\"957306\",\"primaryLabelValue\":\"957306\"}},{\"attributeHeader\":{\"labelValue\":\"957308\",\"primaryLabelValue\":\"957308\"}},{\"attributeHeader\":{\"labelValue\":\"957310\",\"primaryLabelValue\":\"957310\"}},{\"attributeHeader\":{\"labelValue\":\"957312\",\"primaryLabelValue\":\"957312\"}},{\"attributeHeader\":{\"labelValue\":\"957314\",\"primaryLabelValue\":\"957314\"}},{\"attributeHeader\":{\"labelValue\":\"957316\",\"primaryLabelValue\":\"957316\"}},{\"attributeHeader\":{\"labelValue\":\"957318\",\"primaryLabelValue\":\"957318\"}},{\"attributeHeader\":{\"labelValue\":\"957320\",\"primaryLabelValue\":\"957320\"}},{\"attributeHeader\":{\"labelValue\":\"957322\",\"primaryLabelValue\":\"957322\"}},{\"attributeHeader\":{\"labelValue\":\"957324\",\"primaryLabelValue\":\"957324\"}},{\"attributeHeader\":{\"labelValue\":\"957326\",\"primaryLabelValue\":\"957326\"}},{\"attributeHeader\":{\"labelValue\":\"957328\",\"primaryLabelValue\":\"957328\"}},{\"attributeHeader\":{\"labelValue\":\"957330\",\"primaryLabelValue\":\"957330\"}},{\"attributeHeader\":{\"labelValue\":\"957332\",\"primaryLabelValue\":\"957332\"}},{\"attributeHeader\":{\"labelValue\":\"957334\",\"primaryLabelValue\":\"957334\"}},{\"attributeHeader\":{\"labelValue\":\"957336\",\"primaryLabelValue\":\"957336\"}},{\"attributeHeader\":{\"labelValue\":\"957338\",\"primaryLabelValue\":\"957338\"}},{\"attributeHeader\":{\"labelValue\":\"957340\",\"primaryLabelValue\":\"957340\"}},{\"attributeHeader\":{\"labelValue\":\"957342\",\"primaryLabelValue\":\"957342\"}},{\"attributeHeader\":{\"labelValue\":\"957344\",\"primaryLabelValue\":\"957344\"}},{\"attributeHeader\":{\"labelValue\":\"957346\",\"primaryLabelValue\":\"957346\"}},{\"attributeHeader\":{\"labelValue\":\"957348\",\"primaryLabelValue\":\"957348\"}},{\"attributeHeader\":{\"labelValue\":\"957350\",\"primaryLabelValue\":\"957350\"}},{\"attributeHeader\":{\"labelValue\":\"957352\",\"primaryLabelValue\":\"957352\"}},{\"attributeHeader\":{\"labelValue\":\"957354\",\"primaryLabelValue\":\"957354\"}},{\"attributeHeader\":{\"labelValue\":\"957356\",\"primaryLabelValue\":\"957356\"}},{\"attributeHeader\":{\"labelValue\":\"957358\",\"primaryLabelValue\":\"957358\"}},{\"attributeHeader\":{\"labelValue\":\"957360\",\"primaryLabelValue\":\"957360\"}},{\"attributeHeader\":{\"labelValue\":\"957364\",\"primaryLabelValue\":\"957364\"}},{\"attributeHeader\":{\"labelValue\":\"957366\",\"primaryLabelValue\":\"957366\"}},{\"attributeHeader\":{\"labelValue\":\"957368\",\"primaryLabelValue\":\"957368\"}},{\"attributeHeader\":{\"labelValue\":\"957370\",\"primaryLabelValue\":\"957370\"}},{\"attributeHeader\":{\"labelValue\":\"957372\",\"primaryLabelValue\":\"957372\"}},{\"attributeHeader\":{\"labelValue\":\"957374\",\"primaryLabelValue\":\"957374\"}},{\"attributeHeader\":{\"labelValue\":\"957378\",\"primaryLabelValue\":\"957378\"}},{\"attributeHeader\":{\"labelValue\":\"957380\",\"primaryLabelValue\":\"957380\"}},{\"attributeHeader\":{\"labelValue\":\"957382\",\"primaryLabelValue\":\"957382\"}},{\"attributeHeader\":{\"labelValue\":\"957384\",\"primaryLabelValue\":\"957384\"}},{\"attributeHeader\":{\"labelValue\":\"957386\",\"primaryLabelValue\":\"957386\"}},{\"attributeHeader\":{\"labelValue\":\"957388\",\"primaryLabelValue\":\"957388\"}},{\"attributeHeader\":{\"labelValue\":\"957390\",\"primaryLabelValue\":\"957390\"}},{\"attributeHeader\":{\"labelValue\":\"957392\",\"primaryLabelValue\":\"957392\"}},{\"attributeHeader\":{\"labelValue\":\"957394\",\"primaryLabelValue\":\"957394\"}},{\"attributeHeader\":{\"labelValue\":\"957396\",\"primaryLabelValue\":\"957396\"}},{\"attributeHeader\":{\"labelValue\":\"957398\",\"primaryLabelValue\":\"957398\"}},{\"attributeHeader\":{\"labelValue\":\"957400\",\"primaryLabelValue\":\"957400\"}},{\"attributeHeader\":{\"labelValue\":\"957402\",\"primaryLabelValue\":\"957402\"}},{\"attributeHeader\":{\"labelValue\":\"957404\",\"primaryLabelValue\":\"957404\"}},{\"attributeHeader\":{\"labelValue\":\"957406\",\"primaryLabelValue\":\"957406\"}},{\"attributeHeader\":{\"labelValue\":\"957408\",\"primaryLabelValue\":\"957408\"}},{\"attributeHeader\":{\"labelValue\":\"957410\",\"primaryLabelValue\":\"957410\"}},{\"attributeHeader\":{\"labelValue\":\"957412\",\"primaryLabelValue\":\"957412\"}},{\"attributeHeader\":{\"labelValue\":\"957414\",\"primaryLabelValue\":\"957414\"}},{\"attributeHeader\":{\"labelValue\":\"957416\",\"primaryLabelValue\":\"957416\"}},{\"attributeHeader\":{\"labelValue\":\"957418\",\"primaryLabelValue\":\"957418\"}},{\"attributeHeader\":{\"labelValue\":\"957420\",\"primaryLabelValue\":\"957420\"}},{\"attributeHeader\":{\"labelValue\":\"957422\",\"primaryLabelValue\":\"957422\"}},{\"attributeHeader\":{\"labelValue\":\"957424\",\"primaryLabelValue\":\"957424\"}},{\"attributeHeader\":{\"labelValue\":\"957426\",\"primaryLabelValue\":\"957426\"}},{\"attributeHeader\":{\"labelValue\":\"957428\",\"primaryLabelValue\":\"957428\"}},{\"attributeHeader\":{\"labelValue\":\"957430\",\"primaryLabelValue\":\"957430\"}},{\"attributeHeader\":{\"labelValue\":\"957432\",\"primaryLabelValue\":\"957432\"}},{\"attributeHeader\":{\"labelValue\":\"957434\",\"primaryLabelValue\":\"957434\"}},{\"attributeHeader\":{\"labelValue\":\"957436\",\"primaryLabelValue\":\"957436\"}},{\"attributeHeader\":{\"labelValue\":\"957438\",\"primaryLabelValue\":\"957438\"}},{\"attributeHeader\":{\"labelValue\":\"957440\",\"primaryLabelValue\":\"957440\"}},{\"attributeHeader\":{\"labelValue\":\"957442\",\"primaryLabelValue\":\"957442\"}},{\"attributeHeader\":{\"labelValue\":\"957446\",\"primaryLabelValue\":\"957446\"}},{\"attributeHeader\":{\"labelValue\":\"957448\",\"primaryLabelValue\":\"957448\"}},{\"attributeHeader\":{\"labelValue\":\"957450\",\"primaryLabelValue\":\"957450\"}},{\"attributeHeader\":{\"labelValue\":\"957452\",\"primaryLabelValue\":\"957452\"}},{\"attributeHeader\":{\"labelValue\":\"957454\",\"primaryLabelValue\":\"957454\"}},{\"attributeHeader\":{\"labelValue\":\"957456\",\"primaryLabelValue\":\"957456\"}},{\"attributeHeader\":{\"labelValue\":\"957458\",\"primaryLabelValue\":\"957458\"}},{\"attributeHeader\":{\"labelValue\":\"957460\",\"primaryLabelValue\":\"957460\"}},{\"attributeHeader\":{\"labelValue\":\"957462\",\"primaryLabelValue\":\"957462\"}},{\"attributeHeader\":{\"labelValue\":\"957464\",\"primaryLabelValue\":\"957464\"}},{\"attributeHeader\":{\"labelValue\":\"957466\",\"primaryLabelValue\":\"957466\"}},{\"attributeHeader\":{\"labelValue\":\"957468\",\"primaryLabelValue\":\"957468\"}},{\"attributeHeader\":{\"labelValue\":\"957470\",\"primaryLabelValue\":\"957470\"}},{\"attributeHeader\":{\"labelValue\":\"957472\",\"primaryLabelValue\":\"957472\"}},{\"attributeHeader\":{\"labelValue\":\"957474\",\"primaryLabelValue\":\"957474\"}},{\"attributeHeader\":{\"labelValue\":\"957476\",\"primaryLabelValue\":\"957476\"}},{\"attributeHeader\":{\"labelValue\":\"957478\",\"primaryLabelValue\":\"957478\"}},{\"attributeHeader\":{\"labelValue\":\"957480\",\"primaryLabelValue\":\"957480\"}},{\"attributeHeader\":{\"labelValue\":\"957482\",\"primaryLabelValue\":\"957482\"}},{\"attributeHeader\":{\"labelValue\":\"957484\",\"primaryLabelValue\":\"957484\"}},{\"attributeHeader\":{\"labelValue\":\"957486\",\"primaryLabelValue\":\"957486\"}},{\"attributeHeader\":{\"labelValue\":\"957488\",\"primaryLabelValue\":\"957488\"}},{\"attributeHeader\":{\"labelValue\":\"957490\",\"primaryLabelValue\":\"957490\"}},{\"attributeHeader\":{\"labelValue\":\"957492\",\"primaryLabelValue\":\"957492\"}},{\"attributeHeader\":{\"labelValue\":\"957494\",\"primaryLabelValue\":\"957494\"}},{\"attributeHeader\":{\"labelValue\":\"957496\",\"primaryLabelValue\":\"957496\"}},{\"attributeHeader\":{\"labelValue\":\"957498\",\"primaryLabelValue\":\"957498\"}},{\"attributeHeader\":{\"labelValue\":\"957500\",\"primaryLabelValue\":\"957500\"}},{\"attributeHeader\":{\"labelValue\":\"957502\",\"primaryLabelValue\":\"957502\"}},{\"attributeHeader\":{\"labelValue\":\"957504\",\"primaryLabelValue\":\"957504\"}},{\"attributeHeader\":{\"labelValue\":\"957506\",\"primaryLabelValue\":\"957506\"}},{\"attributeHeader\":{\"labelValue\":\"957508\",\"primaryLabelValue\":\"957508\"}},{\"attributeHeader\":{\"labelValue\":\"957510\",\"primaryLabelValue\":\"957510\"}},{\"attributeHeader\":{\"labelValue\":\"957512\",\"primaryLabelValue\":\"957512\"}},{\"attributeHeader\":{\"labelValue\":\"957514\",\"primaryLabelValue\":\"957514\"}},{\"attributeHeader\":{\"labelValue\":\"957516\",\"primaryLabelValue\":\"957516\"}},{\"attributeHeader\":{\"labelValue\":\"957518\",\"primaryLabelValue\":\"957518\"}},{\"attributeHeader\":{\"labelValue\":\"957520\",\"primaryLabelValue\":\"957520\"}},{\"attributeHeader\":{\"labelValue\":\"957522\",\"primaryLabelValue\":\"957522\"}},{\"attributeHeader\":{\"labelValue\":\"957524\",\"primaryLabelValue\":\"957524\"}},{\"attributeHeader\":{\"labelValue\":\"957526\",\"primaryLabelValue\":\"957526\"}},{\"attributeHeader\":{\"labelValue\":\"957528\",\"primaryLabelValue\":\"957528\"}},{\"attributeHeader\":{\"labelValue\":\"957530\",\"primaryLabelValue\":\"957530\"}},{\"attributeHeader\":{\"labelValue\":\"957532\",\"primaryLabelValue\":\"957532\"}},{\"attributeHeader\":{\"labelValue\":\"957534\",\"primaryLabelValue\":\"957534\"}},{\"attributeHeader\":{\"labelValue\":\"957536\",\"primaryLabelValue\":\"957536\"}},{\"attributeHeader\":{\"labelValue\":\"957538\",\"primaryLabelValue\":\"957538\"}},{\"attributeHeader\":{\"labelValue\":\"957540\",\"primaryLabelValue\":\"957540\"}},{\"attributeHeader\":{\"labelValue\":\"957542\",\"primaryLabelValue\":\"957542\"}},{\"attributeHeader\":{\"labelValue\":\"957544\",\"primaryLabelValue\":\"957544\"}},{\"attributeHeader\":{\"labelValue\":\"957546\",\"primaryLabelValue\":\"957546\"}},{\"attributeHeader\":{\"labelValue\":\"957548\",\"primaryLabelValue\":\"957548\"}},{\"attributeHeader\":{\"labelValue\":\"957550\",\"primaryLabelValue\":\"957550\"}},{\"attributeHeader\":{\"labelValue\":\"957552\",\"primaryLabelValue\":\"957552\"}},{\"attributeHeader\":{\"labelValue\":\"957554\",\"primaryLabelValue\":\"957554\"}},{\"attributeHeader\":{\"labelValue\":\"957556\",\"primaryLabelValue\":\"957556\"}},{\"attributeHeader\":{\"labelValue\":\"957558\",\"primaryLabelValue\":\"957558\"}},{\"attributeHeader\":{\"labelValue\":\"957560\",\"primaryLabelValue\":\"957560\"}},{\"attributeHeader\":{\"labelValue\":\"957562\",\"primaryLabelValue\":\"957562\"}},{\"attributeHeader\":{\"labelValue\":\"957564\",\"primaryLabelValue\":\"957564\"}},{\"attributeHeader\":{\"labelValue\":\"957566\",\"primaryLabelValue\":\"957566\"}},{\"attributeHeader\":{\"labelValue\":\"957568\",\"primaryLabelValue\":\"957568\"}},{\"attributeHeader\":{\"labelValue\":\"957570\",\"primaryLabelValue\":\"957570\"}},{\"attributeHeader\":{\"labelValue\":\"957572\",\"primaryLabelValue\":\"957572\"}},{\"attributeHeader\":{\"labelValue\":\"957574\",\"primaryLabelValue\":\"957574\"}},{\"attributeHeader\":{\"labelValue\":\"957576\",\"primaryLabelValue\":\"957576\"}},{\"attributeHeader\":{\"labelValue\":\"957578\",\"primaryLabelValue\":\"957578\"}},{\"attributeHeader\":{\"labelValue\":\"957580\",\"primaryLabelValue\":\"957580\"}},{\"attributeHeader\":{\"labelValue\":\"957582\",\"primaryLabelValue\":\"957582\"}},{\"attributeHeader\":{\"labelValue\":\"957584\",\"primaryLabelValue\":\"957584\"}},{\"attributeHeader\":{\"labelValue\":\"957586\",\"primaryLabelValue\":\"957586\"}},{\"attributeHeader\":{\"labelValue\":\"957588\",\"primaryLabelValue\":\"957588\"}},{\"attributeHeader\":{\"labelValue\":\"957590\",\"primaryLabelValue\":\"957590\"}},{\"attributeHeader\":{\"labelValue\":\"957592\",\"primaryLabelValue\":\"957592\"}},{\"attributeHeader\":{\"labelValue\":\"957594\",\"primaryLabelValue\":\"957594\"}},{\"attributeHeader\":{\"labelValue\":\"957596\",\"primaryLabelValue\":\"957596\"}},{\"attributeHeader\":{\"labelValue\":\"957598\",\"primaryLabelValue\":\"957598\"}},{\"attributeHeader\":{\"labelValue\":\"957600\",\"primaryLabelValue\":\"957600\"}},{\"attributeHeader\":{\"labelValue\":\"957602\",\"primaryLabelValue\":\"957602\"}},{\"attributeHeader\":{\"labelValue\":\"957604\",\"primaryLabelValue\":\"957604\"}},{\"attributeHeader\":{\"labelValue\":\"957606\",\"primaryLabelValue\":\"957606\"}},{\"attributeHeader\":{\"labelValue\":\"957608\",\"primaryLabelValue\":\"957608\"}},{\"attributeHeader\":{\"labelValue\":\"957610\",\"primaryLabelValue\":\"957610\"}},{\"attributeHeader\":{\"labelValue\":\"957612\",\"primaryLabelValue\":\"957612\"}},{\"attributeHeader\":{\"labelValue\":\"957614\",\"primaryLabelValue\":\"957614\"}},{\"attributeHeader\":{\"labelValue\":\"957616\",\"primaryLabelValue\":\"957616\"}},{\"attributeHeader\":{\"labelValue\":\"957618\",\"primaryLabelValue\":\"957618\"}},{\"attributeHeader\":{\"labelValue\":\"957620\",\"primaryLabelValue\":\"957620\"}},{\"attributeHeader\":{\"labelValue\":\"957622\",\"primaryLabelValue\":\"957622\"}},{\"attributeHeader\":{\"labelValue\":\"957624\",\"primaryLabelValue\":\"957624\"}},{\"attributeHeader\":{\"labelValue\":\"957626\",\"primaryLabelValue\":\"957626\"}},{\"attributeHeader\":{\"labelValue\":\"957632\",\"primaryLabelValue\":\"957632\"}},{\"attributeHeader\":{\"labelValue\":\"957634\",\"primaryLabelValue\":\"957634\"}},{\"attributeHeader\":{\"labelValue\":\"957636\",\"primaryLabelValue\":\"957636\"}},{\"attributeHeader\":{\"labelValue\":\"957638\",\"primaryLabelValue\":\"957638\"}},{\"attributeHeader\":{\"labelValue\":\"957640\",\"primaryLabelValue\":\"957640\"}},{\"attributeHeader\":{\"labelValue\":\"957642\",\"primaryLabelValue\":\"957642\"}},{\"attributeHeader\":{\"labelValue\":\"957644\",\"primaryLabelValue\":\"957644\"}},{\"attributeHeader\":{\"labelValue\":\"957646\",\"primaryLabelValue\":\"957646\"}},{\"attributeHeader\":{\"labelValue\":\"957648\",\"primaryLabelValue\":\"957648\"}},{\"attributeHeader\":{\"labelValue\":\"957650\",\"primaryLabelValue\":\"957650\"}},{\"attributeHeader\":{\"labelValue\":\"957652\",\"primaryLabelValue\":\"957652\"}},{\"attributeHeader\":{\"labelValue\":\"957654\",\"primaryLabelValue\":\"957654\"}},{\"attributeHeader\":{\"labelValue\":\"957656\",\"primaryLabelValue\":\"957656\"}},{\"attributeHeader\":{\"labelValue\":\"957658\",\"primaryLabelValue\":\"957658\"}},{\"attributeHeader\":{\"labelValue\":\"957660\",\"primaryLabelValue\":\"957660\"}},{\"attributeHeader\":{\"labelValue\":\"957664\",\"primaryLabelValue\":\"957664\"}},{\"attributeHeader\":{\"labelValue\":\"957666\",\"primaryLabelValue\":\"957666\"}},{\"attributeHeader\":{\"labelValue\":\"957668\",\"primaryLabelValue\":\"957668\"}},{\"attributeHeader\":{\"labelValue\":\"957674\",\"primaryLabelValue\":\"957674\"}},{\"attributeHeader\":{\"labelValue\":\"957676\",\"primaryLabelValue\":\"957676\"}},{\"attributeHeader\":{\"labelValue\":\"957678\",\"primaryLabelValue\":\"957678\"}},{\"attributeHeader\":{\"labelValue\":\"957680\",\"primaryLabelValue\":\"957680\"}},{\"attributeHeader\":{\"labelValue\":\"957682\",\"primaryLabelValue\":\"957682\"}},{\"attributeHeader\":{\"labelValue\":\"957684\",\"primaryLabelValue\":\"957684\"}},{\"attributeHeader\":{\"labelValue\":\"957688\",\"primaryLabelValue\":\"957688\"}},{\"attributeHeader\":{\"labelValue\":\"957690\",\"primaryLabelValue\":\"957690\"}},{\"attributeHeader\":{\"labelValue\":\"957692\",\"primaryLabelValue\":\"957692\"}},{\"attributeHeader\":{\"labelValue\":\"957694\",\"primaryLabelValue\":\"957694\"}},{\"attributeHeader\":{\"labelValue\":\"957696\",\"primaryLabelValue\":\"957696\"}},{\"attributeHeader\":{\"labelValue\":\"957698\",\"primaryLabelValue\":\"957698\"}},{\"attributeHeader\":{\"labelValue\":\"957702\",\"primaryLabelValue\":\"957702\"}},{\"attributeHeader\":{\"labelValue\":\"957704\",\"primaryLabelValue\":\"957704\"}},{\"attributeHeader\":{\"labelValue\":\"957708\",\"primaryLabelValue\":\"957708\"}},{\"attributeHeader\":{\"labelValue\":\"957710\",\"primaryLabelValue\":\"957710\"}},{\"attributeHeader\":{\"labelValue\":\"957712\",\"primaryLabelValue\":\"957712\"}},{\"attributeHeader\":{\"labelValue\":\"957714\",\"primaryLabelValue\":\"957714\"}},{\"attributeHeader\":{\"labelValue\":\"957716\",\"primaryLabelValue\":\"957716\"}},{\"attributeHeader\":{\"labelValue\":\"957718\",\"primaryLabelValue\":\"957718\"}},{\"attributeHeader\":{\"labelValue\":\"957720\",\"primaryLabelValue\":\"957720\"}},{\"attributeHeader\":{\"labelValue\":\"957722\",\"primaryLabelValue\":\"957722\"}},{\"attributeHeader\":{\"labelValue\":\"957724\",\"primaryLabelValue\":\"957724\"}},{\"attributeHeader\":{\"labelValue\":\"957726\",\"primaryLabelValue\":\"957726\"}},{\"attributeHeader\":{\"labelValue\":\"957728\",\"primaryLabelValue\":\"957728\"}},{\"attributeHeader\":{\"labelValue\":\"957730\",\"primaryLabelValue\":\"957730\"}},{\"attributeHeader\":{\"labelValue\":\"957732\",\"primaryLabelValue\":\"957732\"}},{\"attributeHeader\":{\"labelValue\":\"957734\",\"primaryLabelValue\":\"957734\"}},{\"attributeHeader\":{\"labelValue\":\"957736\",\"primaryLabelValue\":\"957736\"}},{\"attributeHeader\":{\"labelValue\":\"957738\",\"primaryLabelValue\":\"957738\"}},{\"attributeHeader\":{\"labelValue\":\"957740\",\"primaryLabelValue\":\"957740\"}},{\"attributeHeader\":{\"labelValue\":\"957742\",\"primaryLabelValue\":\"957742\"}},{\"attributeHeader\":{\"labelValue\":\"957744\",\"primaryLabelValue\":\"957744\"}},{\"attributeHeader\":{\"labelValue\":\"957746\",\"primaryLabelValue\":\"957746\"}},{\"attributeHeader\":{\"labelValue\":\"957748\",\"primaryLabelValue\":\"957748\"}},{\"attributeHeader\":{\"labelValue\":\"957750\",\"primaryLabelValue\":\"957750\"}},{\"attributeHeader\":{\"labelValue\":\"957752\",\"primaryLabelValue\":\"957752\"}},{\"attributeHeader\":{\"labelValue\":\"957754\",\"primaryLabelValue\":\"957754\"}},{\"attributeHeader\":{\"labelValue\":\"957756\",\"primaryLabelValue\":\"957756\"}},{\"attributeHeader\":{\"labelValue\":\"957758\",\"primaryLabelValue\":\"957758\"}},{\"attributeHeader\":{\"labelValue\":\"957760\",\"primaryLabelValue\":\"957760\"}},{\"attributeHeader\":{\"labelValue\":\"957762\",\"primaryLabelValue\":\"957762\"}},{\"attributeHeader\":{\"labelValue\":\"957764\",\"primaryLabelValue\":\"957764\"}},{\"attributeHeader\":{\"labelValue\":\"957766\",\"primaryLabelValue\":\"957766\"}},{\"attributeHeader\":{\"labelValue\":\"957772\",\"primaryLabelValue\":\"957772\"}},{\"attributeHeader\":{\"labelValue\":\"957774\",\"primaryLabelValue\":\"957774\"}},{\"attributeHeader\":{\"labelValue\":\"957776\",\"primaryLabelValue\":\"957776\"}},{\"attributeHeader\":{\"labelValue\":\"957778\",\"primaryLabelValue\":\"957778\"}},{\"attributeHeader\":{\"labelValue\":\"957780\",\"primaryLabelValue\":\"957780\"}},{\"attributeHeader\":{\"labelValue\":\"957782\",\"primaryLabelValue\":\"957782\"}},{\"attributeHeader\":{\"labelValue\":\"957784\",\"primaryLabelValue\":\"957784\"}},{\"attributeHeader\":{\"labelValue\":\"957788\",\"primaryLabelValue\":\"957788\"}},{\"attributeHeader\":{\"labelValue\":\"957790\",\"primaryLabelValue\":\"957790\"}},{\"attributeHeader\":{\"labelValue\":\"957792\",\"primaryLabelValue\":\"957792\"}},{\"attributeHeader\":{\"labelValue\":\"957794\",\"primaryLabelValue\":\"957794\"}},{\"attributeHeader\":{\"labelValue\":\"957796\",\"primaryLabelValue\":\"957796\"}},{\"attributeHeader\":{\"labelValue\":\"957798\",\"primaryLabelValue\":\"957798\"}},{\"attributeHeader\":{\"labelValue\":\"957800\",\"primaryLabelValue\":\"957800\"}},{\"attributeHeader\":{\"labelValue\":\"957802\",\"primaryLabelValue\":\"957802\"}},{\"attributeHeader\":{\"labelValue\":\"957804\",\"primaryLabelValue\":\"957804\"}},{\"attributeHeader\":{\"labelValue\":\"957806\",\"primaryLabelValue\":\"957806\"}},{\"attributeHeader\":{\"labelValue\":\"957808\",\"primaryLabelValue\":\"957808\"}},{\"attributeHeader\":{\"labelValue\":\"957812\",\"primaryLabelValue\":\"957812\"}},{\"attributeHeader\":{\"labelValue\":\"957814\",\"primaryLabelValue\":\"957814\"}},{\"attributeHeader\":{\"labelValue\":\"957816\",\"primaryLabelValue\":\"957816\"}},{\"attributeHeader\":{\"labelValue\":\"957818\",\"primaryLabelValue\":\"957818\"}},{\"attributeHeader\":{\"labelValue\":\"957820\",\"primaryLabelValue\":\"957820\"}},{\"attributeHeader\":{\"labelValue\":\"957822\",\"primaryLabelValue\":\"957822\"}},{\"attributeHeader\":{\"labelValue\":\"957824\",\"primaryLabelValue\":\"957824\"}},{\"attributeHeader\":{\"labelValue\":\"957826\",\"primaryLabelValue\":\"957826\"}},{\"attributeHeader\":{\"labelValue\":\"957828\",\"primaryLabelValue\":\"957828\"}},{\"attributeHeader\":{\"labelValue\":\"957830\",\"primaryLabelValue\":\"957830\"}},{\"attributeHeader\":{\"labelValue\":\"957832\",\"primaryLabelValue\":\"957832\"}},{\"attributeHeader\":{\"labelValue\":\"957834\",\"primaryLabelValue\":\"957834\"}},{\"attributeHeader\":{\"labelValue\":\"957836\",\"primaryLabelValue\":\"957836\"}},{\"attributeHeader\":{\"labelValue\":\"957838\",\"primaryLabelValue\":\"957838\"}},{\"attributeHeader\":{\"labelValue\":\"957842\",\"primaryLabelValue\":\"957842\"}},{\"attributeHeader\":{\"labelValue\":\"957844\",\"primaryLabelValue\":\"957844\"}},{\"attributeHeader\":{\"labelValue\":\"957846\",\"primaryLabelValue\":\"957846\"}},{\"attributeHeader\":{\"labelValue\":\"957848\",\"primaryLabelValue\":\"957848\"}},{\"attributeHeader\":{\"labelValue\":\"957850\",\"primaryLabelValue\":\"957850\"}},{\"attributeHeader\":{\"labelValue\":\"957852\",\"primaryLabelValue\":\"957852\"}},{\"attributeHeader\":{\"labelValue\":\"957854\",\"primaryLabelValue\":\"957854\"}},{\"attributeHeader\":{\"labelValue\":\"957856\",\"primaryLabelValue\":\"957856\"}},{\"attributeHeader\":{\"labelValue\":\"957858\",\"primaryLabelValue\":\"957858\"}},{\"attributeHeader\":{\"labelValue\":\"957860\",\"primaryLabelValue\":\"957860\"}},{\"attributeHeader\":{\"labelValue\":\"957862\",\"primaryLabelValue\":\"957862\"}},{\"attributeHeader\":{\"labelValue\":\"957864\",\"primaryLabelValue\":\"957864\"}},{\"attributeHeader\":{\"labelValue\":\"957866\",\"primaryLabelValue\":\"957866\"}},{\"attributeHeader\":{\"labelValue\":\"957870\",\"primaryLabelValue\":\"957870\"}},{\"attributeHeader\":{\"labelValue\":\"957874\",\"primaryLabelValue\":\"957874\"}},{\"attributeHeader\":{\"labelValue\":\"957876\",\"primaryLabelValue\":\"957876\"}},{\"attributeHeader\":{\"labelValue\":\"957878\",\"primaryLabelValue\":\"957878\"}},{\"attributeHeader\":{\"labelValue\":\"957880\",\"primaryLabelValue\":\"957880\"}},{\"attributeHeader\":{\"labelValue\":\"957882\",\"primaryLabelValue\":\"957882\"}},{\"attributeHeader\":{\"labelValue\":\"957884\",\"primaryLabelValue\":\"957884\"}},{\"attributeHeader\":{\"labelValue\":\"957886\",\"primaryLabelValue\":\"957886\"}},{\"attributeHeader\":{\"labelValue\":\"957888\",\"primaryLabelValue\":\"957888\"}},{\"attributeHeader\":{\"labelValue\":\"957890\",\"primaryLabelValue\":\"957890\"}},{\"attributeHeader\":{\"labelValue\":\"957892\",\"primaryLabelValue\":\"957892\"}},{\"attributeHeader\":{\"labelValue\":\"957894\",\"primaryLabelValue\":\"957894\"}},{\"attributeHeader\":{\"labelValue\":\"957896\",\"primaryLabelValue\":\"957896\"}},{\"attributeHeader\":{\"labelValue\":\"957898\",\"primaryLabelValue\":\"957898\"}},{\"attributeHeader\":{\"labelValue\":\"957900\",\"primaryLabelValue\":\"957900\"}},{\"attributeHeader\":{\"labelValue\":\"957904\",\"primaryLabelValue\":\"957904\"}},{\"attributeHeader\":{\"labelValue\":\"957906\",\"primaryLabelValue\":\"957906\"}},{\"attributeHeader\":{\"labelValue\":\"957908\",\"primaryLabelValue\":\"957908\"}},{\"attributeHeader\":{\"labelValue\":\"957910\",\"primaryLabelValue\":\"957910\"}},{\"attributeHeader\":{\"labelValue\":\"957912\",\"primaryLabelValue\":\"957912\"}},{\"attributeHeader\":{\"labelValue\":\"957914\",\"primaryLabelValue\":\"957914\"}},{\"attributeHeader\":{\"labelValue\":\"957916\",\"primaryLabelValue\":\"957916\"}},{\"attributeHeader\":{\"labelValue\":\"957918\",\"primaryLabelValue\":\"957918\"}},{\"attributeHeader\":{\"labelValue\":\"957920\",\"primaryLabelValue\":\"957920\"}},{\"attributeHeader\":{\"labelValue\":\"957922\",\"primaryLabelValue\":\"957922\"}},{\"attributeHeader\":{\"labelValue\":\"957924\",\"primaryLabelValue\":\"957924\"}},{\"attributeHeader\":{\"labelValue\":\"957926\",\"primaryLabelValue\":\"957926\"}},{\"attributeHeader\":{\"labelValue\":\"957928\",\"primaryLabelValue\":\"957928\"}},{\"attributeHeader\":{\"labelValue\":\"957930\",\"primaryLabelValue\":\"957930\"}},{\"attributeHeader\":{\"labelValue\":\"957934\",\"primaryLabelValue\":\"957934\"}},{\"attributeHeader\":{\"labelValue\":\"957936\",\"primaryLabelValue\":\"957936\"}},{\"attributeHeader\":{\"labelValue\":\"957938\",\"primaryLabelValue\":\"957938\"}},{\"attributeHeader\":{\"labelValue\":\"957940\",\"primaryLabelValue\":\"957940\"}},{\"attributeHeader\":{\"labelValue\":\"957942\",\"primaryLabelValue\":\"957942\"}},{\"attributeHeader\":{\"labelValue\":\"957944\",\"primaryLabelValue\":\"957944\"}},{\"attributeHeader\":{\"labelValue\":\"957946\",\"primaryLabelValue\":\"957946\"}},{\"attributeHeader\":{\"labelValue\":\"957948\",\"primaryLabelValue\":\"957948\"}},{\"attributeHeader\":{\"labelValue\":\"957950\",\"primaryLabelValue\":\"957950\"}},{\"attributeHeader\":{\"labelValue\":\"957952\",\"primaryLabelValue\":\"957952\"}},{\"attributeHeader\":{\"labelValue\":\"957954\",\"primaryLabelValue\":\"957954\"}},{\"attributeHeader\":{\"labelValue\":\"957958\",\"primaryLabelValue\":\"957958\"}},{\"attributeHeader\":{\"labelValue\":\"957960\",\"primaryLabelValue\":\"957960\"}},{\"attributeHeader\":{\"labelValue\":\"957962\",\"primaryLabelValue\":\"957962\"}},{\"attributeHeader\":{\"labelValue\":\"957964\",\"primaryLabelValue\":\"957964\"}},{\"attributeHeader\":{\"labelValue\":\"957966\",\"primaryLabelValue\":\"957966\"}},{\"attributeHeader\":{\"labelValue\":\"957970\",\"primaryLabelValue\":\"957970\"}},{\"attributeHeader\":{\"labelValue\":\"957972\",\"primaryLabelValue\":\"957972\"}},{\"attributeHeader\":{\"labelValue\":\"957974\",\"primaryLabelValue\":\"957974\"}},{\"attributeHeader\":{\"labelValue\":\"957978\",\"primaryLabelValue\":\"957978\"}},{\"attributeHeader\":{\"labelValue\":\"957980\",\"primaryLabelValue\":\"957980\"}},{\"attributeHeader\":{\"labelValue\":\"957982\",\"primaryLabelValue\":\"957982\"}},{\"attributeHeader\":{\"labelValue\":\"957984\",\"primaryLabelValue\":\"957984\"}},{\"attributeHeader\":{\"labelValue\":\"957986\",\"primaryLabelValue\":\"957986\"}},{\"attributeHeader\":{\"labelValue\":\"957988\",\"primaryLabelValue\":\"957988\"}},{\"attributeHeader\":{\"labelValue\":\"957992\",\"primaryLabelValue\":\"957992\"}},{\"attributeHeader\":{\"labelValue\":\"957996\",\"primaryLabelValue\":\"957996\"}},{\"attributeHeader\":{\"labelValue\":\"957998\",\"primaryLabelValue\":\"957998\"}},{\"attributeHeader\":{\"labelValue\":\"958000\",\"primaryLabelValue\":\"958000\"}},{\"attributeHeader\":{\"labelValue\":\"958002\",\"primaryLabelValue\":\"958002\"}},{\"attributeHeader\":{\"labelValue\":\"958004\",\"primaryLabelValue\":\"958004\"}},{\"attributeHeader\":{\"labelValue\":\"958006\",\"primaryLabelValue\":\"958006\"}},{\"attributeHeader\":{\"labelValue\":\"958008\",\"primaryLabelValue\":\"958008\"}},{\"attributeHeader\":{\"labelValue\":\"958010\",\"primaryLabelValue\":\"958010\"}},{\"attributeHeader\":{\"labelValue\":\"958012\",\"primaryLabelValue\":\"958012\"}},{\"attributeHeader\":{\"labelValue\":\"958014\",\"primaryLabelValue\":\"958014\"}},{\"attributeHeader\":{\"labelValue\":\"958016\",\"primaryLabelValue\":\"958016\"}},{\"attributeHeader\":{\"labelValue\":\"958018\",\"primaryLabelValue\":\"958018\"}},{\"attributeHeader\":{\"labelValue\":\"958022\",\"primaryLabelValue\":\"958022\"}},{\"attributeHeader\":{\"labelValue\":\"958024\",\"primaryLabelValue\":\"958024\"}},{\"attributeHeader\":{\"labelValue\":\"958026\",\"primaryLabelValue\":\"958026\"}},{\"attributeHeader\":{\"labelValue\":\"958028\",\"primaryLabelValue\":\"958028\"}},{\"attributeHeader\":{\"labelValue\":\"958030\",\"primaryLabelValue\":\"958030\"}},{\"attributeHeader\":{\"labelValue\":\"958032\",\"primaryLabelValue\":\"958032\"}},{\"attributeHeader\":{\"labelValue\":\"958034\",\"primaryLabelValue\":\"958034\"}},{\"attributeHeader\":{\"labelValue\":\"958036\",\"primaryLabelValue\":\"958036\"}},{\"attributeHeader\":{\"labelValue\":\"958038\",\"primaryLabelValue\":\"958038\"}},{\"attributeHeader\":{\"labelValue\":\"958042\",\"primaryLabelValue\":\"958042\"}},{\"attributeHeader\":{\"labelValue\":\"958044\",\"primaryLabelValue\":\"958044\"}},{\"attributeHeader\":{\"labelValue\":\"958046\",\"primaryLabelValue\":\"958046\"}},{\"attributeHeader\":{\"labelValue\":\"958048\",\"primaryLabelValue\":\"958048\"}},{\"attributeHeader\":{\"labelValue\":\"958050\",\"primaryLabelValue\":\"958050\"}},{\"attributeHeader\":{\"labelValue\":\"958052\",\"primaryLabelValue\":\"958052\"}},{\"attributeHeader\":{\"labelValue\":\"958054\",\"primaryLabelValue\":\"958054\"}},{\"attributeHeader\":{\"labelValue\":\"958056\",\"primaryLabelValue\":\"958056\"}},{\"attributeHeader\":{\"labelValue\":\"958058\",\"primaryLabelValue\":\"958058\"}},{\"attributeHeader\":{\"labelValue\":\"958060\",\"primaryLabelValue\":\"958060\"}},{\"attributeHeader\":{\"labelValue\":\"958062\",\"primaryLabelValue\":\"958062\"}},{\"attributeHeader\":{\"labelValue\":\"958064\",\"primaryLabelValue\":\"958064\"}},{\"attributeHeader\":{\"labelValue\":\"958066\",\"primaryLabelValue\":\"958066\"}},{\"attributeHeader\":{\"labelValue\":\"958070\",\"primaryLabelValue\":\"958070\"}},{\"attributeHeader\":{\"labelValue\":\"958072\",\"primaryLabelValue\":\"958072\"}},{\"attributeHeader\":{\"labelValue\":\"958074\",\"primaryLabelValue\":\"958074\"}},{\"attributeHeader\":{\"labelValue\":\"958076\",\"primaryLabelValue\":\"958076\"}},{\"attributeHeader\":{\"labelValue\":\"958078\",\"primaryLabelValue\":\"958078\"}},{\"attributeHeader\":{\"labelValue\":\"958080\",\"primaryLabelValue\":\"958080\"}},{\"attributeHeader\":{\"labelValue\":\"958088\",\"primaryLabelValue\":\"958088\"}},{\"attributeHeader\":{\"labelValue\":\"958090\",\"primaryLabelValue\":\"958090\"}},{\"attributeHeader\":{\"labelValue\":\"958094\",\"primaryLabelValue\":\"958094\"}},{\"attributeHeader\":{\"labelValue\":\"958096\",\"primaryLabelValue\":\"958096\"}},{\"attributeHeader\":{\"labelValue\":\"958098\",\"primaryLabelValue\":\"958098\"}},{\"attributeHeader\":{\"labelValue\":\"958100\",\"primaryLabelValue\":\"958100\"}},{\"attributeHeader\":{\"labelValue\":\"958104\",\"primaryLabelValue\":\"958104\"}},{\"attributeHeader\":{\"labelValue\":\"958106\",\"primaryLabelValue\":\"958106\"}},{\"attributeHeader\":{\"labelValue\":\"958108\",\"primaryLabelValue\":\"958108\"}},{\"attributeHeader\":{\"labelValue\":\"958110\",\"primaryLabelValue\":\"958110\"}},{\"attributeHeader\":{\"labelValue\":\"958112\",\"primaryLabelValue\":\"958112\"}},{\"attributeHeader\":{\"labelValue\":\"958114\",\"primaryLabelValue\":\"958114\"}},{\"attributeHeader\":{\"labelValue\":\"958116\",\"primaryLabelValue\":\"958116\"}},{\"attributeHeader\":{\"labelValue\":\"958118\",\"primaryLabelValue\":\"958118\"}},{\"attributeHeader\":{\"labelValue\":\"958120\",\"primaryLabelValue\":\"958120\"}},{\"attributeHeader\":{\"labelValue\":\"958124\",\"primaryLabelValue\":\"958124\"}},{\"attributeHeader\":{\"labelValue\":\"958126\",\"primaryLabelValue\":\"958126\"}},{\"attributeHeader\":{\"labelValue\":\"958128\",\"primaryLabelValue\":\"958128\"}},{\"attributeHeader\":{\"labelValue\":\"958130\",\"primaryLabelValue\":\"958130\"}},{\"attributeHeader\":{\"labelValue\":\"958132\",\"primaryLabelValue\":\"958132\"}},{\"attributeHeader\":{\"labelValue\":\"958134\",\"primaryLabelValue\":\"958134\"}},{\"attributeHeader\":{\"labelValue\":\"958136\",\"primaryLabelValue\":\"958136\"}},{\"attributeHeader\":{\"labelValue\":\"958138\",\"primaryLabelValue\":\"958138\"}},{\"attributeHeader\":{\"labelValue\":\"958140\",\"primaryLabelValue\":\"958140\"}},{\"attributeHeader\":{\"labelValue\":\"958150\",\"primaryLabelValue\":\"958150\"}},{\"attributeHeader\":{\"labelValue\":\"958152\",\"primaryLabelValue\":\"958152\"}},{\"attributeHeader\":{\"labelValue\":\"958156\",\"primaryLabelValue\":\"958156\"}},{\"attributeHeader\":{\"labelValue\":\"958158\",\"primaryLabelValue\":\"958158\"}},{\"attributeHeader\":{\"labelValue\":\"958162\",\"primaryLabelValue\":\"958162\"}},{\"attributeHeader\":{\"labelValue\":\"958166\",\"primaryLabelValue\":\"958166\"}},{\"attributeHeader\":{\"labelValue\":\"958168\",\"primaryLabelValue\":\"958168\"}},{\"attributeHeader\":{\"labelValue\":\"958172\",\"primaryLabelValue\":\"958172\"}},{\"attributeHeader\":{\"labelValue\":\"958174\",\"primaryLabelValue\":\"958174\"}},{\"attributeHeader\":{\"labelValue\":\"958176\",\"primaryLabelValue\":\"958176\"}},{\"attributeHeader\":{\"labelValue\":\"958180\",\"primaryLabelValue\":\"958180\"}},{\"attributeHeader\":{\"labelValue\":\"958184\",\"primaryLabelValue\":\"958184\"}},{\"attributeHeader\":{\"labelValue\":\"958186\",\"primaryLabelValue\":\"958186\"}},{\"attributeHeader\":{\"labelValue\":\"958188\",\"primaryLabelValue\":\"958188\"}},{\"attributeHeader\":{\"labelValue\":\"958190\",\"primaryLabelValue\":\"958190\"}},{\"attributeHeader\":{\"labelValue\":\"958192\",\"primaryLabelValue\":\"958192\"}},{\"attributeHeader\":{\"labelValue\":\"958194\",\"primaryLabelValue\":\"958194\"}},{\"attributeHeader\":{\"labelValue\":\"958196\",\"primaryLabelValue\":\"958196\"}},{\"attributeHeader\":{\"labelValue\":\"958198\",\"primaryLabelValue\":\"958198\"}},{\"attributeHeader\":{\"labelValue\":\"958200\",\"primaryLabelValue\":\"958200\"}},{\"attributeHeader\":{\"labelValue\":\"958202\",\"primaryLabelValue\":\"958202\"}},{\"attributeHeader\":{\"labelValue\":\"958204\",\"primaryLabelValue\":\"958204\"}},{\"attributeHeader\":{\"labelValue\":\"958206\",\"primaryLabelValue\":\"958206\"}},{\"attributeHeader\":{\"labelValue\":\"958208\",\"primaryLabelValue\":\"958208\"}},{\"attributeHeader\":{\"labelValue\":\"958210\",\"primaryLabelValue\":\"958210\"}},{\"attributeHeader\":{\"labelValue\":\"958212\",\"primaryLabelValue\":\"958212\"}},{\"attributeHeader\":{\"labelValue\":\"958214\",\"primaryLabelValue\":\"958214\"}},{\"attributeHeader\":{\"labelValue\":\"958216\",\"primaryLabelValue\":\"958216\"}},{\"attributeHeader\":{\"labelValue\":\"958218\",\"primaryLabelValue\":\"958218\"}},{\"attributeHeader\":{\"labelValue\":\"958220\",\"primaryLabelValue\":\"958220\"}},{\"attributeHeader\":{\"labelValue\":\"958222\",\"primaryLabelValue\":\"958222\"}},{\"attributeHeader\":{\"labelValue\":\"958224\",\"primaryLabelValue\":\"958224\"}},{\"attributeHeader\":{\"labelValue\":\"958226\",\"primaryLabelValue\":\"958226\"}},{\"attributeHeader\":{\"labelValue\":\"958228\",\"primaryLabelValue\":\"958228\"}},{\"attributeHeader\":{\"labelValue\":\"958230\",\"primaryLabelValue\":\"958230\"}},{\"attributeHeader\":{\"labelValue\":\"958232\",\"primaryLabelValue\":\"958232\"}},{\"attributeHeader\":{\"labelValue\":\"958234\",\"primaryLabelValue\":\"958234\"}},{\"attributeHeader\":{\"labelValue\":\"958236\",\"primaryLabelValue\":\"958236\"}},{\"attributeHeader\":{\"labelValue\":\"958238\",\"primaryLabelValue\":\"958238\"}},{\"attributeHeader\":{\"labelValue\":\"958240\",\"primaryLabelValue\":\"958240\"}},{\"attributeHeader\":{\"labelValue\":\"958242\",\"primaryLabelValue\":\"958242\"}},{\"attributeHeader\":{\"labelValue\":\"958244\",\"primaryLabelValue\":\"958244\"}},{\"attributeHeader\":{\"labelValue\":\"958246\",\"primaryLabelValue\":\"958246\"}},{\"attributeHeader\":{\"labelValue\":\"958248\",\"primaryLabelValue\":\"958248\"}},{\"attributeHeader\":{\"labelValue\":\"958250\",\"primaryLabelValue\":\"958250\"}},{\"attributeHeader\":{\"labelValue\":\"958252\",\"primaryLabelValue\":\"958252\"}},{\"attributeHeader\":{\"labelValue\":\"958254\",\"primaryLabelValue\":\"958254\"}},{\"attributeHeader\":{\"labelValue\":\"958256\",\"primaryLabelValue\":\"958256\"}},{\"attributeHeader\":{\"labelValue\":\"958258\",\"primaryLabelValue\":\"958258\"}},{\"attributeHeader\":{\"labelValue\":\"958260\",\"primaryLabelValue\":\"958260\"}},{\"attributeHeader\":{\"labelValue\":\"958262\",\"primaryLabelValue\":\"958262\"}},{\"attributeHeader\":{\"labelValue\":\"958266\",\"primaryLabelValue\":\"958266\"}},{\"attributeHeader\":{\"labelValue\":\"958268\",\"primaryLabelValue\":\"958268\"}},{\"attributeHeader\":{\"labelValue\":\"958270\",\"primaryLabelValue\":\"958270\"}},{\"attributeHeader\":{\"labelValue\":\"958272\",\"primaryLabelValue\":\"958272\"}},{\"attributeHeader\":{\"labelValue\":\"958274\",\"primaryLabelValue\":\"958274\"}},{\"attributeHeader\":{\"labelValue\":\"958276\",\"primaryLabelValue\":\"958276\"}},{\"attributeHeader\":{\"labelValue\":\"958278\",\"primaryLabelValue\":\"958278\"}},{\"attributeHeader\":{\"labelValue\":\"958280\",\"primaryLabelValue\":\"958280\"}},{\"attributeHeader\":{\"labelValue\":\"958282\",\"primaryLabelValue\":\"958282\"}},{\"attributeHeader\":{\"labelValue\":\"958284\",\"primaryLabelValue\":\"958284\"}},{\"attributeHeader\":{\"labelValue\":\"958286\",\"primaryLabelValue\":\"958286\"}},{\"attributeHeader\":{\"labelValue\":\"958288\",\"primaryLabelValue\":\"958288\"}},{\"attributeHeader\":{\"labelValue\":\"958290\",\"primaryLabelValue\":\"958290\"}},{\"attributeHeader\":{\"labelValue\":\"958292\",\"primaryLabelValue\":\"958292\"}},{\"attributeHeader\":{\"labelValue\":\"958296\",\"primaryLabelValue\":\"958296\"}},{\"attributeHeader\":{\"labelValue\":\"958298\",\"primaryLabelValue\":\"958298\"}},{\"attributeHeader\":{\"labelValue\":\"958300\",\"primaryLabelValue\":\"958300\"}},{\"attributeHeader\":{\"labelValue\":\"958302\",\"primaryLabelValue\":\"958302\"}},{\"attributeHeader\":{\"labelValue\":\"958304\",\"primaryLabelValue\":\"958304\"}},{\"attributeHeader\":{\"labelValue\":\"958306\",\"primaryLabelValue\":\"958306\"}},{\"attributeHeader\":{\"labelValue\":\"958308\",\"primaryLabelValue\":\"958308\"}},{\"attributeHeader\":{\"labelValue\":\"958310\",\"primaryLabelValue\":\"958310\"}},{\"attributeHeader\":{\"labelValue\":\"958312\",\"primaryLabelValue\":\"958312\"}},{\"attributeHeader\":{\"labelValue\":\"958314\",\"primaryLabelValue\":\"958314\"}},{\"attributeHeader\":{\"labelValue\":\"958316\",\"primaryLabelValue\":\"958316\"}},{\"attributeHeader\":{\"labelValue\":\"958318\",\"primaryLabelValue\":\"958318\"}},{\"attributeHeader\":{\"labelValue\":\"958322\",\"primaryLabelValue\":\"958322\"}},{\"attributeHeader\":{\"labelValue\":\"958324\",\"primaryLabelValue\":\"958324\"}},{\"attributeHeader\":{\"labelValue\":\"958326\",\"primaryLabelValue\":\"958326\"}},{\"attributeHeader\":{\"labelValue\":\"958328\",\"primaryLabelValue\":\"958328\"}},{\"attributeHeader\":{\"labelValue\":\"958330\",\"primaryLabelValue\":\"958330\"}},{\"attributeHeader\":{\"labelValue\":\"958332\",\"primaryLabelValue\":\"958332\"}},{\"attributeHeader\":{\"labelValue\":\"958334\",\"primaryLabelValue\":\"958334\"}},{\"attributeHeader\":{\"labelValue\":\"958336\",\"primaryLabelValue\":\"958336\"}},{\"attributeHeader\":{\"labelValue\":\"958338\",\"primaryLabelValue\":\"958338\"}},{\"attributeHeader\":{\"labelValue\":\"958340\",\"primaryLabelValue\":\"958340\"}},{\"attributeHeader\":{\"labelValue\":\"958342\",\"primaryLabelValue\":\"958342\"}},{\"attributeHeader\":{\"labelValue\":\"958344\",\"primaryLabelValue\":\"958344\"}},{\"attributeHeader\":{\"labelValue\":\"958346\",\"primaryLabelValue\":\"958346\"}},{\"attributeHeader\":{\"labelValue\":\"958348\",\"primaryLabelValue\":\"958348\"}},{\"attributeHeader\":{\"labelValue\":\"958350\",\"primaryLabelValue\":\"958350\"}},{\"attributeHeader\":{\"labelValue\":\"958354\",\"primaryLabelValue\":\"958354\"}},{\"attributeHeader\":{\"labelValue\":\"958356\",\"primaryLabelValue\":\"958356\"}},{\"attributeHeader\":{\"labelValue\":\"958360\",\"primaryLabelValue\":\"958360\"}},{\"attributeHeader\":{\"labelValue\":\"958364\",\"primaryLabelValue\":\"958364\"}},{\"attributeHeader\":{\"labelValue\":\"958366\",\"primaryLabelValue\":\"958366\"}},{\"attributeHeader\":{\"labelValue\":\"958368\",\"primaryLabelValue\":\"958368\"}},{\"attributeHeader\":{\"labelValue\":\"958370\",\"primaryLabelValue\":\"958370\"}},{\"attributeHeader\":{\"labelValue\":\"958372\",\"primaryLabelValue\":\"958372\"}},{\"attributeHeader\":{\"labelValue\":\"958374\",\"primaryLabelValue\":\"958374\"}},{\"attributeHeader\":{\"labelValue\":\"958376\",\"primaryLabelValue\":\"958376\"}},{\"attributeHeader\":{\"labelValue\":\"958378\",\"primaryLabelValue\":\"958378\"}},{\"attributeHeader\":{\"labelValue\":\"958380\",\"primaryLabelValue\":\"958380\"}},{\"attributeHeader\":{\"labelValue\":\"958382\",\"primaryLabelValue\":\"958382\"}},{\"attributeHeader\":{\"labelValue\":\"958384\",\"primaryLabelValue\":\"958384\"}},{\"attributeHeader\":{\"labelValue\":\"958386\",\"primaryLabelValue\":\"958386\"}},{\"attributeHeader\":{\"labelValue\":\"958388\",\"primaryLabelValue\":\"958388\"}},{\"attributeHeader\":{\"labelValue\":\"958390\",\"primaryLabelValue\":\"958390\"}},{\"attributeHeader\":{\"labelValue\":\"958392\",\"primaryLabelValue\":\"958392\"}},{\"attributeHeader\":{\"labelValue\":\"958396\",\"primaryLabelValue\":\"958396\"}},{\"attributeHeader\":{\"labelValue\":\"958398\",\"primaryLabelValue\":\"958398\"}},{\"attributeHeader\":{\"labelValue\":\"958400\",\"primaryLabelValue\":\"958400\"}},{\"attributeHeader\":{\"labelValue\":\"958402\",\"primaryLabelValue\":\"958402\"}},{\"attributeHeader\":{\"labelValue\":\"958404\",\"primaryLabelValue\":\"958404\"}},{\"attributeHeader\":{\"labelValue\":\"958406\",\"primaryLabelValue\":\"958406\"}},{\"attributeHeader\":{\"labelValue\":\"958408\",\"primaryLabelValue\":\"958408\"}},{\"attributeHeader\":{\"labelValue\":\"958410\",\"primaryLabelValue\":\"958410\"}},{\"attributeHeader\":{\"labelValue\":\"958412\",\"primaryLabelValue\":\"958412\"}},{\"attributeHeader\":{\"labelValue\":\"958414\",\"primaryLabelValue\":\"958414\"}},{\"attributeHeader\":{\"labelValue\":\"958416\",\"primaryLabelValue\":\"958416\"}},{\"attributeHeader\":{\"labelValue\":\"958418\",\"primaryLabelValue\":\"958418\"}},{\"attributeHeader\":{\"labelValue\":\"958420\",\"primaryLabelValue\":\"958420\"}},{\"attributeHeader\":{\"labelValue\":\"958424\",\"primaryLabelValue\":\"958424\"}},{\"attributeHeader\":{\"labelValue\":\"958426\",\"primaryLabelValue\":\"958426\"}},{\"attributeHeader\":{\"labelValue\":\"958428\",\"primaryLabelValue\":\"958428\"}},{\"attributeHeader\":{\"labelValue\":\"958430\",\"primaryLabelValue\":\"958430\"}},{\"attributeHeader\":{\"labelValue\":\"958432\",\"primaryLabelValue\":\"958432\"}},{\"attributeHeader\":{\"labelValue\":\"958434\",\"primaryLabelValue\":\"958434\"}},{\"attributeHeader\":{\"labelValue\":\"958436\",\"primaryLabelValue\":\"958436\"}},{\"attributeHeader\":{\"labelValue\":\"958438\",\"primaryLabelValue\":\"958438\"}},{\"attributeHeader\":{\"labelValue\":\"958440\",\"primaryLabelValue\":\"958440\"}},{\"attributeHeader\":{\"labelValue\":\"958442\",\"primaryLabelValue\":\"958442\"}},{\"attributeHeader\":{\"labelValue\":\"958444\",\"primaryLabelValue\":\"958444\"}},{\"attributeHeader\":{\"labelValue\":\"958446\",\"primaryLabelValue\":\"958446\"}},{\"attributeHeader\":{\"labelValue\":\"958448\",\"primaryLabelValue\":\"958448\"}},{\"attributeHeader\":{\"labelValue\":\"958450\",\"primaryLabelValue\":\"958450\"}},{\"attributeHeader\":{\"labelValue\":\"958452\",\"primaryLabelValue\":\"958452\"}},{\"attributeHeader\":{\"labelValue\":\"958454\",\"primaryLabelValue\":\"958454\"}},{\"attributeHeader\":{\"labelValue\":\"958456\",\"primaryLabelValue\":\"958456\"}},{\"attributeHeader\":{\"labelValue\":\"958458\",\"primaryLabelValue\":\"958458\"}},{\"attributeHeader\":{\"labelValue\":\"958460\",\"primaryLabelValue\":\"958460\"}},{\"attributeHeader\":{\"labelValue\":\"958462\",\"primaryLabelValue\":\"958462\"}},{\"attributeHeader\":{\"labelValue\":\"958464\",\"primaryLabelValue\":\"958464\"}},{\"attributeHeader\":{\"labelValue\":\"958466\",\"primaryLabelValue\":\"958466\"}},{\"attributeHeader\":{\"labelValue\":\"958468\",\"primaryLabelValue\":\"958468\"}},{\"attributeHeader\":{\"labelValue\":\"958472\",\"primaryLabelValue\":\"958472\"}},{\"attributeHeader\":{\"labelValue\":\"958474\",\"primaryLabelValue\":\"958474\"}},{\"attributeHeader\":{\"labelValue\":\"958476\",\"primaryLabelValue\":\"958476\"}},{\"attributeHeader\":{\"labelValue\":\"958478\",\"primaryLabelValue\":\"958478\"}},{\"attributeHeader\":{\"labelValue\":\"958480\",\"primaryLabelValue\":\"958480\"}},{\"attributeHeader\":{\"labelValue\":\"958482\",\"primaryLabelValue\":\"958482\"}},{\"attributeHeader\":{\"labelValue\":\"958484\",\"primaryLabelValue\":\"958484\"}},{\"attributeHeader\":{\"labelValue\":\"958486\",\"primaryLabelValue\":\"958486\"}},{\"attributeHeader\":{\"labelValue\":\"958488\",\"primaryLabelValue\":\"958488\"}},{\"attributeHeader\":{\"labelValue\":\"958490\",\"primaryLabelValue\":\"958490\"}},{\"attributeHeader\":{\"labelValue\":\"958492\",\"primaryLabelValue\":\"958492\"}},{\"attributeHeader\":{\"labelValue\":\"958494\",\"primaryLabelValue\":\"958494\"}},{\"attributeHeader\":{\"labelValue\":\"958496\",\"primaryLabelValue\":\"958496\"}},{\"attributeHeader\":{\"labelValue\":\"958498\",\"primaryLabelValue\":\"958498\"}},{\"attributeHeader\":{\"labelValue\":\"958504\",\"primaryLabelValue\":\"958504\"}},{\"attributeHeader\":{\"labelValue\":\"958506\",\"primaryLabelValue\":\"958506\"}},{\"attributeHeader\":{\"labelValue\":\"958510\",\"primaryLabelValue\":\"958510\"}},{\"attributeHeader\":{\"labelValue\":\"958512\",\"primaryLabelValue\":\"958512\"}},{\"attributeHeader\":{\"labelValue\":\"958514\",\"primaryLabelValue\":\"958514\"}},{\"attributeHeader\":{\"labelValue\":\"958516\",\"primaryLabelValue\":\"958516\"}},{\"attributeHeader\":{\"labelValue\":\"958518\",\"primaryLabelValue\":\"958518\"}},{\"attributeHeader\":{\"labelValue\":\"958520\",\"primaryLabelValue\":\"958520\"}},{\"attributeHeader\":{\"labelValue\":\"958522\",\"primaryLabelValue\":\"958522\"}},{\"attributeHeader\":{\"labelValue\":\"958524\",\"primaryLabelValue\":\"958524\"}},{\"attributeHeader\":{\"labelValue\":\"958526\",\"primaryLabelValue\":\"958526\"}},{\"attributeHeader\":{\"labelValue\":\"958528\",\"primaryLabelValue\":\"958528\"}},{\"attributeHeader\":{\"labelValue\":\"958530\",\"primaryLabelValue\":\"958530\"}},{\"attributeHeader\":{\"labelValue\":\"958532\",\"primaryLabelValue\":\"958532\"}},{\"attributeHeader\":{\"labelValue\":\"958534\",\"primaryLabelValue\":\"958534\"}},{\"attributeHeader\":{\"labelValue\":\"958536\",\"primaryLabelValue\":\"958536\"}},{\"attributeHeader\":{\"labelValue\":\"958538\",\"primaryLabelValue\":\"958538\"}},{\"attributeHeader\":{\"labelValue\":\"958540\",\"primaryLabelValue\":\"958540\"}},{\"attributeHeader\":{\"labelValue\":\"958542\",\"primaryLabelValue\":\"958542\"}},{\"attributeHeader\":{\"labelValue\":\"958544\",\"primaryLabelValue\":\"958544\"}},{\"attributeHeader\":{\"labelValue\":\"958546\",\"primaryLabelValue\":\"958546\"}},{\"attributeHeader\":{\"labelValue\":\"958548\",\"primaryLabelValue\":\"958548\"}},{\"attributeHeader\":{\"labelValue\":\"958550\",\"primaryLabelValue\":\"958550\"}},{\"attributeHeader\":{\"labelValue\":\"958552\",\"primaryLabelValue\":\"958552\"}},{\"attributeHeader\":{\"labelValue\":\"958554\",\"primaryLabelValue\":\"958554\"}},{\"attributeHeader\":{\"labelValue\":\"958556\",\"primaryLabelValue\":\"958556\"}},{\"attributeHeader\":{\"labelValue\":\"958558\",\"primaryLabelValue\":\"958558\"}},{\"attributeHeader\":{\"labelValue\":\"958560\",\"primaryLabelValue\":\"958560\"}},{\"attributeHeader\":{\"labelValue\":\"958564\",\"primaryLabelValue\":\"958564\"}},{\"attributeHeader\":{\"labelValue\":\"958566\",\"primaryLabelValue\":\"958566\"}},{\"attributeHeader\":{\"labelValue\":\"958568\",\"primaryLabelValue\":\"958568\"}},{\"attributeHeader\":{\"labelValue\":\"958570\",\"primaryLabelValue\":\"958570\"}},{\"attributeHeader\":{\"labelValue\":\"958572\",\"primaryLabelValue\":\"958572\"}},{\"attributeHeader\":{\"labelValue\":\"958574\",\"primaryLabelValue\":\"958574\"}},{\"attributeHeader\":{\"labelValue\":\"958576\",\"primaryLabelValue\":\"958576\"}},{\"attributeHeader\":{\"labelValue\":\"958578\",\"primaryLabelValue\":\"958578\"}},{\"attributeHeader\":{\"labelValue\":\"958580\",\"primaryLabelValue\":\"958580\"}},{\"attributeHeader\":{\"labelValue\":\"958582\",\"primaryLabelValue\":\"958582\"}},{\"attributeHeader\":{\"labelValue\":\"958584\",\"primaryLabelValue\":\"958584\"}},{\"attributeHeader\":{\"labelValue\":\"958586\",\"primaryLabelValue\":\"958586\"}},{\"attributeHeader\":{\"labelValue\":\"958588\",\"primaryLabelValue\":\"958588\"}},{\"attributeHeader\":{\"labelValue\":\"958590\",\"primaryLabelValue\":\"958590\"}},{\"attributeHeader\":{\"labelValue\":\"958592\",\"primaryLabelValue\":\"958592\"}},{\"attributeHeader\":{\"labelValue\":\"958594\",\"primaryLabelValue\":\"958594\"}},{\"attributeHeader\":{\"labelValue\":\"958596\",\"primaryLabelValue\":\"958596\"}},{\"attributeHeader\":{\"labelValue\":\"958598\",\"primaryLabelValue\":\"958598\"}},{\"attributeHeader\":{\"labelValue\":\"958600\",\"primaryLabelValue\":\"958600\"}},{\"attributeHeader\":{\"labelValue\":\"958602\",\"primaryLabelValue\":\"958602\"}},{\"attributeHeader\":{\"labelValue\":\"958604\",\"primaryLabelValue\":\"958604\"}},{\"attributeHeader\":{\"labelValue\":\"958606\",\"primaryLabelValue\":\"958606\"}},{\"attributeHeader\":{\"labelValue\":\"958608\",\"primaryLabelValue\":\"958608\"}},{\"attributeHeader\":{\"labelValue\":\"958610\",\"primaryLabelValue\":\"958610\"}},{\"attributeHeader\":{\"labelValue\":\"958612\",\"primaryLabelValue\":\"958612\"}},{\"attributeHeader\":{\"labelValue\":\"958614\",\"primaryLabelValue\":\"958614\"}},{\"attributeHeader\":{\"labelValue\":\"958616\",\"primaryLabelValue\":\"958616\"}},{\"attributeHeader\":{\"labelValue\":\"958618\",\"primaryLabelValue\":\"958618\"}},{\"attributeHeader\":{\"labelValue\":\"958620\",\"primaryLabelValue\":\"958620\"}},{\"attributeHeader\":{\"labelValue\":\"958622\",\"primaryLabelValue\":\"958622\"}},{\"attributeHeader\":{\"labelValue\":\"958624\",\"primaryLabelValue\":\"958624\"}},{\"attributeHeader\":{\"labelValue\":\"958626\",\"primaryLabelValue\":\"958626\"}},{\"attributeHeader\":{\"labelValue\":\"958628\",\"primaryLabelValue\":\"958628\"}},{\"attributeHeader\":{\"labelValue\":\"958630\",\"primaryLabelValue\":\"958630\"}},{\"attributeHeader\":{\"labelValue\":\"958632\",\"primaryLabelValue\":\"958632\"}},{\"attributeHeader\":{\"labelValue\":\"958634\",\"primaryLabelValue\":\"958634\"}},{\"attributeHeader\":{\"labelValue\":\"958636\",\"primaryLabelValue\":\"958636\"}},{\"attributeHeader\":{\"labelValue\":\"958638\",\"primaryLabelValue\":\"958638\"}},{\"attributeHeader\":{\"labelValue\":\"958640\",\"primaryLabelValue\":\"958640\"}},{\"attributeHeader\":{\"labelValue\":\"958642\",\"primaryLabelValue\":\"958642\"}},{\"attributeHeader\":{\"labelValue\":\"958644\",\"primaryLabelValue\":\"958644\"}},{\"attributeHeader\":{\"labelValue\":\"958646\",\"primaryLabelValue\":\"958646\"}},{\"attributeHeader\":{\"labelValue\":\"958648\",\"primaryLabelValue\":\"958648\"}},{\"attributeHeader\":{\"labelValue\":\"958650\",\"primaryLabelValue\":\"958650\"}},{\"attributeHeader\":{\"labelValue\":\"958652\",\"primaryLabelValue\":\"958652\"}},{\"attributeHeader\":{\"labelValue\":\"958654\",\"primaryLabelValue\":\"958654\"}},{\"attributeHeader\":{\"labelValue\":\"958656\",\"primaryLabelValue\":\"958656\"}},{\"attributeHeader\":{\"labelValue\":\"958658\",\"primaryLabelValue\":\"958658\"}},{\"attributeHeader\":{\"labelValue\":\"958660\",\"primaryLabelValue\":\"958660\"}},{\"attributeHeader\":{\"labelValue\":\"958662\",\"primaryLabelValue\":\"958662\"}},{\"attributeHeader\":{\"labelValue\":\"958664\",\"primaryLabelValue\":\"958664\"}},{\"attributeHeader\":{\"labelValue\":\"958666\",\"primaryLabelValue\":\"958666\"}},{\"attributeHeader\":{\"labelValue\":\"958668\",\"primaryLabelValue\":\"958668\"}},{\"attributeHeader\":{\"labelValue\":\"958670\",\"primaryLabelValue\":\"958670\"}},{\"attributeHeader\":{\"labelValue\":\"958672\",\"primaryLabelValue\":\"958672\"}},{\"attributeHeader\":{\"labelValue\":\"958674\",\"primaryLabelValue\":\"958674\"}},{\"attributeHeader\":{\"labelValue\":\"958676\",\"primaryLabelValue\":\"958676\"}},{\"attributeHeader\":{\"labelValue\":\"958678\",\"primaryLabelValue\":\"958678\"}},{\"attributeHeader\":{\"labelValue\":\"958680\",\"primaryLabelValue\":\"958680\"}},{\"attributeHeader\":{\"labelValue\":\"958682\",\"primaryLabelValue\":\"958682\"}},{\"attributeHeader\":{\"labelValue\":\"958684\",\"primaryLabelValue\":\"958684\"}},{\"attributeHeader\":{\"labelValue\":\"958686\",\"primaryLabelValue\":\"958686\"}},{\"attributeHeader\":{\"labelValue\":\"958688\",\"primaryLabelValue\":\"958688\"}},{\"attributeHeader\":{\"labelValue\":\"958690\",\"primaryLabelValue\":\"958690\"}},{\"attributeHeader\":{\"labelValue\":\"958692\",\"primaryLabelValue\":\"958692\"}},{\"attributeHeader\":{\"labelValue\":\"958694\",\"primaryLabelValue\":\"958694\"}},{\"attributeHeader\":{\"labelValue\":\"958696\",\"primaryLabelValue\":\"958696\"}},{\"attributeHeader\":{\"labelValue\":\"958698\",\"primaryLabelValue\":\"958698\"}},{\"attributeHeader\":{\"labelValue\":\"958700\",\"primaryLabelValue\":\"958700\"}},{\"attributeHeader\":{\"labelValue\":\"958702\",\"primaryLabelValue\":\"958702\"}},{\"attributeHeader\":{\"labelValue\":\"958704\",\"primaryLabelValue\":\"958704\"}},{\"attributeHeader\":{\"labelValue\":\"958706\",\"primaryLabelValue\":\"958706\"}},{\"attributeHeader\":{\"labelValue\":\"958708\",\"primaryLabelValue\":\"958708\"}},{\"attributeHeader\":{\"labelValue\":\"958710\",\"primaryLabelValue\":\"958710\"}},{\"attributeHeader\":{\"labelValue\":\"958712\",\"primaryLabelValue\":\"958712\"}},{\"attributeHeader\":{\"labelValue\":\"958714\",\"primaryLabelValue\":\"958714\"}},{\"attributeHeader\":{\"labelValue\":\"958716\",\"primaryLabelValue\":\"958716\"}},{\"attributeHeader\":{\"labelValue\":\"958718\",\"primaryLabelValue\":\"958718\"}},{\"attributeHeader\":{\"labelValue\":\"958720\",\"primaryLabelValue\":\"958720\"}},{\"attributeHeader\":{\"labelValue\":\"958722\",\"primaryLabelValue\":\"958722\"}},{\"attributeHeader\":{\"labelValue\":\"958724\",\"primaryLabelValue\":\"958724\"}},{\"attributeHeader\":{\"labelValue\":\"958726\",\"primaryLabelValue\":\"958726\"}},{\"attributeHeader\":{\"labelValue\":\"958728\",\"primaryLabelValue\":\"958728\"}},{\"attributeHeader\":{\"labelValue\":\"958730\",\"primaryLabelValue\":\"958730\"}},{\"attributeHeader\":{\"labelValue\":\"958732\",\"primaryLabelValue\":\"958732\"}},{\"attributeHeader\":{\"labelValue\":\"958734\",\"primaryLabelValue\":\"958734\"}},{\"attributeHeader\":{\"labelValue\":\"958736\",\"primaryLabelValue\":\"958736\"}},{\"attributeHeader\":{\"labelValue\":\"958738\",\"primaryLabelValue\":\"958738\"}},{\"attributeHeader\":{\"labelValue\":\"958740\",\"primaryLabelValue\":\"958740\"}},{\"attributeHeader\":{\"labelValue\":\"958742\",\"primaryLabelValue\":\"958742\"}},{\"attributeHeader\":{\"labelValue\":\"958744\",\"primaryLabelValue\":\"958744\"}},{\"attributeHeader\":{\"labelValue\":\"958746\",\"primaryLabelValue\":\"958746\"}},{\"attributeHeader\":{\"labelValue\":\"958748\",\"primaryLabelValue\":\"958748\"}},{\"attributeHeader\":{\"labelValue\":\"958750\",\"primaryLabelValue\":\"958750\"}},{\"attributeHeader\":{\"labelValue\":\"958752\",\"primaryLabelValue\":\"958752\"}},{\"attributeHeader\":{\"labelValue\":\"958754\",\"primaryLabelValue\":\"958754\"}},{\"attributeHeader\":{\"labelValue\":\"958756\",\"primaryLabelValue\":\"958756\"}},{\"attributeHeader\":{\"labelValue\":\"958758\",\"primaryLabelValue\":\"958758\"}},{\"attributeHeader\":{\"labelValue\":\"958760\",\"primaryLabelValue\":\"958760\"}},{\"attributeHeader\":{\"labelValue\":\"958762\",\"primaryLabelValue\":\"958762\"}},{\"attributeHeader\":{\"labelValue\":\"958764\",\"primaryLabelValue\":\"958764\"}},{\"attributeHeader\":{\"labelValue\":\"958766\",\"primaryLabelValue\":\"958766\"}},{\"attributeHeader\":{\"labelValue\":\"958768\",\"primaryLabelValue\":\"958768\"}},{\"attributeHeader\":{\"labelValue\":\"958770\",\"primaryLabelValue\":\"958770\"}},{\"attributeHeader\":{\"labelValue\":\"958772\",\"primaryLabelValue\":\"958772\"}},{\"attributeHeader\":{\"labelValue\":\"958774\",\"primaryLabelValue\":\"958774\"}},{\"attributeHeader\":{\"labelValue\":\"958776\",\"primaryLabelValue\":\"958776\"}},{\"attributeHeader\":{\"labelValue\":\"958778\",\"primaryLabelValue\":\"958778\"}},{\"attributeHeader\":{\"labelValue\":\"958780\",\"primaryLabelValue\":\"958780\"}},{\"attributeHeader\":{\"labelValue\":\"958782\",\"primaryLabelValue\":\"958782\"}},{\"attributeHeader\":{\"labelValue\":\"958784\",\"primaryLabelValue\":\"958784\"}},{\"attributeHeader\":{\"labelValue\":\"958786\",\"primaryLabelValue\":\"958786\"}},{\"attributeHeader\":{\"labelValue\":\"958788\",\"primaryLabelValue\":\"958788\"}},{\"attributeHeader\":{\"labelValue\":\"958790\",\"primaryLabelValue\":\"958790\"}},{\"attributeHeader\":{\"labelValue\":\"958792\",\"primaryLabelValue\":\"958792\"}},{\"attributeHeader\":{\"labelValue\":\"958794\",\"primaryLabelValue\":\"958794\"}},{\"attributeHeader\":{\"labelValue\":\"958796\",\"primaryLabelValue\":\"958796\"}},{\"attributeHeader\":{\"labelValue\":\"958798\",\"primaryLabelValue\":\"958798\"}},{\"attributeHeader\":{\"labelValue\":\"958800\",\"primaryLabelValue\":\"958800\"}},{\"attributeHeader\":{\"labelValue\":\"958802\",\"primaryLabelValue\":\"958802\"}},{\"attributeHeader\":{\"labelValue\":\"958804\",\"primaryLabelValue\":\"958804\"}},{\"attributeHeader\":{\"labelValue\":\"958806\",\"primaryLabelValue\":\"958806\"}},{\"attributeHeader\":{\"labelValue\":\"958808\",\"primaryLabelValue\":\"958808\"}},{\"attributeHeader\":{\"labelValue\":\"958810\",\"primaryLabelValue\":\"958810\"}},{\"attributeHeader\":{\"labelValue\":\"958812\",\"primaryLabelValue\":\"958812\"}},{\"attributeHeader\":{\"labelValue\":\"958814\",\"primaryLabelValue\":\"958814\"}},{\"attributeHeader\":{\"labelValue\":\"958816\",\"primaryLabelValue\":\"958816\"}},{\"attributeHeader\":{\"labelValue\":\"958818\",\"primaryLabelValue\":\"958818\"}},{\"attributeHeader\":{\"labelValue\":\"958820\",\"primaryLabelValue\":\"958820\"}},{\"attributeHeader\":{\"labelValue\":\"958822\",\"primaryLabelValue\":\"958822\"}},{\"attributeHeader\":{\"labelValue\":\"958824\",\"primaryLabelValue\":\"958824\"}},{\"attributeHeader\":{\"labelValue\":\"958826\",\"primaryLabelValue\":\"958826\"}},{\"attributeHeader\":{\"labelValue\":\"958828\",\"primaryLabelValue\":\"958828\"}},{\"attributeHeader\":{\"labelValue\":\"958830\",\"primaryLabelValue\":\"958830\"}},{\"attributeHeader\":{\"labelValue\":\"958834\",\"primaryLabelValue\":\"958834\"}},{\"attributeHeader\":{\"labelValue\":\"958836\",\"primaryLabelValue\":\"958836\"}},{\"attributeHeader\":{\"labelValue\":\"958838\",\"primaryLabelValue\":\"958838\"}},{\"attributeHeader\":{\"labelValue\":\"958840\",\"primaryLabelValue\":\"958840\"}},{\"attributeHeader\":{\"labelValue\":\"958842\",\"primaryLabelValue\":\"958842\"}},{\"attributeHeader\":{\"labelValue\":\"958844\",\"primaryLabelValue\":\"958844\"}},{\"attributeHeader\":{\"labelValue\":\"958846\",\"primaryLabelValue\":\"958846\"}},{\"attributeHeader\":{\"labelValue\":\"958848\",\"primaryLabelValue\":\"958848\"}},{\"attributeHeader\":{\"labelValue\":\"958850\",\"primaryLabelValue\":\"958850\"}},{\"attributeHeader\":{\"labelValue\":\"958852\",\"primaryLabelValue\":\"958852\"}},{\"attributeHeader\":{\"labelValue\":\"958854\",\"primaryLabelValue\":\"958854\"}},{\"attributeHeader\":{\"labelValue\":\"958856\",\"primaryLabelValue\":\"958856\"}},{\"attributeHeader\":{\"labelValue\":\"958858\",\"primaryLabelValue\":\"958858\"}},{\"attributeHeader\":{\"labelValue\":\"958860\",\"primaryLabelValue\":\"958860\"}},{\"attributeHeader\":{\"labelValue\":\"958862\",\"primaryLabelValue\":\"958862\"}},{\"attributeHeader\":{\"labelValue\":\"958864\",\"primaryLabelValue\":\"958864\"}},{\"attributeHeader\":{\"labelValue\":\"958866\",\"primaryLabelValue\":\"958866\"}},{\"attributeHeader\":{\"labelValue\":\"958868\",\"primaryLabelValue\":\"958868\"}},{\"attributeHeader\":{\"labelValue\":\"958870\",\"primaryLabelValue\":\"958870\"}},{\"attributeHeader\":{\"labelValue\":\"958872\",\"primaryLabelValue\":\"958872\"}},{\"attributeHeader\":{\"labelValue\":\"958874\",\"primaryLabelValue\":\"958874\"}},{\"attributeHeader\":{\"labelValue\":\"958876\",\"primaryLabelValue\":\"958876\"}},{\"attributeHeader\":{\"labelValue\":\"958878\",\"primaryLabelValue\":\"958878\"}},{\"attributeHeader\":{\"labelValue\":\"958880\",\"primaryLabelValue\":\"958880\"}},{\"attributeHeader\":{\"labelValue\":\"958882\",\"primaryLabelValue\":\"958882\"}},{\"attributeHeader\":{\"labelValue\":\"958884\",\"primaryLabelValue\":\"958884\"}},{\"attributeHeader\":{\"labelValue\":\"958886\",\"primaryLabelValue\":\"958886\"}},{\"attributeHeader\":{\"labelValue\":\"958888\",\"primaryLabelValue\":\"958888\"}},{\"attributeHeader\":{\"labelValue\":\"958890\",\"primaryLabelValue\":\"958890\"}},{\"attributeHeader\":{\"labelValue\":\"958892\",\"primaryLabelValue\":\"958892\"}},{\"attributeHeader\":{\"labelValue\":\"958894\",\"primaryLabelValue\":\"958894\"}},{\"attributeHeader\":{\"labelValue\":\"958896\",\"primaryLabelValue\":\"958896\"}},{\"attributeHeader\":{\"labelValue\":\"958898\",\"primaryLabelValue\":\"958898\"}},{\"attributeHeader\":{\"labelValue\":\"958900\",\"primaryLabelValue\":\"958900\"}},{\"attributeHeader\":{\"labelValue\":\"958902\",\"primaryLabelValue\":\"958902\"}},{\"attributeHeader\":{\"labelValue\":\"958904\",\"primaryLabelValue\":\"958904\"}},{\"attributeHeader\":{\"labelValue\":\"958906\",\"primaryLabelValue\":\"958906\"}},{\"attributeHeader\":{\"labelValue\":\"958908\",\"primaryLabelValue\":\"958908\"}},{\"attributeHeader\":{\"labelValue\":\"958910\",\"primaryLabelValue\":\"958910\"}},{\"attributeHeader\":{\"labelValue\":\"958912\",\"primaryLabelValue\":\"958912\"}},{\"attributeHeader\":{\"labelValue\":\"958914\",\"primaryLabelValue\":\"958914\"}},{\"attributeHeader\":{\"labelValue\":\"958916\",\"primaryLabelValue\":\"958916\"}},{\"attributeHeader\":{\"labelValue\":\"958918\",\"primaryLabelValue\":\"958918\"}},{\"attributeHeader\":{\"labelValue\":\"958920\",\"primaryLabelValue\":\"958920\"}},{\"attributeHeader\":{\"labelValue\":\"958922\",\"primaryLabelValue\":\"958922\"}},{\"attributeHeader\":{\"labelValue\":\"958924\",\"primaryLabelValue\":\"958924\"}},{\"attributeHeader\":{\"labelValue\":\"958926\",\"primaryLabelValue\":\"958926\"}},{\"attributeHeader\":{\"labelValue\":\"958928\",\"primaryLabelValue\":\"958928\"}},{\"attributeHeader\":{\"labelValue\":\"958930\",\"primaryLabelValue\":\"958930\"}},{\"attributeHeader\":{\"labelValue\":\"958932\",\"primaryLabelValue\":\"958932\"}},{\"attributeHeader\":{\"labelValue\":\"958934\",\"primaryLabelValue\":\"958934\"}},{\"attributeHeader\":{\"labelValue\":\"958936\",\"primaryLabelValue\":\"958936\"}},{\"attributeHeader\":{\"labelValue\":\"958938\",\"primaryLabelValue\":\"958938\"}},{\"attributeHeader\":{\"labelValue\":\"958940\",\"primaryLabelValue\":\"958940\"}},{\"attributeHeader\":{\"labelValue\":\"958942\",\"primaryLabelValue\":\"958942\"}},{\"attributeHeader\":{\"labelValue\":\"958944\",\"primaryLabelValue\":\"958944\"}},{\"attributeHeader\":{\"labelValue\":\"958946\",\"primaryLabelValue\":\"958946\"}},{\"attributeHeader\":{\"labelValue\":\"958948\",\"primaryLabelValue\":\"958948\"}},{\"attributeHeader\":{\"labelValue\":\"958950\",\"primaryLabelValue\":\"958950\"}},{\"attributeHeader\":{\"labelValue\":\"958952\",\"primaryLabelValue\":\"958952\"}},{\"attributeHeader\":{\"labelValue\":\"958954\",\"primaryLabelValue\":\"958954\"}},{\"attributeHeader\":{\"labelValue\":\"958956\",\"primaryLabelValue\":\"958956\"}},{\"attributeHeader\":{\"labelValue\":\"958958\",\"primaryLabelValue\":\"958958\"}},{\"attributeHeader\":{\"labelValue\":\"958960\",\"primaryLabelValue\":\"958960\"}},{\"attributeHeader\":{\"labelValue\":\"958962\",\"primaryLabelValue\":\"958962\"}},{\"attributeHeader\":{\"labelValue\":\"958964\",\"primaryLabelValue\":\"958964\"}},{\"attributeHeader\":{\"labelValue\":\"958966\",\"primaryLabelValue\":\"958966\"}},{\"attributeHeader\":{\"labelValue\":\"958968\",\"primaryLabelValue\":\"958968\"}},{\"attributeHeader\":{\"labelValue\":\"958970\",\"primaryLabelValue\":\"958970\"}},{\"attributeHeader\":{\"labelValue\":\"958972\",\"primaryLabelValue\":\"958972\"}},{\"attributeHeader\":{\"labelValue\":\"958974\",\"primaryLabelValue\":\"958974\"}},{\"attributeHeader\":{\"labelValue\":\"958976\",\"primaryLabelValue\":\"958976\"}},{\"attributeHeader\":{\"labelValue\":\"958978\",\"primaryLabelValue\":\"958978\"}},{\"attributeHeader\":{\"labelValue\":\"958980\",\"primaryLabelValue\":\"958980\"}},{\"attributeHeader\":{\"labelValue\":\"958982\",\"primaryLabelValue\":\"958982\"}},{\"attributeHeader\":{\"labelValue\":\"958984\",\"primaryLabelValue\":\"958984\"}},{\"attributeHeader\":{\"labelValue\":\"958986\",\"primaryLabelValue\":\"958986\"}},{\"attributeHeader\":{\"labelValue\":\"958988\",\"primaryLabelValue\":\"958988\"}},{\"attributeHeader\":{\"labelValue\":\"958990\",\"primaryLabelValue\":\"958990\"}},{\"attributeHeader\":{\"labelValue\":\"958992\",\"primaryLabelValue\":\"958992\"}},{\"attributeHeader\":{\"labelValue\":\"958994\",\"primaryLabelValue\":\"958994\"}},{\"attributeHeader\":{\"labelValue\":\"958996\",\"primaryLabelValue\":\"958996\"}},{\"attributeHeader\":{\"labelValue\":\"958998\",\"primaryLabelValue\":\"958998\"}},{\"attributeHeader\":{\"labelValue\":\"959000\",\"primaryLabelValue\":\"959000\"}},{\"attributeHeader\":{\"labelValue\":\"959002\",\"primaryLabelValue\":\"959002\"}},{\"attributeHeader\":{\"labelValue\":\"959004\",\"primaryLabelValue\":\"959004\"}},{\"attributeHeader\":{\"labelValue\":\"959006\",\"primaryLabelValue\":\"959006\"}},{\"attributeHeader\":{\"labelValue\":\"959008\",\"primaryLabelValue\":\"959008\"}},{\"attributeHeader\":{\"labelValue\":\"959010\",\"primaryLabelValue\":\"959010\"}},{\"attributeHeader\":{\"labelValue\":\"959012\",\"primaryLabelValue\":\"959012\"}},{\"attributeHeader\":{\"labelValue\":\"959014\",\"primaryLabelValue\":\"959014\"}},{\"attributeHeader\":{\"labelValue\":\"959016\",\"primaryLabelValue\":\"959016\"}},{\"attributeHeader\":{\"labelValue\":\"959018\",\"primaryLabelValue\":\"959018\"}},{\"attributeHeader\":{\"labelValue\":\"959020\",\"primaryLabelValue\":\"959020\"}},{\"attributeHeader\":{\"labelValue\":\"959022\",\"primaryLabelValue\":\"959022\"}},{\"attributeHeader\":{\"labelValue\":\"959024\",\"primaryLabelValue\":\"959024\"}},{\"attributeHeader\":{\"labelValue\":\"959026\",\"primaryLabelValue\":\"959026\"}},{\"attributeHeader\":{\"labelValue\":\"959028\",\"primaryLabelValue\":\"959028\"}},{\"attributeHeader\":{\"labelValue\":\"959030\",\"primaryLabelValue\":\"959030\"}},{\"attributeHeader\":{\"labelValue\":\"959032\",\"primaryLabelValue\":\"959032\"}},{\"attributeHeader\":{\"labelValue\":\"959034\",\"primaryLabelValue\":\"959034\"}},{\"attributeHeader\":{\"labelValue\":\"959036\",\"primaryLabelValue\":\"959036\"}},{\"attributeHeader\":{\"labelValue\":\"959038\",\"primaryLabelValue\":\"959038\"}},{\"attributeHeader\":{\"labelValue\":\"959040\",\"primaryLabelValue\":\"959040\"}},{\"attributeHeader\":{\"labelValue\":\"959042\",\"primaryLabelValue\":\"959042\"}},{\"attributeHeader\":{\"labelValue\":\"959044\",\"primaryLabelValue\":\"959044\"}},{\"attributeHeader\":{\"labelValue\":\"959046\",\"primaryLabelValue\":\"959046\"}},{\"attributeHeader\":{\"labelValue\":\"959048\",\"primaryLabelValue\":\"959048\"}},{\"attributeHeader\":{\"labelValue\":\"959050\",\"primaryLabelValue\":\"959050\"}},{\"attributeHeader\":{\"labelValue\":\"959052\",\"primaryLabelValue\":\"959052\"}},{\"attributeHeader\":{\"labelValue\":\"959054\",\"primaryLabelValue\":\"959054\"}},{\"attributeHeader\":{\"labelValue\":\"959056\",\"primaryLabelValue\":\"959056\"}},{\"attributeHeader\":{\"labelValue\":\"959058\",\"primaryLabelValue\":\"959058\"}},{\"attributeHeader\":{\"labelValue\":\"959060\",\"primaryLabelValue\":\"959060\"}},{\"attributeHeader\":{\"labelValue\":\"959062\",\"primaryLabelValue\":\"959062\"}},{\"attributeHeader\":{\"labelValue\":\"959064\",\"primaryLabelValue\":\"959064\"}},{\"attributeHeader\":{\"labelValue\":\"959066\",\"primaryLabelValue\":\"959066\"}},{\"attributeHeader\":{\"labelValue\":\"959068\",\"primaryLabelValue\":\"959068\"}},{\"attributeHeader\":{\"labelValue\":\"959070\",\"primaryLabelValue\":\"959070\"}},{\"attributeHeader\":{\"labelValue\":\"959072\",\"primaryLabelValue\":\"959072\"}},{\"attributeHeader\":{\"labelValue\":\"959074\",\"primaryLabelValue\":\"959074\"}},{\"attributeHeader\":{\"labelValue\":\"959076\",\"primaryLabelValue\":\"959076\"}},{\"attributeHeader\":{\"labelValue\":\"959078\",\"primaryLabelValue\":\"959078\"}},{\"attributeHeader\":{\"labelValue\":\"959080\",\"primaryLabelValue\":\"959080\"}},{\"attributeHeader\":{\"labelValue\":\"959082\",\"primaryLabelValue\":\"959082\"}},{\"attributeHeader\":{\"labelValue\":\"959084\",\"primaryLabelValue\":\"959084\"}},{\"attributeHeader\":{\"labelValue\":\"959086\",\"primaryLabelValue\":\"959086\"}},{\"attributeHeader\":{\"labelValue\":\"959088\",\"primaryLabelValue\":\"959088\"}},{\"attributeHeader\":{\"labelValue\":\"959090\",\"primaryLabelValue\":\"959090\"}},{\"attributeHeader\":{\"labelValue\":\"959092\",\"primaryLabelValue\":\"959092\"}},{\"attributeHeader\":{\"labelValue\":\"959094\",\"primaryLabelValue\":\"959094\"}},{\"attributeHeader\":{\"labelValue\":\"959096\",\"primaryLabelValue\":\"959096\"}},{\"attributeHeader\":{\"labelValue\":\"959098\",\"primaryLabelValue\":\"959098\"}},{\"attributeHeader\":{\"labelValue\":\"959100\",\"primaryLabelValue\":\"959100\"}},{\"attributeHeader\":{\"labelValue\":\"959102\",\"primaryLabelValue\":\"959102\"}},{\"attributeHeader\":{\"labelValue\":\"959104\",\"primaryLabelValue\":\"959104\"}},{\"attributeHeader\":{\"labelValue\":\"959106\",\"primaryLabelValue\":\"959106\"}},{\"attributeHeader\":{\"labelValue\":\"959108\",\"primaryLabelValue\":\"959108\"}},{\"attributeHeader\":{\"labelValue\":\"959110\",\"primaryLabelValue\":\"959110\"}},{\"attributeHeader\":{\"labelValue\":\"959112\",\"primaryLabelValue\":\"959112\"}},{\"attributeHeader\":{\"labelValue\":\"959114\",\"primaryLabelValue\":\"959114\"}},{\"attributeHeader\":{\"labelValue\":\"959116\",\"primaryLabelValue\":\"959116\"}},{\"attributeHeader\":{\"labelValue\":\"959118\",\"primaryLabelValue\":\"959118\"}},{\"attributeHeader\":{\"labelValue\":\"959120\",\"primaryLabelValue\":\"959120\"}},{\"attributeHeader\":{\"labelValue\":\"959122\",\"primaryLabelValue\":\"959122\"}},{\"attributeHeader\":{\"labelValue\":\"959124\",\"primaryLabelValue\":\"959124\"}},{\"attributeHeader\":{\"labelValue\":\"959126\",\"primaryLabelValue\":\"959126\"}},{\"attributeHeader\":{\"labelValue\":\"959128\",\"primaryLabelValue\":\"959128\"}},{\"attributeHeader\":{\"labelValue\":\"959130\",\"primaryLabelValue\":\"959130\"}},{\"attributeHeader\":{\"labelValue\":\"959132\",\"primaryLabelValue\":\"959132\"}},{\"attributeHeader\":{\"labelValue\":\"959134\",\"primaryLabelValue\":\"959134\"}},{\"attributeHeader\":{\"labelValue\":\"959136\",\"primaryLabelValue\":\"959136\"}},{\"attributeHeader\":{\"labelValue\":\"959138\",\"primaryLabelValue\":\"959138\"}},{\"attributeHeader\":{\"labelValue\":\"959140\",\"primaryLabelValue\":\"959140\"}},{\"attributeHeader\":{\"labelValue\":\"959142\",\"primaryLabelValue\":\"959142\"}},{\"attributeHeader\":{\"labelValue\":\"959144\",\"primaryLabelValue\":\"959144\"}},{\"attributeHeader\":{\"labelValue\":\"959146\",\"primaryLabelValue\":\"959146\"}},{\"attributeHeader\":{\"labelValue\":\"959148\",\"primaryLabelValue\":\"959148\"}},{\"attributeHeader\":{\"labelValue\":\"959150\",\"primaryLabelValue\":\"959150\"}},{\"attributeHeader\":{\"labelValue\":\"959152\",\"primaryLabelValue\":\"959152\"}},{\"attributeHeader\":{\"labelValue\":\"959154\",\"primaryLabelValue\":\"959154\"}},{\"attributeHeader\":{\"labelValue\":\"959156\",\"primaryLabelValue\":\"959156\"}},{\"attributeHeader\":{\"labelValue\":\"959158\",\"primaryLabelValue\":\"959158\"}},{\"attributeHeader\":{\"labelValue\":\"959160\",\"primaryLabelValue\":\"959160\"}},{\"attributeHeader\":{\"labelValue\":\"959162\",\"primaryLabelValue\":\"959162\"}},{\"attributeHeader\":{\"labelValue\":\"959164\",\"primaryLabelValue\":\"959164\"}},{\"attributeHeader\":{\"labelValue\":\"959166\",\"primaryLabelValue\":\"959166\"}},{\"attributeHeader\":{\"labelValue\":\"959168\",\"primaryLabelValue\":\"959168\"}},{\"attributeHeader\":{\"labelValue\":\"959170\",\"primaryLabelValue\":\"959170\"}},{\"attributeHeader\":{\"labelValue\":\"959172\",\"primaryLabelValue\":\"959172\"}},{\"attributeHeader\":{\"labelValue\":\"959174\",\"primaryLabelValue\":\"959174\"}},{\"attributeHeader\":{\"labelValue\":\"959176\",\"primaryLabelValue\":\"959176\"}},{\"attributeHeader\":{\"labelValue\":\"959178\",\"primaryLabelValue\":\"959178\"}},{\"attributeHeader\":{\"labelValue\":\"959180\",\"primaryLabelValue\":\"959180\"}},{\"attributeHeader\":{\"labelValue\":\"959182\",\"primaryLabelValue\":\"959182\"}},{\"attributeHeader\":{\"labelValue\":\"959184\",\"primaryLabelValue\":\"959184\"}},{\"attributeHeader\":{\"labelValue\":\"959186\",\"primaryLabelValue\":\"959186\"}},{\"attributeHeader\":{\"labelValue\":\"959188\",\"primaryLabelValue\":\"959188\"}},{\"attributeHeader\":{\"labelValue\":\"959190\",\"primaryLabelValue\":\"959190\"}},{\"attributeHeader\":{\"labelValue\":\"959192\",\"primaryLabelValue\":\"959192\"}},{\"attributeHeader\":{\"labelValue\":\"959194\",\"primaryLabelValue\":\"959194\"}},{\"attributeHeader\":{\"labelValue\":\"959196\",\"primaryLabelValue\":\"959196\"}},{\"attributeHeader\":{\"labelValue\":\"959198\",\"primaryLabelValue\":\"959198\"}},{\"attributeHeader\":{\"labelValue\":\"959200\",\"primaryLabelValue\":\"959200\"}},{\"attributeHeader\":{\"labelValue\":\"959202\",\"primaryLabelValue\":\"959202\"}},{\"attributeHeader\":{\"labelValue\":\"959204\",\"primaryLabelValue\":\"959204\"}},{\"attributeHeader\":{\"labelValue\":\"959206\",\"primaryLabelValue\":\"959206\"}},{\"attributeHeader\":{\"labelValue\":\"959208\",\"primaryLabelValue\":\"959208\"}},{\"attributeHeader\":{\"labelValue\":\"959210\",\"primaryLabelValue\":\"959210\"}},{\"attributeHeader\":{\"labelValue\":\"959212\",\"primaryLabelValue\":\"959212\"}},{\"attributeHeader\":{\"labelValue\":\"959214\",\"primaryLabelValue\":\"959214\"}},{\"attributeHeader\":{\"labelValue\":\"959216\",\"primaryLabelValue\":\"959216\"}},{\"attributeHeader\":{\"labelValue\":\"959218\",\"primaryLabelValue\":\"959218\"}},{\"attributeHeader\":{\"labelValue\":\"959220\",\"primaryLabelValue\":\"959220\"}},{\"attributeHeader\":{\"labelValue\":\"959222\",\"primaryLabelValue\":\"959222\"}},{\"attributeHeader\":{\"labelValue\":\"959224\",\"primaryLabelValue\":\"959224\"}},{\"attributeHeader\":{\"labelValue\":\"959226\",\"primaryLabelValue\":\"959226\"}},{\"attributeHeader\":{\"labelValue\":\"959228\",\"primaryLabelValue\":\"959228\"}},{\"attributeHeader\":{\"labelValue\":\"959230\",\"primaryLabelValue\":\"959230\"}},{\"attributeHeader\":{\"labelValue\":\"959232\",\"primaryLabelValue\":\"959232\"}},{\"attributeHeader\":{\"labelValue\":\"959234\",\"primaryLabelValue\":\"959234\"}},{\"attributeHeader\":{\"labelValue\":\"959236\",\"primaryLabelValue\":\"959236\"}},{\"attributeHeader\":{\"labelValue\":\"959238\",\"primaryLabelValue\":\"959238\"}},{\"attributeHeader\":{\"labelValue\":\"959239\",\"primaryLabelValue\":\"959239\"}},{\"attributeHeader\":{\"labelValue\":\"959241\",\"primaryLabelValue\":\"959241\"}},{\"attributeHeader\":{\"labelValue\":\"959243\",\"primaryLabelValue\":\"959243\"}},{\"attributeHeader\":{\"labelValue\":\"959245\",\"primaryLabelValue\":\"959245\"}},{\"attributeHeader\":{\"labelValue\":\"959247\",\"primaryLabelValue\":\"959247\"}},{\"attributeHeader\":{\"labelValue\":\"959249\",\"primaryLabelValue\":\"959249\"}},{\"attributeHeader\":{\"labelValue\":\"959251\",\"primaryLabelValue\":\"959251\"}},{\"attributeHeader\":{\"labelValue\":\"959253\",\"primaryLabelValue\":\"959253\"}},{\"attributeHeader\":{\"labelValue\":\"959255\",\"primaryLabelValue\":\"959255\"}},{\"attributeHeader\":{\"labelValue\":\"959257\",\"primaryLabelValue\":\"959257\"}},{\"attributeHeader\":{\"labelValue\":\"959259\",\"primaryLabelValue\":\"959259\"}},{\"attributeHeader\":{\"labelValue\":\"959261\",\"primaryLabelValue\":\"959261\"}},{\"attributeHeader\":{\"labelValue\":\"959263\",\"primaryLabelValue\":\"959263\"}},{\"attributeHeader\":{\"labelValue\":\"959265\",\"primaryLabelValue\":\"959265\"}},{\"attributeHeader\":{\"labelValue\":\"959267\",\"primaryLabelValue\":\"959267\"}},{\"attributeHeader\":{\"labelValue\":\"959269\",\"primaryLabelValue\":\"959269\"}},{\"attributeHeader\":{\"labelValue\":\"959271\",\"primaryLabelValue\":\"959271\"}},{\"attributeHeader\":{\"labelValue\":\"959275\",\"primaryLabelValue\":\"959275\"}},{\"attributeHeader\":{\"labelValue\":\"959277\",\"primaryLabelValue\":\"959277\"}},{\"attributeHeader\":{\"labelValue\":\"959279\",\"primaryLabelValue\":\"959279\"}},{\"attributeHeader\":{\"labelValue\":\"959281\",\"primaryLabelValue\":\"959281\"}},{\"attributeHeader\":{\"labelValue\":\"959283\",\"primaryLabelValue\":\"959283\"}},{\"attributeHeader\":{\"labelValue\":\"959285\",\"primaryLabelValue\":\"959285\"}},{\"attributeHeader\":{\"labelValue\":\"959287\",\"primaryLabelValue\":\"959287\"}},{\"attributeHeader\":{\"labelValue\":\"959289\",\"primaryLabelValue\":\"959289\"}},{\"attributeHeader\":{\"labelValue\":\"959291\",\"primaryLabelValue\":\"959291\"}},{\"attributeHeader\":{\"labelValue\":\"959293\",\"primaryLabelValue\":\"959293\"}},{\"attributeHeader\":{\"labelValue\":\"959295\",\"primaryLabelValue\":\"959295\"}},{\"attributeHeader\":{\"labelValue\":\"959297\",\"primaryLabelValue\":\"959297\"}},{\"attributeHeader\":{\"labelValue\":\"959299\",\"primaryLabelValue\":\"959299\"}},{\"attributeHeader\":{\"labelValue\":\"959301\",\"primaryLabelValue\":\"959301\"}},{\"attributeHeader\":{\"labelValue\":\"959303\",\"primaryLabelValue\":\"959303\"}},{\"attributeHeader\":{\"labelValue\":\"959305\",\"primaryLabelValue\":\"959305\"}},{\"attributeHeader\":{\"labelValue\":\"959307\",\"primaryLabelValue\":\"959307\"}},{\"attributeHeader\":{\"labelValue\":\"959309\",\"primaryLabelValue\":\"959309\"}},{\"attributeHeader\":{\"labelValue\":\"959311\",\"primaryLabelValue\":\"959311\"}},{\"attributeHeader\":{\"labelValue\":\"959313\",\"primaryLabelValue\":\"959313\"}},{\"attributeHeader\":{\"labelValue\":\"959315\",\"primaryLabelValue\":\"959315\"}},{\"attributeHeader\":{\"labelValue\":\"959317\",\"primaryLabelValue\":\"959317\"}},{\"attributeHeader\":{\"labelValue\":\"959319\",\"primaryLabelValue\":\"959319\"}},{\"attributeHeader\":{\"labelValue\":\"959321\",\"primaryLabelValue\":\"959321\"}},{\"attributeHeader\":{\"labelValue\":\"959323\",\"primaryLabelValue\":\"959323\"}},{\"attributeHeader\":{\"labelValue\":\"959325\",\"primaryLabelValue\":\"959325\"}},{\"attributeHeader\":{\"labelValue\":\"959327\",\"primaryLabelValue\":\"959327\"}},{\"attributeHeader\":{\"labelValue\":\"959329\",\"primaryLabelValue\":\"959329\"}},{\"attributeHeader\":{\"labelValue\":\"959331\",\"primaryLabelValue\":\"959331\"}},{\"attributeHeader\":{\"labelValue\":\"959333\",\"primaryLabelValue\":\"959333\"}},{\"attributeHeader\":{\"labelValue\":\"959335\",\"primaryLabelValue\":\"959335\"}},{\"attributeHeader\":{\"labelValue\":\"959337\",\"primaryLabelValue\":\"959337\"}},{\"attributeHeader\":{\"labelValue\":\"959339\",\"primaryLabelValue\":\"959339\"}},{\"attributeHeader\":{\"labelValue\":\"959341\",\"primaryLabelValue\":\"959341\"}},{\"attributeHeader\":{\"labelValue\":\"959343\",\"primaryLabelValue\":\"959343\"}},{\"attributeHeader\":{\"labelValue\":\"959345\",\"primaryLabelValue\":\"959345\"}},{\"attributeHeader\":{\"labelValue\":\"959347\",\"primaryLabelValue\":\"959347\"}},{\"attributeHeader\":{\"labelValue\":\"959349\",\"primaryLabelValue\":\"959349\"}},{\"attributeHeader\":{\"labelValue\":\"959351\",\"primaryLabelValue\":\"959351\"}},{\"attributeHeader\":{\"labelValue\":\"959353\",\"primaryLabelValue\":\"959353\"}},{\"attributeHeader\":{\"labelValue\":\"959355\",\"primaryLabelValue\":\"959355\"}},{\"attributeHeader\":{\"labelValue\":\"959357\",\"primaryLabelValue\":\"959357\"}},{\"attributeHeader\":{\"labelValue\":\"959359\",\"primaryLabelValue\":\"959359\"}},{\"attributeHeader\":{\"labelValue\":\"959361\",\"primaryLabelValue\":\"959361\"}},{\"attributeHeader\":{\"labelValue\":\"959363\",\"primaryLabelValue\":\"959363\"}},{\"attributeHeader\":{\"labelValue\":\"959365\",\"primaryLabelValue\":\"959365\"}},{\"attributeHeader\":{\"labelValue\":\"959367\",\"primaryLabelValue\":\"959367\"}},{\"attributeHeader\":{\"labelValue\":\"959369\",\"primaryLabelValue\":\"959369\"}},{\"attributeHeader\":{\"labelValue\":\"959371\",\"primaryLabelValue\":\"959371\"}},{\"attributeHeader\":{\"labelValue\":\"959373\",\"primaryLabelValue\":\"959373\"}},{\"attributeHeader\":{\"labelValue\":\"959375\",\"primaryLabelValue\":\"959375\"}},{\"attributeHeader\":{\"labelValue\":\"959377\",\"primaryLabelValue\":\"959377\"}},{\"attributeHeader\":{\"labelValue\":\"959379\",\"primaryLabelValue\":\"959379\"}},{\"attributeHeader\":{\"labelValue\":\"959381\",\"primaryLabelValue\":\"959381\"}},{\"attributeHeader\":{\"labelValue\":\"959383\",\"primaryLabelValue\":\"959383\"}},{\"attributeHeader\":{\"labelValue\":\"959385\",\"primaryLabelValue\":\"959385\"}},{\"attributeHeader\":{\"labelValue\":\"959387\",\"primaryLabelValue\":\"959387\"}},{\"attributeHeader\":{\"labelValue\":\"959389\",\"primaryLabelValue\":\"959389\"}},{\"attributeHeader\":{\"labelValue\":\"959391\",\"primaryLabelValue\":\"959391\"}},{\"attributeHeader\":{\"labelValue\":\"959393\",\"primaryLabelValue\":\"959393\"}},{\"attributeHeader\":{\"labelValue\":\"959395\",\"primaryLabelValue\":\"959395\"}},{\"attributeHeader\":{\"labelValue\":\"959397\",\"primaryLabelValue\":\"959397\"}},{\"attributeHeader\":{\"labelValue\":\"959399\",\"primaryLabelValue\":\"959399\"}},{\"attributeHeader\":{\"labelValue\":\"959401\",\"primaryLabelValue\":\"959401\"}},{\"attributeHeader\":{\"labelValue\":\"959403\",\"primaryLabelValue\":\"959403\"}},{\"attributeHeader\":{\"labelValue\":\"959405\",\"primaryLabelValue\":\"959405\"}},{\"attributeHeader\":{\"labelValue\":\"959407\",\"primaryLabelValue\":\"959407\"}},{\"attributeHeader\":{\"labelValue\":\"959409\",\"primaryLabelValue\":\"959409\"}},{\"attributeHeader\":{\"labelValue\":\"959411\",\"primaryLabelValue\":\"959411\"}},{\"attributeHeader\":{\"labelValue\":\"959413\",\"primaryLabelValue\":\"959413\"}},{\"attributeHeader\":{\"labelValue\":\"959415\",\"primaryLabelValue\":\"959415\"}},{\"attributeHeader\":{\"labelValue\":\"959417\",\"primaryLabelValue\":\"959417\"}},{\"attributeHeader\":{\"labelValue\":\"959419\",\"primaryLabelValue\":\"959419\"}},{\"attributeHeader\":{\"labelValue\":\"959421\",\"primaryLabelValue\":\"959421\"}},{\"attributeHeader\":{\"labelValue\":\"959423\",\"primaryLabelValue\":\"959423\"}},{\"attributeHeader\":{\"labelValue\":\"959425\",\"primaryLabelValue\":\"959425\"}},{\"attributeHeader\":{\"labelValue\":\"959427\",\"primaryLabelValue\":\"959427\"}},{\"attributeHeader\":{\"labelValue\":\"959429\",\"primaryLabelValue\":\"959429\"}},{\"attributeHeader\":{\"labelValue\":\"959431\",\"primaryLabelValue\":\"959431\"}},{\"attributeHeader\":{\"labelValue\":\"959433\",\"primaryLabelValue\":\"959433\"}},{\"attributeHeader\":{\"labelValue\":\"959435\",\"primaryLabelValue\":\"959435\"}},{\"attributeHeader\":{\"labelValue\":\"959437\",\"primaryLabelValue\":\"959437\"}},{\"attributeHeader\":{\"labelValue\":\"959439\",\"primaryLabelValue\":\"959439\"}},{\"attributeHeader\":{\"labelValue\":\"959441\",\"primaryLabelValue\":\"959441\"}},{\"attributeHeader\":{\"labelValue\":\"959443\",\"primaryLabelValue\":\"959443\"}},{\"attributeHeader\":{\"labelValue\":\"959445\",\"primaryLabelValue\":\"959445\"}},{\"attributeHeader\":{\"labelValue\":\"959447\",\"primaryLabelValue\":\"959447\"}},{\"attributeHeader\":{\"labelValue\":\"959449\",\"primaryLabelValue\":\"959449\"}},{\"attributeHeader\":{\"labelValue\":\"959451\",\"primaryLabelValue\":\"959451\"}},{\"attributeHeader\":{\"labelValue\":\"959453\",\"primaryLabelValue\":\"959453\"}},{\"attributeHeader\":{\"labelValue\":\"959455\",\"primaryLabelValue\":\"959455\"}},{\"attributeHeader\":{\"labelValue\":\"959457\",\"primaryLabelValue\":\"959457\"}},{\"attributeHeader\":{\"labelValue\":\"959459\",\"primaryLabelValue\":\"959459\"}},{\"attributeHeader\":{\"labelValue\":\"959461\",\"primaryLabelValue\":\"959461\"}},{\"attributeHeader\":{\"labelValue\":\"959463\",\"primaryLabelValue\":\"959463\"}},{\"attributeHeader\":{\"labelValue\":\"959465\",\"primaryLabelValue\":\"959465\"}},{\"attributeHeader\":{\"labelValue\":\"959467\",\"primaryLabelValue\":\"959467\"}},{\"attributeHeader\":{\"labelValue\":\"959469\",\"primaryLabelValue\":\"959469\"}},{\"attributeHeader\":{\"labelValue\":\"959471\",\"primaryLabelValue\":\"959471\"}},{\"attributeHeader\":{\"labelValue\":\"959473\",\"primaryLabelValue\":\"959473\"}},{\"attributeHeader\":{\"labelValue\":\"959475\",\"primaryLabelValue\":\"959475\"}},{\"attributeHeader\":{\"labelValue\":\"959477\",\"primaryLabelValue\":\"959477\"}},{\"attributeHeader\":{\"labelValue\":\"959479\",\"primaryLabelValue\":\"959479\"}},{\"attributeHeader\":{\"labelValue\":\"959481\",\"primaryLabelValue\":\"959481\"}},{\"attributeHeader\":{\"labelValue\":\"959485\",\"primaryLabelValue\":\"959485\"}},{\"attributeHeader\":{\"labelValue\":\"959487\",\"primaryLabelValue\":\"959487\"}},{\"attributeHeader\":{\"labelValue\":\"959489\",\"primaryLabelValue\":\"959489\"}},{\"attributeHeader\":{\"labelValue\":\"959491\",\"primaryLabelValue\":\"959491\"}},{\"attributeHeader\":{\"labelValue\":\"959493\",\"primaryLabelValue\":\"959493\"}},{\"attributeHeader\":{\"labelValue\":\"959495\",\"primaryLabelValue\":\"959495\"}},{\"attributeHeader\":{\"labelValue\":\"959497\",\"primaryLabelValue\":\"959497\"}},{\"attributeHeader\":{\"labelValue\":\"959499\",\"primaryLabelValue\":\"959499\"}},{\"attributeHeader\":{\"labelValue\":\"959501\",\"primaryLabelValue\":\"959501\"}},{\"attributeHeader\":{\"labelValue\":\"959503\",\"primaryLabelValue\":\"959503\"}},{\"attributeHeader\":{\"labelValue\":\"959505\",\"primaryLabelValue\":\"959505\"}},{\"attributeHeader\":{\"labelValue\":\"959507\",\"primaryLabelValue\":\"959507\"}},{\"attributeHeader\":{\"labelValue\":\"959509\",\"primaryLabelValue\":\"959509\"}},{\"attributeHeader\":{\"labelValue\":\"959511\",\"primaryLabelValue\":\"959511\"}},{\"attributeHeader\":{\"labelValue\":\"959513\",\"primaryLabelValue\":\"959513\"}},{\"attributeHeader\":{\"labelValue\":\"959515\",\"primaryLabelValue\":\"959515\"}},{\"attributeHeader\":{\"labelValue\":\"959517\",\"primaryLabelValue\":\"959517\"}},{\"attributeHeader\":{\"labelValue\":\"959519\",\"primaryLabelValue\":\"959519\"}},{\"attributeHeader\":{\"labelValue\":\"959521\",\"primaryLabelValue\":\"959521\"}},{\"attributeHeader\":{\"labelValue\":\"959523\",\"primaryLabelValue\":\"959523\"}},{\"attributeHeader\":{\"labelValue\":\"959525\",\"primaryLabelValue\":\"959525\"}},{\"attributeHeader\":{\"labelValue\":\"959527\",\"primaryLabelValue\":\"959527\"}},{\"attributeHeader\":{\"labelValue\":\"959531\",\"primaryLabelValue\":\"959531\"}},{\"attributeHeader\":{\"labelValue\":\"959533\",\"primaryLabelValue\":\"959533\"}},{\"attributeHeader\":{\"labelValue\":\"959535\",\"primaryLabelValue\":\"959535\"}},{\"attributeHeader\":{\"labelValue\":\"959537\",\"primaryLabelValue\":\"959537\"}},{\"attributeHeader\":{\"labelValue\":\"959539\",\"primaryLabelValue\":\"959539\"}},{\"attributeHeader\":{\"labelValue\":\"959541\",\"primaryLabelValue\":\"959541\"}},{\"attributeHeader\":{\"labelValue\":\"959543\",\"primaryLabelValue\":\"959543\"}},{\"attributeHeader\":{\"labelValue\":\"959545\",\"primaryLabelValue\":\"959545\"}},{\"attributeHeader\":{\"labelValue\":\"959547\",\"primaryLabelValue\":\"959547\"}},{\"attributeHeader\":{\"labelValue\":\"959549\",\"primaryLabelValue\":\"959549\"}},{\"attributeHeader\":{\"labelValue\":\"959551\",\"primaryLabelValue\":\"959551\"}},{\"attributeHeader\":{\"labelValue\":\"959553\",\"primaryLabelValue\":\"959553\"}},{\"attributeHeader\":{\"labelValue\":\"959555\",\"primaryLabelValue\":\"959555\"}},{\"attributeHeader\":{\"labelValue\":\"959557\",\"primaryLabelValue\":\"959557\"}},{\"attributeHeader\":{\"labelValue\":\"959559\",\"primaryLabelValue\":\"959559\"}},{\"attributeHeader\":{\"labelValue\":\"959561\",\"primaryLabelValue\":\"959561\"}},{\"attributeHeader\":{\"labelValue\":\"959563\",\"primaryLabelValue\":\"959563\"}},{\"attributeHeader\":{\"labelValue\":\"959565\",\"primaryLabelValue\":\"959565\"}},{\"attributeHeader\":{\"labelValue\":\"959567\",\"primaryLabelValue\":\"959567\"}},{\"attributeHeader\":{\"labelValue\":\"959569\",\"primaryLabelValue\":\"959569\"}},{\"attributeHeader\":{\"labelValue\":\"959571\",\"primaryLabelValue\":\"959571\"}},{\"attributeHeader\":{\"labelValue\":\"959573\",\"primaryLabelValue\":\"959573\"}},{\"attributeHeader\":{\"labelValue\":\"959575\",\"primaryLabelValue\":\"959575\"}},{\"attributeHeader\":{\"labelValue\":\"959577\",\"primaryLabelValue\":\"959577\"}},{\"attributeHeader\":{\"labelValue\":\"959579\",\"primaryLabelValue\":\"959579\"}},{\"attributeHeader\":{\"labelValue\":\"959581\",\"primaryLabelValue\":\"959581\"}},{\"attributeHeader\":{\"labelValue\":\"959583\",\"primaryLabelValue\":\"959583\"}},{\"attributeHeader\":{\"labelValue\":\"959585\",\"primaryLabelValue\":\"959585\"}},{\"attributeHeader\":{\"labelValue\":\"959587\",\"primaryLabelValue\":\"959587\"}},{\"attributeHeader\":{\"labelValue\":\"959589\",\"primaryLabelValue\":\"959589\"}},{\"attributeHeader\":{\"labelValue\":\"959591\",\"primaryLabelValue\":\"959591\"}},{\"attributeHeader\":{\"labelValue\":\"959593\",\"primaryLabelValue\":\"959593\"}},{\"attributeHeader\":{\"labelValue\":\"959595\",\"primaryLabelValue\":\"959595\"}},{\"attributeHeader\":{\"labelValue\":\"959597\",\"primaryLabelValue\":\"959597\"}},{\"attributeHeader\":{\"labelValue\":\"959599\",\"primaryLabelValue\":\"959599\"}},{\"attributeHeader\":{\"labelValue\":\"959601\",\"primaryLabelValue\":\"959601\"}},{\"attributeHeader\":{\"labelValue\":\"959603\",\"primaryLabelValue\":\"959603\"}},{\"attributeHeader\":{\"labelValue\":\"959605\",\"primaryLabelValue\":\"959605\"}},{\"attributeHeader\":{\"labelValue\":\"959607\",\"primaryLabelValue\":\"959607\"}},{\"attributeHeader\":{\"labelValue\":\"959609\",\"primaryLabelValue\":\"959609\"}},{\"attributeHeader\":{\"labelValue\":\"959611\",\"primaryLabelValue\":\"959611\"}},{\"attributeHeader\":{\"labelValue\":\"959613\",\"primaryLabelValue\":\"959613\"}},{\"attributeHeader\":{\"labelValue\":\"959615\",\"primaryLabelValue\":\"959615\"}},{\"attributeHeader\":{\"labelValue\":\"959617\",\"primaryLabelValue\":\"959617\"}},{\"attributeHeader\":{\"labelValue\":\"959619\",\"primaryLabelValue\":\"959619\"}},{\"attributeHeader\":{\"labelValue\":\"959621\",\"primaryLabelValue\":\"959621\"}},{\"attributeHeader\":{\"labelValue\":\"959623\",\"primaryLabelValue\":\"959623\"}},{\"attributeHeader\":{\"labelValue\":\"959625\",\"primaryLabelValue\":\"959625\"}},{\"attributeHeader\":{\"labelValue\":\"959627\",\"primaryLabelValue\":\"959627\"}},{\"attributeHeader\":{\"labelValue\":\"959629\",\"primaryLabelValue\":\"959629\"}},{\"attributeHeader\":{\"labelValue\":\"959631\",\"primaryLabelValue\":\"959631\"}},{\"attributeHeader\":{\"labelValue\":\"959633\",\"primaryLabelValue\":\"959633\"}},{\"attributeHeader\":{\"labelValue\":\"959635\",\"primaryLabelValue\":\"959635\"}},{\"attributeHeader\":{\"labelValue\":\"959637\",\"primaryLabelValue\":\"959637\"}},{\"attributeHeader\":{\"labelValue\":\"959639\",\"primaryLabelValue\":\"959639\"}},{\"attributeHeader\":{\"labelValue\":\"959641\",\"primaryLabelValue\":\"959641\"}},{\"attributeHeader\":{\"labelValue\":\"959643\",\"primaryLabelValue\":\"959643\"}},{\"attributeHeader\":{\"labelValue\":\"959645\",\"primaryLabelValue\":\"959645\"}},{\"attributeHeader\":{\"labelValue\":\"959647\",\"primaryLabelValue\":\"959647\"}},{\"attributeHeader\":{\"labelValue\":\"959649\",\"primaryLabelValue\":\"959649\"}},{\"attributeHeader\":{\"labelValue\":\"959651\",\"primaryLabelValue\":\"959651\"}},{\"attributeHeader\":{\"labelValue\":\"959653\",\"primaryLabelValue\":\"959653\"}},{\"attributeHeader\":{\"labelValue\":\"959655\",\"primaryLabelValue\":\"959655\"}},{\"attributeHeader\":{\"labelValue\":\"959657\",\"primaryLabelValue\":\"959657\"}},{\"attributeHeader\":{\"labelValue\":\"959659\",\"primaryLabelValue\":\"959659\"}},{\"attributeHeader\":{\"labelValue\":\"959661\",\"primaryLabelValue\":\"959661\"}},{\"attributeHeader\":{\"labelValue\":\"959663\",\"primaryLabelValue\":\"959663\"}},{\"attributeHeader\":{\"labelValue\":\"959665\",\"primaryLabelValue\":\"959665\"}},{\"attributeHeader\":{\"labelValue\":\"959667\",\"primaryLabelValue\":\"959667\"}},{\"attributeHeader\":{\"labelValue\":\"959671\",\"primaryLabelValue\":\"959671\"}},{\"attributeHeader\":{\"labelValue\":\"959673\",\"primaryLabelValue\":\"959673\"}},{\"attributeHeader\":{\"labelValue\":\"959675\",\"primaryLabelValue\":\"959675\"}},{\"attributeHeader\":{\"labelValue\":\"959677\",\"primaryLabelValue\":\"959677\"}},{\"attributeHeader\":{\"labelValue\":\"959679\",\"primaryLabelValue\":\"959679\"}},{\"attributeHeader\":{\"labelValue\":\"959681\",\"primaryLabelValue\":\"959681\"}},{\"attributeHeader\":{\"labelValue\":\"959683\",\"primaryLabelValue\":\"959683\"}},{\"attributeHeader\":{\"labelValue\":\"959685\",\"primaryLabelValue\":\"959685\"}},{\"attributeHeader\":{\"labelValue\":\"959687\",\"primaryLabelValue\":\"959687\"}},{\"attributeHeader\":{\"labelValue\":\"959689\",\"primaryLabelValue\":\"959689\"}},{\"attributeHeader\":{\"labelValue\":\"959691\",\"primaryLabelValue\":\"959691\"}},{\"attributeHeader\":{\"labelValue\":\"959693\",\"primaryLabelValue\":\"959693\"}},{\"attributeHeader\":{\"labelValue\":\"959695\",\"primaryLabelValue\":\"959695\"}},{\"attributeHeader\":{\"labelValue\":\"959697\",\"primaryLabelValue\":\"959697\"}},{\"attributeHeader\":{\"labelValue\":\"959699\",\"primaryLabelValue\":\"959699\"}},{\"attributeHeader\":{\"labelValue\":\"959701\",\"primaryLabelValue\":\"959701\"}},{\"attributeHeader\":{\"labelValue\":\"959703\",\"primaryLabelValue\":\"959703\"}},{\"attributeHeader\":{\"labelValue\":\"959705\",\"primaryLabelValue\":\"959705\"}},{\"attributeHeader\":{\"labelValue\":\"959707\",\"primaryLabelValue\":\"959707\"}},{\"attributeHeader\":{\"labelValue\":\"959709\",\"primaryLabelValue\":\"959709\"}},{\"attributeHeader\":{\"labelValue\":\"959711\",\"primaryLabelValue\":\"959711\"}},{\"attributeHeader\":{\"labelValue\":\"959713\",\"primaryLabelValue\":\"959713\"}},{\"attributeHeader\":{\"labelValue\":\"959715\",\"primaryLabelValue\":\"959715\"}},{\"attributeHeader\":{\"labelValue\":\"959717\",\"primaryLabelValue\":\"959717\"}},{\"attributeHeader\":{\"labelValue\":\"959719\",\"primaryLabelValue\":\"959719\"}},{\"attributeHeader\":{\"labelValue\":\"959721\",\"primaryLabelValue\":\"959721\"}},{\"attributeHeader\":{\"labelValue\":\"959723\",\"primaryLabelValue\":\"959723\"}},{\"attributeHeader\":{\"labelValue\":\"959725\",\"primaryLabelValue\":\"959725\"}},{\"attributeHeader\":{\"labelValue\":\"959727\",\"primaryLabelValue\":\"959727\"}},{\"attributeHeader\":{\"labelValue\":\"959729\",\"primaryLabelValue\":\"959729\"}},{\"attributeHeader\":{\"labelValue\":\"959731\",\"primaryLabelValue\":\"959731\"}},{\"attributeHeader\":{\"labelValue\":\"959733\",\"primaryLabelValue\":\"959733\"}},{\"attributeHeader\":{\"labelValue\":\"959735\",\"primaryLabelValue\":\"959735\"}},{\"attributeHeader\":{\"labelValue\":\"959737\",\"primaryLabelValue\":\"959737\"}},{\"attributeHeader\":{\"labelValue\":\"959739\",\"primaryLabelValue\":\"959739\"}},{\"attributeHeader\":{\"labelValue\":\"959741\",\"primaryLabelValue\":\"959741\"}},{\"attributeHeader\":{\"labelValue\":\"959743\",\"primaryLabelValue\":\"959743\"}},{\"attributeHeader\":{\"labelValue\":\"959745\",\"primaryLabelValue\":\"959745\"}},{\"attributeHeader\":{\"labelValue\":\"959747\",\"primaryLabelValue\":\"959747\"}},{\"attributeHeader\":{\"labelValue\":\"959749\",\"primaryLabelValue\":\"959749\"}},{\"attributeHeader\":{\"labelValue\":\"959751\",\"primaryLabelValue\":\"959751\"}},{\"attributeHeader\":{\"labelValue\":\"959753\",\"primaryLabelValue\":\"959753\"}},{\"attributeHeader\":{\"labelValue\":\"959755\",\"primaryLabelValue\":\"959755\"}},{\"attributeHeader\":{\"labelValue\":\"959757\",\"primaryLabelValue\":\"959757\"}},{\"attributeHeader\":{\"labelValue\":\"959759\",\"primaryLabelValue\":\"959759\"}},{\"attributeHeader\":{\"labelValue\":\"959761\",\"primaryLabelValue\":\"959761\"}},{\"attributeHeader\":{\"labelValue\":\"959763\",\"primaryLabelValue\":\"959763\"}},{\"attributeHeader\":{\"labelValue\":\"959765\",\"primaryLabelValue\":\"959765\"}},{\"attributeHeader\":{\"labelValue\":\"959767\",\"primaryLabelValue\":\"959767\"}},{\"attributeHeader\":{\"labelValue\":\"959769\",\"primaryLabelValue\":\"959769\"}},{\"attributeHeader\":{\"labelValue\":\"959771\",\"primaryLabelValue\":\"959771\"}},{\"attributeHeader\":{\"labelValue\":\"959773\",\"primaryLabelValue\":\"959773\"}},{\"attributeHeader\":{\"labelValue\":\"959775\",\"primaryLabelValue\":\"959775\"}},{\"attributeHeader\":{\"labelValue\":\"959777\",\"primaryLabelValue\":\"959777\"}},{\"attributeHeader\":{\"labelValue\":\"959779\",\"primaryLabelValue\":\"959779\"}},{\"attributeHeader\":{\"labelValue\":\"959781\",\"primaryLabelValue\":\"959781\"}},{\"attributeHeader\":{\"labelValue\":\"959783\",\"primaryLabelValue\":\"959783\"}},{\"attributeHeader\":{\"labelValue\":\"959785\",\"primaryLabelValue\":\"959785\"}},{\"attributeHeader\":{\"labelValue\":\"959787\",\"primaryLabelValue\":\"959787\"}},{\"attributeHeader\":{\"labelValue\":\"959789\",\"primaryLabelValue\":\"959789\"}},{\"attributeHeader\":{\"labelValue\":\"959791\",\"primaryLabelValue\":\"959791\"}},{\"attributeHeader\":{\"labelValue\":\"959795\",\"primaryLabelValue\":\"959795\"}},{\"attributeHeader\":{\"labelValue\":\"959797\",\"primaryLabelValue\":\"959797\"}},{\"attributeHeader\":{\"labelValue\":\"959799\",\"primaryLabelValue\":\"959799\"}},{\"attributeHeader\":{\"labelValue\":\"959801\",\"primaryLabelValue\":\"959801\"}},{\"attributeHeader\":{\"labelValue\":\"959803\",\"primaryLabelValue\":\"959803\"}},{\"attributeHeader\":{\"labelValue\":\"959805\",\"primaryLabelValue\":\"959805\"}},{\"attributeHeader\":{\"labelValue\":\"959807\",\"primaryLabelValue\":\"959807\"}},{\"attributeHeader\":{\"labelValue\":\"959809\",\"primaryLabelValue\":\"959809\"}},{\"attributeHeader\":{\"labelValue\":\"959811\",\"primaryLabelValue\":\"959811\"}},{\"attributeHeader\":{\"labelValue\":\"959813\",\"primaryLabelValue\":\"959813\"}},{\"attributeHeader\":{\"labelValue\":\"959815\",\"primaryLabelValue\":\"959815\"}},{\"attributeHeader\":{\"labelValue\":\"959817\",\"primaryLabelValue\":\"959817\"}},{\"attributeHeader\":{\"labelValue\":\"959819\",\"primaryLabelValue\":\"959819\"}},{\"attributeHeader\":{\"labelValue\":\"959821\",\"primaryLabelValue\":\"959821\"}},{\"attributeHeader\":{\"labelValue\":\"959823\",\"primaryLabelValue\":\"959823\"}},{\"attributeHeader\":{\"labelValue\":\"959825\",\"primaryLabelValue\":\"959825\"}},{\"attributeHeader\":{\"labelValue\":\"959827\",\"primaryLabelValue\":\"959827\"}},{\"attributeHeader\":{\"labelValue\":\"959829\",\"primaryLabelValue\":\"959829\"}},{\"attributeHeader\":{\"labelValue\":\"959831\",\"primaryLabelValue\":\"959831\"}},{\"attributeHeader\":{\"labelValue\":\"959833\",\"primaryLabelValue\":\"959833\"}},{\"attributeHeader\":{\"labelValue\":\"959837\",\"primaryLabelValue\":\"959837\"}},{\"attributeHeader\":{\"labelValue\":\"959839\",\"primaryLabelValue\":\"959839\"}},{\"attributeHeader\":{\"labelValue\":\"959841\",\"primaryLabelValue\":\"959841\"}},{\"attributeHeader\":{\"labelValue\":\"959843\",\"primaryLabelValue\":\"959843\"}},{\"attributeHeader\":{\"labelValue\":\"959845\",\"primaryLabelValue\":\"959845\"}},{\"attributeHeader\":{\"labelValue\":\"959847\",\"primaryLabelValue\":\"959847\"}},{\"attributeHeader\":{\"labelValue\":\"959849\",\"primaryLabelValue\":\"959849\"}},{\"attributeHeader\":{\"labelValue\":\"959851\",\"primaryLabelValue\":\"959851\"}},{\"attributeHeader\":{\"labelValue\":\"959853\",\"primaryLabelValue\":\"959853\"}},{\"attributeHeader\":{\"labelValue\":\"959855\",\"primaryLabelValue\":\"959855\"}},{\"attributeHeader\":{\"labelValue\":\"959857\",\"primaryLabelValue\":\"959857\"}},{\"attributeHeader\":{\"labelValue\":\"959859\",\"primaryLabelValue\":\"959859\"}},{\"attributeHeader\":{\"labelValue\":\"959861\",\"primaryLabelValue\":\"959861\"}},{\"attributeHeader\":{\"labelValue\":\"959863\",\"primaryLabelValue\":\"959863\"}},{\"attributeHeader\":{\"labelValue\":\"959865\",\"primaryLabelValue\":\"959865\"}},{\"attributeHeader\":{\"labelValue\":\"959867\",\"primaryLabelValue\":\"959867\"}},{\"attributeHeader\":{\"labelValue\":\"959869\",\"primaryLabelValue\":\"959869\"}},{\"attributeHeader\":{\"labelValue\":\"959871\",\"primaryLabelValue\":\"959871\"}},{\"attributeHeader\":{\"labelValue\":\"959873\",\"primaryLabelValue\":\"959873\"}},{\"attributeHeader\":{\"labelValue\":\"959875\",\"primaryLabelValue\":\"959875\"}},{\"attributeHeader\":{\"labelValue\":\"959877\",\"primaryLabelValue\":\"959877\"}},{\"attributeHeader\":{\"labelValue\":\"959879\",\"primaryLabelValue\":\"959879\"}},{\"attributeHeader\":{\"labelValue\":\"959881\",\"primaryLabelValue\":\"959881\"}},{\"attributeHeader\":{\"labelValue\":\"959883\",\"primaryLabelValue\":\"959883\"}},{\"attributeHeader\":{\"labelValue\":\"959885\",\"primaryLabelValue\":\"959885\"}},{\"attributeHeader\":{\"labelValue\":\"959887\",\"primaryLabelValue\":\"959887\"}},{\"attributeHeader\":{\"labelValue\":\"959889\",\"primaryLabelValue\":\"959889\"}},{\"attributeHeader\":{\"labelValue\":\"959891\",\"primaryLabelValue\":\"959891\"}},{\"attributeHeader\":{\"labelValue\":\"959893\",\"primaryLabelValue\":\"959893\"}},{\"attributeHeader\":{\"labelValue\":\"959895\",\"primaryLabelValue\":\"959895\"}},{\"attributeHeader\":{\"labelValue\":\"959897\",\"primaryLabelValue\":\"959897\"}},{\"attributeHeader\":{\"labelValue\":\"959899\",\"primaryLabelValue\":\"959899\"}},{\"attributeHeader\":{\"labelValue\":\"959901\",\"primaryLabelValue\":\"959901\"}},{\"attributeHeader\":{\"labelValue\":\"959903\",\"primaryLabelValue\":\"959903\"}},{\"attributeHeader\":{\"labelValue\":\"959905\",\"primaryLabelValue\":\"959905\"}},{\"attributeHeader\":{\"labelValue\":\"959907\",\"primaryLabelValue\":\"959907\"}},{\"attributeHeader\":{\"labelValue\":\"959909\",\"primaryLabelValue\":\"959909\"}},{\"attributeHeader\":{\"labelValue\":\"959911\",\"primaryLabelValue\":\"959911\"}},{\"attributeHeader\":{\"labelValue\":\"959913\",\"primaryLabelValue\":\"959913\"}},{\"attributeHeader\":{\"labelValue\":\"959915\",\"primaryLabelValue\":\"959915\"}},{\"attributeHeader\":{\"labelValue\":\"959917\",\"primaryLabelValue\":\"959917\"}},{\"attributeHeader\":{\"labelValue\":\"959919\",\"primaryLabelValue\":\"959919\"}},{\"attributeHeader\":{\"labelValue\":\"959921\",\"primaryLabelValue\":\"959921\"}},{\"attributeHeader\":{\"labelValue\":\"959923\",\"primaryLabelValue\":\"959923\"}},{\"attributeHeader\":{\"labelValue\":\"959925\",\"primaryLabelValue\":\"959925\"}},{\"attributeHeader\":{\"labelValue\":\"959929\",\"primaryLabelValue\":\"959929\"}},{\"attributeHeader\":{\"labelValue\":\"959931\",\"primaryLabelValue\":\"959931\"}},{\"attributeHeader\":{\"labelValue\":\"959933\",\"primaryLabelValue\":\"959933\"}},{\"attributeHeader\":{\"labelValue\":\"959935\",\"primaryLabelValue\":\"959935\"}},{\"attributeHeader\":{\"labelValue\":\"959937\",\"primaryLabelValue\":\"959937\"}},{\"attributeHeader\":{\"labelValue\":\"959939\",\"primaryLabelValue\":\"959939\"}},{\"attributeHeader\":{\"labelValue\":\"959941\",\"primaryLabelValue\":\"959941\"}},{\"attributeHeader\":{\"labelValue\":\"959943\",\"primaryLabelValue\":\"959943\"}},{\"attributeHeader\":{\"labelValue\":\"959945\",\"primaryLabelValue\":\"959945\"}},{\"attributeHeader\":{\"labelValue\":\"959947\",\"primaryLabelValue\":\"959947\"}},{\"attributeHeader\":{\"labelValue\":\"959949\",\"primaryLabelValue\":\"959949\"}},{\"attributeHeader\":{\"labelValue\":\"959951\",\"primaryLabelValue\":\"959951\"}},{\"attributeHeader\":{\"labelValue\":\"959953\",\"primaryLabelValue\":\"959953\"}},{\"attributeHeader\":{\"labelValue\":\"959955\",\"primaryLabelValue\":\"959955\"}},{\"attributeHeader\":{\"labelValue\":\"959957\",\"primaryLabelValue\":\"959957\"}},{\"attributeHeader\":{\"labelValue\":\"959959\",\"primaryLabelValue\":\"959959\"}},{\"attributeHeader\":{\"labelValue\":\"959961\",\"primaryLabelValue\":\"959961\"}},{\"attributeHeader\":{\"labelValue\":\"959963\",\"primaryLabelValue\":\"959963\"}},{\"attributeHeader\":{\"labelValue\":\"959965\",\"primaryLabelValue\":\"959965\"}},{\"attributeHeader\":{\"labelValue\":\"959967\",\"primaryLabelValue\":\"959967\"}},{\"attributeHeader\":{\"labelValue\":\"959969\",\"primaryLabelValue\":\"959969\"}},{\"attributeHeader\":{\"labelValue\":\"959973\",\"primaryLabelValue\":\"959973\"}},{\"attributeHeader\":{\"labelValue\":\"959975\",\"primaryLabelValue\":\"959975\"}},{\"attributeHeader\":{\"labelValue\":\"959977\",\"primaryLabelValue\":\"959977\"}},{\"attributeHeader\":{\"labelValue\":\"959979\",\"primaryLabelValue\":\"959979\"}},{\"attributeHeader\":{\"labelValue\":\"959981\",\"primaryLabelValue\":\"959981\"}},{\"attributeHeader\":{\"labelValue\":\"959983\",\"primaryLabelValue\":\"959983\"}},{\"attributeHeader\":{\"labelValue\":\"959985\",\"primaryLabelValue\":\"959985\"}},{\"attributeHeader\":{\"labelValue\":\"959987\",\"primaryLabelValue\":\"959987\"}},{\"attributeHeader\":{\"labelValue\":\"959989\",\"primaryLabelValue\":\"959989\"}},{\"attributeHeader\":{\"labelValue\":\"959991\",\"primaryLabelValue\":\"959991\"}},{\"attributeHeader\":{\"labelValue\":\"959993\",\"primaryLabelValue\":\"959993\"}},{\"attributeHeader\":{\"labelValue\":\"959995\",\"primaryLabelValue\":\"959995\"}},{\"attributeHeader\":{\"labelValue\":\"959997\",\"primaryLabelValue\":\"959997\"}},{\"attributeHeader\":{\"labelValue\":\"959999\",\"primaryLabelValue\":\"959999\"}},{\"attributeHeader\":{\"labelValue\":\"960001\",\"primaryLabelValue\":\"960001\"}},{\"attributeHeader\":{\"labelValue\":\"960003\",\"primaryLabelValue\":\"960003\"}},{\"attributeHeader\":{\"labelValue\":\"960005\",\"primaryLabelValue\":\"960005\"}},{\"attributeHeader\":{\"labelValue\":\"960007\",\"primaryLabelValue\":\"960007\"}},{\"attributeHeader\":{\"labelValue\":\"960009\",\"primaryLabelValue\":\"960009\"}},{\"attributeHeader\":{\"labelValue\":\"960011\",\"primaryLabelValue\":\"960011\"}},{\"attributeHeader\":{\"labelValue\":\"960013\",\"primaryLabelValue\":\"960013\"}},{\"attributeHeader\":{\"labelValue\":\"960015\",\"primaryLabelValue\":\"960015\"}},{\"attributeHeader\":{\"labelValue\":\"960017\",\"primaryLabelValue\":\"960017\"}},{\"attributeHeader\":{\"labelValue\":\"960019\",\"primaryLabelValue\":\"960019\"}},{\"attributeHeader\":{\"labelValue\":\"960021\",\"primaryLabelValue\":\"960021\"}},{\"attributeHeader\":{\"labelValue\":\"960023\",\"primaryLabelValue\":\"960023\"}},{\"attributeHeader\":{\"labelValue\":\"960025\",\"primaryLabelValue\":\"960025\"}},{\"attributeHeader\":{\"labelValue\":\"960027\",\"primaryLabelValue\":\"960027\"}},{\"attributeHeader\":{\"labelValue\":\"960029\",\"primaryLabelValue\":\"960029\"}},{\"attributeHeader\":{\"labelValue\":\"960031\",\"primaryLabelValue\":\"960031\"}},{\"attributeHeader\":{\"labelValue\":\"960033\",\"primaryLabelValue\":\"960033\"}},{\"attributeHeader\":{\"labelValue\":\"960035\",\"primaryLabelValue\":\"960035\"}},{\"attributeHeader\":{\"labelValue\":\"960037\",\"primaryLabelValue\":\"960037\"}},{\"attributeHeader\":{\"labelValue\":\"960039\",\"primaryLabelValue\":\"960039\"}},{\"attributeHeader\":{\"labelValue\":\"960041\",\"primaryLabelValue\":\"960041\"}},{\"attributeHeader\":{\"labelValue\":\"960043\",\"primaryLabelValue\":\"960043\"}},{\"attributeHeader\":{\"labelValue\":\"960045\",\"primaryLabelValue\":\"960045\"}},{\"attributeHeader\":{\"labelValue\":\"960047\",\"primaryLabelValue\":\"960047\"}},{\"attributeHeader\":{\"labelValue\":\"960049\",\"primaryLabelValue\":\"960049\"}},{\"attributeHeader\":{\"labelValue\":\"960051\",\"primaryLabelValue\":\"960051\"}},{\"attributeHeader\":{\"labelValue\":\"960053\",\"primaryLabelValue\":\"960053\"}},{\"attributeHeader\":{\"labelValue\":\"960055\",\"primaryLabelValue\":\"960055\"}},{\"attributeHeader\":{\"labelValue\":\"960057\",\"primaryLabelValue\":\"960057\"}},{\"attributeHeader\":{\"labelValue\":\"960059\",\"primaryLabelValue\":\"960059\"}},{\"attributeHeader\":{\"labelValue\":\"960061\",\"primaryLabelValue\":\"960061\"}},{\"attributeHeader\":{\"labelValue\":\"960063\",\"primaryLabelValue\":\"960063\"}},{\"attributeHeader\":{\"labelValue\":\"960065\",\"primaryLabelValue\":\"960065\"}},{\"attributeHeader\":{\"labelValue\":\"960067\",\"primaryLabelValue\":\"960067\"}},{\"attributeHeader\":{\"labelValue\":\"960069\",\"primaryLabelValue\":\"960069\"}},{\"attributeHeader\":{\"labelValue\":\"960071\",\"primaryLabelValue\":\"960071\"}},{\"attributeHeader\":{\"labelValue\":\"960073\",\"primaryLabelValue\":\"960073\"}},{\"attributeHeader\":{\"labelValue\":\"960075\",\"primaryLabelValue\":\"960075\"}},{\"attributeHeader\":{\"labelValue\":\"960077\",\"primaryLabelValue\":\"960077\"}},{\"attributeHeader\":{\"labelValue\":\"960079\",\"primaryLabelValue\":\"960079\"}},{\"attributeHeader\":{\"labelValue\":\"960081\",\"primaryLabelValue\":\"960081\"}},{\"attributeHeader\":{\"labelValue\":\"960083\",\"primaryLabelValue\":\"960083\"}},{\"attributeHeader\":{\"labelValue\":\"960085\",\"primaryLabelValue\":\"960085\"}},{\"attributeHeader\":{\"labelValue\":\"960087\",\"primaryLabelValue\":\"960087\"}},{\"attributeHeader\":{\"labelValue\":\"960089\",\"primaryLabelValue\":\"960089\"}},{\"attributeHeader\":{\"labelValue\":\"960091\",\"primaryLabelValue\":\"960091\"}},{\"attributeHeader\":{\"labelValue\":\"960093\",\"primaryLabelValue\":\"960093\"}},{\"attributeHeader\":{\"labelValue\":\"960095\",\"primaryLabelValue\":\"960095\"}},{\"attributeHeader\":{\"labelValue\":\"960097\",\"primaryLabelValue\":\"960097\"}},{\"attributeHeader\":{\"labelValue\":\"960099\",\"primaryLabelValue\":\"960099\"}},{\"attributeHeader\":{\"labelValue\":\"960101\",\"primaryLabelValue\":\"960101\"}},{\"attributeHeader\":{\"labelValue\":\"960103\",\"primaryLabelValue\":\"960103\"}},{\"attributeHeader\":{\"labelValue\":\"960105\",\"primaryLabelValue\":\"960105\"}},{\"attributeHeader\":{\"labelValue\":\"960107\",\"primaryLabelValue\":\"960107\"}},{\"attributeHeader\":{\"labelValue\":\"960109\",\"primaryLabelValue\":\"960109\"}},{\"attributeHeader\":{\"labelValue\":\"960111\",\"primaryLabelValue\":\"960111\"}},{\"attributeHeader\":{\"labelValue\":\"960113\",\"primaryLabelValue\":\"960113\"}},{\"attributeHeader\":{\"labelValue\":\"960115\",\"primaryLabelValue\":\"960115\"}},{\"attributeHeader\":{\"labelValue\":\"960117\",\"primaryLabelValue\":\"960117\"}},{\"attributeHeader\":{\"labelValue\":\"960119\",\"primaryLabelValue\":\"960119\"}},{\"attributeHeader\":{\"labelValue\":\"960121\",\"primaryLabelValue\":\"960121\"}},{\"attributeHeader\":{\"labelValue\":\"960123\",\"primaryLabelValue\":\"960123\"}},{\"attributeHeader\":{\"labelValue\":\"960125\",\"primaryLabelValue\":\"960125\"}},{\"attributeHeader\":{\"labelValue\":\"960127\",\"primaryLabelValue\":\"960127\"}},{\"attributeHeader\":{\"labelValue\":\"960129\",\"primaryLabelValue\":\"960129\"}},{\"attributeHeader\":{\"labelValue\":\"960131\",\"primaryLabelValue\":\"960131\"}},{\"attributeHeader\":{\"labelValue\":\"960133\",\"primaryLabelValue\":\"960133\"}},{\"attributeHeader\":{\"labelValue\":\"960135\",\"primaryLabelValue\":\"960135\"}},{\"attributeHeader\":{\"labelValue\":\"960137\",\"primaryLabelValue\":\"960137\"}},{\"attributeHeader\":{\"labelValue\":\"960139\",\"primaryLabelValue\":\"960139\"}},{\"attributeHeader\":{\"labelValue\":\"960141\",\"primaryLabelValue\":\"960141\"}},{\"attributeHeader\":{\"labelValue\":\"960143\",\"primaryLabelValue\":\"960143\"}},{\"attributeHeader\":{\"labelValue\":\"960145\",\"primaryLabelValue\":\"960145\"}},{\"attributeHeader\":{\"labelValue\":\"960147\",\"primaryLabelValue\":\"960147\"}},{\"attributeHeader\":{\"labelValue\":\"960149\",\"primaryLabelValue\":\"960149\"}},{\"attributeHeader\":{\"labelValue\":\"960151\",\"primaryLabelValue\":\"960151\"}},{\"attributeHeader\":{\"labelValue\":\"960153\",\"primaryLabelValue\":\"960153\"}},{\"attributeHeader\":{\"labelValue\":\"960155\",\"primaryLabelValue\":\"960155\"}},{\"attributeHeader\":{\"labelValue\":\"960157\",\"primaryLabelValue\":\"960157\"}},{\"attributeHeader\":{\"labelValue\":\"960159\",\"primaryLabelValue\":\"960159\"}},{\"attributeHeader\":{\"labelValue\":\"960161\",\"primaryLabelValue\":\"960161\"}},{\"attributeHeader\":{\"labelValue\":\"960163\",\"primaryLabelValue\":\"960163\"}},{\"attributeHeader\":{\"labelValue\":\"960165\",\"primaryLabelValue\":\"960165\"}},{\"attributeHeader\":{\"labelValue\":\"960167\",\"primaryLabelValue\":\"960167\"}},{\"attributeHeader\":{\"labelValue\":\"960169\",\"primaryLabelValue\":\"960169\"}},{\"attributeHeader\":{\"labelValue\":\"960171\",\"primaryLabelValue\":\"960171\"}},{\"attributeHeader\":{\"labelValue\":\"960173\",\"primaryLabelValue\":\"960173\"}},{\"attributeHeader\":{\"labelValue\":\"960175\",\"primaryLabelValue\":\"960175\"}},{\"attributeHeader\":{\"labelValue\":\"960177\",\"primaryLabelValue\":\"960177\"}},{\"attributeHeader\":{\"labelValue\":\"960179\",\"primaryLabelValue\":\"960179\"}},{\"attributeHeader\":{\"labelValue\":\"960181\",\"primaryLabelValue\":\"960181\"}},{\"attributeHeader\":{\"labelValue\":\"960183\",\"primaryLabelValue\":\"960183\"}},{\"attributeHeader\":{\"labelValue\":\"960185\",\"primaryLabelValue\":\"960185\"}},{\"attributeHeader\":{\"labelValue\":\"960187\",\"primaryLabelValue\":\"960187\"}},{\"attributeHeader\":{\"labelValue\":\"960189\",\"primaryLabelValue\":\"960189\"}},{\"attributeHeader\":{\"labelValue\":\"960191\",\"primaryLabelValue\":\"960191\"}},{\"attributeHeader\":{\"labelValue\":\"960193\",\"primaryLabelValue\":\"960193\"}},{\"attributeHeader\":{\"labelValue\":\"960195\",\"primaryLabelValue\":\"960195\"}},{\"attributeHeader\":{\"labelValue\":\"960197\",\"primaryLabelValue\":\"960197\"}},{\"attributeHeader\":{\"labelValue\":\"960199\",\"primaryLabelValue\":\"960199\"}},{\"attributeHeader\":{\"labelValue\":\"960201\",\"primaryLabelValue\":\"960201\"}},{\"attributeHeader\":{\"labelValue\":\"960203\",\"primaryLabelValue\":\"960203\"}},{\"attributeHeader\":{\"labelValue\":\"960205\",\"primaryLabelValue\":\"960205\"}},{\"attributeHeader\":{\"labelValue\":\"960207\",\"primaryLabelValue\":\"960207\"}},{\"attributeHeader\":{\"labelValue\":\"960209\",\"primaryLabelValue\":\"960209\"}},{\"attributeHeader\":{\"labelValue\":\"960211\",\"primaryLabelValue\":\"960211\"}},{\"attributeHeader\":{\"labelValue\":\"960213\",\"primaryLabelValue\":\"960213\"}},{\"attributeHeader\":{\"labelValue\":\"960215\",\"primaryLabelValue\":\"960215\"}},{\"attributeHeader\":{\"labelValue\":\"960217\",\"primaryLabelValue\":\"960217\"}},{\"attributeHeader\":{\"labelValue\":\"960219\",\"primaryLabelValue\":\"960219\"}},{\"attributeHeader\":{\"labelValue\":\"960221\",\"primaryLabelValue\":\"960221\"}},{\"attributeHeader\":{\"labelValue\":\"960223\",\"primaryLabelValue\":\"960223\"}},{\"attributeHeader\":{\"labelValue\":\"960225\",\"primaryLabelValue\":\"960225\"}},{\"attributeHeader\":{\"labelValue\":\"960227\",\"primaryLabelValue\":\"960227\"}},{\"attributeHeader\":{\"labelValue\":\"960229\",\"primaryLabelValue\":\"960229\"}},{\"attributeHeader\":{\"labelValue\":\"960231\",\"primaryLabelValue\":\"960231\"}},{\"attributeHeader\":{\"labelValue\":\"960233\",\"primaryLabelValue\":\"960233\"}},{\"attributeHeader\":{\"labelValue\":\"960235\",\"primaryLabelValue\":\"960235\"}},{\"attributeHeader\":{\"labelValue\":\"960237\",\"primaryLabelValue\":\"960237\"}},{\"attributeHeader\":{\"labelValue\":\"960239\",\"primaryLabelValue\":\"960239\"}},{\"attributeHeader\":{\"labelValue\":\"960241\",\"primaryLabelValue\":\"960241\"}},{\"attributeHeader\":{\"labelValue\":\"960243\",\"primaryLabelValue\":\"960243\"}},{\"attributeHeader\":{\"labelValue\":\"960245\",\"primaryLabelValue\":\"960245\"}},{\"attributeHeader\":{\"labelValue\":\"960247\",\"primaryLabelValue\":\"960247\"}},{\"attributeHeader\":{\"labelValue\":\"960249\",\"primaryLabelValue\":\"960249\"}},{\"attributeHeader\":{\"labelValue\":\"960251\",\"primaryLabelValue\":\"960251\"}},{\"attributeHeader\":{\"labelValue\":\"960253\",\"primaryLabelValue\":\"960253\"}},{\"attributeHeader\":{\"labelValue\":\"960255\",\"primaryLabelValue\":\"960255\"}},{\"attributeHeader\":{\"labelValue\":\"960257\",\"primaryLabelValue\":\"960257\"}},{\"attributeHeader\":{\"labelValue\":\"960259\",\"primaryLabelValue\":\"960259\"}},{\"attributeHeader\":{\"labelValue\":\"960261\",\"primaryLabelValue\":\"960261\"}},{\"attributeHeader\":{\"labelValue\":\"960263\",\"primaryLabelValue\":\"960263\"}},{\"attributeHeader\":{\"labelValue\":\"960265\",\"primaryLabelValue\":\"960265\"}},{\"attributeHeader\":{\"labelValue\":\"960267\",\"primaryLabelValue\":\"960267\"}},{\"attributeHeader\":{\"labelValue\":\"960269\",\"primaryLabelValue\":\"960269\"}},{\"attributeHeader\":{\"labelValue\":\"960271\",\"primaryLabelValue\":\"960271\"}},{\"attributeHeader\":{\"labelValue\":\"960273\",\"primaryLabelValue\":\"960273\"}},{\"attributeHeader\":{\"labelValue\":\"960275\",\"primaryLabelValue\":\"960275\"}},{\"attributeHeader\":{\"labelValue\":\"960277\",\"primaryLabelValue\":\"960277\"}},{\"attributeHeader\":{\"labelValue\":\"960279\",\"primaryLabelValue\":\"960279\"}},{\"attributeHeader\":{\"labelValue\":\"960283\",\"primaryLabelValue\":\"960283\"}},{\"attributeHeader\":{\"labelValue\":\"960285\",\"primaryLabelValue\":\"960285\"}},{\"attributeHeader\":{\"labelValue\":\"960287\",\"primaryLabelValue\":\"960287\"}},{\"attributeHeader\":{\"labelValue\":\"960289\",\"primaryLabelValue\":\"960289\"}},{\"attributeHeader\":{\"labelValue\":\"960291\",\"primaryLabelValue\":\"960291\"}},{\"attributeHeader\":{\"labelValue\":\"960293\",\"primaryLabelValue\":\"960293\"}},{\"attributeHeader\":{\"labelValue\":\"960295\",\"primaryLabelValue\":\"960295\"}},{\"attributeHeader\":{\"labelValue\":\"960297\",\"primaryLabelValue\":\"960297\"}},{\"attributeHeader\":{\"labelValue\":\"960299\",\"primaryLabelValue\":\"960299\"}},{\"attributeHeader\":{\"labelValue\":\"960301\",\"primaryLabelValue\":\"960301\"}},{\"attributeHeader\":{\"labelValue\":\"960303\",\"primaryLabelValue\":\"960303\"}},{\"attributeHeader\":{\"labelValue\":\"960305\",\"primaryLabelValue\":\"960305\"}},{\"attributeHeader\":{\"labelValue\":\"960307\",\"primaryLabelValue\":\"960307\"}},{\"attributeHeader\":{\"labelValue\":\"960309\",\"primaryLabelValue\":\"960309\"}},{\"attributeHeader\":{\"labelValue\":\"960311\",\"primaryLabelValue\":\"960311\"}},{\"attributeHeader\":{\"labelValue\":\"960313\",\"primaryLabelValue\":\"960313\"}},{\"attributeHeader\":{\"labelValue\":\"960315\",\"primaryLabelValue\":\"960315\"}},{\"attributeHeader\":{\"labelValue\":\"960317\",\"primaryLabelValue\":\"960317\"}},{\"attributeHeader\":{\"labelValue\":\"960319\",\"primaryLabelValue\":\"960319\"}},{\"attributeHeader\":{\"labelValue\":\"960321\",\"primaryLabelValue\":\"960321\"}},{\"attributeHeader\":{\"labelValue\":\"960323\",\"primaryLabelValue\":\"960323\"}},{\"attributeHeader\":{\"labelValue\":\"960325\",\"primaryLabelValue\":\"960325\"}},{\"attributeHeader\":{\"labelValue\":\"960327\",\"primaryLabelValue\":\"960327\"}},{\"attributeHeader\":{\"labelValue\":\"960329\",\"primaryLabelValue\":\"960329\"}},{\"attributeHeader\":{\"labelValue\":\"960331\",\"primaryLabelValue\":\"960331\"}},{\"attributeHeader\":{\"labelValue\":\"960333\",\"primaryLabelValue\":\"960333\"}},{\"attributeHeader\":{\"labelValue\":\"960335\",\"primaryLabelValue\":\"960335\"}},{\"attributeHeader\":{\"labelValue\":\"960337\",\"primaryLabelValue\":\"960337\"}},{\"attributeHeader\":{\"labelValue\":\"960339\",\"primaryLabelValue\":\"960339\"}},{\"attributeHeader\":{\"labelValue\":\"960341\",\"primaryLabelValue\":\"960341\"}},{\"attributeHeader\":{\"labelValue\":\"960343\",\"primaryLabelValue\":\"960343\"}},{\"attributeHeader\":{\"labelValue\":\"960345\",\"primaryLabelValue\":\"960345\"}},{\"attributeHeader\":{\"labelValue\":\"960347\",\"primaryLabelValue\":\"960347\"}},{\"attributeHeader\":{\"labelValue\":\"960349\",\"primaryLabelValue\":\"960349\"}},{\"attributeHeader\":{\"labelValue\":\"960351\",\"primaryLabelValue\":\"960351\"}},{\"attributeHeader\":{\"labelValue\":\"960353\",\"primaryLabelValue\":\"960353\"}},{\"attributeHeader\":{\"labelValue\":\"960355\",\"primaryLabelValue\":\"960355\"}},{\"attributeHeader\":{\"labelValue\":\"960357\",\"primaryLabelValue\":\"960357\"}},{\"attributeHeader\":{\"labelValue\":\"960359\",\"primaryLabelValue\":\"960359\"}},{\"attributeHeader\":{\"labelValue\":\"960361\",\"primaryLabelValue\":\"960361\"}},{\"attributeHeader\":{\"labelValue\":\"960363\",\"primaryLabelValue\":\"960363\"}},{\"attributeHeader\":{\"labelValue\":\"960365\",\"primaryLabelValue\":\"960365\"}},{\"attributeHeader\":{\"labelValue\":\"960367\",\"primaryLabelValue\":\"960367\"}},{\"attributeHeader\":{\"labelValue\":\"960369\",\"primaryLabelValue\":\"960369\"}},{\"attributeHeader\":{\"labelValue\":\"960371\",\"primaryLabelValue\":\"960371\"}},{\"attributeHeader\":{\"labelValue\":\"960373\",\"primaryLabelValue\":\"960373\"}},{\"attributeHeader\":{\"labelValue\":\"960375\",\"primaryLabelValue\":\"960375\"}},{\"attributeHeader\":{\"labelValue\":\"960377\",\"primaryLabelValue\":\"960377\"}},{\"attributeHeader\":{\"labelValue\":\"960379\",\"primaryLabelValue\":\"960379\"}},{\"attributeHeader\":{\"labelValue\":\"960381\",\"primaryLabelValue\":\"960381\"}},{\"attributeHeader\":{\"labelValue\":\"960383\",\"primaryLabelValue\":\"960383\"}},{\"attributeHeader\":{\"labelValue\":\"960385\",\"primaryLabelValue\":\"960385\"}},{\"attributeHeader\":{\"labelValue\":\"960387\",\"primaryLabelValue\":\"960387\"}},{\"attributeHeader\":{\"labelValue\":\"960389\",\"primaryLabelValue\":\"960389\"}},{\"attributeHeader\":{\"labelValue\":\"960391\",\"primaryLabelValue\":\"960391\"}},{\"attributeHeader\":{\"labelValue\":\"960393\",\"primaryLabelValue\":\"960393\"}},{\"attributeHeader\":{\"labelValue\":\"960395\",\"primaryLabelValue\":\"960395\"}},{\"attributeHeader\":{\"labelValue\":\"960397\",\"primaryLabelValue\":\"960397\"}},{\"attributeHeader\":{\"labelValue\":\"960399\",\"primaryLabelValue\":\"960399\"}},{\"attributeHeader\":{\"labelValue\":\"960401\",\"primaryLabelValue\":\"960401\"}},{\"attributeHeader\":{\"labelValue\":\"960403\",\"primaryLabelValue\":\"960403\"}},{\"attributeHeader\":{\"labelValue\":\"960405\",\"primaryLabelValue\":\"960405\"}},{\"attributeHeader\":{\"labelValue\":\"960407\",\"primaryLabelValue\":\"960407\"}},{\"attributeHeader\":{\"labelValue\":\"960409\",\"primaryLabelValue\":\"960409\"}},{\"attributeHeader\":{\"labelValue\":\"960411\",\"primaryLabelValue\":\"960411\"}},{\"attributeHeader\":{\"labelValue\":\"960413\",\"primaryLabelValue\":\"960413\"}},{\"attributeHeader\":{\"labelValue\":\"960415\",\"primaryLabelValue\":\"960415\"}},{\"attributeHeader\":{\"labelValue\":\"960417\",\"primaryLabelValue\":\"960417\"}},{\"attributeHeader\":{\"labelValue\":\"960419\",\"primaryLabelValue\":\"960419\"}},{\"attributeHeader\":{\"labelValue\":\"960421\",\"primaryLabelValue\":\"960421\"}},{\"attributeHeader\":{\"labelValue\":\"960423\",\"primaryLabelValue\":\"960423\"}},{\"attributeHeader\":{\"labelValue\":\"960425\",\"primaryLabelValue\":\"960425\"}},{\"attributeHeader\":{\"labelValue\":\"960427\",\"primaryLabelValue\":\"960427\"}},{\"attributeHeader\":{\"labelValue\":\"960429\",\"primaryLabelValue\":\"960429\"}},{\"attributeHeader\":{\"labelValue\":\"960431\",\"primaryLabelValue\":\"960431\"}},{\"attributeHeader\":{\"labelValue\":\"960433\",\"primaryLabelValue\":\"960433\"}},{\"attributeHeader\":{\"labelValue\":\"960435\",\"primaryLabelValue\":\"960435\"}},{\"attributeHeader\":{\"labelValue\":\"960437\",\"primaryLabelValue\":\"960437\"}},{\"attributeHeader\":{\"labelValue\":\"960439\",\"primaryLabelValue\":\"960439\"}},{\"attributeHeader\":{\"labelValue\":\"960441\",\"primaryLabelValue\":\"960441\"}},{\"attributeHeader\":{\"labelValue\":\"960443\",\"primaryLabelValue\":\"960443\"}},{\"attributeHeader\":{\"labelValue\":\"960445\",\"primaryLabelValue\":\"960445\"}},{\"attributeHeader\":{\"labelValue\":\"960447\",\"primaryLabelValue\":\"960447\"}},{\"attributeHeader\":{\"labelValue\":\"960449\",\"primaryLabelValue\":\"960449\"}},{\"attributeHeader\":{\"labelValue\":\"960451\",\"primaryLabelValue\":\"960451\"}},{\"attributeHeader\":{\"labelValue\":\"960453\",\"primaryLabelValue\":\"960453\"}},{\"attributeHeader\":{\"labelValue\":\"960455\",\"primaryLabelValue\":\"960455\"}},{\"attributeHeader\":{\"labelValue\":\"960457\",\"primaryLabelValue\":\"960457\"}},{\"attributeHeader\":{\"labelValue\":\"960459\",\"primaryLabelValue\":\"960459\"}},{\"attributeHeader\":{\"labelValue\":\"960461\",\"primaryLabelValue\":\"960461\"}},{\"attributeHeader\":{\"labelValue\":\"960463\",\"primaryLabelValue\":\"960463\"}},{\"attributeHeader\":{\"labelValue\":\"960465\",\"primaryLabelValue\":\"960465\"}},{\"attributeHeader\":{\"labelValue\":\"960467\",\"primaryLabelValue\":\"960467\"}},{\"attributeHeader\":{\"labelValue\":\"960469\",\"primaryLabelValue\":\"960469\"}},{\"attributeHeader\":{\"labelValue\":\"960471\",\"primaryLabelValue\":\"960471\"}},{\"attributeHeader\":{\"labelValue\":\"960473\",\"primaryLabelValue\":\"960473\"}},{\"attributeHeader\":{\"labelValue\":\"960475\",\"primaryLabelValue\":\"960475\"}},{\"attributeHeader\":{\"labelValue\":\"960477\",\"primaryLabelValue\":\"960477\"}},{\"attributeHeader\":{\"labelValue\":\"960479\",\"primaryLabelValue\":\"960479\"}},{\"attributeHeader\":{\"labelValue\":\"960481\",\"primaryLabelValue\":\"960481\"}},{\"attributeHeader\":{\"labelValue\":\"960483\",\"primaryLabelValue\":\"960483\"}},{\"attributeHeader\":{\"labelValue\":\"960485\",\"primaryLabelValue\":\"960485\"}},{\"attributeHeader\":{\"labelValue\":\"960487\",\"primaryLabelValue\":\"960487\"}},{\"attributeHeader\":{\"labelValue\":\"960489\",\"primaryLabelValue\":\"960489\"}},{\"attributeHeader\":{\"labelValue\":\"960491\",\"primaryLabelValue\":\"960491\"}},{\"attributeHeader\":{\"labelValue\":\"960493\",\"primaryLabelValue\":\"960493\"}},{\"attributeHeader\":{\"labelValue\":\"960497\",\"primaryLabelValue\":\"960497\"}},{\"attributeHeader\":{\"labelValue\":\"960499\",\"primaryLabelValue\":\"960499\"}},{\"attributeHeader\":{\"labelValue\":\"960501\",\"primaryLabelValue\":\"960501\"}},{\"attributeHeader\":{\"labelValue\":\"960503\",\"primaryLabelValue\":\"960503\"}},{\"attributeHeader\":{\"labelValue\":\"960505\",\"primaryLabelValue\":\"960505\"}},{\"attributeHeader\":{\"labelValue\":\"960507\",\"primaryLabelValue\":\"960507\"}},{\"attributeHeader\":{\"labelValue\":\"960509\",\"primaryLabelValue\":\"960509\"}},{\"attributeHeader\":{\"labelValue\":\"960511\",\"primaryLabelValue\":\"960511\"}},{\"attributeHeader\":{\"labelValue\":\"960513\",\"primaryLabelValue\":\"960513\"}},{\"attributeHeader\":{\"labelValue\":\"960515\",\"primaryLabelValue\":\"960515\"}},{\"attributeHeader\":{\"labelValue\":\"960517\",\"primaryLabelValue\":\"960517\"}},{\"attributeHeader\":{\"labelValue\":\"960519\",\"primaryLabelValue\":\"960519\"}},{\"attributeHeader\":{\"labelValue\":\"960521\",\"primaryLabelValue\":\"960521\"}},{\"attributeHeader\":{\"labelValue\":\"960527\",\"primaryLabelValue\":\"960527\"}},{\"attributeHeader\":{\"labelValue\":\"960529\",\"primaryLabelValue\":\"960529\"}},{\"attributeHeader\":{\"labelValue\":\"960531\",\"primaryLabelValue\":\"960531\"}},{\"attributeHeader\":{\"labelValue\":\"960533\",\"primaryLabelValue\":\"960533\"}},{\"attributeHeader\":{\"labelValue\":\"960535\",\"primaryLabelValue\":\"960535\"}},{\"attributeHeader\":{\"labelValue\":\"960537\",\"primaryLabelValue\":\"960537\"}},{\"attributeHeader\":{\"labelValue\":\"960539\",\"primaryLabelValue\":\"960539\"}},{\"attributeHeader\":{\"labelValue\":\"960541\",\"primaryLabelValue\":\"960541\"}},{\"attributeHeader\":{\"labelValue\":\"960543\",\"primaryLabelValue\":\"960543\"}},{\"attributeHeader\":{\"labelValue\":\"960545\",\"primaryLabelValue\":\"960545\"}},{\"attributeHeader\":{\"labelValue\":\"960547\",\"primaryLabelValue\":\"960547\"}},{\"attributeHeader\":{\"labelValue\":\"960549\",\"primaryLabelValue\":\"960549\"}},{\"attributeHeader\":{\"labelValue\":\"960551\",\"primaryLabelValue\":\"960551\"}},{\"attributeHeader\":{\"labelValue\":\"960553\",\"primaryLabelValue\":\"960553\"}},{\"attributeHeader\":{\"labelValue\":\"960555\",\"primaryLabelValue\":\"960555\"}},{\"attributeHeader\":{\"labelValue\":\"960557\",\"primaryLabelValue\":\"960557\"}},{\"attributeHeader\":{\"labelValue\":\"960559\",\"primaryLabelValue\":\"960559\"}},{\"attributeHeader\":{\"labelValue\":\"960561\",\"primaryLabelValue\":\"960561\"}},{\"attributeHeader\":{\"labelValue\":\"960563\",\"primaryLabelValue\":\"960563\"}},{\"attributeHeader\":{\"labelValue\":\"960567\",\"primaryLabelValue\":\"960567\"}},{\"attributeHeader\":{\"labelValue\":\"960569\",\"primaryLabelValue\":\"960569\"}},{\"attributeHeader\":{\"labelValue\":\"960571\",\"primaryLabelValue\":\"960571\"}},{\"attributeHeader\":{\"labelValue\":\"960573\",\"primaryLabelValue\":\"960573\"}},{\"attributeHeader\":{\"labelValue\":\"960575\",\"primaryLabelValue\":\"960575\"}},{\"attributeHeader\":{\"labelValue\":\"960577\",\"primaryLabelValue\":\"960577\"}},{\"attributeHeader\":{\"labelValue\":\"960579\",\"primaryLabelValue\":\"960579\"}},{\"attributeHeader\":{\"labelValue\":\"960581\",\"primaryLabelValue\":\"960581\"}},{\"attributeHeader\":{\"labelValue\":\"960583\",\"primaryLabelValue\":\"960583\"}},{\"attributeHeader\":{\"labelValue\":\"960585\",\"primaryLabelValue\":\"960585\"}},{\"attributeHeader\":{\"labelValue\":\"960587\",\"primaryLabelValue\":\"960587\"}},{\"attributeHeader\":{\"labelValue\":\"960589\",\"primaryLabelValue\":\"960589\"}},{\"attributeHeader\":{\"labelValue\":\"960591\",\"primaryLabelValue\":\"960591\"}},{\"attributeHeader\":{\"labelValue\":\"960593\",\"primaryLabelValue\":\"960593\"}},{\"attributeHeader\":{\"labelValue\":\"960595\",\"primaryLabelValue\":\"960595\"}},{\"attributeHeader\":{\"labelValue\":\"960597\",\"primaryLabelValue\":\"960597\"}},{\"attributeHeader\":{\"labelValue\":\"960601\",\"primaryLabelValue\":\"960601\"}},{\"attributeHeader\":{\"labelValue\":\"960605\",\"primaryLabelValue\":\"960605\"}},{\"attributeHeader\":{\"labelValue\":\"960607\",\"primaryLabelValue\":\"960607\"}},{\"attributeHeader\":{\"labelValue\":\"960609\",\"primaryLabelValue\":\"960609\"}},{\"attributeHeader\":{\"labelValue\":\"960611\",\"primaryLabelValue\":\"960611\"}},{\"attributeHeader\":{\"labelValue\":\"960613\",\"primaryLabelValue\":\"960613\"}},{\"attributeHeader\":{\"labelValue\":\"960615\",\"primaryLabelValue\":\"960615\"}},{\"attributeHeader\":{\"labelValue\":\"960617\",\"primaryLabelValue\":\"960617\"}},{\"attributeHeader\":{\"labelValue\":\"960619\",\"primaryLabelValue\":\"960619\"}},{\"attributeHeader\":{\"labelValue\":\"960621\",\"primaryLabelValue\":\"960621\"}},{\"attributeHeader\":{\"labelValue\":\"960623\",\"primaryLabelValue\":\"960623\"}},{\"attributeHeader\":{\"labelValue\":\"960625\",\"primaryLabelValue\":\"960625\"}},{\"attributeHeader\":{\"labelValue\":\"960627\",\"primaryLabelValue\":\"960627\"}},{\"attributeHeader\":{\"labelValue\":\"960629\",\"primaryLabelValue\":\"960629\"}},{\"attributeHeader\":{\"labelValue\":\"960631\",\"primaryLabelValue\":\"960631\"}},{\"attributeHeader\":{\"labelValue\":\"960633\",\"primaryLabelValue\":\"960633\"}},{\"attributeHeader\":{\"labelValue\":\"960635\",\"primaryLabelValue\":\"960635\"}},{\"attributeHeader\":{\"labelValue\":\"960637\",\"primaryLabelValue\":\"960637\"}},{\"attributeHeader\":{\"labelValue\":\"960639\",\"primaryLabelValue\":\"960639\"}},{\"attributeHeader\":{\"labelValue\":\"960641\",\"primaryLabelValue\":\"960641\"}},{\"attributeHeader\":{\"labelValue\":\"960643\",\"primaryLabelValue\":\"960643\"}},{\"attributeHeader\":{\"labelValue\":\"960645\",\"primaryLabelValue\":\"960645\"}},{\"attributeHeader\":{\"labelValue\":\"960647\",\"primaryLabelValue\":\"960647\"}},{\"attributeHeader\":{\"labelValue\":\"960649\",\"primaryLabelValue\":\"960649\"}},{\"attributeHeader\":{\"labelValue\":\"960651\",\"primaryLabelValue\":\"960651\"}},{\"attributeHeader\":{\"labelValue\":\"960653\",\"primaryLabelValue\":\"960653\"}},{\"attributeHeader\":{\"labelValue\":\"960655\",\"primaryLabelValue\":\"960655\"}},{\"attributeHeader\":{\"labelValue\":\"960661\",\"primaryLabelValue\":\"960661\"}},{\"attributeHeader\":{\"labelValue\":\"960663\",\"primaryLabelValue\":\"960663\"}},{\"attributeHeader\":{\"labelValue\":\"960665\",\"primaryLabelValue\":\"960665\"}},{\"attributeHeader\":{\"labelValue\":\"960667\",\"primaryLabelValue\":\"960667\"}},{\"attributeHeader\":{\"labelValue\":\"960669\",\"primaryLabelValue\":\"960669\"}},{\"attributeHeader\":{\"labelValue\":\"960671\",\"primaryLabelValue\":\"960671\"}},{\"attributeHeader\":{\"labelValue\":\"960675\",\"primaryLabelValue\":\"960675\"}},{\"attributeHeader\":{\"labelValue\":\"960677\",\"primaryLabelValue\":\"960677\"}},{\"attributeHeader\":{\"labelValue\":\"960679\",\"primaryLabelValue\":\"960679\"}},{\"attributeHeader\":{\"labelValue\":\"960681\",\"primaryLabelValue\":\"960681\"}},{\"attributeHeader\":{\"labelValue\":\"960683\",\"primaryLabelValue\":\"960683\"}},{\"attributeHeader\":{\"labelValue\":\"960685\",\"primaryLabelValue\":\"960685\"}},{\"attributeHeader\":{\"labelValue\":\"960687\",\"primaryLabelValue\":\"960687\"}},{\"attributeHeader\":{\"labelValue\":\"960689\",\"primaryLabelValue\":\"960689\"}},{\"attributeHeader\":{\"labelValue\":\"960691\",\"primaryLabelValue\":\"960691\"}},{\"attributeHeader\":{\"labelValue\":\"960693\",\"primaryLabelValue\":\"960693\"}},{\"attributeHeader\":{\"labelValue\":\"960695\",\"primaryLabelValue\":\"960695\"}},{\"attributeHeader\":{\"labelValue\":\"960697\",\"primaryLabelValue\":\"960697\"}},{\"attributeHeader\":{\"labelValue\":\"960699\",\"primaryLabelValue\":\"960699\"}},{\"attributeHeader\":{\"labelValue\":\"960701\",\"primaryLabelValue\":\"960701\"}},{\"attributeHeader\":{\"labelValue\":\"960703\",\"primaryLabelValue\":\"960703\"}},{\"attributeHeader\":{\"labelValue\":\"960705\",\"primaryLabelValue\":\"960705\"}},{\"attributeHeader\":{\"labelValue\":\"960707\",\"primaryLabelValue\":\"960707\"}},{\"attributeHeader\":{\"labelValue\":\"960709\",\"primaryLabelValue\":\"960709\"}},{\"attributeHeader\":{\"labelValue\":\"960711\",\"primaryLabelValue\":\"960711\"}},{\"attributeHeader\":{\"labelValue\":\"960713\",\"primaryLabelValue\":\"960713\"}},{\"attributeHeader\":{\"labelValue\":\"960715\",\"primaryLabelValue\":\"960715\"}},{\"attributeHeader\":{\"labelValue\":\"960717\",\"primaryLabelValue\":\"960717\"}},{\"attributeHeader\":{\"labelValue\":\"960719\",\"primaryLabelValue\":\"960719\"}},{\"attributeHeader\":{\"labelValue\":\"960721\",\"primaryLabelValue\":\"960721\"}},{\"attributeHeader\":{\"labelValue\":\"960723\",\"primaryLabelValue\":\"960723\"}},{\"attributeHeader\":{\"labelValue\":\"960727\",\"primaryLabelValue\":\"960727\"}},{\"attributeHeader\":{\"labelValue\":\"960729\",\"primaryLabelValue\":\"960729\"}},{\"attributeHeader\":{\"labelValue\":\"960731\",\"primaryLabelValue\":\"960731\"}},{\"attributeHeader\":{\"labelValue\":\"960733\",\"primaryLabelValue\":\"960733\"}},{\"attributeHeader\":{\"labelValue\":\"960735\",\"primaryLabelValue\":\"960735\"}},{\"attributeHeader\":{\"labelValue\":\"960737\",\"primaryLabelValue\":\"960737\"}},{\"attributeHeader\":{\"labelValue\":\"960739\",\"primaryLabelValue\":\"960739\"}},{\"attributeHeader\":{\"labelValue\":\"960741\",\"primaryLabelValue\":\"960741\"}},{\"attributeHeader\":{\"labelValue\":\"960743\",\"primaryLabelValue\":\"960743\"}},{\"attributeHeader\":{\"labelValue\":\"960745\",\"primaryLabelValue\":\"960745\"}},{\"attributeHeader\":{\"labelValue\":\"960747\",\"primaryLabelValue\":\"960747\"}},{\"attributeHeader\":{\"labelValue\":\"960749\",\"primaryLabelValue\":\"960749\"}},{\"attributeHeader\":{\"labelValue\":\"960751\",\"primaryLabelValue\":\"960751\"}},{\"attributeHeader\":{\"labelValue\":\"960753\",\"primaryLabelValue\":\"960753\"}},{\"attributeHeader\":{\"labelValue\":\"960755\",\"primaryLabelValue\":\"960755\"}},{\"attributeHeader\":{\"labelValue\":\"960757\",\"primaryLabelValue\":\"960757\"}},{\"attributeHeader\":{\"labelValue\":\"960759\",\"primaryLabelValue\":\"960759\"}},{\"attributeHeader\":{\"labelValue\":\"960761\",\"primaryLabelValue\":\"960761\"}},{\"attributeHeader\":{\"labelValue\":\"960763\",\"primaryLabelValue\":\"960763\"}},{\"attributeHeader\":{\"labelValue\":\"960765\",\"primaryLabelValue\":\"960765\"}},{\"attributeHeader\":{\"labelValue\":\"960767\",\"primaryLabelValue\":\"960767\"}},{\"attributeHeader\":{\"labelValue\":\"960769\",\"primaryLabelValue\":\"960769\"}},{\"attributeHeader\":{\"labelValue\":\"960771\",\"primaryLabelValue\":\"960771\"}},{\"attributeHeader\":{\"labelValue\":\"960773\",\"primaryLabelValue\":\"960773\"}},{\"attributeHeader\":{\"labelValue\":\"960775\",\"primaryLabelValue\":\"960775\"}},{\"attributeHeader\":{\"labelValue\":\"960777\",\"primaryLabelValue\":\"960777\"}},{\"attributeHeader\":{\"labelValue\":\"960779\",\"primaryLabelValue\":\"960779\"}},{\"attributeHeader\":{\"labelValue\":\"960781\",\"primaryLabelValue\":\"960781\"}},{\"attributeHeader\":{\"labelValue\":\"960783\",\"primaryLabelValue\":\"960783\"}},{\"attributeHeader\":{\"labelValue\":\"960785\",\"primaryLabelValue\":\"960785\"}},{\"attributeHeader\":{\"labelValue\":\"960787\",\"primaryLabelValue\":\"960787\"}},{\"attributeHeader\":{\"labelValue\":\"960789\",\"primaryLabelValue\":\"960789\"}},{\"attributeHeader\":{\"labelValue\":\"960791\",\"primaryLabelValue\":\"960791\"}},{\"attributeHeader\":{\"labelValue\":\"960793\",\"primaryLabelValue\":\"960793\"}},{\"attributeHeader\":{\"labelValue\":\"960795\",\"primaryLabelValue\":\"960795\"}},{\"attributeHeader\":{\"labelValue\":\"960797\",\"primaryLabelValue\":\"960797\"}},{\"attributeHeader\":{\"labelValue\":\"960799\",\"primaryLabelValue\":\"960799\"}},{\"attributeHeader\":{\"labelValue\":\"960801\",\"primaryLabelValue\":\"960801\"}},{\"attributeHeader\":{\"labelValue\":\"960803\",\"primaryLabelValue\":\"960803\"}},{\"attributeHeader\":{\"labelValue\":\"960805\",\"primaryLabelValue\":\"960805\"}},{\"attributeHeader\":{\"labelValue\":\"960809\",\"primaryLabelValue\":\"960809\"}},{\"attributeHeader\":{\"labelValue\":\"960811\",\"primaryLabelValue\":\"960811\"}},{\"attributeHeader\":{\"labelValue\":\"960813\",\"primaryLabelValue\":\"960813\"}},{\"attributeHeader\":{\"labelValue\":\"960815\",\"primaryLabelValue\":\"960815\"}},{\"attributeHeader\":{\"labelValue\":\"960817\",\"primaryLabelValue\":\"960817\"}},{\"attributeHeader\":{\"labelValue\":\"960819\",\"primaryLabelValue\":\"960819\"}},{\"attributeHeader\":{\"labelValue\":\"960821\",\"primaryLabelValue\":\"960821\"}},{\"attributeHeader\":{\"labelValue\":\"960823\",\"primaryLabelValue\":\"960823\"}},{\"attributeHeader\":{\"labelValue\":\"960825\",\"primaryLabelValue\":\"960825\"}},{\"attributeHeader\":{\"labelValue\":\"960827\",\"primaryLabelValue\":\"960827\"}},{\"attributeHeader\":{\"labelValue\":\"960829\",\"primaryLabelValue\":\"960829\"}},{\"attributeHeader\":{\"labelValue\":\"960831\",\"primaryLabelValue\":\"960831\"}},{\"attributeHeader\":{\"labelValue\":\"960833\",\"primaryLabelValue\":\"960833\"}},{\"attributeHeader\":{\"labelValue\":\"960835\",\"primaryLabelValue\":\"960835\"}},{\"attributeHeader\":{\"labelValue\":\"960839\",\"primaryLabelValue\":\"960839\"}},{\"attributeHeader\":{\"labelValue\":\"960841\",\"primaryLabelValue\":\"960841\"}},{\"attributeHeader\":{\"labelValue\":\"960843\",\"primaryLabelValue\":\"960843\"}},{\"attributeHeader\":{\"labelValue\":\"960845\",\"primaryLabelValue\":\"960845\"}},{\"attributeHeader\":{\"labelValue\":\"960847\",\"primaryLabelValue\":\"960847\"}},{\"attributeHeader\":{\"labelValue\":\"960849\",\"primaryLabelValue\":\"960849\"}},{\"attributeHeader\":{\"labelValue\":\"960853\",\"primaryLabelValue\":\"960853\"}},{\"attributeHeader\":{\"labelValue\":\"960855\",\"primaryLabelValue\":\"960855\"}},{\"attributeHeader\":{\"labelValue\":\"960857\",\"primaryLabelValue\":\"960857\"}},{\"attributeHeader\":{\"labelValue\":\"960859\",\"primaryLabelValue\":\"960859\"}},{\"attributeHeader\":{\"labelValue\":\"960861\",\"primaryLabelValue\":\"960861\"}},{\"attributeHeader\":{\"labelValue\":\"960863\",\"primaryLabelValue\":\"960863\"}},{\"attributeHeader\":{\"labelValue\":\"960865\",\"primaryLabelValue\":\"960865\"}},{\"attributeHeader\":{\"labelValue\":\"960867\",\"primaryLabelValue\":\"960867\"}},{\"attributeHeader\":{\"labelValue\":\"960869\",\"primaryLabelValue\":\"960869\"}},{\"attributeHeader\":{\"labelValue\":\"960871\",\"primaryLabelValue\":\"960871\"}},{\"attributeHeader\":{\"labelValue\":\"960875\",\"primaryLabelValue\":\"960875\"}},{\"attributeHeader\":{\"labelValue\":\"960877\",\"primaryLabelValue\":\"960877\"}},{\"attributeHeader\":{\"labelValue\":\"960879\",\"primaryLabelValue\":\"960879\"}},{\"attributeHeader\":{\"labelValue\":\"960881\",\"primaryLabelValue\":\"960881\"}},{\"attributeHeader\":{\"labelValue\":\"960883\",\"primaryLabelValue\":\"960883\"}},{\"attributeHeader\":{\"labelValue\":\"960887\",\"primaryLabelValue\":\"960887\"}},{\"attributeHeader\":{\"labelValue\":\"960889\",\"primaryLabelValue\":\"960889\"}},{\"attributeHeader\":{\"labelValue\":\"960891\",\"primaryLabelValue\":\"960891\"}},{\"attributeHeader\":{\"labelValue\":\"960895\",\"primaryLabelValue\":\"960895\"}},{\"attributeHeader\":{\"labelValue\":\"960897\",\"primaryLabelValue\":\"960897\"}},{\"attributeHeader\":{\"labelValue\":\"960899\",\"primaryLabelValue\":\"960899\"}},{\"attributeHeader\":{\"labelValue\":\"960901\",\"primaryLabelValue\":\"960901\"}},{\"attributeHeader\":{\"labelValue\":\"960903\",\"primaryLabelValue\":\"960903\"}},{\"attributeHeader\":{\"labelValue\":\"960905\",\"primaryLabelValue\":\"960905\"}},{\"attributeHeader\":{\"labelValue\":\"960907\",\"primaryLabelValue\":\"960907\"}},{\"attributeHeader\":{\"labelValue\":\"960909\",\"primaryLabelValue\":\"960909\"}},{\"attributeHeader\":{\"labelValue\":\"960913\",\"primaryLabelValue\":\"960913\"}},{\"attributeHeader\":{\"labelValue\":\"960915\",\"primaryLabelValue\":\"960915\"}},{\"attributeHeader\":{\"labelValue\":\"960917\",\"primaryLabelValue\":\"960917\"}},{\"attributeHeader\":{\"labelValue\":\"960919\",\"primaryLabelValue\":\"960919\"}},{\"attributeHeader\":{\"labelValue\":\"960921\",\"primaryLabelValue\":\"960921\"}},{\"attributeHeader\":{\"labelValue\":\"960923\",\"primaryLabelValue\":\"960923\"}},{\"attributeHeader\":{\"labelValue\":\"960925\",\"primaryLabelValue\":\"960925\"}},{\"attributeHeader\":{\"labelValue\":\"960926\",\"primaryLabelValue\":\"960926\"}},{\"attributeHeader\":{\"labelValue\":\"960928\",\"primaryLabelValue\":\"960928\"}},{\"attributeHeader\":{\"labelValue\":\"960929\",\"primaryLabelValue\":\"960929\"}},{\"attributeHeader\":{\"labelValue\":\"960931\",\"primaryLabelValue\":\"960931\"}},{\"attributeHeader\":{\"labelValue\":\"960933\",\"primaryLabelValue\":\"960933\"}},{\"attributeHeader\":{\"labelValue\":\"960935\",\"primaryLabelValue\":\"960935\"}},{\"attributeHeader\":{\"labelValue\":\"960937\",\"primaryLabelValue\":\"960937\"}},{\"attributeHeader\":{\"labelValue\":\"960939\",\"primaryLabelValue\":\"960939\"}},{\"attributeHeader\":{\"labelValue\":\"960941\",\"primaryLabelValue\":\"960941\"}},{\"attributeHeader\":{\"labelValue\":\"960943\",\"primaryLabelValue\":\"960943\"}},{\"attributeHeader\":{\"labelValue\":\"960945\",\"primaryLabelValue\":\"960945\"}},{\"attributeHeader\":{\"labelValue\":\"960947\",\"primaryLabelValue\":\"960947\"}},{\"attributeHeader\":{\"labelValue\":\"960949\",\"primaryLabelValue\":\"960949\"}},{\"attributeHeader\":{\"labelValue\":\"960951\",\"primaryLabelValue\":\"960951\"}},{\"attributeHeader\":{\"labelValue\":\"960953\",\"primaryLabelValue\":\"960953\"}},{\"attributeHeader\":{\"labelValue\":\"960955\",\"primaryLabelValue\":\"960955\"}},{\"attributeHeader\":{\"labelValue\":\"960957\",\"primaryLabelValue\":\"960957\"}},{\"attributeHeader\":{\"labelValue\":\"960959\",\"primaryLabelValue\":\"960959\"}},{\"attributeHeader\":{\"labelValue\":\"960963\",\"primaryLabelValue\":\"960963\"}},{\"attributeHeader\":{\"labelValue\":\"960965\",\"primaryLabelValue\":\"960965\"}},{\"attributeHeader\":{\"labelValue\":\"960967\",\"primaryLabelValue\":\"960967\"}},{\"attributeHeader\":{\"labelValue\":\"960969\",\"primaryLabelValue\":\"960969\"}},{\"attributeHeader\":{\"labelValue\":\"960971\",\"primaryLabelValue\":\"960971\"}},{\"attributeHeader\":{\"labelValue\":\"960973\",\"primaryLabelValue\":\"960973\"}},{\"attributeHeader\":{\"labelValue\":\"960975\",\"primaryLabelValue\":\"960975\"}},{\"attributeHeader\":{\"labelValue\":\"960977\",\"primaryLabelValue\":\"960977\"}},{\"attributeHeader\":{\"labelValue\":\"960979\",\"primaryLabelValue\":\"960979\"}},{\"attributeHeader\":{\"labelValue\":\"960981\",\"primaryLabelValue\":\"960981\"}},{\"attributeHeader\":{\"labelValue\":\"960983\",\"primaryLabelValue\":\"960983\"}},{\"attributeHeader\":{\"labelValue\":\"960985\",\"primaryLabelValue\":\"960985\"}},{\"attributeHeader\":{\"labelValue\":\"960987\",\"primaryLabelValue\":\"960987\"}},{\"attributeHeader\":{\"labelValue\":\"960989\",\"primaryLabelValue\":\"960989\"}},{\"attributeHeader\":{\"labelValue\":\"960991\",\"primaryLabelValue\":\"960991\"}},{\"attributeHeader\":{\"labelValue\":\"960993\",\"primaryLabelValue\":\"960993\"}},{\"attributeHeader\":{\"labelValue\":\"960995\",\"primaryLabelValue\":\"960995\"}},{\"attributeHeader\":{\"labelValue\":\"960997\",\"primaryLabelValue\":\"960997\"}},{\"attributeHeader\":{\"labelValue\":\"960999\",\"primaryLabelValue\":\"960999\"}},{\"attributeHeader\":{\"labelValue\":\"961001\",\"primaryLabelValue\":\"961001\"}},{\"attributeHeader\":{\"labelValue\":\"961003\",\"primaryLabelValue\":\"961003\"}},{\"attributeHeader\":{\"labelValue\":\"961005\",\"primaryLabelValue\":\"961005\"}},{\"attributeHeader\":{\"labelValue\":\"961007\",\"primaryLabelValue\":\"961007\"}},{\"attributeHeader\":{\"labelValue\":\"961009\",\"primaryLabelValue\":\"961009\"}},{\"attributeHeader\":{\"labelValue\":\"961011\",\"primaryLabelValue\":\"961011\"}},{\"attributeHeader\":{\"labelValue\":\"961013\",\"primaryLabelValue\":\"961013\"}},{\"attributeHeader\":{\"labelValue\":\"961015\",\"primaryLabelValue\":\"961015\"}},{\"attributeHeader\":{\"labelValue\":\"961017\",\"primaryLabelValue\":\"961017\"}},{\"attributeHeader\":{\"labelValue\":\"961019\",\"primaryLabelValue\":\"961019\"}},{\"attributeHeader\":{\"labelValue\":\"961021\",\"primaryLabelValue\":\"961021\"}},{\"attributeHeader\":{\"labelValue\":\"961023\",\"primaryLabelValue\":\"961023\"}},{\"attributeHeader\":{\"labelValue\":\"961025\",\"primaryLabelValue\":\"961025\"}},{\"attributeHeader\":{\"labelValue\":\"961027\",\"primaryLabelValue\":\"961027\"}},{\"attributeHeader\":{\"labelValue\":\"961031\",\"primaryLabelValue\":\"961031\"}},{\"attributeHeader\":{\"labelValue\":\"961033\",\"primaryLabelValue\":\"961033\"}},{\"attributeHeader\":{\"labelValue\":\"961035\",\"primaryLabelValue\":\"961035\"}},{\"attributeHeader\":{\"labelValue\":\"961037\",\"primaryLabelValue\":\"961037\"}},{\"attributeHeader\":{\"labelValue\":\"961039\",\"primaryLabelValue\":\"961039\"}},{\"attributeHeader\":{\"labelValue\":\"961041\",\"primaryLabelValue\":\"961041\"}},{\"attributeHeader\":{\"labelValue\":\"961043\",\"primaryLabelValue\":\"961043\"}},{\"attributeHeader\":{\"labelValue\":\"961045\",\"primaryLabelValue\":\"961045\"}},{\"attributeHeader\":{\"labelValue\":\"961047\",\"primaryLabelValue\":\"961047\"}},{\"attributeHeader\":{\"labelValue\":\"961055\",\"primaryLabelValue\":\"961055\"}},{\"attributeHeader\":{\"labelValue\":\"961057\",\"primaryLabelValue\":\"961057\"}},{\"attributeHeader\":{\"labelValue\":\"961059\",\"primaryLabelValue\":\"961059\"}},{\"attributeHeader\":{\"labelValue\":\"961061\",\"primaryLabelValue\":\"961061\"}},{\"attributeHeader\":{\"labelValue\":\"961063\",\"primaryLabelValue\":\"961063\"}},{\"attributeHeader\":{\"labelValue\":\"961065\",\"primaryLabelValue\":\"961065\"}},{\"attributeHeader\":{\"labelValue\":\"961067\",\"primaryLabelValue\":\"961067\"}},{\"attributeHeader\":{\"labelValue\":\"961069\",\"primaryLabelValue\":\"961069\"}},{\"attributeHeader\":{\"labelValue\":\"961071\",\"primaryLabelValue\":\"961071\"}},{\"attributeHeader\":{\"labelValue\":\"961073\",\"primaryLabelValue\":\"961073\"}},{\"attributeHeader\":{\"labelValue\":\"961075\",\"primaryLabelValue\":\"961075\"}},{\"attributeHeader\":{\"labelValue\":\"961077\",\"primaryLabelValue\":\"961077\"}},{\"attributeHeader\":{\"labelValue\":\"961081\",\"primaryLabelValue\":\"961081\"}},{\"attributeHeader\":{\"labelValue\":\"961083\",\"primaryLabelValue\":\"961083\"}},{\"attributeHeader\":{\"labelValue\":\"961085\",\"primaryLabelValue\":\"961085\"}},{\"attributeHeader\":{\"labelValue\":\"961087\",\"primaryLabelValue\":\"961087\"}},{\"attributeHeader\":{\"labelValue\":\"961089\",\"primaryLabelValue\":\"961089\"}},{\"attributeHeader\":{\"labelValue\":\"961091\",\"primaryLabelValue\":\"961091\"}},{\"attributeHeader\":{\"labelValue\":\"961093\",\"primaryLabelValue\":\"961093\"}},{\"attributeHeader\":{\"labelValue\":\"961095\",\"primaryLabelValue\":\"961095\"}},{\"attributeHeader\":{\"labelValue\":\"961097\",\"primaryLabelValue\":\"961097\"}},{\"attributeHeader\":{\"labelValue\":\"961099\",\"primaryLabelValue\":\"961099\"}},{\"attributeHeader\":{\"labelValue\":\"961101\",\"primaryLabelValue\":\"961101\"}},{\"attributeHeader\":{\"labelValue\":\"961103\",\"primaryLabelValue\":\"961103\"}},{\"attributeHeader\":{\"labelValue\":\"961105\",\"primaryLabelValue\":\"961105\"}},{\"attributeHeader\":{\"labelValue\":\"961107\",\"primaryLabelValue\":\"961107\"}},{\"attributeHeader\":{\"labelValue\":\"961109\",\"primaryLabelValue\":\"961109\"}},{\"attributeHeader\":{\"labelValue\":\"961111\",\"primaryLabelValue\":\"961111\"}},{\"attributeHeader\":{\"labelValue\":\"961113\",\"primaryLabelValue\":\"961113\"}},{\"attributeHeader\":{\"labelValue\":\"961115\",\"primaryLabelValue\":\"961115\"}},{\"attributeHeader\":{\"labelValue\":\"961117\",\"primaryLabelValue\":\"961117\"}},{\"attributeHeader\":{\"labelValue\":\"961119\",\"primaryLabelValue\":\"961119\"}},{\"attributeHeader\":{\"labelValue\":\"961121\",\"primaryLabelValue\":\"961121\"}},{\"attributeHeader\":{\"labelValue\":\"961123\",\"primaryLabelValue\":\"961123\"}},{\"attributeHeader\":{\"labelValue\":\"961125\",\"primaryLabelValue\":\"961125\"}},{\"attributeHeader\":{\"labelValue\":\"961127\",\"primaryLabelValue\":\"961127\"}},{\"attributeHeader\":{\"labelValue\":\"961129\",\"primaryLabelValue\":\"961129\"}},{\"attributeHeader\":{\"labelValue\":\"961131\",\"primaryLabelValue\":\"961131\"}},{\"attributeHeader\":{\"labelValue\":\"961133\",\"primaryLabelValue\":\"961133\"}},{\"attributeHeader\":{\"labelValue\":\"961135\",\"primaryLabelValue\":\"961135\"}},{\"attributeHeader\":{\"labelValue\":\"961137\",\"primaryLabelValue\":\"961137\"}},{\"attributeHeader\":{\"labelValue\":\"961139\",\"primaryLabelValue\":\"961139\"}},{\"attributeHeader\":{\"labelValue\":\"961141\",\"primaryLabelValue\":\"961141\"}},{\"attributeHeader\":{\"labelValue\":\"961143\",\"primaryLabelValue\":\"961143\"}},{\"attributeHeader\":{\"labelValue\":\"961145\",\"primaryLabelValue\":\"961145\"}},{\"attributeHeader\":{\"labelValue\":\"961147\",\"primaryLabelValue\":\"961147\"}},{\"attributeHeader\":{\"labelValue\":\"961149\",\"primaryLabelValue\":\"961149\"}},{\"attributeHeader\":{\"labelValue\":\"961151\",\"primaryLabelValue\":\"961151\"}},{\"attributeHeader\":{\"labelValue\":\"961153\",\"primaryLabelValue\":\"961153\"}},{\"attributeHeader\":{\"labelValue\":\"961155\",\"primaryLabelValue\":\"961155\"}},{\"attributeHeader\":{\"labelValue\":\"961157\",\"primaryLabelValue\":\"961157\"}},{\"attributeHeader\":{\"labelValue\":\"961159\",\"primaryLabelValue\":\"961159\"}},{\"attributeHeader\":{\"labelValue\":\"961161\",\"primaryLabelValue\":\"961161\"}},{\"attributeHeader\":{\"labelValue\":\"961163\",\"primaryLabelValue\":\"961163\"}},{\"attributeHeader\":{\"labelValue\":\"961165\",\"primaryLabelValue\":\"961165\"}},{\"attributeHeader\":{\"labelValue\":\"961167\",\"primaryLabelValue\":\"961167\"}},{\"attributeHeader\":{\"labelValue\":\"961169\",\"primaryLabelValue\":\"961169\"}},{\"attributeHeader\":{\"labelValue\":\"961171\",\"primaryLabelValue\":\"961171\"}},{\"attributeHeader\":{\"labelValue\":\"961173\",\"primaryLabelValue\":\"961173\"}},{\"attributeHeader\":{\"labelValue\":\"961175\",\"primaryLabelValue\":\"961175\"}},{\"attributeHeader\":{\"labelValue\":\"961177\",\"primaryLabelValue\":\"961177\"}},{\"attributeHeader\":{\"labelValue\":\"961179\",\"primaryLabelValue\":\"961179\"}},{\"attributeHeader\":{\"labelValue\":\"961181\",\"primaryLabelValue\":\"961181\"}},{\"attributeHeader\":{\"labelValue\":\"961183\",\"primaryLabelValue\":\"961183\"}},{\"attributeHeader\":{\"labelValue\":\"961185\",\"primaryLabelValue\":\"961185\"}},{\"attributeHeader\":{\"labelValue\":\"961187\",\"primaryLabelValue\":\"961187\"}},{\"attributeHeader\":{\"labelValue\":\"961189\",\"primaryLabelValue\":\"961189\"}},{\"attributeHeader\":{\"labelValue\":\"961191\",\"primaryLabelValue\":\"961191\"}},{\"attributeHeader\":{\"labelValue\":\"961193\",\"primaryLabelValue\":\"961193\"}},{\"attributeHeader\":{\"labelValue\":\"961195\",\"primaryLabelValue\":\"961195\"}},{\"attributeHeader\":{\"labelValue\":\"961197\",\"primaryLabelValue\":\"961197\"}},{\"attributeHeader\":{\"labelValue\":\"961199\",\"primaryLabelValue\":\"961199\"}},{\"attributeHeader\":{\"labelValue\":\"961201\",\"primaryLabelValue\":\"961201\"}},{\"attributeHeader\":{\"labelValue\":\"961203\",\"primaryLabelValue\":\"961203\"}},{\"attributeHeader\":{\"labelValue\":\"961205\",\"primaryLabelValue\":\"961205\"}},{\"attributeHeader\":{\"labelValue\":\"961207\",\"primaryLabelValue\":\"961207\"}},{\"attributeHeader\":{\"labelValue\":\"961209\",\"primaryLabelValue\":\"961209\"}},{\"attributeHeader\":{\"labelValue\":\"961211\",\"primaryLabelValue\":\"961211\"}},{\"attributeHeader\":{\"labelValue\":\"961213\",\"primaryLabelValue\":\"961213\"}},{\"attributeHeader\":{\"labelValue\":\"961215\",\"primaryLabelValue\":\"961215\"}},{\"attributeHeader\":{\"labelValue\":\"961217\",\"primaryLabelValue\":\"961217\"}},{\"attributeHeader\":{\"labelValue\":\"961219\",\"primaryLabelValue\":\"961219\"}},{\"attributeHeader\":{\"labelValue\":\"961221\",\"primaryLabelValue\":\"961221\"}},{\"attributeHeader\":{\"labelValue\":\"961223\",\"primaryLabelValue\":\"961223\"}},{\"attributeHeader\":{\"labelValue\":\"961225\",\"primaryLabelValue\":\"961225\"}},{\"attributeHeader\":{\"labelValue\":\"961227\",\"primaryLabelValue\":\"961227\"}},{\"attributeHeader\":{\"labelValue\":\"961229\",\"primaryLabelValue\":\"961229\"}},{\"attributeHeader\":{\"labelValue\":\"961231\",\"primaryLabelValue\":\"961231\"}},{\"attributeHeader\":{\"labelValue\":\"961233\",\"primaryLabelValue\":\"961233\"}},{\"attributeHeader\":{\"labelValue\":\"961235\",\"primaryLabelValue\":\"961235\"}},{\"attributeHeader\":{\"labelValue\":\"961237\",\"primaryLabelValue\":\"961237\"}},{\"attributeHeader\":{\"labelValue\":\"961241\",\"primaryLabelValue\":\"961241\"}},{\"attributeHeader\":{\"labelValue\":\"961243\",\"primaryLabelValue\":\"961243\"}},{\"attributeHeader\":{\"labelValue\":\"961245\",\"primaryLabelValue\":\"961245\"}},{\"attributeHeader\":{\"labelValue\":\"961247\",\"primaryLabelValue\":\"961247\"}},{\"attributeHeader\":{\"labelValue\":\"961249\",\"primaryLabelValue\":\"961249\"}},{\"attributeHeader\":{\"labelValue\":\"961251\",\"primaryLabelValue\":\"961251\"}},{\"attributeHeader\":{\"labelValue\":\"961253\",\"primaryLabelValue\":\"961253\"}},{\"attributeHeader\":{\"labelValue\":\"961255\",\"primaryLabelValue\":\"961255\"}},{\"attributeHeader\":{\"labelValue\":\"961257\",\"primaryLabelValue\":\"961257\"}},{\"attributeHeader\":{\"labelValue\":\"961259\",\"primaryLabelValue\":\"961259\"}},{\"attributeHeader\":{\"labelValue\":\"961261\",\"primaryLabelValue\":\"961261\"}},{\"attributeHeader\":{\"labelValue\":\"961263\",\"primaryLabelValue\":\"961263\"}},{\"attributeHeader\":{\"labelValue\":\"961265\",\"primaryLabelValue\":\"961265\"}},{\"attributeHeader\":{\"labelValue\":\"961267\",\"primaryLabelValue\":\"961267\"}},{\"attributeHeader\":{\"labelValue\":\"961269\",\"primaryLabelValue\":\"961269\"}},{\"attributeHeader\":{\"labelValue\":\"961271\",\"primaryLabelValue\":\"961271\"}},{\"attributeHeader\":{\"labelValue\":\"961273\",\"primaryLabelValue\":\"961273\"}},{\"attributeHeader\":{\"labelValue\":\"961275\",\"primaryLabelValue\":\"961275\"}},{\"attributeHeader\":{\"labelValue\":\"961277\",\"primaryLabelValue\":\"961277\"}},{\"attributeHeader\":{\"labelValue\":\"961279\",\"primaryLabelValue\":\"961279\"}},{\"attributeHeader\":{\"labelValue\":\"961281\",\"primaryLabelValue\":\"961281\"}},{\"attributeHeader\":{\"labelValue\":\"961283\",\"primaryLabelValue\":\"961283\"}},{\"attributeHeader\":{\"labelValue\":\"961285\",\"primaryLabelValue\":\"961285\"}},{\"attributeHeader\":{\"labelValue\":\"961287\",\"primaryLabelValue\":\"961287\"}},{\"attributeHeader\":{\"labelValue\":\"961289\",\"primaryLabelValue\":\"961289\"}},{\"attributeHeader\":{\"labelValue\":\"961291\",\"primaryLabelValue\":\"961291\"}},{\"attributeHeader\":{\"labelValue\":\"961293\",\"primaryLabelValue\":\"961293\"}},{\"attributeHeader\":{\"labelValue\":\"961295\",\"primaryLabelValue\":\"961295\"}},{\"attributeHeader\":{\"labelValue\":\"961297\",\"primaryLabelValue\":\"961297\"}},{\"attributeHeader\":{\"labelValue\":\"961299\",\"primaryLabelValue\":\"961299\"}},{\"attributeHeader\":{\"labelValue\":\"961301\",\"primaryLabelValue\":\"961301\"}},{\"attributeHeader\":{\"labelValue\":\"961303\",\"primaryLabelValue\":\"961303\"}},{\"attributeHeader\":{\"labelValue\":\"961305\",\"primaryLabelValue\":\"961305\"}},{\"attributeHeader\":{\"labelValue\":\"961307\",\"primaryLabelValue\":\"961307\"}},{\"attributeHeader\":{\"labelValue\":\"961309\",\"primaryLabelValue\":\"961309\"}},{\"attributeHeader\":{\"labelValue\":\"961311\",\"primaryLabelValue\":\"961311\"}},{\"attributeHeader\":{\"labelValue\":\"961317\",\"primaryLabelValue\":\"961317\"}},{\"attributeHeader\":{\"labelValue\":\"961319\",\"primaryLabelValue\":\"961319\"}},{\"attributeHeader\":{\"labelValue\":\"961321\",\"primaryLabelValue\":\"961321\"}},{\"attributeHeader\":{\"labelValue\":\"961323\",\"primaryLabelValue\":\"961323\"}},{\"attributeHeader\":{\"labelValue\":\"961325\",\"primaryLabelValue\":\"961325\"}},{\"attributeHeader\":{\"labelValue\":\"961327\",\"primaryLabelValue\":\"961327\"}},{\"attributeHeader\":{\"labelValue\":\"961329\",\"primaryLabelValue\":\"961329\"}},{\"attributeHeader\":{\"labelValue\":\"961331\",\"primaryLabelValue\":\"961331\"}},{\"attributeHeader\":{\"labelValue\":\"961333\",\"primaryLabelValue\":\"961333\"}},{\"attributeHeader\":{\"labelValue\":\"961335\",\"primaryLabelValue\":\"961335\"}},{\"attributeHeader\":{\"labelValue\":\"961337\",\"primaryLabelValue\":\"961337\"}},{\"attributeHeader\":{\"labelValue\":\"961339\",\"primaryLabelValue\":\"961339\"}},{\"attributeHeader\":{\"labelValue\":\"961341\",\"primaryLabelValue\":\"961341\"}},{\"attributeHeader\":{\"labelValue\":\"961343\",\"primaryLabelValue\":\"961343\"}},{\"attributeHeader\":{\"labelValue\":\"961345\",\"primaryLabelValue\":\"961345\"}},{\"attributeHeader\":{\"labelValue\":\"961349\",\"primaryLabelValue\":\"961349\"}},{\"attributeHeader\":{\"labelValue\":\"961353\",\"primaryLabelValue\":\"961353\"}},{\"attributeHeader\":{\"labelValue\":\"961355\",\"primaryLabelValue\":\"961355\"}},{\"attributeHeader\":{\"labelValue\":\"961357\",\"primaryLabelValue\":\"961357\"}},{\"attributeHeader\":{\"labelValue\":\"961363\",\"primaryLabelValue\":\"961363\"}},{\"attributeHeader\":{\"labelValue\":\"961365\",\"primaryLabelValue\":\"961365\"}},{\"attributeHeader\":{\"labelValue\":\"961367\",\"primaryLabelValue\":\"961367\"}},{\"attributeHeader\":{\"labelValue\":\"961369\",\"primaryLabelValue\":\"961369\"}},{\"attributeHeader\":{\"labelValue\":\"961371\",\"primaryLabelValue\":\"961371\"}},{\"attributeHeader\":{\"labelValue\":\"961373\",\"primaryLabelValue\":\"961373\"}},{\"attributeHeader\":{\"labelValue\":\"961375\",\"primaryLabelValue\":\"961375\"}},{\"attributeHeader\":{\"labelValue\":\"961377\",\"primaryLabelValue\":\"961377\"}},{\"attributeHeader\":{\"labelValue\":\"961379\",\"primaryLabelValue\":\"961379\"}},{\"attributeHeader\":{\"labelValue\":\"961381\",\"primaryLabelValue\":\"961381\"}},{\"attributeHeader\":{\"labelValue\":\"961383\",\"primaryLabelValue\":\"961383\"}},{\"attributeHeader\":{\"labelValue\":\"961385\",\"primaryLabelValue\":\"961385\"}},{\"attributeHeader\":{\"labelValue\":\"961387\",\"primaryLabelValue\":\"961387\"}},{\"attributeHeader\":{\"labelValue\":\"961389\",\"primaryLabelValue\":\"961389\"}},{\"attributeHeader\":{\"labelValue\":\"961391\",\"primaryLabelValue\":\"961391\"}},{\"attributeHeader\":{\"labelValue\":\"961393\",\"primaryLabelValue\":\"961393\"}},{\"attributeHeader\":{\"labelValue\":\"961395\",\"primaryLabelValue\":\"961395\"}},{\"attributeHeader\":{\"labelValue\":\"961397\",\"primaryLabelValue\":\"961397\"}},{\"attributeHeader\":{\"labelValue\":\"961399\",\"primaryLabelValue\":\"961399\"}},{\"attributeHeader\":{\"labelValue\":\"961401\",\"primaryLabelValue\":\"961401\"}},{\"attributeHeader\":{\"labelValue\":\"961403\",\"primaryLabelValue\":\"961403\"}},{\"attributeHeader\":{\"labelValue\":\"961405\",\"primaryLabelValue\":\"961405\"}},{\"attributeHeader\":{\"labelValue\":\"961407\",\"primaryLabelValue\":\"961407\"}},{\"attributeHeader\":{\"labelValue\":\"961409\",\"primaryLabelValue\":\"961409\"}},{\"attributeHeader\":{\"labelValue\":\"961411\",\"primaryLabelValue\":\"961411\"}},{\"attributeHeader\":{\"labelValue\":\"961413\",\"primaryLabelValue\":\"961413\"}},{\"attributeHeader\":{\"labelValue\":\"961415\",\"primaryLabelValue\":\"961415\"}},{\"attributeHeader\":{\"labelValue\":\"961417\",\"primaryLabelValue\":\"961417\"}},{\"attributeHeader\":{\"labelValue\":\"961419\",\"primaryLabelValue\":\"961419\"}},{\"attributeHeader\":{\"labelValue\":\"961421\",\"primaryLabelValue\":\"961421\"}},{\"attributeHeader\":{\"labelValue\":\"961423\",\"primaryLabelValue\":\"961423\"}},{\"attributeHeader\":{\"labelValue\":\"961425\",\"primaryLabelValue\":\"961425\"}},{\"attributeHeader\":{\"labelValue\":\"961427\",\"primaryLabelValue\":\"961427\"}},{\"attributeHeader\":{\"labelValue\":\"961429\",\"primaryLabelValue\":\"961429\"}},{\"attributeHeader\":{\"labelValue\":\"961431\",\"primaryLabelValue\":\"961431\"}},{\"attributeHeader\":{\"labelValue\":\"961433\",\"primaryLabelValue\":\"961433\"}},{\"attributeHeader\":{\"labelValue\":\"961435\",\"primaryLabelValue\":\"961435\"}},{\"attributeHeader\":{\"labelValue\":\"961437\",\"primaryLabelValue\":\"961437\"}},{\"attributeHeader\":{\"labelValue\":\"961439\",\"primaryLabelValue\":\"961439\"}},{\"attributeHeader\":{\"labelValue\":\"961441\",\"primaryLabelValue\":\"961441\"}},{\"attributeHeader\":{\"labelValue\":\"961443\",\"primaryLabelValue\":\"961443\"}},{\"attributeHeader\":{\"labelValue\":\"961445\",\"primaryLabelValue\":\"961445\"}},{\"attributeHeader\":{\"labelValue\":\"961447\",\"primaryLabelValue\":\"961447\"}},{\"attributeHeader\":{\"labelValue\":\"961449\",\"primaryLabelValue\":\"961449\"}},{\"attributeHeader\":{\"labelValue\":\"961451\",\"primaryLabelValue\":\"961451\"}},{\"attributeHeader\":{\"labelValue\":\"961453\",\"primaryLabelValue\":\"961453\"}},{\"attributeHeader\":{\"labelValue\":\"961455\",\"primaryLabelValue\":\"961455\"}},{\"attributeHeader\":{\"labelValue\":\"961457\",\"primaryLabelValue\":\"961457\"}},{\"attributeHeader\":{\"labelValue\":\"961459\",\"primaryLabelValue\":\"961459\"}},{\"attributeHeader\":{\"labelValue\":\"961461\",\"primaryLabelValue\":\"961461\"}},{\"attributeHeader\":{\"labelValue\":\"961463\",\"primaryLabelValue\":\"961463\"}},{\"attributeHeader\":{\"labelValue\":\"961465\",\"primaryLabelValue\":\"961465\"}},{\"attributeHeader\":{\"labelValue\":\"961471\",\"primaryLabelValue\":\"961471\"}},{\"attributeHeader\":{\"labelValue\":\"961473\",\"primaryLabelValue\":\"961473\"}},{\"attributeHeader\":{\"labelValue\":\"961477\",\"primaryLabelValue\":\"961477\"}},{\"attributeHeader\":{\"labelValue\":\"961479\",\"primaryLabelValue\":\"961479\"}},{\"attributeHeader\":{\"labelValue\":\"961481\",\"primaryLabelValue\":\"961481\"}},{\"attributeHeader\":{\"labelValue\":\"961485\",\"primaryLabelValue\":\"961485\"}},{\"attributeHeader\":{\"labelValue\":\"961487\",\"primaryLabelValue\":\"961487\"}},{\"attributeHeader\":{\"labelValue\":\"961489\",\"primaryLabelValue\":\"961489\"}},{\"attributeHeader\":{\"labelValue\":\"961491\",\"primaryLabelValue\":\"961491\"}},{\"attributeHeader\":{\"labelValue\":\"961493\",\"primaryLabelValue\":\"961493\"}},{\"attributeHeader\":{\"labelValue\":\"961495\",\"primaryLabelValue\":\"961495\"}},{\"attributeHeader\":{\"labelValue\":\"961497\",\"primaryLabelValue\":\"961497\"}},{\"attributeHeader\":{\"labelValue\":\"961499\",\"primaryLabelValue\":\"961499\"}},{\"attributeHeader\":{\"labelValue\":\"961501\",\"primaryLabelValue\":\"961501\"}},{\"attributeHeader\":{\"labelValue\":\"961503\",\"primaryLabelValue\":\"961503\"}},{\"attributeHeader\":{\"labelValue\":\"961505\",\"primaryLabelValue\":\"961505\"}},{\"attributeHeader\":{\"labelValue\":\"961507\",\"primaryLabelValue\":\"961507\"}},{\"attributeHeader\":{\"labelValue\":\"961509\",\"primaryLabelValue\":\"961509\"}},{\"attributeHeader\":{\"labelValue\":\"961511\",\"primaryLabelValue\":\"961511\"}},{\"attributeHeader\":{\"labelValue\":\"961513\",\"primaryLabelValue\":\"961513\"}},{\"attributeHeader\":{\"labelValue\":\"961515\",\"primaryLabelValue\":\"961515\"}},{\"attributeHeader\":{\"labelValue\":\"961517\",\"primaryLabelValue\":\"961517\"}},{\"attributeHeader\":{\"labelValue\":\"961519\",\"primaryLabelValue\":\"961519\"}},{\"attributeHeader\":{\"labelValue\":\"961521\",\"primaryLabelValue\":\"961521\"}},{\"attributeHeader\":{\"labelValue\":\"961523\",\"primaryLabelValue\":\"961523\"}},{\"attributeHeader\":{\"labelValue\":\"961525\",\"primaryLabelValue\":\"961525\"}},{\"attributeHeader\":{\"labelValue\":\"961527\",\"primaryLabelValue\":\"961527\"}},{\"attributeHeader\":{\"labelValue\":\"961529\",\"primaryLabelValue\":\"961529\"}},{\"attributeHeader\":{\"labelValue\":\"961531\",\"primaryLabelValue\":\"961531\"}},{\"attributeHeader\":{\"labelValue\":\"961533\",\"primaryLabelValue\":\"961533\"}},{\"attributeHeader\":{\"labelValue\":\"961535\",\"primaryLabelValue\":\"961535\"}},{\"attributeHeader\":{\"labelValue\":\"961537\",\"primaryLabelValue\":\"961537\"}},{\"attributeHeader\":{\"labelValue\":\"961539\",\"primaryLabelValue\":\"961539\"}},{\"attributeHeader\":{\"labelValue\":\"961541\",\"primaryLabelValue\":\"961541\"}},{\"attributeHeader\":{\"labelValue\":\"961543\",\"primaryLabelValue\":\"961543\"}},{\"attributeHeader\":{\"labelValue\":\"961545\",\"primaryLabelValue\":\"961545\"}},{\"attributeHeader\":{\"labelValue\":\"961547\",\"primaryLabelValue\":\"961547\"}},{\"attributeHeader\":{\"labelValue\":\"961549\",\"primaryLabelValue\":\"961549\"}},{\"attributeHeader\":{\"labelValue\":\"961551\",\"primaryLabelValue\":\"961551\"}},{\"attributeHeader\":{\"labelValue\":\"961553\",\"primaryLabelValue\":\"961553\"}},{\"attributeHeader\":{\"labelValue\":\"961555\",\"primaryLabelValue\":\"961555\"}},{\"attributeHeader\":{\"labelValue\":\"961557\",\"primaryLabelValue\":\"961557\"}},{\"attributeHeader\":{\"labelValue\":\"961559\",\"primaryLabelValue\":\"961559\"}},{\"attributeHeader\":{\"labelValue\":\"961561\",\"primaryLabelValue\":\"961561\"}},{\"attributeHeader\":{\"labelValue\":\"961563\",\"primaryLabelValue\":\"961563\"}},{\"attributeHeader\":{\"labelValue\":\"961565\",\"primaryLabelValue\":\"961565\"}},{\"attributeHeader\":{\"labelValue\":\"961569\",\"primaryLabelValue\":\"961569\"}},{\"attributeHeader\":{\"labelValue\":\"961571\",\"primaryLabelValue\":\"961571\"}},{\"attributeHeader\":{\"labelValue\":\"961573\",\"primaryLabelValue\":\"961573\"}},{\"attributeHeader\":{\"labelValue\":\"961575\",\"primaryLabelValue\":\"961575\"}},{\"attributeHeader\":{\"labelValue\":\"961577\",\"primaryLabelValue\":\"961577\"}},{\"attributeHeader\":{\"labelValue\":\"961579\",\"primaryLabelValue\":\"961579\"}},{\"attributeHeader\":{\"labelValue\":\"961581\",\"primaryLabelValue\":\"961581\"}},{\"attributeHeader\":{\"labelValue\":\"961583\",\"primaryLabelValue\":\"961583\"}},{\"attributeHeader\":{\"labelValue\":\"961585\",\"primaryLabelValue\":\"961585\"}},{\"attributeHeader\":{\"labelValue\":\"961587\",\"primaryLabelValue\":\"961587\"}},{\"attributeHeader\":{\"labelValue\":\"961589\",\"primaryLabelValue\":\"961589\"}},{\"attributeHeader\":{\"labelValue\":\"961591\",\"primaryLabelValue\":\"961591\"}},{\"attributeHeader\":{\"labelValue\":\"961593\",\"primaryLabelValue\":\"961593\"}},{\"attributeHeader\":{\"labelValue\":\"961595\",\"primaryLabelValue\":\"961595\"}},{\"attributeHeader\":{\"labelValue\":\"961597\",\"primaryLabelValue\":\"961597\"}},{\"attributeHeader\":{\"labelValue\":\"961601\",\"primaryLabelValue\":\"961601\"}},{\"attributeHeader\":{\"labelValue\":\"961603\",\"primaryLabelValue\":\"961603\"}},{\"attributeHeader\":{\"labelValue\":\"961605\",\"primaryLabelValue\":\"961605\"}},{\"attributeHeader\":{\"labelValue\":\"961607\",\"primaryLabelValue\":\"961607\"}},{\"attributeHeader\":{\"labelValue\":\"961609\",\"primaryLabelValue\":\"961609\"}},{\"attributeHeader\":{\"labelValue\":\"961611\",\"primaryLabelValue\":\"961611\"}},{\"attributeHeader\":{\"labelValue\":\"961613\",\"primaryLabelValue\":\"961613\"}},{\"attributeHeader\":{\"labelValue\":\"961615\",\"primaryLabelValue\":\"961615\"}},{\"attributeHeader\":{\"labelValue\":\"961617\",\"primaryLabelValue\":\"961617\"}},{\"attributeHeader\":{\"labelValue\":\"961619\",\"primaryLabelValue\":\"961619\"}},{\"attributeHeader\":{\"labelValue\":\"961621\",\"primaryLabelValue\":\"961621\"}},{\"attributeHeader\":{\"labelValue\":\"961623\",\"primaryLabelValue\":\"961623\"}},{\"attributeHeader\":{\"labelValue\":\"961625\",\"primaryLabelValue\":\"961625\"}},{\"attributeHeader\":{\"labelValue\":\"961627\",\"primaryLabelValue\":\"961627\"}},{\"attributeHeader\":{\"labelValue\":\"961629\",\"primaryLabelValue\":\"961629\"}},{\"attributeHeader\":{\"labelValue\":\"961631\",\"primaryLabelValue\":\"961631\"}},{\"attributeHeader\":{\"labelValue\":\"961633\",\"primaryLabelValue\":\"961633\"}},{\"attributeHeader\":{\"labelValue\":\"961635\",\"primaryLabelValue\":\"961635\"}},{\"attributeHeader\":{\"labelValue\":\"961637\",\"primaryLabelValue\":\"961637\"}},{\"attributeHeader\":{\"labelValue\":\"961639\",\"primaryLabelValue\":\"961639\"}},{\"attributeHeader\":{\"labelValue\":\"961641\",\"primaryLabelValue\":\"961641\"}},{\"attributeHeader\":{\"labelValue\":\"961643\",\"primaryLabelValue\":\"961643\"}},{\"attributeHeader\":{\"labelValue\":\"961645\",\"primaryLabelValue\":\"961645\"}},{\"attributeHeader\":{\"labelValue\":\"961647\",\"primaryLabelValue\":\"961647\"}},{\"attributeHeader\":{\"labelValue\":\"961649\",\"primaryLabelValue\":\"961649\"}},{\"attributeHeader\":{\"labelValue\":\"961651\",\"primaryLabelValue\":\"961651\"}},{\"attributeHeader\":{\"labelValue\":\"961653\",\"primaryLabelValue\":\"961653\"}},{\"attributeHeader\":{\"labelValue\":\"961655\",\"primaryLabelValue\":\"961655\"}},{\"attributeHeader\":{\"labelValue\":\"961657\",\"primaryLabelValue\":\"961657\"}},{\"attributeHeader\":{\"labelValue\":\"961659\",\"primaryLabelValue\":\"961659\"}},{\"attributeHeader\":{\"labelValue\":\"961661\",\"primaryLabelValue\":\"961661\"}},{\"attributeHeader\":{\"labelValue\":\"961663\",\"primaryLabelValue\":\"961663\"}},{\"attributeHeader\":{\"labelValue\":\"961665\",\"primaryLabelValue\":\"961665\"}},{\"attributeHeader\":{\"labelValue\":\"961667\",\"primaryLabelValue\":\"961667\"}},{\"attributeHeader\":{\"labelValue\":\"961669\",\"primaryLabelValue\":\"961669\"}},{\"attributeHeader\":{\"labelValue\":\"961671\",\"primaryLabelValue\":\"961671\"}},{\"attributeHeader\":{\"labelValue\":\"961673\",\"primaryLabelValue\":\"961673\"}},{\"attributeHeader\":{\"labelValue\":\"961675\",\"primaryLabelValue\":\"961675\"}},{\"attributeHeader\":{\"labelValue\":\"961677\",\"primaryLabelValue\":\"961677\"}},{\"attributeHeader\":{\"labelValue\":\"961679\",\"primaryLabelValue\":\"961679\"}},{\"attributeHeader\":{\"labelValue\":\"961681\",\"primaryLabelValue\":\"961681\"}},{\"attributeHeader\":{\"labelValue\":\"961683\",\"primaryLabelValue\":\"961683\"}},{\"attributeHeader\":{\"labelValue\":\"961685\",\"primaryLabelValue\":\"961685\"}},{\"attributeHeader\":{\"labelValue\":\"961687\",\"primaryLabelValue\":\"961687\"}},{\"attributeHeader\":{\"labelValue\":\"961689\",\"primaryLabelValue\":\"961689\"}},{\"attributeHeader\":{\"labelValue\":\"961691\",\"primaryLabelValue\":\"961691\"}},{\"attributeHeader\":{\"labelValue\":\"961693\",\"primaryLabelValue\":\"961693\"}},{\"attributeHeader\":{\"labelValue\":\"961695\",\"primaryLabelValue\":\"961695\"}},{\"attributeHeader\":{\"labelValue\":\"961697\",\"primaryLabelValue\":\"961697\"}},{\"attributeHeader\":{\"labelValue\":\"961699\",\"primaryLabelValue\":\"961699\"}},{\"attributeHeader\":{\"labelValue\":\"961701\",\"primaryLabelValue\":\"961701\"}},{\"attributeHeader\":{\"labelValue\":\"961703\",\"primaryLabelValue\":\"961703\"}},{\"attributeHeader\":{\"labelValue\":\"961705\",\"primaryLabelValue\":\"961705\"}},{\"attributeHeader\":{\"labelValue\":\"961707\",\"primaryLabelValue\":\"961707\"}},{\"attributeHeader\":{\"labelValue\":\"961709\",\"primaryLabelValue\":\"961709\"}},{\"attributeHeader\":{\"labelValue\":\"961711\",\"primaryLabelValue\":\"961711\"}},{\"attributeHeader\":{\"labelValue\":\"961713\",\"primaryLabelValue\":\"961713\"}},{\"attributeHeader\":{\"labelValue\":\"961715\",\"primaryLabelValue\":\"961715\"}},{\"attributeHeader\":{\"labelValue\":\"961717\",\"primaryLabelValue\":\"961717\"}},{\"attributeHeader\":{\"labelValue\":\"961719\",\"primaryLabelValue\":\"961719\"}},{\"attributeHeader\":{\"labelValue\":\"961721\",\"primaryLabelValue\":\"961721\"}},{\"attributeHeader\":{\"labelValue\":\"961723\",\"primaryLabelValue\":\"961723\"}},{\"attributeHeader\":{\"labelValue\":\"961725\",\"primaryLabelValue\":\"961725\"}},{\"attributeHeader\":{\"labelValue\":\"961727\",\"primaryLabelValue\":\"961727\"}},{\"attributeHeader\":{\"labelValue\":\"961729\",\"primaryLabelValue\":\"961729\"}},{\"attributeHeader\":{\"labelValue\":\"961731\",\"primaryLabelValue\":\"961731\"}},{\"attributeHeader\":{\"labelValue\":\"961733\",\"primaryLabelValue\":\"961733\"}},{\"attributeHeader\":{\"labelValue\":\"961735\",\"primaryLabelValue\":\"961735\"}},{\"attributeHeader\":{\"labelValue\":\"961737\",\"primaryLabelValue\":\"961737\"}},{\"attributeHeader\":{\"labelValue\":\"961739\",\"primaryLabelValue\":\"961739\"}},{\"attributeHeader\":{\"labelValue\":\"961741\",\"primaryLabelValue\":\"961741\"}},{\"attributeHeader\":{\"labelValue\":\"961743\",\"primaryLabelValue\":\"961743\"}},{\"attributeHeader\":{\"labelValue\":\"961745\",\"primaryLabelValue\":\"961745\"}},{\"attributeHeader\":{\"labelValue\":\"961747\",\"primaryLabelValue\":\"961747\"}},{\"attributeHeader\":{\"labelValue\":\"961749\",\"primaryLabelValue\":\"961749\"}},{\"attributeHeader\":{\"labelValue\":\"961751\",\"primaryLabelValue\":\"961751\"}},{\"attributeHeader\":{\"labelValue\":\"961753\",\"primaryLabelValue\":\"961753\"}},{\"attributeHeader\":{\"labelValue\":\"961755\",\"primaryLabelValue\":\"961755\"}},{\"attributeHeader\":{\"labelValue\":\"961757\",\"primaryLabelValue\":\"961757\"}},{\"attributeHeader\":{\"labelValue\":\"961759\",\"primaryLabelValue\":\"961759\"}},{\"attributeHeader\":{\"labelValue\":\"961761\",\"primaryLabelValue\":\"961761\"}},{\"attributeHeader\":{\"labelValue\":\"961763\",\"primaryLabelValue\":\"961763\"}},{\"attributeHeader\":{\"labelValue\":\"961765\",\"primaryLabelValue\":\"961765\"}},{\"attributeHeader\":{\"labelValue\":\"961767\",\"primaryLabelValue\":\"961767\"}},{\"attributeHeader\":{\"labelValue\":\"961769\",\"primaryLabelValue\":\"961769\"}},{\"attributeHeader\":{\"labelValue\":\"961771\",\"primaryLabelValue\":\"961771\"}},{\"attributeHeader\":{\"labelValue\":\"961773\",\"primaryLabelValue\":\"961773\"}},{\"attributeHeader\":{\"labelValue\":\"961775\",\"primaryLabelValue\":\"961775\"}},{\"attributeHeader\":{\"labelValue\":\"961777\",\"primaryLabelValue\":\"961777\"}},{\"attributeHeader\":{\"labelValue\":\"961779\",\"primaryLabelValue\":\"961779\"}},{\"attributeHeader\":{\"labelValue\":\"961781\",\"primaryLabelValue\":\"961781\"}},{\"attributeHeader\":{\"labelValue\":\"961783\",\"primaryLabelValue\":\"961783\"}},{\"attributeHeader\":{\"labelValue\":\"961785\",\"primaryLabelValue\":\"961785\"}},{\"attributeHeader\":{\"labelValue\":\"961787\",\"primaryLabelValue\":\"961787\"}},{\"attributeHeader\":{\"labelValue\":\"961791\",\"primaryLabelValue\":\"961791\"}},{\"attributeHeader\":{\"labelValue\":\"961793\",\"primaryLabelValue\":\"961793\"}},{\"attributeHeader\":{\"labelValue\":\"961795\",\"primaryLabelValue\":\"961795\"}},{\"attributeHeader\":{\"labelValue\":\"961797\",\"primaryLabelValue\":\"961797\"}},{\"attributeHeader\":{\"labelValue\":\"961799\",\"primaryLabelValue\":\"961799\"}},{\"attributeHeader\":{\"labelValue\":\"961801\",\"primaryLabelValue\":\"961801\"}},{\"attributeHeader\":{\"labelValue\":\"961803\",\"primaryLabelValue\":\"961803\"}},{\"attributeHeader\":{\"labelValue\":\"961805\",\"primaryLabelValue\":\"961805\"}},{\"attributeHeader\":{\"labelValue\":\"961807\",\"primaryLabelValue\":\"961807\"}},{\"attributeHeader\":{\"labelValue\":\"961809\",\"primaryLabelValue\":\"961809\"}},{\"attributeHeader\":{\"labelValue\":\"961811\",\"primaryLabelValue\":\"961811\"}},{\"attributeHeader\":{\"labelValue\":\"961813\",\"primaryLabelValue\":\"961813\"}},{\"attributeHeader\":{\"labelValue\":\"961815\",\"primaryLabelValue\":\"961815\"}},{\"attributeHeader\":{\"labelValue\":\"961817\",\"primaryLabelValue\":\"961817\"}},{\"attributeHeader\":{\"labelValue\":\"961819\",\"primaryLabelValue\":\"961819\"}},{\"attributeHeader\":{\"labelValue\":\"961821\",\"primaryLabelValue\":\"961821\"}},{\"attributeHeader\":{\"labelValue\":\"961823\",\"primaryLabelValue\":\"961823\"}},{\"attributeHeader\":{\"labelValue\":\"961825\",\"primaryLabelValue\":\"961825\"}},{\"attributeHeader\":{\"labelValue\":\"961827\",\"primaryLabelValue\":\"961827\"}},{\"attributeHeader\":{\"labelValue\":\"961829\",\"primaryLabelValue\":\"961829\"}},{\"attributeHeader\":{\"labelValue\":\"961831\",\"primaryLabelValue\":\"961831\"}},{\"attributeHeader\":{\"labelValue\":\"961833\",\"primaryLabelValue\":\"961833\"}},{\"attributeHeader\":{\"labelValue\":\"961835\",\"primaryLabelValue\":\"961835\"}},{\"attributeHeader\":{\"labelValue\":\"961837\",\"primaryLabelValue\":\"961837\"}},{\"attributeHeader\":{\"labelValue\":\"961839\",\"primaryLabelValue\":\"961839\"}},{\"attributeHeader\":{\"labelValue\":\"961841\",\"primaryLabelValue\":\"961841\"}},{\"attributeHeader\":{\"labelValue\":\"961843\",\"primaryLabelValue\":\"961843\"}},{\"attributeHeader\":{\"labelValue\":\"961845\",\"primaryLabelValue\":\"961845\"}},{\"attributeHeader\":{\"labelValue\":\"961847\",\"primaryLabelValue\":\"961847\"}},{\"attributeHeader\":{\"labelValue\":\"961849\",\"primaryLabelValue\":\"961849\"}},{\"attributeHeader\":{\"labelValue\":\"961851\",\"primaryLabelValue\":\"961851\"}},{\"attributeHeader\":{\"labelValue\":\"961853\",\"primaryLabelValue\":\"961853\"}},{\"attributeHeader\":{\"labelValue\":\"961855\",\"primaryLabelValue\":\"961855\"}},{\"attributeHeader\":{\"labelValue\":\"961857\",\"primaryLabelValue\":\"961857\"}},{\"attributeHeader\":{\"labelValue\":\"961859\",\"primaryLabelValue\":\"961859\"}},{\"attributeHeader\":{\"labelValue\":\"961861\",\"primaryLabelValue\":\"961861\"}},{\"attributeHeader\":{\"labelValue\":\"961863\",\"primaryLabelValue\":\"961863\"}},{\"attributeHeader\":{\"labelValue\":\"961865\",\"primaryLabelValue\":\"961865\"}},{\"attributeHeader\":{\"labelValue\":\"961867\",\"primaryLabelValue\":\"961867\"}},{\"attributeHeader\":{\"labelValue\":\"961869\",\"primaryLabelValue\":\"961869\"}},{\"attributeHeader\":{\"labelValue\":\"961871\",\"primaryLabelValue\":\"961871\"}},{\"attributeHeader\":{\"labelValue\":\"961873\",\"primaryLabelValue\":\"961873\"}},{\"attributeHeader\":{\"labelValue\":\"961875\",\"primaryLabelValue\":\"961875\"}},{\"attributeHeader\":{\"labelValue\":\"961877\",\"primaryLabelValue\":\"961877\"}},{\"attributeHeader\":{\"labelValue\":\"961879\",\"primaryLabelValue\":\"961879\"}},{\"attributeHeader\":{\"labelValue\":\"961881\",\"primaryLabelValue\":\"961881\"}},{\"attributeHeader\":{\"labelValue\":\"961883\",\"primaryLabelValue\":\"961883\"}},{\"attributeHeader\":{\"labelValue\":\"961885\",\"primaryLabelValue\":\"961885\"}},{\"attributeHeader\":{\"labelValue\":\"961887\",\"primaryLabelValue\":\"961887\"}},{\"attributeHeader\":{\"labelValue\":\"961889\",\"primaryLabelValue\":\"961889\"}},{\"attributeHeader\":{\"labelValue\":\"961891\",\"primaryLabelValue\":\"961891\"}},{\"attributeHeader\":{\"labelValue\":\"961893\",\"primaryLabelValue\":\"961893\"}},{\"attributeHeader\":{\"labelValue\":\"961895\",\"primaryLabelValue\":\"961895\"}},{\"attributeHeader\":{\"labelValue\":\"961897\",\"primaryLabelValue\":\"961897\"}},{\"attributeHeader\":{\"labelValue\":\"961899\",\"primaryLabelValue\":\"961899\"}},{\"attributeHeader\":{\"labelValue\":\"961901\",\"primaryLabelValue\":\"961901\"}},{\"attributeHeader\":{\"labelValue\":\"961903\",\"primaryLabelValue\":\"961903\"}},{\"attributeHeader\":{\"labelValue\":\"961905\",\"primaryLabelValue\":\"961905\"}},{\"attributeHeader\":{\"labelValue\":\"961907\",\"primaryLabelValue\":\"961907\"}},{\"attributeHeader\":{\"labelValue\":\"961909\",\"primaryLabelValue\":\"961909\"}},{\"attributeHeader\":{\"labelValue\":\"961911\",\"primaryLabelValue\":\"961911\"}},{\"attributeHeader\":{\"labelValue\":\"961913\",\"primaryLabelValue\":\"961913\"}},{\"attributeHeader\":{\"labelValue\":\"961915\",\"primaryLabelValue\":\"961915\"}},{\"attributeHeader\":{\"labelValue\":\"961917\",\"primaryLabelValue\":\"961917\"}},{\"attributeHeader\":{\"labelValue\":\"961919\",\"primaryLabelValue\":\"961919\"}},{\"attributeHeader\":{\"labelValue\":\"961921\",\"primaryLabelValue\":\"961921\"}},{\"attributeHeader\":{\"labelValue\":\"961923\",\"primaryLabelValue\":\"961923\"}},{\"attributeHeader\":{\"labelValue\":\"961925\",\"primaryLabelValue\":\"961925\"}},{\"attributeHeader\":{\"labelValue\":\"961927\",\"primaryLabelValue\":\"961927\"}},{\"attributeHeader\":{\"labelValue\":\"961929\",\"primaryLabelValue\":\"961929\"}},{\"attributeHeader\":{\"labelValue\":\"961931\",\"primaryLabelValue\":\"961931\"}},{\"attributeHeader\":{\"labelValue\":\"961933\",\"primaryLabelValue\":\"961933\"}},{\"attributeHeader\":{\"labelValue\":\"961935\",\"primaryLabelValue\":\"961935\"}},{\"attributeHeader\":{\"labelValue\":\"961937\",\"primaryLabelValue\":\"961937\"}},{\"attributeHeader\":{\"labelValue\":\"961939\",\"primaryLabelValue\":\"961939\"}},{\"attributeHeader\":{\"labelValue\":\"961941\",\"primaryLabelValue\":\"961941\"}},{\"attributeHeader\":{\"labelValue\":\"961943\",\"primaryLabelValue\":\"961943\"}},{\"attributeHeader\":{\"labelValue\":\"961945\",\"primaryLabelValue\":\"961945\"}},{\"attributeHeader\":{\"labelValue\":\"961947\",\"primaryLabelValue\":\"961947\"}},{\"attributeHeader\":{\"labelValue\":\"961949\",\"primaryLabelValue\":\"961949\"}},{\"attributeHeader\":{\"labelValue\":\"961951\",\"primaryLabelValue\":\"961951\"}},{\"attributeHeader\":{\"labelValue\":\"961953\",\"primaryLabelValue\":\"961953\"}},{\"attributeHeader\":{\"labelValue\":\"961955\",\"primaryLabelValue\":\"961955\"}},{\"attributeHeader\":{\"labelValue\":\"961957\",\"primaryLabelValue\":\"961957\"}},{\"attributeHeader\":{\"labelValue\":\"961959\",\"primaryLabelValue\":\"961959\"}},{\"attributeHeader\":{\"labelValue\":\"961961\",\"primaryLabelValue\":\"961961\"}},{\"attributeHeader\":{\"labelValue\":\"961963\",\"primaryLabelValue\":\"961963\"}},{\"attributeHeader\":{\"labelValue\":\"961965\",\"primaryLabelValue\":\"961965\"}},{\"attributeHeader\":{\"labelValue\":\"961967\",\"primaryLabelValue\":\"961967\"}},{\"attributeHeader\":{\"labelValue\":\"961969\",\"primaryLabelValue\":\"961969\"}},{\"attributeHeader\":{\"labelValue\":\"961971\",\"primaryLabelValue\":\"961971\"}},{\"attributeHeader\":{\"labelValue\":\"961973\",\"primaryLabelValue\":\"961973\"}},{\"attributeHeader\":{\"labelValue\":\"961975\",\"primaryLabelValue\":\"961975\"}},{\"attributeHeader\":{\"labelValue\":\"961977\",\"primaryLabelValue\":\"961977\"}},{\"attributeHeader\":{\"labelValue\":\"961979\",\"primaryLabelValue\":\"961979\"}},{\"attributeHeader\":{\"labelValue\":\"961981\",\"primaryLabelValue\":\"961981\"}},{\"attributeHeader\":{\"labelValue\":\"961983\",\"primaryLabelValue\":\"961983\"}},{\"attributeHeader\":{\"labelValue\":\"961985\",\"primaryLabelValue\":\"961985\"}},{\"attributeHeader\":{\"labelValue\":\"961987\",\"primaryLabelValue\":\"961987\"}},{\"attributeHeader\":{\"labelValue\":\"961989\",\"primaryLabelValue\":\"961989\"}},{\"attributeHeader\":{\"labelValue\":\"961991\",\"primaryLabelValue\":\"961991\"}},{\"attributeHeader\":{\"labelValue\":\"961993\",\"primaryLabelValue\":\"961993\"}},{\"attributeHeader\":{\"labelValue\":\"961995\",\"primaryLabelValue\":\"961995\"}},{\"attributeHeader\":{\"labelValue\":\"961997\",\"primaryLabelValue\":\"961997\"}},{\"attributeHeader\":{\"labelValue\":\"961999\",\"primaryLabelValue\":\"961999\"}},{\"attributeHeader\":{\"labelValue\":\"962001\",\"primaryLabelValue\":\"962001\"}},{\"attributeHeader\":{\"labelValue\":\"962003\",\"primaryLabelValue\":\"962003\"}},{\"attributeHeader\":{\"labelValue\":\"962005\",\"primaryLabelValue\":\"962005\"}},{\"attributeHeader\":{\"labelValue\":\"962007\",\"primaryLabelValue\":\"962007\"}},{\"attributeHeader\":{\"labelValue\":\"962009\",\"primaryLabelValue\":\"962009\"}},{\"attributeHeader\":{\"labelValue\":\"962011\",\"primaryLabelValue\":\"962011\"}},{\"attributeHeader\":{\"labelValue\":\"962013\",\"primaryLabelValue\":\"962013\"}},{\"attributeHeader\":{\"labelValue\":\"962015\",\"primaryLabelValue\":\"962015\"}},{\"attributeHeader\":{\"labelValue\":\"962017\",\"primaryLabelValue\":\"962017\"}},{\"attributeHeader\":{\"labelValue\":\"962019\",\"primaryLabelValue\":\"962019\"}},{\"attributeHeader\":{\"labelValue\":\"962021\",\"primaryLabelValue\":\"962021\"}},{\"attributeHeader\":{\"labelValue\":\"962023\",\"primaryLabelValue\":\"962023\"}},{\"attributeHeader\":{\"labelValue\":\"962025\",\"primaryLabelValue\":\"962025\"}},{\"attributeHeader\":{\"labelValue\":\"962027\",\"primaryLabelValue\":\"962027\"}},{\"attributeHeader\":{\"labelValue\":\"962029\",\"primaryLabelValue\":\"962029\"}},{\"attributeHeader\":{\"labelValue\":\"962031\",\"primaryLabelValue\":\"962031\"}},{\"attributeHeader\":{\"labelValue\":\"962033\",\"primaryLabelValue\":\"962033\"}},{\"attributeHeader\":{\"labelValue\":\"962035\",\"primaryLabelValue\":\"962035\"}},{\"attributeHeader\":{\"labelValue\":\"962037\",\"primaryLabelValue\":\"962037\"}},{\"attributeHeader\":{\"labelValue\":\"962039\",\"primaryLabelValue\":\"962039\"}},{\"attributeHeader\":{\"labelValue\":\"962041\",\"primaryLabelValue\":\"962041\"}},{\"attributeHeader\":{\"labelValue\":\"962043\",\"primaryLabelValue\":\"962043\"}},{\"attributeHeader\":{\"labelValue\":\"962045\",\"primaryLabelValue\":\"962045\"}},{\"attributeHeader\":{\"labelValue\":\"962047\",\"primaryLabelValue\":\"962047\"}},{\"attributeHeader\":{\"labelValue\":\"962049\",\"primaryLabelValue\":\"962049\"}},{\"attributeHeader\":{\"labelValue\":\"962051\",\"primaryLabelValue\":\"962051\"}},{\"attributeHeader\":{\"labelValue\":\"962053\",\"primaryLabelValue\":\"962053\"}},{\"attributeHeader\":{\"labelValue\":\"962055\",\"primaryLabelValue\":\"962055\"}},{\"attributeHeader\":{\"labelValue\":\"962057\",\"primaryLabelValue\":\"962057\"}},{\"attributeHeader\":{\"labelValue\":\"962059\",\"primaryLabelValue\":\"962059\"}},{\"attributeHeader\":{\"labelValue\":\"962061\",\"primaryLabelValue\":\"962061\"}},{\"attributeHeader\":{\"labelValue\":\"962063\",\"primaryLabelValue\":\"962063\"}},{\"attributeHeader\":{\"labelValue\":\"962065\",\"primaryLabelValue\":\"962065\"}},{\"attributeHeader\":{\"labelValue\":\"962067\",\"primaryLabelValue\":\"962067\"}},{\"attributeHeader\":{\"labelValue\":\"962069\",\"primaryLabelValue\":\"962069\"}},{\"attributeHeader\":{\"labelValue\":\"962071\",\"primaryLabelValue\":\"962071\"}},{\"attributeHeader\":{\"labelValue\":\"962073\",\"primaryLabelValue\":\"962073\"}},{\"attributeHeader\":{\"labelValue\":\"962075\",\"primaryLabelValue\":\"962075\"}},{\"attributeHeader\":{\"labelValue\":\"962077\",\"primaryLabelValue\":\"962077\"}},{\"attributeHeader\":{\"labelValue\":\"962079\",\"primaryLabelValue\":\"962079\"}},{\"attributeHeader\":{\"labelValue\":\"962081\",\"primaryLabelValue\":\"962081\"}},{\"attributeHeader\":{\"labelValue\":\"962083\",\"primaryLabelValue\":\"962083\"}},{\"attributeHeader\":{\"labelValue\":\"962085\",\"primaryLabelValue\":\"962085\"}},{\"attributeHeader\":{\"labelValue\":\"962087\",\"primaryLabelValue\":\"962087\"}},{\"attributeHeader\":{\"labelValue\":\"962089\",\"primaryLabelValue\":\"962089\"}},{\"attributeHeader\":{\"labelValue\":\"962091\",\"primaryLabelValue\":\"962091\"}},{\"attributeHeader\":{\"labelValue\":\"962093\",\"primaryLabelValue\":\"962093\"}},{\"attributeHeader\":{\"labelValue\":\"962095\",\"primaryLabelValue\":\"962095\"}},{\"attributeHeader\":{\"labelValue\":\"962097\",\"primaryLabelValue\":\"962097\"}},{\"attributeHeader\":{\"labelValue\":\"962101\",\"primaryLabelValue\":\"962101\"}},{\"attributeHeader\":{\"labelValue\":\"962103\",\"primaryLabelValue\":\"962103\"}},{\"attributeHeader\":{\"labelValue\":\"962105\",\"primaryLabelValue\":\"962105\"}},{\"attributeHeader\":{\"labelValue\":\"962107\",\"primaryLabelValue\":\"962107\"}},{\"attributeHeader\":{\"labelValue\":\"962109\",\"primaryLabelValue\":\"962109\"}},{\"attributeHeader\":{\"labelValue\":\"962111\",\"primaryLabelValue\":\"962111\"}},{\"attributeHeader\":{\"labelValue\":\"962113\",\"primaryLabelValue\":\"962113\"}},{\"attributeHeader\":{\"labelValue\":\"962115\",\"primaryLabelValue\":\"962115\"}},{\"attributeHeader\":{\"labelValue\":\"962117\",\"primaryLabelValue\":\"962117\"}},{\"attributeHeader\":{\"labelValue\":\"962119\",\"primaryLabelValue\":\"962119\"}},{\"attributeHeader\":{\"labelValue\":\"962121\",\"primaryLabelValue\":\"962121\"}},{\"attributeHeader\":{\"labelValue\":\"962123\",\"primaryLabelValue\":\"962123\"}},{\"attributeHeader\":{\"labelValue\":\"962125\",\"primaryLabelValue\":\"962125\"}},{\"attributeHeader\":{\"labelValue\":\"962127\",\"primaryLabelValue\":\"962127\"}},{\"attributeHeader\":{\"labelValue\":\"962129\",\"primaryLabelValue\":\"962129\"}},{\"attributeHeader\":{\"labelValue\":\"962131\",\"primaryLabelValue\":\"962131\"}},{\"attributeHeader\":{\"labelValue\":\"962133\",\"primaryLabelValue\":\"962133\"}},{\"attributeHeader\":{\"labelValue\":\"962135\",\"primaryLabelValue\":\"962135\"}},{\"attributeHeader\":{\"labelValue\":\"962137\",\"primaryLabelValue\":\"962137\"}},{\"attributeHeader\":{\"labelValue\":\"962139\",\"primaryLabelValue\":\"962139\"}},{\"attributeHeader\":{\"labelValue\":\"962141\",\"primaryLabelValue\":\"962141\"}},{\"attributeHeader\":{\"labelValue\":\"962143\",\"primaryLabelValue\":\"962143\"}},{\"attributeHeader\":{\"labelValue\":\"962145\",\"primaryLabelValue\":\"962145\"}},{\"attributeHeader\":{\"labelValue\":\"962147\",\"primaryLabelValue\":\"962147\"}},{\"attributeHeader\":{\"labelValue\":\"962149\",\"primaryLabelValue\":\"962149\"}},{\"attributeHeader\":{\"labelValue\":\"962151\",\"primaryLabelValue\":\"962151\"}},{\"attributeHeader\":{\"labelValue\":\"962153\",\"primaryLabelValue\":\"962153\"}},{\"attributeHeader\":{\"labelValue\":\"962155\",\"primaryLabelValue\":\"962155\"}},{\"attributeHeader\":{\"labelValue\":\"962157\",\"primaryLabelValue\":\"962157\"}},{\"attributeHeader\":{\"labelValue\":\"962161\",\"primaryLabelValue\":\"962161\"}},{\"attributeHeader\":{\"labelValue\":\"962163\",\"primaryLabelValue\":\"962163\"}},{\"attributeHeader\":{\"labelValue\":\"962165\",\"primaryLabelValue\":\"962165\"}},{\"attributeHeader\":{\"labelValue\":\"962167\",\"primaryLabelValue\":\"962167\"}},{\"attributeHeader\":{\"labelValue\":\"962169\",\"primaryLabelValue\":\"962169\"}},{\"attributeHeader\":{\"labelValue\":\"962171\",\"primaryLabelValue\":\"962171\"}},{\"attributeHeader\":{\"labelValue\":\"962173\",\"primaryLabelValue\":\"962173\"}},{\"attributeHeader\":{\"labelValue\":\"962175\",\"primaryLabelValue\":\"962175\"}},{\"attributeHeader\":{\"labelValue\":\"962177\",\"primaryLabelValue\":\"962177\"}},{\"attributeHeader\":{\"labelValue\":\"962179\",\"primaryLabelValue\":\"962179\"}},{\"attributeHeader\":{\"labelValue\":\"962181\",\"primaryLabelValue\":\"962181\"}},{\"attributeHeader\":{\"labelValue\":\"962183\",\"primaryLabelValue\":\"962183\"}},{\"attributeHeader\":{\"labelValue\":\"962185\",\"primaryLabelValue\":\"962185\"}},{\"attributeHeader\":{\"labelValue\":\"962187\",\"primaryLabelValue\":\"962187\"}},{\"attributeHeader\":{\"labelValue\":\"962189\",\"primaryLabelValue\":\"962189\"}},{\"attributeHeader\":{\"labelValue\":\"962191\",\"primaryLabelValue\":\"962191\"}},{\"attributeHeader\":{\"labelValue\":\"962193\",\"primaryLabelValue\":\"962193\"}},{\"attributeHeader\":{\"labelValue\":\"962195\",\"primaryLabelValue\":\"962195\"}},{\"attributeHeader\":{\"labelValue\":\"962197\",\"primaryLabelValue\":\"962197\"}},{\"attributeHeader\":{\"labelValue\":\"962199\",\"primaryLabelValue\":\"962199\"}},{\"attributeHeader\":{\"labelValue\":\"962201\",\"primaryLabelValue\":\"962201\"}},{\"attributeHeader\":{\"labelValue\":\"962203\",\"primaryLabelValue\":\"962203\"}},{\"attributeHeader\":{\"labelValue\":\"962205\",\"primaryLabelValue\":\"962205\"}},{\"attributeHeader\":{\"labelValue\":\"962207\",\"primaryLabelValue\":\"962207\"}},{\"attributeHeader\":{\"labelValue\":\"962209\",\"primaryLabelValue\":\"962209\"}},{\"attributeHeader\":{\"labelValue\":\"962211\",\"primaryLabelValue\":\"962211\"}},{\"attributeHeader\":{\"labelValue\":\"962213\",\"primaryLabelValue\":\"962213\"}},{\"attributeHeader\":{\"labelValue\":\"962215\",\"primaryLabelValue\":\"962215\"}},{\"attributeHeader\":{\"labelValue\":\"962217\",\"primaryLabelValue\":\"962217\"}},{\"attributeHeader\":{\"labelValue\":\"962219\",\"primaryLabelValue\":\"962219\"}},{\"attributeHeader\":{\"labelValue\":\"962221\",\"primaryLabelValue\":\"962221\"}},{\"attributeHeader\":{\"labelValue\":\"962223\",\"primaryLabelValue\":\"962223\"}},{\"attributeHeader\":{\"labelValue\":\"962225\",\"primaryLabelValue\":\"962225\"}},{\"attributeHeader\":{\"labelValue\":\"962227\",\"primaryLabelValue\":\"962227\"}},{\"attributeHeader\":{\"labelValue\":\"962229\",\"primaryLabelValue\":\"962229\"}},{\"attributeHeader\":{\"labelValue\":\"962231\",\"primaryLabelValue\":\"962231\"}},{\"attributeHeader\":{\"labelValue\":\"962233\",\"primaryLabelValue\":\"962233\"}},{\"attributeHeader\":{\"labelValue\":\"962235\",\"primaryLabelValue\":\"962235\"}},{\"attributeHeader\":{\"labelValue\":\"962237\",\"primaryLabelValue\":\"962237\"}},{\"attributeHeader\":{\"labelValue\":\"962239\",\"primaryLabelValue\":\"962239\"}},{\"attributeHeader\":{\"labelValue\":\"962241\",\"primaryLabelValue\":\"962241\"}},{\"attributeHeader\":{\"labelValue\":\"962243\",\"primaryLabelValue\":\"962243\"}},{\"attributeHeader\":{\"labelValue\":\"962245\",\"primaryLabelValue\":\"962245\"}},{\"attributeHeader\":{\"labelValue\":\"962247\",\"primaryLabelValue\":\"962247\"}},{\"attributeHeader\":{\"labelValue\":\"962249\",\"primaryLabelValue\":\"962249\"}},{\"attributeHeader\":{\"labelValue\":\"962251\",\"primaryLabelValue\":\"962251\"}},{\"attributeHeader\":{\"labelValue\":\"962253\",\"primaryLabelValue\":\"962253\"}},{\"attributeHeader\":{\"labelValue\":\"962255\",\"primaryLabelValue\":\"962255\"}},{\"attributeHeader\":{\"labelValue\":\"962257\",\"primaryLabelValue\":\"962257\"}},{\"attributeHeader\":{\"labelValue\":\"962259\",\"primaryLabelValue\":\"962259\"}},{\"attributeHeader\":{\"labelValue\":\"962261\",\"primaryLabelValue\":\"962261\"}},{\"attributeHeader\":{\"labelValue\":\"962263\",\"primaryLabelValue\":\"962263\"}},{\"attributeHeader\":{\"labelValue\":\"962265\",\"primaryLabelValue\":\"962265\"}},{\"attributeHeader\":{\"labelValue\":\"962267\",\"primaryLabelValue\":\"962267\"}},{\"attributeHeader\":{\"labelValue\":\"962269\",\"primaryLabelValue\":\"962269\"}},{\"attributeHeader\":{\"labelValue\":\"962271\",\"primaryLabelValue\":\"962271\"}},{\"attributeHeader\":{\"labelValue\":\"962273\",\"primaryLabelValue\":\"962273\"}},{\"attributeHeader\":{\"labelValue\":\"962275\",\"primaryLabelValue\":\"962275\"}},{\"attributeHeader\":{\"labelValue\":\"962277\",\"primaryLabelValue\":\"962277\"}},{\"attributeHeader\":{\"labelValue\":\"962279\",\"primaryLabelValue\":\"962279\"}},{\"attributeHeader\":{\"labelValue\":\"962281\",\"primaryLabelValue\":\"962281\"}},{\"attributeHeader\":{\"labelValue\":\"962283\",\"primaryLabelValue\":\"962283\"}},{\"attributeHeader\":{\"labelValue\":\"962285\",\"primaryLabelValue\":\"962285\"}},{\"attributeHeader\":{\"labelValue\":\"962287\",\"primaryLabelValue\":\"962287\"}},{\"attributeHeader\":{\"labelValue\":\"962289\",\"primaryLabelValue\":\"962289\"}},{\"attributeHeader\":{\"labelValue\":\"962291\",\"primaryLabelValue\":\"962291\"}},{\"attributeHeader\":{\"labelValue\":\"962293\",\"primaryLabelValue\":\"962293\"}},{\"attributeHeader\":{\"labelValue\":\"962295\",\"primaryLabelValue\":\"962295\"}},{\"attributeHeader\":{\"labelValue\":\"962297\",\"primaryLabelValue\":\"962297\"}},{\"attributeHeader\":{\"labelValue\":\"962299\",\"primaryLabelValue\":\"962299\"}},{\"attributeHeader\":{\"labelValue\":\"962301\",\"primaryLabelValue\":\"962301\"}},{\"attributeHeader\":{\"labelValue\":\"962303\",\"primaryLabelValue\":\"962303\"}},{\"attributeHeader\":{\"labelValue\":\"962305\",\"primaryLabelValue\":\"962305\"}},{\"attributeHeader\":{\"labelValue\":\"962307\",\"primaryLabelValue\":\"962307\"}},{\"attributeHeader\":{\"labelValue\":\"962309\",\"primaryLabelValue\":\"962309\"}},{\"attributeHeader\":{\"labelValue\":\"962311\",\"primaryLabelValue\":\"962311\"}},{\"attributeHeader\":{\"labelValue\":\"962313\",\"primaryLabelValue\":\"962313\"}},{\"attributeHeader\":{\"labelValue\":\"962315\",\"primaryLabelValue\":\"962315\"}},{\"attributeHeader\":{\"labelValue\":\"962317\",\"primaryLabelValue\":\"962317\"}},{\"attributeHeader\":{\"labelValue\":\"962319\",\"primaryLabelValue\":\"962319\"}},{\"attributeHeader\":{\"labelValue\":\"962321\",\"primaryLabelValue\":\"962321\"}},{\"attributeHeader\":{\"labelValue\":\"962323\",\"primaryLabelValue\":\"962323\"}},{\"attributeHeader\":{\"labelValue\":\"962325\",\"primaryLabelValue\":\"962325\"}},{\"attributeHeader\":{\"labelValue\":\"962327\",\"primaryLabelValue\":\"962327\"}},{\"attributeHeader\":{\"labelValue\":\"962329\",\"primaryLabelValue\":\"962329\"}},{\"attributeHeader\":{\"labelValue\":\"962331\",\"primaryLabelValue\":\"962331\"}},{\"attributeHeader\":{\"labelValue\":\"962333\",\"primaryLabelValue\":\"962333\"}},{\"attributeHeader\":{\"labelValue\":\"962335\",\"primaryLabelValue\":\"962335\"}},{\"attributeHeader\":{\"labelValue\":\"962337\",\"primaryLabelValue\":\"962337\"}},{\"attributeHeader\":{\"labelValue\":\"962339\",\"primaryLabelValue\":\"962339\"}},{\"attributeHeader\":{\"labelValue\":\"962341\",\"primaryLabelValue\":\"962341\"}},{\"attributeHeader\":{\"labelValue\":\"962343\",\"primaryLabelValue\":\"962343\"}},{\"attributeHeader\":{\"labelValue\":\"962345\",\"primaryLabelValue\":\"962345\"}},{\"attributeHeader\":{\"labelValue\":\"962347\",\"primaryLabelValue\":\"962347\"}},{\"attributeHeader\":{\"labelValue\":\"962349\",\"primaryLabelValue\":\"962349\"}},{\"attributeHeader\":{\"labelValue\":\"962351\",\"primaryLabelValue\":\"962351\"}},{\"attributeHeader\":{\"labelValue\":\"962353\",\"primaryLabelValue\":\"962353\"}},{\"attributeHeader\":{\"labelValue\":\"962355\",\"primaryLabelValue\":\"962355\"}},{\"attributeHeader\":{\"labelValue\":\"962357\",\"primaryLabelValue\":\"962357\"}},{\"attributeHeader\":{\"labelValue\":\"962359\",\"primaryLabelValue\":\"962359\"}},{\"attributeHeader\":{\"labelValue\":\"962361\",\"primaryLabelValue\":\"962361\"}},{\"attributeHeader\":{\"labelValue\":\"962363\",\"primaryLabelValue\":\"962363\"}},{\"attributeHeader\":{\"labelValue\":\"962365\",\"primaryLabelValue\":\"962365\"}},{\"attributeHeader\":{\"labelValue\":\"962367\",\"primaryLabelValue\":\"962367\"}},{\"attributeHeader\":{\"labelValue\":\"962369\",\"primaryLabelValue\":\"962369\"}},{\"attributeHeader\":{\"labelValue\":\"962371\",\"primaryLabelValue\":\"962371\"}},{\"attributeHeader\":{\"labelValue\":\"962373\",\"primaryLabelValue\":\"962373\"}},{\"attributeHeader\":{\"labelValue\":\"962375\",\"primaryLabelValue\":\"962375\"}},{\"attributeHeader\":{\"labelValue\":\"962377\",\"primaryLabelValue\":\"962377\"}},{\"attributeHeader\":{\"labelValue\":\"962379\",\"primaryLabelValue\":\"962379\"}},{\"attributeHeader\":{\"labelValue\":\"962381\",\"primaryLabelValue\":\"962381\"}},{\"attributeHeader\":{\"labelValue\":\"962383\",\"primaryLabelValue\":\"962383\"}},{\"attributeHeader\":{\"labelValue\":\"962385\",\"primaryLabelValue\":\"962385\"}},{\"attributeHeader\":{\"labelValue\":\"962387\",\"primaryLabelValue\":\"962387\"}},{\"attributeHeader\":{\"labelValue\":\"962389\",\"primaryLabelValue\":\"962389\"}},{\"attributeHeader\":{\"labelValue\":\"962391\",\"primaryLabelValue\":\"962391\"}},{\"attributeHeader\":{\"labelValue\":\"962393\",\"primaryLabelValue\":\"962393\"}},{\"attributeHeader\":{\"labelValue\":\"962395\",\"primaryLabelValue\":\"962395\"}},{\"attributeHeader\":{\"labelValue\":\"962397\",\"primaryLabelValue\":\"962397\"}},{\"attributeHeader\":{\"labelValue\":\"962399\",\"primaryLabelValue\":\"962399\"}},{\"attributeHeader\":{\"labelValue\":\"962401\",\"primaryLabelValue\":\"962401\"}},{\"attributeHeader\":{\"labelValue\":\"962403\",\"primaryLabelValue\":\"962403\"}},{\"attributeHeader\":{\"labelValue\":\"962405\",\"primaryLabelValue\":\"962405\"}},{\"attributeHeader\":{\"labelValue\":\"962407\",\"primaryLabelValue\":\"962407\"}},{\"attributeHeader\":{\"labelValue\":\"962409\",\"primaryLabelValue\":\"962409\"}},{\"attributeHeader\":{\"labelValue\":\"962411\",\"primaryLabelValue\":\"962411\"}},{\"attributeHeader\":{\"labelValue\":\"962413\",\"primaryLabelValue\":\"962413\"}},{\"attributeHeader\":{\"labelValue\":\"962415\",\"primaryLabelValue\":\"962415\"}},{\"attributeHeader\":{\"labelValue\":\"962417\",\"primaryLabelValue\":\"962417\"}},{\"attributeHeader\":{\"labelValue\":\"962419\",\"primaryLabelValue\":\"962419\"}},{\"attributeHeader\":{\"labelValue\":\"962421\",\"primaryLabelValue\":\"962421\"}},{\"attributeHeader\":{\"labelValue\":\"962423\",\"primaryLabelValue\":\"962423\"}},{\"attributeHeader\":{\"labelValue\":\"962425\",\"primaryLabelValue\":\"962425\"}},{\"attributeHeader\":{\"labelValue\":\"962427\",\"primaryLabelValue\":\"962427\"}},{\"attributeHeader\":{\"labelValue\":\"962429\",\"primaryLabelValue\":\"962429\"}},{\"attributeHeader\":{\"labelValue\":\"962431\",\"primaryLabelValue\":\"962431\"}},{\"attributeHeader\":{\"labelValue\":\"962433\",\"primaryLabelValue\":\"962433\"}},{\"attributeHeader\":{\"labelValue\":\"962435\",\"primaryLabelValue\":\"962435\"}},{\"attributeHeader\":{\"labelValue\":\"962437\",\"primaryLabelValue\":\"962437\"}},{\"attributeHeader\":{\"labelValue\":\"962439\",\"primaryLabelValue\":\"962439\"}},{\"attributeHeader\":{\"labelValue\":\"962441\",\"primaryLabelValue\":\"962441\"}},{\"attributeHeader\":{\"labelValue\":\"962443\",\"primaryLabelValue\":\"962443\"}},{\"attributeHeader\":{\"labelValue\":\"962445\",\"primaryLabelValue\":\"962445\"}},{\"attributeHeader\":{\"labelValue\":\"962447\",\"primaryLabelValue\":\"962447\"}},{\"attributeHeader\":{\"labelValue\":\"962449\",\"primaryLabelValue\":\"962449\"}},{\"attributeHeader\":{\"labelValue\":\"962451\",\"primaryLabelValue\":\"962451\"}},{\"attributeHeader\":{\"labelValue\":\"962453\",\"primaryLabelValue\":\"962453\"}},{\"attributeHeader\":{\"labelValue\":\"962455\",\"primaryLabelValue\":\"962455\"}},{\"attributeHeader\":{\"labelValue\":\"962457\",\"primaryLabelValue\":\"962457\"}},{\"attributeHeader\":{\"labelValue\":\"962459\",\"primaryLabelValue\":\"962459\"}},{\"attributeHeader\":{\"labelValue\":\"962461\",\"primaryLabelValue\":\"962461\"}},{\"attributeHeader\":{\"labelValue\":\"962463\",\"primaryLabelValue\":\"962463\"}},{\"attributeHeader\":{\"labelValue\":\"962465\",\"primaryLabelValue\":\"962465\"}},{\"attributeHeader\":{\"labelValue\":\"962467\",\"primaryLabelValue\":\"962467\"}},{\"attributeHeader\":{\"labelValue\":\"962469\",\"primaryLabelValue\":\"962469\"}},{\"attributeHeader\":{\"labelValue\":\"962471\",\"primaryLabelValue\":\"962471\"}},{\"attributeHeader\":{\"labelValue\":\"962473\",\"primaryLabelValue\":\"962473\"}},{\"attributeHeader\":{\"labelValue\":\"962475\",\"primaryLabelValue\":\"962475\"}},{\"attributeHeader\":{\"labelValue\":\"962477\",\"primaryLabelValue\":\"962477\"}},{\"attributeHeader\":{\"labelValue\":\"962479\",\"primaryLabelValue\":\"962479\"}},{\"attributeHeader\":{\"labelValue\":\"962481\",\"primaryLabelValue\":\"962481\"}},{\"attributeHeader\":{\"labelValue\":\"962483\",\"primaryLabelValue\":\"962483\"}},{\"attributeHeader\":{\"labelValue\":\"962485\",\"primaryLabelValue\":\"962485\"}},{\"attributeHeader\":{\"labelValue\":\"962487\",\"primaryLabelValue\":\"962487\"}},{\"attributeHeader\":{\"labelValue\":\"962489\",\"primaryLabelValue\":\"962489\"}},{\"attributeHeader\":{\"labelValue\":\"962491\",\"primaryLabelValue\":\"962491\"}},{\"attributeHeader\":{\"labelValue\":\"962493\",\"primaryLabelValue\":\"962493\"}},{\"attributeHeader\":{\"labelValue\":\"962495\",\"primaryLabelValue\":\"962495\"}},{\"attributeHeader\":{\"labelValue\":\"962497\",\"primaryLabelValue\":\"962497\"}},{\"attributeHeader\":{\"labelValue\":\"962499\",\"primaryLabelValue\":\"962499\"}},{\"attributeHeader\":{\"labelValue\":\"962501\",\"primaryLabelValue\":\"962501\"}},{\"attributeHeader\":{\"labelValue\":\"962503\",\"primaryLabelValue\":\"962503\"}},{\"attributeHeader\":{\"labelValue\":\"962505\",\"primaryLabelValue\":\"962505\"}},{\"attributeHeader\":{\"labelValue\":\"962507\",\"primaryLabelValue\":\"962507\"}},{\"attributeHeader\":{\"labelValue\":\"962509\",\"primaryLabelValue\":\"962509\"}},{\"attributeHeader\":{\"labelValue\":\"962511\",\"primaryLabelValue\":\"962511\"}},{\"attributeHeader\":{\"labelValue\":\"962513\",\"primaryLabelValue\":\"962513\"}},{\"attributeHeader\":{\"labelValue\":\"962515\",\"primaryLabelValue\":\"962515\"}},{\"attributeHeader\":{\"labelValue\":\"962517\",\"primaryLabelValue\":\"962517\"}},{\"attributeHeader\":{\"labelValue\":\"962519\",\"primaryLabelValue\":\"962519\"}},{\"attributeHeader\":{\"labelValue\":\"962521\",\"primaryLabelValue\":\"962521\"}},{\"attributeHeader\":{\"labelValue\":\"962523\",\"primaryLabelValue\":\"962523\"}},{\"attributeHeader\":{\"labelValue\":\"962525\",\"primaryLabelValue\":\"962525\"}},{\"attributeHeader\":{\"labelValue\":\"962527\",\"primaryLabelValue\":\"962527\"}},{\"attributeHeader\":{\"labelValue\":\"962529\",\"primaryLabelValue\":\"962529\"}},{\"attributeHeader\":{\"labelValue\":\"962531\",\"primaryLabelValue\":\"962531\"}},{\"attributeHeader\":{\"labelValue\":\"962533\",\"primaryLabelValue\":\"962533\"}},{\"attributeHeader\":{\"labelValue\":\"962535\",\"primaryLabelValue\":\"962535\"}},{\"attributeHeader\":{\"labelValue\":\"962537\",\"primaryLabelValue\":\"962537\"}},{\"attributeHeader\":{\"labelValue\":\"962539\",\"primaryLabelValue\":\"962539\"}},{\"attributeHeader\":{\"labelValue\":\"962541\",\"primaryLabelValue\":\"962541\"}},{\"attributeHeader\":{\"labelValue\":\"962543\",\"primaryLabelValue\":\"962543\"}},{\"attributeHeader\":{\"labelValue\":\"962545\",\"primaryLabelValue\":\"962545\"}},{\"attributeHeader\":{\"labelValue\":\"962547\",\"primaryLabelValue\":\"962547\"}},{\"attributeHeader\":{\"labelValue\":\"962549\",\"primaryLabelValue\":\"962549\"}},{\"attributeHeader\":{\"labelValue\":\"962551\",\"primaryLabelValue\":\"962551\"}},{\"attributeHeader\":{\"labelValue\":\"962553\",\"primaryLabelValue\":\"962553\"}},{\"attributeHeader\":{\"labelValue\":\"962555\",\"primaryLabelValue\":\"962555\"}},{\"attributeHeader\":{\"labelValue\":\"962557\",\"primaryLabelValue\":\"962557\"}},{\"attributeHeader\":{\"labelValue\":\"962559\",\"primaryLabelValue\":\"962559\"}},{\"attributeHeader\":{\"labelValue\":\"962561\",\"primaryLabelValue\":\"962561\"}},{\"attributeHeader\":{\"labelValue\":\"962563\",\"primaryLabelValue\":\"962563\"}},{\"attributeHeader\":{\"labelValue\":\"962565\",\"primaryLabelValue\":\"962565\"}},{\"attributeHeader\":{\"labelValue\":\"962567\",\"primaryLabelValue\":\"962567\"}},{\"attributeHeader\":{\"labelValue\":\"962569\",\"primaryLabelValue\":\"962569\"}},{\"attributeHeader\":{\"labelValue\":\"962571\",\"primaryLabelValue\":\"962571\"}},{\"attributeHeader\":{\"labelValue\":\"962573\",\"primaryLabelValue\":\"962573\"}},{\"attributeHeader\":{\"labelValue\":\"962575\",\"primaryLabelValue\":\"962575\"}},{\"attributeHeader\":{\"labelValue\":\"962577\",\"primaryLabelValue\":\"962577\"}},{\"attributeHeader\":{\"labelValue\":\"962579\",\"primaryLabelValue\":\"962579\"}},{\"attributeHeader\":{\"labelValue\":\"962581\",\"primaryLabelValue\":\"962581\"}},{\"attributeHeader\":{\"labelValue\":\"962583\",\"primaryLabelValue\":\"962583\"}},{\"attributeHeader\":{\"labelValue\":\"962585\",\"primaryLabelValue\":\"962585\"}},{\"attributeHeader\":{\"labelValue\":\"962587\",\"primaryLabelValue\":\"962587\"}},{\"attributeHeader\":{\"labelValue\":\"962589\",\"primaryLabelValue\":\"962589\"}},{\"attributeHeader\":{\"labelValue\":\"962591\",\"primaryLabelValue\":\"962591\"}},{\"attributeHeader\":{\"labelValue\":\"962593\",\"primaryLabelValue\":\"962593\"}},{\"attributeHeader\":{\"labelValue\":\"962595\",\"primaryLabelValue\":\"962595\"}},{\"attributeHeader\":{\"labelValue\":\"962597\",\"primaryLabelValue\":\"962597\"}},{\"attributeHeader\":{\"labelValue\":\"962599\",\"primaryLabelValue\":\"962599\"}},{\"attributeHeader\":{\"labelValue\":\"962601\",\"primaryLabelValue\":\"962601\"}},{\"attributeHeader\":{\"labelValue\":\"962603\",\"primaryLabelValue\":\"962603\"}},{\"attributeHeader\":{\"labelValue\":\"962605\",\"primaryLabelValue\":\"962605\"}},{\"attributeHeader\":{\"labelValue\":\"962607\",\"primaryLabelValue\":\"962607\"}},{\"attributeHeader\":{\"labelValue\":\"962609\",\"primaryLabelValue\":\"962609\"}},{\"attributeHeader\":{\"labelValue\":\"962611\",\"primaryLabelValue\":\"962611\"}},{\"attributeHeader\":{\"labelValue\":\"962613\",\"primaryLabelValue\":\"962613\"}},{\"attributeHeader\":{\"labelValue\":\"962615\",\"primaryLabelValue\":\"962615\"}},{\"attributeHeader\":{\"labelValue\":\"962617\",\"primaryLabelValue\":\"962617\"}},{\"attributeHeader\":{\"labelValue\":\"962619\",\"primaryLabelValue\":\"962619\"}},{\"attributeHeader\":{\"labelValue\":\"962621\",\"primaryLabelValue\":\"962621\"}},{\"attributeHeader\":{\"labelValue\":\"962623\",\"primaryLabelValue\":\"962623\"}},{\"attributeHeader\":{\"labelValue\":\"962625\",\"primaryLabelValue\":\"962625\"}},{\"attributeHeader\":{\"labelValue\":\"962627\",\"primaryLabelValue\":\"962627\"}},{\"attributeHeader\":{\"labelValue\":\"962629\",\"primaryLabelValue\":\"962629\"}},{\"attributeHeader\":{\"labelValue\":\"962633\",\"primaryLabelValue\":\"962633\"}},{\"attributeHeader\":{\"labelValue\":\"962635\",\"primaryLabelValue\":\"962635\"}},{\"attributeHeader\":{\"labelValue\":\"962637\",\"primaryLabelValue\":\"962637\"}},{\"attributeHeader\":{\"labelValue\":\"962639\",\"primaryLabelValue\":\"962639\"}},{\"attributeHeader\":{\"labelValue\":\"962641\",\"primaryLabelValue\":\"962641\"}},{\"attributeHeader\":{\"labelValue\":\"962643\",\"primaryLabelValue\":\"962643\"}},{\"attributeHeader\":{\"labelValue\":\"962645\",\"primaryLabelValue\":\"962645\"}},{\"attributeHeader\":{\"labelValue\":\"962647\",\"primaryLabelValue\":\"962647\"}},{\"attributeHeader\":{\"labelValue\":\"962649\",\"primaryLabelValue\":\"962649\"}},{\"attributeHeader\":{\"labelValue\":\"962651\",\"primaryLabelValue\":\"962651\"}},{\"attributeHeader\":{\"labelValue\":\"962653\",\"primaryLabelValue\":\"962653\"}},{\"attributeHeader\":{\"labelValue\":\"962655\",\"primaryLabelValue\":\"962655\"}},{\"attributeHeader\":{\"labelValue\":\"962657\",\"primaryLabelValue\":\"962657\"}},{\"attributeHeader\":{\"labelValue\":\"962659\",\"primaryLabelValue\":\"962659\"}},{\"attributeHeader\":{\"labelValue\":\"962661\",\"primaryLabelValue\":\"962661\"}},{\"attributeHeader\":{\"labelValue\":\"962663\",\"primaryLabelValue\":\"962663\"}},{\"attributeHeader\":{\"labelValue\":\"962665\",\"primaryLabelValue\":\"962665\"}},{\"attributeHeader\":{\"labelValue\":\"962667\",\"primaryLabelValue\":\"962667\"}},{\"attributeHeader\":{\"labelValue\":\"962669\",\"primaryLabelValue\":\"962669\"}},{\"attributeHeader\":{\"labelValue\":\"962671\",\"primaryLabelValue\":\"962671\"}},{\"attributeHeader\":{\"labelValue\":\"962673\",\"primaryLabelValue\":\"962673\"}},{\"attributeHeader\":{\"labelValue\":\"962675\",\"primaryLabelValue\":\"962675\"}},{\"attributeHeader\":{\"labelValue\":\"962677\",\"primaryLabelValue\":\"962677\"}},{\"attributeHeader\":{\"labelValue\":\"962679\",\"primaryLabelValue\":\"962679\"}},{\"attributeHeader\":{\"labelValue\":\"962681\",\"primaryLabelValue\":\"962681\"}},{\"attributeHeader\":{\"labelValue\":\"962683\",\"primaryLabelValue\":\"962683\"}},{\"attributeHeader\":{\"labelValue\":\"962685\",\"primaryLabelValue\":\"962685\"}},{\"attributeHeader\":{\"labelValue\":\"962687\",\"primaryLabelValue\":\"962687\"}},{\"attributeHeader\":{\"labelValue\":\"962689\",\"primaryLabelValue\":\"962689\"}},{\"attributeHeader\":{\"labelValue\":\"962691\",\"primaryLabelValue\":\"962691\"}},{\"attributeHeader\":{\"labelValue\":\"962693\",\"primaryLabelValue\":\"962693\"}},{\"attributeHeader\":{\"labelValue\":\"962695\",\"primaryLabelValue\":\"962695\"}},{\"attributeHeader\":{\"labelValue\":\"962697\",\"primaryLabelValue\":\"962697\"}},{\"attributeHeader\":{\"labelValue\":\"962699\",\"primaryLabelValue\":\"962699\"}},{\"attributeHeader\":{\"labelValue\":\"962701\",\"primaryLabelValue\":\"962701\"}},{\"attributeHeader\":{\"labelValue\":\"962703\",\"primaryLabelValue\":\"962703\"}},{\"attributeHeader\":{\"labelValue\":\"962705\",\"primaryLabelValue\":\"962705\"}},{\"attributeHeader\":{\"labelValue\":\"962707\",\"primaryLabelValue\":\"962707\"}},{\"attributeHeader\":{\"labelValue\":\"962709\",\"primaryLabelValue\":\"962709\"}},{\"attributeHeader\":{\"labelValue\":\"962711\",\"primaryLabelValue\":\"962711\"}},{\"attributeHeader\":{\"labelValue\":\"962713\",\"primaryLabelValue\":\"962713\"}},{\"attributeHeader\":{\"labelValue\":\"962715\",\"primaryLabelValue\":\"962715\"}},{\"attributeHeader\":{\"labelValue\":\"962717\",\"primaryLabelValue\":\"962717\"}},{\"attributeHeader\":{\"labelValue\":\"962719\",\"primaryLabelValue\":\"962719\"}},{\"attributeHeader\":{\"labelValue\":\"962721\",\"primaryLabelValue\":\"962721\"}},{\"attributeHeader\":{\"labelValue\":\"962723\",\"primaryLabelValue\":\"962723\"}},{\"attributeHeader\":{\"labelValue\":\"962725\",\"primaryLabelValue\":\"962725\"}},{\"attributeHeader\":{\"labelValue\":\"962727\",\"primaryLabelValue\":\"962727\"}},{\"attributeHeader\":{\"labelValue\":\"962729\",\"primaryLabelValue\":\"962729\"}},{\"attributeHeader\":{\"labelValue\":\"962731\",\"primaryLabelValue\":\"962731\"}},{\"attributeHeader\":{\"labelValue\":\"962733\",\"primaryLabelValue\":\"962733\"}},{\"attributeHeader\":{\"labelValue\":\"962735\",\"primaryLabelValue\":\"962735\"}},{\"attributeHeader\":{\"labelValue\":\"962737\",\"primaryLabelValue\":\"962737\"}},{\"attributeHeader\":{\"labelValue\":\"962739\",\"primaryLabelValue\":\"962739\"}},{\"attributeHeader\":{\"labelValue\":\"962741\",\"primaryLabelValue\":\"962741\"}},{\"attributeHeader\":{\"labelValue\":\"962743\",\"primaryLabelValue\":\"962743\"}},{\"attributeHeader\":{\"labelValue\":\"962745\",\"primaryLabelValue\":\"962745\"}},{\"attributeHeader\":{\"labelValue\":\"962747\",\"primaryLabelValue\":\"962747\"}},{\"attributeHeader\":{\"labelValue\":\"962749\",\"primaryLabelValue\":\"962749\"}},{\"attributeHeader\":{\"labelValue\":\"962751\",\"primaryLabelValue\":\"962751\"}},{\"attributeHeader\":{\"labelValue\":\"962753\",\"primaryLabelValue\":\"962753\"}},{\"attributeHeader\":{\"labelValue\":\"962755\",\"primaryLabelValue\":\"962755\"}},{\"attributeHeader\":{\"labelValue\":\"962757\",\"primaryLabelValue\":\"962757\"}},{\"attributeHeader\":{\"labelValue\":\"962759\",\"primaryLabelValue\":\"962759\"}},{\"attributeHeader\":{\"labelValue\":\"962761\",\"primaryLabelValue\":\"962761\"}},{\"attributeHeader\":{\"labelValue\":\"962763\",\"primaryLabelValue\":\"962763\"}},{\"attributeHeader\":{\"labelValue\":\"962765\",\"primaryLabelValue\":\"962765\"}},{\"attributeHeader\":{\"labelValue\":\"962767\",\"primaryLabelValue\":\"962767\"}},{\"attributeHeader\":{\"labelValue\":\"962769\",\"primaryLabelValue\":\"962769\"}},{\"attributeHeader\":{\"labelValue\":\"962771\",\"primaryLabelValue\":\"962771\"}},{\"attributeHeader\":{\"labelValue\":\"962773\",\"primaryLabelValue\":\"962773\"}},{\"attributeHeader\":{\"labelValue\":\"962775\",\"primaryLabelValue\":\"962775\"}},{\"attributeHeader\":{\"labelValue\":\"962777\",\"primaryLabelValue\":\"962777\"}},{\"attributeHeader\":{\"labelValue\":\"962779\",\"primaryLabelValue\":\"962779\"}},{\"attributeHeader\":{\"labelValue\":\"962781\",\"primaryLabelValue\":\"962781\"}},{\"attributeHeader\":{\"labelValue\":\"962783\",\"primaryLabelValue\":\"962783\"}},{\"attributeHeader\":{\"labelValue\":\"962785\",\"primaryLabelValue\":\"962785\"}},{\"attributeHeader\":{\"labelValue\":\"962787\",\"primaryLabelValue\":\"962787\"}},{\"attributeHeader\":{\"labelValue\":\"962789\",\"primaryLabelValue\":\"962789\"}},{\"attributeHeader\":{\"labelValue\":\"962791\",\"primaryLabelValue\":\"962791\"}},{\"attributeHeader\":{\"labelValue\":\"962793\",\"primaryLabelValue\":\"962793\"}},{\"attributeHeader\":{\"labelValue\":\"962795\",\"primaryLabelValue\":\"962795\"}},{\"attributeHeader\":{\"labelValue\":\"962797\",\"primaryLabelValue\":\"962797\"}},{\"attributeHeader\":{\"labelValue\":\"962799\",\"primaryLabelValue\":\"962799\"}},{\"attributeHeader\":{\"labelValue\":\"962801\",\"primaryLabelValue\":\"962801\"}},{\"attributeHeader\":{\"labelValue\":\"962803\",\"primaryLabelValue\":\"962803\"}},{\"attributeHeader\":{\"labelValue\":\"962805\",\"primaryLabelValue\":\"962805\"}},{\"attributeHeader\":{\"labelValue\":\"962807\",\"primaryLabelValue\":\"962807\"}},{\"attributeHeader\":{\"labelValue\":\"962809\",\"primaryLabelValue\":\"962809\"}},{\"attributeHeader\":{\"labelValue\":\"962811\",\"primaryLabelValue\":\"962811\"}},{\"attributeHeader\":{\"labelValue\":\"962813\",\"primaryLabelValue\":\"962813\"}},{\"attributeHeader\":{\"labelValue\":\"962815\",\"primaryLabelValue\":\"962815\"}},{\"attributeHeader\":{\"labelValue\":\"962817\",\"primaryLabelValue\":\"962817\"}},{\"attributeHeader\":{\"labelValue\":\"962819\",\"primaryLabelValue\":\"962819\"}},{\"attributeHeader\":{\"labelValue\":\"962821\",\"primaryLabelValue\":\"962821\"}},{\"attributeHeader\":{\"labelValue\":\"962823\",\"primaryLabelValue\":\"962823\"}},{\"attributeHeader\":{\"labelValue\":\"962825\",\"primaryLabelValue\":\"962825\"}},{\"attributeHeader\":{\"labelValue\":\"962827\",\"primaryLabelValue\":\"962827\"}},{\"attributeHeader\":{\"labelValue\":\"962829\",\"primaryLabelValue\":\"962829\"}},{\"attributeHeader\":{\"labelValue\":\"962831\",\"primaryLabelValue\":\"962831\"}},{\"attributeHeader\":{\"labelValue\":\"962833\",\"primaryLabelValue\":\"962833\"}},{\"attributeHeader\":{\"labelValue\":\"962835\",\"primaryLabelValue\":\"962835\"}},{\"attributeHeader\":{\"labelValue\":\"962837\",\"primaryLabelValue\":\"962837\"}},{\"attributeHeader\":{\"labelValue\":\"962839\",\"primaryLabelValue\":\"962839\"}},{\"attributeHeader\":{\"labelValue\":\"962843\",\"primaryLabelValue\":\"962843\"}},{\"attributeHeader\":{\"labelValue\":\"962845\",\"primaryLabelValue\":\"962845\"}},{\"attributeHeader\":{\"labelValue\":\"962847\",\"primaryLabelValue\":\"962847\"}},{\"attributeHeader\":{\"labelValue\":\"962849\",\"primaryLabelValue\":\"962849\"}},{\"attributeHeader\":{\"labelValue\":\"962851\",\"primaryLabelValue\":\"962851\"}},{\"attributeHeader\":{\"labelValue\":\"962853\",\"primaryLabelValue\":\"962853\"}},{\"attributeHeader\":{\"labelValue\":\"962857\",\"primaryLabelValue\":\"962857\"}},{\"attributeHeader\":{\"labelValue\":\"962859\",\"primaryLabelValue\":\"962859\"}},{\"attributeHeader\":{\"labelValue\":\"962861\",\"primaryLabelValue\":\"962861\"}},{\"attributeHeader\":{\"labelValue\":\"962863\",\"primaryLabelValue\":\"962863\"}},{\"attributeHeader\":{\"labelValue\":\"962865\",\"primaryLabelValue\":\"962865\"}},{\"attributeHeader\":{\"labelValue\":\"962867\",\"primaryLabelValue\":\"962867\"}},{\"attributeHeader\":{\"labelValue\":\"962869\",\"primaryLabelValue\":\"962869\"}},{\"attributeHeader\":{\"labelValue\":\"962871\",\"primaryLabelValue\":\"962871\"}},{\"attributeHeader\":{\"labelValue\":\"962873\",\"primaryLabelValue\":\"962873\"}},{\"attributeHeader\":{\"labelValue\":\"962875\",\"primaryLabelValue\":\"962875\"}},{\"attributeHeader\":{\"labelValue\":\"962877\",\"primaryLabelValue\":\"962877\"}},{\"attributeHeader\":{\"labelValue\":\"962879\",\"primaryLabelValue\":\"962879\"}},{\"attributeHeader\":{\"labelValue\":\"962881\",\"primaryLabelValue\":\"962881\"}},{\"attributeHeader\":{\"labelValue\":\"962883\",\"primaryLabelValue\":\"962883\"}},{\"attributeHeader\":{\"labelValue\":\"962885\",\"primaryLabelValue\":\"962885\"}},{\"attributeHeader\":{\"labelValue\":\"962887\",\"primaryLabelValue\":\"962887\"}},{\"attributeHeader\":{\"labelValue\":\"962889\",\"primaryLabelValue\":\"962889\"}},{\"attributeHeader\":{\"labelValue\":\"962891\",\"primaryLabelValue\":\"962891\"}},{\"attributeHeader\":{\"labelValue\":\"962893\",\"primaryLabelValue\":\"962893\"}},{\"attributeHeader\":{\"labelValue\":\"962895\",\"primaryLabelValue\":\"962895\"}},{\"attributeHeader\":{\"labelValue\":\"962897\",\"primaryLabelValue\":\"962897\"}},{\"attributeHeader\":{\"labelValue\":\"962899\",\"primaryLabelValue\":\"962899\"}},{\"attributeHeader\":{\"labelValue\":\"962901\",\"primaryLabelValue\":\"962901\"}},{\"attributeHeader\":{\"labelValue\":\"962903\",\"primaryLabelValue\":\"962903\"}},{\"attributeHeader\":{\"labelValue\":\"962905\",\"primaryLabelValue\":\"962905\"}},{\"attributeHeader\":{\"labelValue\":\"962907\",\"primaryLabelValue\":\"962907\"}},{\"attributeHeader\":{\"labelValue\":\"962909\",\"primaryLabelValue\":\"962909\"}},{\"attributeHeader\":{\"labelValue\":\"962911\",\"primaryLabelValue\":\"962911\"}},{\"attributeHeader\":{\"labelValue\":\"962913\",\"primaryLabelValue\":\"962913\"}},{\"attributeHeader\":{\"labelValue\":\"962915\",\"primaryLabelValue\":\"962915\"}},{\"attributeHeader\":{\"labelValue\":\"962917\",\"primaryLabelValue\":\"962917\"}},{\"attributeHeader\":{\"labelValue\":\"962919\",\"primaryLabelValue\":\"962919\"}},{\"attributeHeader\":{\"labelValue\":\"962921\",\"primaryLabelValue\":\"962921\"}},{\"attributeHeader\":{\"labelValue\":\"962923\",\"primaryLabelValue\":\"962923\"}},{\"attributeHeader\":{\"labelValue\":\"962925\",\"primaryLabelValue\":\"962925\"}},{\"attributeHeader\":{\"labelValue\":\"962927\",\"primaryLabelValue\":\"962927\"}},{\"attributeHeader\":{\"labelValue\":\"962929\",\"primaryLabelValue\":\"962929\"}},{\"attributeHeader\":{\"labelValue\":\"962931\",\"primaryLabelValue\":\"962931\"}},{\"attributeHeader\":{\"labelValue\":\"962933\",\"primaryLabelValue\":\"962933\"}},{\"attributeHeader\":{\"labelValue\":\"962935\",\"primaryLabelValue\":\"962935\"}},{\"attributeHeader\":{\"labelValue\":\"962937\",\"primaryLabelValue\":\"962937\"}},{\"attributeHeader\":{\"labelValue\":\"962939\",\"primaryLabelValue\":\"962939\"}},{\"attributeHeader\":{\"labelValue\":\"962941\",\"primaryLabelValue\":\"962941\"}},{\"attributeHeader\":{\"labelValue\":\"962943\",\"primaryLabelValue\":\"962943\"}},{\"attributeHeader\":{\"labelValue\":\"962945\",\"primaryLabelValue\":\"962945\"}},{\"attributeHeader\":{\"labelValue\":\"962949\",\"primaryLabelValue\":\"962949\"}},{\"attributeHeader\":{\"labelValue\":\"962951\",\"primaryLabelValue\":\"962951\"}},{\"attributeHeader\":{\"labelValue\":\"962953\",\"primaryLabelValue\":\"962953\"}},{\"attributeHeader\":{\"labelValue\":\"962955\",\"primaryLabelValue\":\"962955\"}},{\"attributeHeader\":{\"labelValue\":\"962957\",\"primaryLabelValue\":\"962957\"}},{\"attributeHeader\":{\"labelValue\":\"962959\",\"primaryLabelValue\":\"962959\"}},{\"attributeHeader\":{\"labelValue\":\"962961\",\"primaryLabelValue\":\"962961\"}},{\"attributeHeader\":{\"labelValue\":\"962963\",\"primaryLabelValue\":\"962963\"}},{\"attributeHeader\":{\"labelValue\":\"962965\",\"primaryLabelValue\":\"962965\"}},{\"attributeHeader\":{\"labelValue\":\"962967\",\"primaryLabelValue\":\"962967\"}},{\"attributeHeader\":{\"labelValue\":\"962969\",\"primaryLabelValue\":\"962969\"}},{\"attributeHeader\":{\"labelValue\":\"962971\",\"primaryLabelValue\":\"962971\"}},{\"attributeHeader\":{\"labelValue\":\"962973\",\"primaryLabelValue\":\"962973\"}},{\"attributeHeader\":{\"labelValue\":\"962975\",\"primaryLabelValue\":\"962975\"}},{\"attributeHeader\":{\"labelValue\":\"962977\",\"primaryLabelValue\":\"962977\"}},{\"attributeHeader\":{\"labelValue\":\"962979\",\"primaryLabelValue\":\"962979\"}},{\"attributeHeader\":{\"labelValue\":\"962981\",\"primaryLabelValue\":\"962981\"}},{\"attributeHeader\":{\"labelValue\":\"962983\",\"primaryLabelValue\":\"962983\"}},{\"attributeHeader\":{\"labelValue\":\"962985\",\"primaryLabelValue\":\"962985\"}},{\"attributeHeader\":{\"labelValue\":\"962987\",\"primaryLabelValue\":\"962987\"}},{\"attributeHeader\":{\"labelValue\":\"962989\",\"primaryLabelValue\":\"962989\"}},{\"attributeHeader\":{\"labelValue\":\"962991\",\"primaryLabelValue\":\"962991\"}},{\"attributeHeader\":{\"labelValue\":\"962993\",\"primaryLabelValue\":\"962993\"}},{\"attributeHeader\":{\"labelValue\":\"962995\",\"primaryLabelValue\":\"962995\"}},{\"attributeHeader\":{\"labelValue\":\"962997\",\"primaryLabelValue\":\"962997\"}},{\"attributeHeader\":{\"labelValue\":\"962999\",\"primaryLabelValue\":\"962999\"}},{\"attributeHeader\":{\"labelValue\":\"963001\",\"primaryLabelValue\":\"963001\"}},{\"attributeHeader\":{\"labelValue\":\"963005\",\"primaryLabelValue\":\"963005\"}},{\"attributeHeader\":{\"labelValue\":\"963007\",\"primaryLabelValue\":\"963007\"}},{\"attributeHeader\":{\"labelValue\":\"963009\",\"primaryLabelValue\":\"963009\"}},{\"attributeHeader\":{\"labelValue\":\"963011\",\"primaryLabelValue\":\"963011\"}},{\"attributeHeader\":{\"labelValue\":\"963013\",\"primaryLabelValue\":\"963013\"}},{\"attributeHeader\":{\"labelValue\":\"963015\",\"primaryLabelValue\":\"963015\"}},{\"attributeHeader\":{\"labelValue\":\"963017\",\"primaryLabelValue\":\"963017\"}},{\"attributeHeader\":{\"labelValue\":\"963019\",\"primaryLabelValue\":\"963019\"}},{\"attributeHeader\":{\"labelValue\":\"963021\",\"primaryLabelValue\":\"963021\"}},{\"attributeHeader\":{\"labelValue\":\"963023\",\"primaryLabelValue\":\"963023\"}},{\"attributeHeader\":{\"labelValue\":\"963025\",\"primaryLabelValue\":\"963025\"}},{\"attributeHeader\":{\"labelValue\":\"963027\",\"primaryLabelValue\":\"963027\"}},{\"attributeHeader\":{\"labelValue\":\"963029\",\"primaryLabelValue\":\"963029\"}},{\"attributeHeader\":{\"labelValue\":\"963031\",\"primaryLabelValue\":\"963031\"}},{\"attributeHeader\":{\"labelValue\":\"963033\",\"primaryLabelValue\":\"963033\"}},{\"attributeHeader\":{\"labelValue\":\"963035\",\"primaryLabelValue\":\"963035\"}},{\"attributeHeader\":{\"labelValue\":\"963037\",\"primaryLabelValue\":\"963037\"}},{\"attributeHeader\":{\"labelValue\":\"963039\",\"primaryLabelValue\":\"963039\"}},{\"attributeHeader\":{\"labelValue\":\"963041\",\"primaryLabelValue\":\"963041\"}},{\"attributeHeader\":{\"labelValue\":\"963043\",\"primaryLabelValue\":\"963043\"}},{\"attributeHeader\":{\"labelValue\":\"963045\",\"primaryLabelValue\":\"963045\"}},{\"attributeHeader\":{\"labelValue\":\"963047\",\"primaryLabelValue\":\"963047\"}},{\"attributeHeader\":{\"labelValue\":\"963049\",\"primaryLabelValue\":\"963049\"}},{\"attributeHeader\":{\"labelValue\":\"963051\",\"primaryLabelValue\":\"963051\"}},{\"attributeHeader\":{\"labelValue\":\"963053\",\"primaryLabelValue\":\"963053\"}},{\"attributeHeader\":{\"labelValue\":\"963055\",\"primaryLabelValue\":\"963055\"}},{\"attributeHeader\":{\"labelValue\":\"963057\",\"primaryLabelValue\":\"963057\"}},{\"attributeHeader\":{\"labelValue\":\"963059\",\"primaryLabelValue\":\"963059\"}},{\"attributeHeader\":{\"labelValue\":\"963061\",\"primaryLabelValue\":\"963061\"}},{\"attributeHeader\":{\"labelValue\":\"963063\",\"primaryLabelValue\":\"963063\"}},{\"attributeHeader\":{\"labelValue\":\"963065\",\"primaryLabelValue\":\"963065\"}},{\"attributeHeader\":{\"labelValue\":\"963067\",\"primaryLabelValue\":\"963067\"}},{\"attributeHeader\":{\"labelValue\":\"963069\",\"primaryLabelValue\":\"963069\"}},{\"attributeHeader\":{\"labelValue\":\"963071\",\"primaryLabelValue\":\"963071\"}},{\"attributeHeader\":{\"labelValue\":\"963075\",\"primaryLabelValue\":\"963075\"}},{\"attributeHeader\":{\"labelValue\":\"963077\",\"primaryLabelValue\":\"963077\"}},{\"attributeHeader\":{\"labelValue\":\"963079\",\"primaryLabelValue\":\"963079\"}},{\"attributeHeader\":{\"labelValue\":\"963081\",\"primaryLabelValue\":\"963081\"}},{\"attributeHeader\":{\"labelValue\":\"963083\",\"primaryLabelValue\":\"963083\"}},{\"attributeHeader\":{\"labelValue\":\"963085\",\"primaryLabelValue\":\"963085\"}},{\"attributeHeader\":{\"labelValue\":\"963087\",\"primaryLabelValue\":\"963087\"}},{\"attributeHeader\":{\"labelValue\":\"963089\",\"primaryLabelValue\":\"963089\"}},{\"attributeHeader\":{\"labelValue\":\"963091\",\"primaryLabelValue\":\"963091\"}},{\"attributeHeader\":{\"labelValue\":\"963093\",\"primaryLabelValue\":\"963093\"}},{\"attributeHeader\":{\"labelValue\":\"963095\",\"primaryLabelValue\":\"963095\"}},{\"attributeHeader\":{\"labelValue\":\"963097\",\"primaryLabelValue\":\"963097\"}},{\"attributeHeader\":{\"labelValue\":\"963099\",\"primaryLabelValue\":\"963099\"}},{\"attributeHeader\":{\"labelValue\":\"963101\",\"primaryLabelValue\":\"963101\"}},{\"attributeHeader\":{\"labelValue\":\"963103\",\"primaryLabelValue\":\"963103\"}},{\"attributeHeader\":{\"labelValue\":\"963105\",\"primaryLabelValue\":\"963105\"}},{\"attributeHeader\":{\"labelValue\":\"963107\",\"primaryLabelValue\":\"963107\"}},{\"attributeHeader\":{\"labelValue\":\"963109\",\"primaryLabelValue\":\"963109\"}},{\"attributeHeader\":{\"labelValue\":\"963111\",\"primaryLabelValue\":\"963111\"}},{\"attributeHeader\":{\"labelValue\":\"963113\",\"primaryLabelValue\":\"963113\"}},{\"attributeHeader\":{\"labelValue\":\"963115\",\"primaryLabelValue\":\"963115\"}},{\"attributeHeader\":{\"labelValue\":\"963117\",\"primaryLabelValue\":\"963117\"}},{\"attributeHeader\":{\"labelValue\":\"963119\",\"primaryLabelValue\":\"963119\"}},{\"attributeHeader\":{\"labelValue\":\"963121\",\"primaryLabelValue\":\"963121\"}},{\"attributeHeader\":{\"labelValue\":\"963123\",\"primaryLabelValue\":\"963123\"}},{\"attributeHeader\":{\"labelValue\":\"963125\",\"primaryLabelValue\":\"963125\"}},{\"attributeHeader\":{\"labelValue\":\"963127\",\"primaryLabelValue\":\"963127\"}},{\"attributeHeader\":{\"labelValue\":\"963129\",\"primaryLabelValue\":\"963129\"}},{\"attributeHeader\":{\"labelValue\":\"963131\",\"primaryLabelValue\":\"963131\"}},{\"attributeHeader\":{\"labelValue\":\"963133\",\"primaryLabelValue\":\"963133\"}},{\"attributeHeader\":{\"labelValue\":\"963135\",\"primaryLabelValue\":\"963135\"}},{\"attributeHeader\":{\"labelValue\":\"963137\",\"primaryLabelValue\":\"963137\"}},{\"attributeHeader\":{\"labelValue\":\"963139\",\"primaryLabelValue\":\"963139\"}},{\"attributeHeader\":{\"labelValue\":\"963141\",\"primaryLabelValue\":\"963141\"}},{\"attributeHeader\":{\"labelValue\":\"963143\",\"primaryLabelValue\":\"963143\"}},{\"attributeHeader\":{\"labelValue\":\"963145\",\"primaryLabelValue\":\"963145\"}},{\"attributeHeader\":{\"labelValue\":\"963147\",\"primaryLabelValue\":\"963147\"}},{\"attributeHeader\":{\"labelValue\":\"963149\",\"primaryLabelValue\":\"963149\"}},{\"attributeHeader\":{\"labelValue\":\"963151\",\"primaryLabelValue\":\"963151\"}},{\"attributeHeader\":{\"labelValue\":\"963153\",\"primaryLabelValue\":\"963153\"}},{\"attributeHeader\":{\"labelValue\":\"963155\",\"primaryLabelValue\":\"963155\"}},{\"attributeHeader\":{\"labelValue\":\"963157\",\"primaryLabelValue\":\"963157\"}},{\"attributeHeader\":{\"labelValue\":\"963159\",\"primaryLabelValue\":\"963159\"}},{\"attributeHeader\":{\"labelValue\":\"963161\",\"primaryLabelValue\":\"963161\"}},{\"attributeHeader\":{\"labelValue\":\"963163\",\"primaryLabelValue\":\"963163\"}},{\"attributeHeader\":{\"labelValue\":\"963165\",\"primaryLabelValue\":\"963165\"}},{\"attributeHeader\":{\"labelValue\":\"963167\",\"primaryLabelValue\":\"963167\"}},{\"attributeHeader\":{\"labelValue\":\"963169\",\"primaryLabelValue\":\"963169\"}},{\"attributeHeader\":{\"labelValue\":\"963171\",\"primaryLabelValue\":\"963171\"}},{\"attributeHeader\":{\"labelValue\":\"963173\",\"primaryLabelValue\":\"963173\"}},{\"attributeHeader\":{\"labelValue\":\"963175\",\"primaryLabelValue\":\"963175\"}},{\"attributeHeader\":{\"labelValue\":\"963177\",\"primaryLabelValue\":\"963177\"}},{\"attributeHeader\":{\"labelValue\":\"963179\",\"primaryLabelValue\":\"963179\"}},{\"attributeHeader\":{\"labelValue\":\"963181\",\"primaryLabelValue\":\"963181\"}},{\"attributeHeader\":{\"labelValue\":\"963183\",\"primaryLabelValue\":\"963183\"}},{\"attributeHeader\":{\"labelValue\":\"963185\",\"primaryLabelValue\":\"963185\"}},{\"attributeHeader\":{\"labelValue\":\"963187\",\"primaryLabelValue\":\"963187\"}},{\"attributeHeader\":{\"labelValue\":\"963189\",\"primaryLabelValue\":\"963189\"}},{\"attributeHeader\":{\"labelValue\":\"963193\",\"primaryLabelValue\":\"963193\"}},{\"attributeHeader\":{\"labelValue\":\"963195\",\"primaryLabelValue\":\"963195\"}},{\"attributeHeader\":{\"labelValue\":\"963197\",\"primaryLabelValue\":\"963197\"}},{\"attributeHeader\":{\"labelValue\":\"963199\",\"primaryLabelValue\":\"963199\"}},{\"attributeHeader\":{\"labelValue\":\"963201\",\"primaryLabelValue\":\"963201\"}},{\"attributeHeader\":{\"labelValue\":\"963203\",\"primaryLabelValue\":\"963203\"}},{\"attributeHeader\":{\"labelValue\":\"963205\",\"primaryLabelValue\":\"963205\"}},{\"attributeHeader\":{\"labelValue\":\"963207\",\"primaryLabelValue\":\"963207\"}},{\"attributeHeader\":{\"labelValue\":\"963209\",\"primaryLabelValue\":\"963209\"}},{\"attributeHeader\":{\"labelValue\":\"963211\",\"primaryLabelValue\":\"963211\"}},{\"attributeHeader\":{\"labelValue\":\"963213\",\"primaryLabelValue\":\"963213\"}},{\"attributeHeader\":{\"labelValue\":\"963215\",\"primaryLabelValue\":\"963215\"}},{\"attributeHeader\":{\"labelValue\":\"963217\",\"primaryLabelValue\":\"963217\"}},{\"attributeHeader\":{\"labelValue\":\"963219\",\"primaryLabelValue\":\"963219\"}},{\"attributeHeader\":{\"labelValue\":\"963221\",\"primaryLabelValue\":\"963221\"}},{\"attributeHeader\":{\"labelValue\":\"963223\",\"primaryLabelValue\":\"963223\"}},{\"attributeHeader\":{\"labelValue\":\"963225\",\"primaryLabelValue\":\"963225\"}},{\"attributeHeader\":{\"labelValue\":\"963227\",\"primaryLabelValue\":\"963227\"}},{\"attributeHeader\":{\"labelValue\":\"963229\",\"primaryLabelValue\":\"963229\"}},{\"attributeHeader\":{\"labelValue\":\"963231\",\"primaryLabelValue\":\"963231\"}},{\"attributeHeader\":{\"labelValue\":\"963233\",\"primaryLabelValue\":\"963233\"}},{\"attributeHeader\":{\"labelValue\":\"963235\",\"primaryLabelValue\":\"963235\"}},{\"attributeHeader\":{\"labelValue\":\"963237\",\"primaryLabelValue\":\"963237\"}},{\"attributeHeader\":{\"labelValue\":\"963239\",\"primaryLabelValue\":\"963239\"}},{\"attributeHeader\":{\"labelValue\":\"963241\",\"primaryLabelValue\":\"963241\"}},{\"attributeHeader\":{\"labelValue\":\"963243\",\"primaryLabelValue\":\"963243\"}},{\"attributeHeader\":{\"labelValue\":\"963245\",\"primaryLabelValue\":\"963245\"}},{\"attributeHeader\":{\"labelValue\":\"963247\",\"primaryLabelValue\":\"963247\"}},{\"attributeHeader\":{\"labelValue\":\"963249\",\"primaryLabelValue\":\"963249\"}},{\"attributeHeader\":{\"labelValue\":\"963251\",\"primaryLabelValue\":\"963251\"}},{\"attributeHeader\":{\"labelValue\":\"963253\",\"primaryLabelValue\":\"963253\"}},{\"attributeHeader\":{\"labelValue\":\"963255\",\"primaryLabelValue\":\"963255\"}},{\"attributeHeader\":{\"labelValue\":\"963257\",\"primaryLabelValue\":\"963257\"}},{\"attributeHeader\":{\"labelValue\":\"963259\",\"primaryLabelValue\":\"963259\"}},{\"attributeHeader\":{\"labelValue\":\"963261\",\"primaryLabelValue\":\"963261\"}},{\"attributeHeader\":{\"labelValue\":\"963263\",\"primaryLabelValue\":\"963263\"}},{\"attributeHeader\":{\"labelValue\":\"963265\",\"primaryLabelValue\":\"963265\"}},{\"attributeHeader\":{\"labelValue\":\"963267\",\"primaryLabelValue\":\"963267\"}},{\"attributeHeader\":{\"labelValue\":\"963269\",\"primaryLabelValue\":\"963269\"}},{\"attributeHeader\":{\"labelValue\":\"963271\",\"primaryLabelValue\":\"963271\"}},{\"attributeHeader\":{\"labelValue\":\"963273\",\"primaryLabelValue\":\"963273\"}},{\"attributeHeader\":{\"labelValue\":\"963275\",\"primaryLabelValue\":\"963275\"}},{\"attributeHeader\":{\"labelValue\":\"963277\",\"primaryLabelValue\":\"963277\"}},{\"attributeHeader\":{\"labelValue\":\"963279\",\"primaryLabelValue\":\"963279\"}},{\"attributeHeader\":{\"labelValue\":\"963281\",\"primaryLabelValue\":\"963281\"}},{\"attributeHeader\":{\"labelValue\":\"963283\",\"primaryLabelValue\":\"963283\"}},{\"attributeHeader\":{\"labelValue\":\"963285\",\"primaryLabelValue\":\"963285\"}},{\"attributeHeader\":{\"labelValue\":\"963287\",\"primaryLabelValue\":\"963287\"}},{\"attributeHeader\":{\"labelValue\":\"963289\",\"primaryLabelValue\":\"963289\"}},{\"attributeHeader\":{\"labelValue\":\"963291\",\"primaryLabelValue\":\"963291\"}},{\"attributeHeader\":{\"labelValue\":\"963293\",\"primaryLabelValue\":\"963293\"}},{\"attributeHeader\":{\"labelValue\":\"963295\",\"primaryLabelValue\":\"963295\"}},{\"attributeHeader\":{\"labelValue\":\"963297\",\"primaryLabelValue\":\"963297\"}},{\"attributeHeader\":{\"labelValue\":\"963299\",\"primaryLabelValue\":\"963299\"}},{\"attributeHeader\":{\"labelValue\":\"963301\",\"primaryLabelValue\":\"963301\"}},{\"attributeHeader\":{\"labelValue\":\"963303\",\"primaryLabelValue\":\"963303\"}},{\"attributeHeader\":{\"labelValue\":\"963305\",\"primaryLabelValue\":\"963305\"}},{\"attributeHeader\":{\"labelValue\":\"963307\",\"primaryLabelValue\":\"963307\"}},{\"attributeHeader\":{\"labelValue\":\"963309\",\"primaryLabelValue\":\"963309\"}},{\"attributeHeader\":{\"labelValue\":\"963311\",\"primaryLabelValue\":\"963311\"}},{\"attributeHeader\":{\"labelValue\":\"963313\",\"primaryLabelValue\":\"963313\"}},{\"attributeHeader\":{\"labelValue\":\"963315\",\"primaryLabelValue\":\"963315\"}},{\"attributeHeader\":{\"labelValue\":\"963317\",\"primaryLabelValue\":\"963317\"}},{\"attributeHeader\":{\"labelValue\":\"963319\",\"primaryLabelValue\":\"963319\"}},{\"attributeHeader\":{\"labelValue\":\"963321\",\"primaryLabelValue\":\"963321\"}},{\"attributeHeader\":{\"labelValue\":\"963323\",\"primaryLabelValue\":\"963323\"}},{\"attributeHeader\":{\"labelValue\":\"963325\",\"primaryLabelValue\":\"963325\"}},{\"attributeHeader\":{\"labelValue\":\"963327\",\"primaryLabelValue\":\"963327\"}},{\"attributeHeader\":{\"labelValue\":\"963331\",\"primaryLabelValue\":\"963331\"}},{\"attributeHeader\":{\"labelValue\":\"963333\",\"primaryLabelValue\":\"963333\"}},{\"attributeHeader\":{\"labelValue\":\"963335\",\"primaryLabelValue\":\"963335\"}},{\"attributeHeader\":{\"labelValue\":\"963337\",\"primaryLabelValue\":\"963337\"}},{\"attributeHeader\":{\"labelValue\":\"963339\",\"primaryLabelValue\":\"963339\"}},{\"attributeHeader\":{\"labelValue\":\"963341\",\"primaryLabelValue\":\"963341\"}},{\"attributeHeader\":{\"labelValue\":\"963343\",\"primaryLabelValue\":\"963343\"}},{\"attributeHeader\":{\"labelValue\":\"963345\",\"primaryLabelValue\":\"963345\"}},{\"attributeHeader\":{\"labelValue\":\"963347\",\"primaryLabelValue\":\"963347\"}},{\"attributeHeader\":{\"labelValue\":\"963349\",\"primaryLabelValue\":\"963349\"}},{\"attributeHeader\":{\"labelValue\":\"963351\",\"primaryLabelValue\":\"963351\"}},{\"attributeHeader\":{\"labelValue\":\"963353\",\"primaryLabelValue\":\"963353\"}},{\"attributeHeader\":{\"labelValue\":\"963355\",\"primaryLabelValue\":\"963355\"}},{\"attributeHeader\":{\"labelValue\":\"963357\",\"primaryLabelValue\":\"963357\"}},{\"attributeHeader\":{\"labelValue\":\"963359\",\"primaryLabelValue\":\"963359\"}},{\"attributeHeader\":{\"labelValue\":\"963363\",\"primaryLabelValue\":\"963363\"}},{\"attributeHeader\":{\"labelValue\":\"963365\",\"primaryLabelValue\":\"963365\"}},{\"attributeHeader\":{\"labelValue\":\"963367\",\"primaryLabelValue\":\"963367\"}},{\"attributeHeader\":{\"labelValue\":\"963369\",\"primaryLabelValue\":\"963369\"}},{\"attributeHeader\":{\"labelValue\":\"963371\",\"primaryLabelValue\":\"963371\"}},{\"attributeHeader\":{\"labelValue\":\"963373\",\"primaryLabelValue\":\"963373\"}},{\"attributeHeader\":{\"labelValue\":\"963375\",\"primaryLabelValue\":\"963375\"}},{\"attributeHeader\":{\"labelValue\":\"963377\",\"primaryLabelValue\":\"963377\"}},{\"attributeHeader\":{\"labelValue\":\"963379\",\"primaryLabelValue\":\"963379\"}},{\"attributeHeader\":{\"labelValue\":\"963381\",\"primaryLabelValue\":\"963381\"}},{\"attributeHeader\":{\"labelValue\":\"963383\",\"primaryLabelValue\":\"963383\"}},{\"attributeHeader\":{\"labelValue\":\"963385\",\"primaryLabelValue\":\"963385\"}},{\"attributeHeader\":{\"labelValue\":\"963387\",\"primaryLabelValue\":\"963387\"}},{\"attributeHeader\":{\"labelValue\":\"963389\",\"primaryLabelValue\":\"963389\"}},{\"attributeHeader\":{\"labelValue\":\"963391\",\"primaryLabelValue\":\"963391\"}},{\"attributeHeader\":{\"labelValue\":\"963393\",\"primaryLabelValue\":\"963393\"}},{\"attributeHeader\":{\"labelValue\":\"963397\",\"primaryLabelValue\":\"963397\"}},{\"attributeHeader\":{\"labelValue\":\"963399\",\"primaryLabelValue\":\"963399\"}},{\"attributeHeader\":{\"labelValue\":\"963403\",\"primaryLabelValue\":\"963403\"}},{\"attributeHeader\":{\"labelValue\":\"963405\",\"primaryLabelValue\":\"963405\"}},{\"attributeHeader\":{\"labelValue\":\"963407\",\"primaryLabelValue\":\"963407\"}},{\"attributeHeader\":{\"labelValue\":\"963409\",\"primaryLabelValue\":\"963409\"}},{\"attributeHeader\":{\"labelValue\":\"963411\",\"primaryLabelValue\":\"963411\"}},{\"attributeHeader\":{\"labelValue\":\"963413\",\"primaryLabelValue\":\"963413\"}},{\"attributeHeader\":{\"labelValue\":\"963415\",\"primaryLabelValue\":\"963415\"}},{\"attributeHeader\":{\"labelValue\":\"963417\",\"primaryLabelValue\":\"963417\"}},{\"attributeHeader\":{\"labelValue\":\"963419\",\"primaryLabelValue\":\"963419\"}},{\"attributeHeader\":{\"labelValue\":\"963421\",\"primaryLabelValue\":\"963421\"}},{\"attributeHeader\":{\"labelValue\":\"963423\",\"primaryLabelValue\":\"963423\"}},{\"attributeHeader\":{\"labelValue\":\"963425\",\"primaryLabelValue\":\"963425\"}},{\"attributeHeader\":{\"labelValue\":\"963427\",\"primaryLabelValue\":\"963427\"}},{\"attributeHeader\":{\"labelValue\":\"963429\",\"primaryLabelValue\":\"963429\"}},{\"attributeHeader\":{\"labelValue\":\"963431\",\"primaryLabelValue\":\"963431\"}},{\"attributeHeader\":{\"labelValue\":\"963433\",\"primaryLabelValue\":\"963433\"}},{\"attributeHeader\":{\"labelValue\":\"963435\",\"primaryLabelValue\":\"963435\"}},{\"attributeHeader\":{\"labelValue\":\"963437\",\"primaryLabelValue\":\"963437\"}},{\"attributeHeader\":{\"labelValue\":\"963441\",\"primaryLabelValue\":\"963441\"}},{\"attributeHeader\":{\"labelValue\":\"963443\",\"primaryLabelValue\":\"963443\"}},{\"attributeHeader\":{\"labelValue\":\"963445\",\"primaryLabelValue\":\"963445\"}},{\"attributeHeader\":{\"labelValue\":\"963447\",\"primaryLabelValue\":\"963447\"}},{\"attributeHeader\":{\"labelValue\":\"963449\",\"primaryLabelValue\":\"963449\"}},{\"attributeHeader\":{\"labelValue\":\"963451\",\"primaryLabelValue\":\"963451\"}},{\"attributeHeader\":{\"labelValue\":\"963453\",\"primaryLabelValue\":\"963453\"}},{\"attributeHeader\":{\"labelValue\":\"963455\",\"primaryLabelValue\":\"963455\"}},{\"attributeHeader\":{\"labelValue\":\"963457\",\"primaryLabelValue\":\"963457\"}},{\"attributeHeader\":{\"labelValue\":\"963459\",\"primaryLabelValue\":\"963459\"}},{\"attributeHeader\":{\"labelValue\":\"963461\",\"primaryLabelValue\":\"963461\"}},{\"attributeHeader\":{\"labelValue\":\"963463\",\"primaryLabelValue\":\"963463\"}},{\"attributeHeader\":{\"labelValue\":\"963465\",\"primaryLabelValue\":\"963465\"}},{\"attributeHeader\":{\"labelValue\":\"963467\",\"primaryLabelValue\":\"963467\"}},{\"attributeHeader\":{\"labelValue\":\"963469\",\"primaryLabelValue\":\"963469\"}},{\"attributeHeader\":{\"labelValue\":\"963471\",\"primaryLabelValue\":\"963471\"}},{\"attributeHeader\":{\"labelValue\":\"963473\",\"primaryLabelValue\":\"963473\"}},{\"attributeHeader\":{\"labelValue\":\"963475\",\"primaryLabelValue\":\"963475\"}},{\"attributeHeader\":{\"labelValue\":\"963477\",\"primaryLabelValue\":\"963477\"}},{\"attributeHeader\":{\"labelValue\":\"963479\",\"primaryLabelValue\":\"963479\"}},{\"attributeHeader\":{\"labelValue\":\"963481\",\"primaryLabelValue\":\"963481\"}},{\"attributeHeader\":{\"labelValue\":\"963483\",\"primaryLabelValue\":\"963483\"}},{\"attributeHeader\":{\"labelValue\":\"963485\",\"primaryLabelValue\":\"963485\"}},{\"attributeHeader\":{\"labelValue\":\"963487\",\"primaryLabelValue\":\"963487\"}},{\"attributeHeader\":{\"labelValue\":\"963489\",\"primaryLabelValue\":\"963489\"}},{\"attributeHeader\":{\"labelValue\":\"963491\",\"primaryLabelValue\":\"963491\"}},{\"attributeHeader\":{\"labelValue\":\"963493\",\"primaryLabelValue\":\"963493\"}},{\"attributeHeader\":{\"labelValue\":\"963495\",\"primaryLabelValue\":\"963495\"}},{\"attributeHeader\":{\"labelValue\":\"963497\",\"primaryLabelValue\":\"963497\"}},{\"attributeHeader\":{\"labelValue\":\"963499\",\"primaryLabelValue\":\"963499\"}},{\"attributeHeader\":{\"labelValue\":\"963501\",\"primaryLabelValue\":\"963501\"}},{\"attributeHeader\":{\"labelValue\":\"963503\",\"primaryLabelValue\":\"963503\"}},{\"attributeHeader\":{\"labelValue\":\"963507\",\"primaryLabelValue\":\"963507\"}},{\"attributeHeader\":{\"labelValue\":\"963509\",\"primaryLabelValue\":\"963509\"}},{\"attributeHeader\":{\"labelValue\":\"963511\",\"primaryLabelValue\":\"963511\"}},{\"attributeHeader\":{\"labelValue\":\"963513\",\"primaryLabelValue\":\"963513\"}},{\"attributeHeader\":{\"labelValue\":\"963515\",\"primaryLabelValue\":\"963515\"}},{\"attributeHeader\":{\"labelValue\":\"963517\",\"primaryLabelValue\":\"963517\"}},{\"attributeHeader\":{\"labelValue\":\"963519\",\"primaryLabelValue\":\"963519\"}},{\"attributeHeader\":{\"labelValue\":\"963521\",\"primaryLabelValue\":\"963521\"}},{\"attributeHeader\":{\"labelValue\":\"963523\",\"primaryLabelValue\":\"963523\"}},{\"attributeHeader\":{\"labelValue\":\"963525\",\"primaryLabelValue\":\"963525\"}},{\"attributeHeader\":{\"labelValue\":\"963527\",\"primaryLabelValue\":\"963527\"}},{\"attributeHeader\":{\"labelValue\":\"963529\",\"primaryLabelValue\":\"963529\"}},{\"attributeHeader\":{\"labelValue\":\"963531\",\"primaryLabelValue\":\"963531\"}},{\"attributeHeader\":{\"labelValue\":\"963533\",\"primaryLabelValue\":\"963533\"}},{\"attributeHeader\":{\"labelValue\":\"963535\",\"primaryLabelValue\":\"963535\"}},{\"attributeHeader\":{\"labelValue\":\"963537\",\"primaryLabelValue\":\"963537\"}},{\"attributeHeader\":{\"labelValue\":\"963539\",\"primaryLabelValue\":\"963539\"}},{\"attributeHeader\":{\"labelValue\":\"963541\",\"primaryLabelValue\":\"963541\"}},{\"attributeHeader\":{\"labelValue\":\"963543\",\"primaryLabelValue\":\"963543\"}},{\"attributeHeader\":{\"labelValue\":\"963545\",\"primaryLabelValue\":\"963545\"}},{\"attributeHeader\":{\"labelValue\":\"963547\",\"primaryLabelValue\":\"963547\"}},{\"attributeHeader\":{\"labelValue\":\"963549\",\"primaryLabelValue\":\"963549\"}},{\"attributeHeader\":{\"labelValue\":\"963551\",\"primaryLabelValue\":\"963551\"}},{\"attributeHeader\":{\"labelValue\":\"963553\",\"primaryLabelValue\":\"963553\"}},{\"attributeHeader\":{\"labelValue\":\"963555\",\"primaryLabelValue\":\"963555\"}},{\"attributeHeader\":{\"labelValue\":\"963559\",\"primaryLabelValue\":\"963559\"}},{\"attributeHeader\":{\"labelValue\":\"963563\",\"primaryLabelValue\":\"963563\"}},{\"attributeHeader\":{\"labelValue\":\"963565\",\"primaryLabelValue\":\"963565\"}},{\"attributeHeader\":{\"labelValue\":\"963567\",\"primaryLabelValue\":\"963567\"}},{\"attributeHeader\":{\"labelValue\":\"963569\",\"primaryLabelValue\":\"963569\"}},{\"attributeHeader\":{\"labelValue\":\"963571\",\"primaryLabelValue\":\"963571\"}},{\"attributeHeader\":{\"labelValue\":\"963573\",\"primaryLabelValue\":\"963573\"}},{\"attributeHeader\":{\"labelValue\":\"963575\",\"primaryLabelValue\":\"963575\"}},{\"attributeHeader\":{\"labelValue\":\"963577\",\"primaryLabelValue\":\"963577\"}},{\"attributeHeader\":{\"labelValue\":\"963579\",\"primaryLabelValue\":\"963579\"}},{\"attributeHeader\":{\"labelValue\":\"963583\",\"primaryLabelValue\":\"963583\"}},{\"attributeHeader\":{\"labelValue\":\"963585\",\"primaryLabelValue\":\"963585\"}},{\"attributeHeader\":{\"labelValue\":\"963587\",\"primaryLabelValue\":\"963587\"}},{\"attributeHeader\":{\"labelValue\":\"963589\",\"primaryLabelValue\":\"963589\"}},{\"attributeHeader\":{\"labelValue\":\"963591\",\"primaryLabelValue\":\"963591\"}},{\"attributeHeader\":{\"labelValue\":\"963593\",\"primaryLabelValue\":\"963593\"}},{\"attributeHeader\":{\"labelValue\":\"963595\",\"primaryLabelValue\":\"963595\"}},{\"attributeHeader\":{\"labelValue\":\"963597\",\"primaryLabelValue\":\"963597\"}},{\"attributeHeader\":{\"labelValue\":\"963599\",\"primaryLabelValue\":\"963599\"}},{\"attributeHeader\":{\"labelValue\":\"963601\",\"primaryLabelValue\":\"963601\"}},{\"attributeHeader\":{\"labelValue\":\"963603\",\"primaryLabelValue\":\"963603\"}},{\"attributeHeader\":{\"labelValue\":\"963605\",\"primaryLabelValue\":\"963605\"}},{\"attributeHeader\":{\"labelValue\":\"963607\",\"primaryLabelValue\":\"963607\"}},{\"attributeHeader\":{\"labelValue\":\"963609\",\"primaryLabelValue\":\"963609\"}},{\"attributeHeader\":{\"labelValue\":\"963611\",\"primaryLabelValue\":\"963611\"}},{\"attributeHeader\":{\"labelValue\":\"963613\",\"primaryLabelValue\":\"963613\"}},{\"attributeHeader\":{\"labelValue\":\"963615\",\"primaryLabelValue\":\"963615\"}},{\"attributeHeader\":{\"labelValue\":\"963617\",\"primaryLabelValue\":\"963617\"}},{\"attributeHeader\":{\"labelValue\":\"963619\",\"primaryLabelValue\":\"963619\"}},{\"attributeHeader\":{\"labelValue\":\"963621\",\"primaryLabelValue\":\"963621\"}},{\"attributeHeader\":{\"labelValue\":\"963625\",\"primaryLabelValue\":\"963625\"}},{\"attributeHeader\":{\"labelValue\":\"963627\",\"primaryLabelValue\":\"963627\"}},{\"attributeHeader\":{\"labelValue\":\"963631\",\"primaryLabelValue\":\"963631\"}},{\"attributeHeader\":{\"labelValue\":\"963633\",\"primaryLabelValue\":\"963633\"}},{\"attributeHeader\":{\"labelValue\":\"963635\",\"primaryLabelValue\":\"963635\"}},{\"attributeHeader\":{\"labelValue\":\"963637\",\"primaryLabelValue\":\"963637\"}},{\"attributeHeader\":{\"labelValue\":\"963639\",\"primaryLabelValue\":\"963639\"}},{\"attributeHeader\":{\"labelValue\":\"963643\",\"primaryLabelValue\":\"963643\"}},{\"attributeHeader\":{\"labelValue\":\"963647\",\"primaryLabelValue\":\"963647\"}},{\"attributeHeader\":{\"labelValue\":\"963649\",\"primaryLabelValue\":\"963649\"}},{\"attributeHeader\":{\"labelValue\":\"963651\",\"primaryLabelValue\":\"963651\"}},{\"attributeHeader\":{\"labelValue\":\"963653\",\"primaryLabelValue\":\"963653\"}},{\"attributeHeader\":{\"labelValue\":\"963655\",\"primaryLabelValue\":\"963655\"}},{\"attributeHeader\":{\"labelValue\":\"963657\",\"primaryLabelValue\":\"963657\"}},{\"attributeHeader\":{\"labelValue\":\"963659\",\"primaryLabelValue\":\"963659\"}},{\"attributeHeader\":{\"labelValue\":\"963661\",\"primaryLabelValue\":\"963661\"}},{\"attributeHeader\":{\"labelValue\":\"963663\",\"primaryLabelValue\":\"963663\"}},{\"attributeHeader\":{\"labelValue\":\"963665\",\"primaryLabelValue\":\"963665\"}},{\"attributeHeader\":{\"labelValue\":\"963667\",\"primaryLabelValue\":\"963667\"}},{\"attributeHeader\":{\"labelValue\":\"963669\",\"primaryLabelValue\":\"963669\"}},{\"attributeHeader\":{\"labelValue\":\"963671\",\"primaryLabelValue\":\"963671\"}},{\"attributeHeader\":{\"labelValue\":\"963673\",\"primaryLabelValue\":\"963673\"}},{\"attributeHeader\":{\"labelValue\":\"963675\",\"primaryLabelValue\":\"963675\"}},{\"attributeHeader\":{\"labelValue\":\"963677\",\"primaryLabelValue\":\"963677\"}},{\"attributeHeader\":{\"labelValue\":\"963679\",\"primaryLabelValue\":\"963679\"}},{\"attributeHeader\":{\"labelValue\":\"963681\",\"primaryLabelValue\":\"963681\"}},{\"attributeHeader\":{\"labelValue\":\"963683\",\"primaryLabelValue\":\"963683\"}},{\"attributeHeader\":{\"labelValue\":\"963685\",\"primaryLabelValue\":\"963685\"}},{\"attributeHeader\":{\"labelValue\":\"963687\",\"primaryLabelValue\":\"963687\"}},{\"attributeHeader\":{\"labelValue\":\"963689\",\"primaryLabelValue\":\"963689\"}},{\"attributeHeader\":{\"labelValue\":\"963691\",\"primaryLabelValue\":\"963691\"}},{\"attributeHeader\":{\"labelValue\":\"963693\",\"primaryLabelValue\":\"963693\"}},{\"attributeHeader\":{\"labelValue\":\"963695\",\"primaryLabelValue\":\"963695\"}},{\"attributeHeader\":{\"labelValue\":\"963697\",\"primaryLabelValue\":\"963697\"}},{\"attributeHeader\":{\"labelValue\":\"963701\",\"primaryLabelValue\":\"963701\"}},{\"attributeHeader\":{\"labelValue\":\"963703\",\"primaryLabelValue\":\"963703\"}},{\"attributeHeader\":{\"labelValue\":\"963709\",\"primaryLabelValue\":\"963709\"}},{\"attributeHeader\":{\"labelValue\":\"963711\",\"primaryLabelValue\":\"963711\"}},{\"attributeHeader\":{\"labelValue\":\"963713\",\"primaryLabelValue\":\"963713\"}},{\"attributeHeader\":{\"labelValue\":\"963715\",\"primaryLabelValue\":\"963715\"}},{\"attributeHeader\":{\"labelValue\":\"963717\",\"primaryLabelValue\":\"963717\"}},{\"attributeHeader\":{\"labelValue\":\"963719\",\"primaryLabelValue\":\"963719\"}},{\"attributeHeader\":{\"labelValue\":\"963721\",\"primaryLabelValue\":\"963721\"}},{\"attributeHeader\":{\"labelValue\":\"963723\",\"primaryLabelValue\":\"963723\"}},{\"attributeHeader\":{\"labelValue\":\"963725\",\"primaryLabelValue\":\"963725\"}},{\"attributeHeader\":{\"labelValue\":\"963727\",\"primaryLabelValue\":\"963727\"}},{\"attributeHeader\":{\"labelValue\":\"963731\",\"primaryLabelValue\":\"963731\"}},{\"attributeHeader\":{\"labelValue\":\"963733\",\"primaryLabelValue\":\"963733\"}},{\"attributeHeader\":{\"labelValue\":\"963735\",\"primaryLabelValue\":\"963735\"}},{\"attributeHeader\":{\"labelValue\":\"963737\",\"primaryLabelValue\":\"963737\"}},{\"attributeHeader\":{\"labelValue\":\"963739\",\"primaryLabelValue\":\"963739\"}},{\"attributeHeader\":{\"labelValue\":\"963741\",\"primaryLabelValue\":\"963741\"}},{\"attributeHeader\":{\"labelValue\":\"963743\",\"primaryLabelValue\":\"963743\"}},{\"attributeHeader\":{\"labelValue\":\"963745\",\"primaryLabelValue\":\"963745\"}},{\"attributeHeader\":{\"labelValue\":\"963747\",\"primaryLabelValue\":\"963747\"}},{\"attributeHeader\":{\"labelValue\":\"963749\",\"primaryLabelValue\":\"963749\"}},{\"attributeHeader\":{\"labelValue\":\"963751\",\"primaryLabelValue\":\"963751\"}},{\"attributeHeader\":{\"labelValue\":\"963753\",\"primaryLabelValue\":\"963753\"}},{\"attributeHeader\":{\"labelValue\":\"963755\",\"primaryLabelValue\":\"963755\"}},{\"attributeHeader\":{\"labelValue\":\"963757\",\"primaryLabelValue\":\"963757\"}},{\"attributeHeader\":{\"labelValue\":\"963759\",\"primaryLabelValue\":\"963759\"}},{\"attributeHeader\":{\"labelValue\":\"963761\",\"primaryLabelValue\":\"963761\"}},{\"attributeHeader\":{\"labelValue\":\"963765\",\"primaryLabelValue\":\"963765\"}},{\"attributeHeader\":{\"labelValue\":\"963767\",\"primaryLabelValue\":\"963767\"}},{\"attributeHeader\":{\"labelValue\":\"963769\",\"primaryLabelValue\":\"963769\"}},{\"attributeHeader\":{\"labelValue\":\"963771\",\"primaryLabelValue\":\"963771\"}},{\"attributeHeader\":{\"labelValue\":\"963773\",\"primaryLabelValue\":\"963773\"}},{\"attributeHeader\":{\"labelValue\":\"963775\",\"primaryLabelValue\":\"963775\"}},{\"attributeHeader\":{\"labelValue\":\"963777\",\"primaryLabelValue\":\"963777\"}},{\"attributeHeader\":{\"labelValue\":\"963779\",\"primaryLabelValue\":\"963779\"}},{\"attributeHeader\":{\"labelValue\":\"963781\",\"primaryLabelValue\":\"963781\"}},{\"attributeHeader\":{\"labelValue\":\"963783\",\"primaryLabelValue\":\"963783\"}},{\"attributeHeader\":{\"labelValue\":\"963785\",\"primaryLabelValue\":\"963785\"}},{\"attributeHeader\":{\"labelValue\":\"963787\",\"primaryLabelValue\":\"963787\"}},{\"attributeHeader\":{\"labelValue\":\"963789\",\"primaryLabelValue\":\"963789\"}},{\"attributeHeader\":{\"labelValue\":\"963791\",\"primaryLabelValue\":\"963791\"}},{\"attributeHeader\":{\"labelValue\":\"963793\",\"primaryLabelValue\":\"963793\"}},{\"attributeHeader\":{\"labelValue\":\"963795\",\"primaryLabelValue\":\"963795\"}},{\"attributeHeader\":{\"labelValue\":\"963797\",\"primaryLabelValue\":\"963797\"}},{\"attributeHeader\":{\"labelValue\":\"963799\",\"primaryLabelValue\":\"963799\"}},{\"attributeHeader\":{\"labelValue\":\"963801\",\"primaryLabelValue\":\"963801\"}},{\"attributeHeader\":{\"labelValue\":\"963803\",\"primaryLabelValue\":\"963803\"}},{\"attributeHeader\":{\"labelValue\":\"963805\",\"primaryLabelValue\":\"963805\"}},{\"attributeHeader\":{\"labelValue\":\"963807\",\"primaryLabelValue\":\"963807\"}},{\"attributeHeader\":{\"labelValue\":\"963811\",\"primaryLabelValue\":\"963811\"}},{\"attributeHeader\":{\"labelValue\":\"963813\",\"primaryLabelValue\":\"963813\"}},{\"attributeHeader\":{\"labelValue\":\"963817\",\"primaryLabelValue\":\"963817\"}},{\"attributeHeader\":{\"labelValue\":\"963819\",\"primaryLabelValue\":\"963819\"}},{\"attributeHeader\":{\"labelValue\":\"963821\",\"primaryLabelValue\":\"963821\"}},{\"attributeHeader\":{\"labelValue\":\"963823\",\"primaryLabelValue\":\"963823\"}},{\"attributeHeader\":{\"labelValue\":\"963825\",\"primaryLabelValue\":\"963825\"}},{\"attributeHeader\":{\"labelValue\":\"963829\",\"primaryLabelValue\":\"963829\"}},{\"attributeHeader\":{\"labelValue\":\"963831\",\"primaryLabelValue\":\"963831\"}},{\"attributeHeader\":{\"labelValue\":\"963833\",\"primaryLabelValue\":\"963833\"}},{\"attributeHeader\":{\"labelValue\":\"963835\",\"primaryLabelValue\":\"963835\"}},{\"attributeHeader\":{\"labelValue\":\"963837\",\"primaryLabelValue\":\"963837\"}},{\"attributeHeader\":{\"labelValue\":\"963839\",\"primaryLabelValue\":\"963839\"}},{\"attributeHeader\":{\"labelValue\":\"963841\",\"primaryLabelValue\":\"963841\"}},{\"attributeHeader\":{\"labelValue\":\"963843\",\"primaryLabelValue\":\"963843\"}},{\"attributeHeader\":{\"labelValue\":\"963845\",\"primaryLabelValue\":\"963845\"}},{\"attributeHeader\":{\"labelValue\":\"963847\",\"primaryLabelValue\":\"963847\"}},{\"attributeHeader\":{\"labelValue\":\"963849\",\"primaryLabelValue\":\"963849\"}},{\"attributeHeader\":{\"labelValue\":\"963851\",\"primaryLabelValue\":\"963851\"}},{\"attributeHeader\":{\"labelValue\":\"963855\",\"primaryLabelValue\":\"963855\"}},{\"attributeHeader\":{\"labelValue\":\"963857\",\"primaryLabelValue\":\"963857\"}},{\"attributeHeader\":{\"labelValue\":\"963859\",\"primaryLabelValue\":\"963859\"}},{\"attributeHeader\":{\"labelValue\":\"963863\",\"primaryLabelValue\":\"963863\"}},{\"attributeHeader\":{\"labelValue\":\"963865\",\"primaryLabelValue\":\"963865\"}},{\"attributeHeader\":{\"labelValue\":\"963867\",\"primaryLabelValue\":\"963867\"}},{\"attributeHeader\":{\"labelValue\":\"963869\",\"primaryLabelValue\":\"963869\"}},{\"attributeHeader\":{\"labelValue\":\"963871\",\"primaryLabelValue\":\"963871\"}},{\"attributeHeader\":{\"labelValue\":\"963873\",\"primaryLabelValue\":\"963873\"}},{\"attributeHeader\":{\"labelValue\":\"963875\",\"primaryLabelValue\":\"963875\"}},{\"attributeHeader\":{\"labelValue\":\"963877\",\"primaryLabelValue\":\"963877\"}},{\"attributeHeader\":{\"labelValue\":\"963879\",\"primaryLabelValue\":\"963879\"}},{\"attributeHeader\":{\"labelValue\":\"963881\",\"primaryLabelValue\":\"963881\"}},{\"attributeHeader\":{\"labelValue\":\"963883\",\"primaryLabelValue\":\"963883\"}},{\"attributeHeader\":{\"labelValue\":\"963885\",\"primaryLabelValue\":\"963885\"}},{\"attributeHeader\":{\"labelValue\":\"963887\",\"primaryLabelValue\":\"963887\"}},{\"attributeHeader\":{\"labelValue\":\"963889\",\"primaryLabelValue\":\"963889\"}},{\"attributeHeader\":{\"labelValue\":\"963891\",\"primaryLabelValue\":\"963891\"}},{\"attributeHeader\":{\"labelValue\":\"963893\",\"primaryLabelValue\":\"963893\"}},{\"attributeHeader\":{\"labelValue\":\"963895\",\"primaryLabelValue\":\"963895\"}},{\"attributeHeader\":{\"labelValue\":\"963897\",\"primaryLabelValue\":\"963897\"}},{\"attributeHeader\":{\"labelValue\":\"963899\",\"primaryLabelValue\":\"963899\"}},{\"attributeHeader\":{\"labelValue\":\"963901\",\"primaryLabelValue\":\"963901\"}},{\"attributeHeader\":{\"labelValue\":\"963903\",\"primaryLabelValue\":\"963903\"}},{\"attributeHeader\":{\"labelValue\":\"963905\",\"primaryLabelValue\":\"963905\"}},{\"attributeHeader\":{\"labelValue\":\"963907\",\"primaryLabelValue\":\"963907\"}},{\"attributeHeader\":{\"labelValue\":\"963909\",\"primaryLabelValue\":\"963909\"}},{\"attributeHeader\":{\"labelValue\":\"963911\",\"primaryLabelValue\":\"963911\"}},{\"attributeHeader\":{\"labelValue\":\"963913\",\"primaryLabelValue\":\"963913\"}},{\"attributeHeader\":{\"labelValue\":\"963915\",\"primaryLabelValue\":\"963915\"}},{\"attributeHeader\":{\"labelValue\":\"963917\",\"primaryLabelValue\":\"963917\"}},{\"attributeHeader\":{\"labelValue\":\"963919\",\"primaryLabelValue\":\"963919\"}},{\"attributeHeader\":{\"labelValue\":\"963921\",\"primaryLabelValue\":\"963921\"}},{\"attributeHeader\":{\"labelValue\":\"963923\",\"primaryLabelValue\":\"963923\"}},{\"attributeHeader\":{\"labelValue\":\"963925\",\"primaryLabelValue\":\"963925\"}},{\"attributeHeader\":{\"labelValue\":\"963927\",\"primaryLabelValue\":\"963927\"}},{\"attributeHeader\":{\"labelValue\":\"963929\",\"primaryLabelValue\":\"963929\"}},{\"attributeHeader\":{\"labelValue\":\"963931\",\"primaryLabelValue\":\"963931\"}},{\"attributeHeader\":{\"labelValue\":\"963933\",\"primaryLabelValue\":\"963933\"}},{\"attributeHeader\":{\"labelValue\":\"963935\",\"primaryLabelValue\":\"963935\"}},{\"attributeHeader\":{\"labelValue\":\"963937\",\"primaryLabelValue\":\"963937\"}},{\"attributeHeader\":{\"labelValue\":\"963939\",\"primaryLabelValue\":\"963939\"}},{\"attributeHeader\":{\"labelValue\":\"963941\",\"primaryLabelValue\":\"963941\"}},{\"attributeHeader\":{\"labelValue\":\"963943\",\"primaryLabelValue\":\"963943\"}},{\"attributeHeader\":{\"labelValue\":\"963947\",\"primaryLabelValue\":\"963947\"}},{\"attributeHeader\":{\"labelValue\":\"963949\",\"primaryLabelValue\":\"963949\"}},{\"attributeHeader\":{\"labelValue\":\"963951\",\"primaryLabelValue\":\"963951\"}},{\"attributeHeader\":{\"labelValue\":\"963953\",\"primaryLabelValue\":\"963953\"}},{\"attributeHeader\":{\"labelValue\":\"963955\",\"primaryLabelValue\":\"963955\"}},{\"attributeHeader\":{\"labelValue\":\"963959\",\"primaryLabelValue\":\"963959\"}},{\"attributeHeader\":{\"labelValue\":\"963961\",\"primaryLabelValue\":\"963961\"}},{\"attributeHeader\":{\"labelValue\":\"963963\",\"primaryLabelValue\":\"963963\"}},{\"attributeHeader\":{\"labelValue\":\"963965\",\"primaryLabelValue\":\"963965\"}},{\"attributeHeader\":{\"labelValue\":\"963967\",\"primaryLabelValue\":\"963967\"}},{\"attributeHeader\":{\"labelValue\":\"963969\",\"primaryLabelValue\":\"963969\"}},{\"attributeHeader\":{\"labelValue\":\"963973\",\"primaryLabelValue\":\"963973\"}},{\"attributeHeader\":{\"labelValue\":\"963975\",\"primaryLabelValue\":\"963975\"}},{\"attributeHeader\":{\"labelValue\":\"963977\",\"primaryLabelValue\":\"963977\"}},{\"attributeHeader\":{\"labelValue\":\"963979\",\"primaryLabelValue\":\"963979\"}},{\"attributeHeader\":{\"labelValue\":\"963981\",\"primaryLabelValue\":\"963981\"}},{\"attributeHeader\":{\"labelValue\":\"963983\",\"primaryLabelValue\":\"963983\"}},{\"attributeHeader\":{\"labelValue\":\"963985\",\"primaryLabelValue\":\"963985\"}},{\"attributeHeader\":{\"labelValue\":\"963987\",\"primaryLabelValue\":\"963987\"}},{\"attributeHeader\":{\"labelValue\":\"963989\",\"primaryLabelValue\":\"963989\"}},{\"attributeHeader\":{\"labelValue\":\"963991\",\"primaryLabelValue\":\"963991\"}},{\"attributeHeader\":{\"labelValue\":\"963993\",\"primaryLabelValue\":\"963993\"}},{\"attributeHeader\":{\"labelValue\":\"963995\",\"primaryLabelValue\":\"963995\"}},{\"attributeHeader\":{\"labelValue\":\"963997\",\"primaryLabelValue\":\"963997\"}},{\"attributeHeader\":{\"labelValue\":\"963999\",\"primaryLabelValue\":\"963999\"}},{\"attributeHeader\":{\"labelValue\":\"964001\",\"primaryLabelValue\":\"964001\"}},{\"attributeHeader\":{\"labelValue\":\"964003\",\"primaryLabelValue\":\"964003\"}},{\"attributeHeader\":{\"labelValue\":\"964005\",\"primaryLabelValue\":\"964005\"}},{\"attributeHeader\":{\"labelValue\":\"964009\",\"primaryLabelValue\":\"964009\"}},{\"attributeHeader\":{\"labelValue\":\"964011\",\"primaryLabelValue\":\"964011\"}},{\"attributeHeader\":{\"labelValue\":\"964013\",\"primaryLabelValue\":\"964013\"}},{\"attributeHeader\":{\"labelValue\":\"964015\",\"primaryLabelValue\":\"964015\"}},{\"attributeHeader\":{\"labelValue\":\"964017\",\"primaryLabelValue\":\"964017\"}},{\"attributeHeader\":{\"labelValue\":\"964019\",\"primaryLabelValue\":\"964019\"}},{\"attributeHeader\":{\"labelValue\":\"964021\",\"primaryLabelValue\":\"964021\"}},{\"attributeHeader\":{\"labelValue\":\"964023\",\"primaryLabelValue\":\"964023\"}},{\"attributeHeader\":{\"labelValue\":\"964025\",\"primaryLabelValue\":\"964025\"}},{\"attributeHeader\":{\"labelValue\":\"964027\",\"primaryLabelValue\":\"964027\"}},{\"attributeHeader\":{\"labelValue\":\"964029\",\"primaryLabelValue\":\"964029\"}},{\"attributeHeader\":{\"labelValue\":\"964031\",\"primaryLabelValue\":\"964031\"}},{\"attributeHeader\":{\"labelValue\":\"964033\",\"primaryLabelValue\":\"964033\"}},{\"attributeHeader\":{\"labelValue\":\"964035\",\"primaryLabelValue\":\"964035\"}},{\"attributeHeader\":{\"labelValue\":\"964037\",\"primaryLabelValue\":\"964037\"}},{\"attributeHeader\":{\"labelValue\":\"964039\",\"primaryLabelValue\":\"964039\"}},{\"attributeHeader\":{\"labelValue\":\"964045\",\"primaryLabelValue\":\"964045\"}},{\"attributeHeader\":{\"labelValue\":\"964047\",\"primaryLabelValue\":\"964047\"}},{\"attributeHeader\":{\"labelValue\":\"964049\",\"primaryLabelValue\":\"964049\"}},{\"attributeHeader\":{\"labelValue\":\"964051\",\"primaryLabelValue\":\"964051\"}},{\"attributeHeader\":{\"labelValue\":\"964053\",\"primaryLabelValue\":\"964053\"}},{\"attributeHeader\":{\"labelValue\":\"964055\",\"primaryLabelValue\":\"964055\"}},{\"attributeHeader\":{\"labelValue\":\"964057\",\"primaryLabelValue\":\"964057\"}},{\"attributeHeader\":{\"labelValue\":\"964059\",\"primaryLabelValue\":\"964059\"}},{\"attributeHeader\":{\"labelValue\":\"964061\",\"primaryLabelValue\":\"964061\"}},{\"attributeHeader\":{\"labelValue\":\"964063\",\"primaryLabelValue\":\"964063\"}},{\"attributeHeader\":{\"labelValue\":\"964065\",\"primaryLabelValue\":\"964065\"}},{\"attributeHeader\":{\"labelValue\":\"964067\",\"primaryLabelValue\":\"964067\"}},{\"attributeHeader\":{\"labelValue\":\"964071\",\"primaryLabelValue\":\"964071\"}},{\"attributeHeader\":{\"labelValue\":\"964073\",\"primaryLabelValue\":\"964073\"}},{\"attributeHeader\":{\"labelValue\":\"964075\",\"primaryLabelValue\":\"964075\"}},{\"attributeHeader\":{\"labelValue\":\"964077\",\"primaryLabelValue\":\"964077\"}},{\"attributeHeader\":{\"labelValue\":\"964079\",\"primaryLabelValue\":\"964079\"}},{\"attributeHeader\":{\"labelValue\":\"964083\",\"primaryLabelValue\":\"964083\"}},{\"attributeHeader\":{\"labelValue\":\"964084\",\"primaryLabelValue\":\"964084\"}},{\"attributeHeader\":{\"labelValue\":\"964085\",\"primaryLabelValue\":\"964085\"}},{\"attributeHeader\":{\"labelValue\":\"964088\",\"primaryLabelValue\":\"964088\"}},{\"attributeHeader\":{\"labelValue\":\"964089\",\"primaryLabelValue\":\"964089\"}},{\"attributeHeader\":{\"labelValue\":\"964090\",\"primaryLabelValue\":\"964090\"}},{\"attributeHeader\":{\"labelValue\":\"964091\",\"primaryLabelValue\":\"964091\"}},{\"attributeHeader\":{\"labelValue\":\"964092\",\"primaryLabelValue\":\"964092\"}},{\"attributeHeader\":{\"labelValue\":\"964093\",\"primaryLabelValue\":\"964093\"}},{\"attributeHeader\":{\"labelValue\":\"964095\",\"primaryLabelValue\":\"964095\"}},{\"attributeHeader\":{\"labelValue\":\"964096\",\"primaryLabelValue\":\"964096\"}},{\"attributeHeader\":{\"labelValue\":\"964097\",\"primaryLabelValue\":\"964097\"}},{\"attributeHeader\":{\"labelValue\":\"964098\",\"primaryLabelValue\":\"964098\"}},{\"attributeHeader\":{\"labelValue\":\"964100\",\"primaryLabelValue\":\"964100\"}},{\"attributeHeader\":{\"labelValue\":\"964102\",\"primaryLabelValue\":\"964102\"}},{\"attributeHeader\":{\"labelValue\":\"964103\",\"primaryLabelValue\":\"964103\"}},{\"attributeHeader\":{\"labelValue\":\"964104\",\"primaryLabelValue\":\"964104\"}},{\"attributeHeader\":{\"labelValue\":\"964105\",\"primaryLabelValue\":\"964105\"}},{\"attributeHeader\":{\"labelValue\":\"964107\",\"primaryLabelValue\":\"964107\"}},{\"attributeHeader\":{\"labelValue\":\"964108\",\"primaryLabelValue\":\"964108\"}},{\"attributeHeader\":{\"labelValue\":\"964110\",\"primaryLabelValue\":\"964110\"}},{\"attributeHeader\":{\"labelValue\":\"964111\",\"primaryLabelValue\":\"964111\"}},{\"attributeHeader\":{\"labelValue\":\"964112\",\"primaryLabelValue\":\"964112\"}},{\"attributeHeader\":{\"labelValue\":\"964113\",\"primaryLabelValue\":\"964113\"}},{\"attributeHeader\":{\"labelValue\":\"964114\",\"primaryLabelValue\":\"964114\"}},{\"attributeHeader\":{\"labelValue\":\"964115\",\"primaryLabelValue\":\"964115\"}},{\"attributeHeader\":{\"labelValue\":\"964117\",\"primaryLabelValue\":\"964117\"}},{\"attributeHeader\":{\"labelValue\":\"964119\",\"primaryLabelValue\":\"964119\"}},{\"attributeHeader\":{\"labelValue\":\"964121\",\"primaryLabelValue\":\"964121\"}},{\"attributeHeader\":{\"labelValue\":\"964123\",\"primaryLabelValue\":\"964123\"}},{\"attributeHeader\":{\"labelValue\":\"964127\",\"primaryLabelValue\":\"964127\"}},{\"attributeHeader\":{\"labelValue\":\"964128\",\"primaryLabelValue\":\"964128\"}},{\"attributeHeader\":{\"labelValue\":\"964129\",\"primaryLabelValue\":\"964129\"}},{\"attributeHeader\":{\"labelValue\":\"964131\",\"primaryLabelValue\":\"964131\"}},{\"attributeHeader\":{\"labelValue\":\"964132\",\"primaryLabelValue\":\"964132\"}},{\"attributeHeader\":{\"labelValue\":\"964133\",\"primaryLabelValue\":\"964133\"}},{\"attributeHeader\":{\"labelValue\":\"964134\",\"primaryLabelValue\":\"964134\"}},{\"attributeHeader\":{\"labelValue\":\"964135\",\"primaryLabelValue\":\"964135\"}},{\"attributeHeader\":{\"labelValue\":\"964138\",\"primaryLabelValue\":\"964138\"}},{\"attributeHeader\":{\"labelValue\":\"964139\",\"primaryLabelValue\":\"964139\"}},{\"attributeHeader\":{\"labelValue\":\"964140\",\"primaryLabelValue\":\"964140\"}},{\"attributeHeader\":{\"labelValue\":\"964142\",\"primaryLabelValue\":\"964142\"}},{\"attributeHeader\":{\"labelValue\":\"964144\",\"primaryLabelValue\":\"964144\"}},{\"attributeHeader\":{\"labelValue\":\"964145\",\"primaryLabelValue\":\"964145\"}},{\"attributeHeader\":{\"labelValue\":\"964147\",\"primaryLabelValue\":\"964147\"}},{\"attributeHeader\":{\"labelValue\":\"964149\",\"primaryLabelValue\":\"964149\"}},{\"attributeHeader\":{\"labelValue\":\"964150\",\"primaryLabelValue\":\"964150\"}},{\"attributeHeader\":{\"labelValue\":\"964151\",\"primaryLabelValue\":\"964151\"}},{\"attributeHeader\":{\"labelValue\":\"964152\",\"primaryLabelValue\":\"964152\"}},{\"attributeHeader\":{\"labelValue\":\"964153\",\"primaryLabelValue\":\"964153\"}},{\"attributeHeader\":{\"labelValue\":\"964154\",\"primaryLabelValue\":\"964154\"}},{\"attributeHeader\":{\"labelValue\":\"964156\",\"primaryLabelValue\":\"964156\"}},{\"attributeHeader\":{\"labelValue\":\"964157\",\"primaryLabelValue\":\"964157\"}},{\"attributeHeader\":{\"labelValue\":\"964159\",\"primaryLabelValue\":\"964159\"}},{\"attributeHeader\":{\"labelValue\":\"964160\",\"primaryLabelValue\":\"964160\"}},{\"attributeHeader\":{\"labelValue\":\"964161\",\"primaryLabelValue\":\"964161\"}},{\"attributeHeader\":{\"labelValue\":\"964162\",\"primaryLabelValue\":\"964162\"}},{\"attributeHeader\":{\"labelValue\":\"964163\",\"primaryLabelValue\":\"964163\"}},{\"attributeHeader\":{\"labelValue\":\"964164\",\"primaryLabelValue\":\"964164\"}},{\"attributeHeader\":{\"labelValue\":\"964165\",\"primaryLabelValue\":\"964165\"}},{\"attributeHeader\":{\"labelValue\":\"964166\",\"primaryLabelValue\":\"964166\"}},{\"attributeHeader\":{\"labelValue\":\"964167\",\"primaryLabelValue\":\"964167\"}},{\"attributeHeader\":{\"labelValue\":\"964168\",\"primaryLabelValue\":\"964168\"}},{\"attributeHeader\":{\"labelValue\":\"964169\",\"primaryLabelValue\":\"964169\"}},{\"attributeHeader\":{\"labelValue\":\"964170\",\"primaryLabelValue\":\"964170\"}},{\"attributeHeader\":{\"labelValue\":\"964171\",\"primaryLabelValue\":\"964171\"}},{\"attributeHeader\":{\"labelValue\":\"964172\",\"primaryLabelValue\":\"964172\"}},{\"attributeHeader\":{\"labelValue\":\"964173\",\"primaryLabelValue\":\"964173\"}},{\"attributeHeader\":{\"labelValue\":\"964174\",\"primaryLabelValue\":\"964174\"}},{\"attributeHeader\":{\"labelValue\":\"964176\",\"primaryLabelValue\":\"964176\"}},{\"attributeHeader\":{\"labelValue\":\"964178\",\"primaryLabelValue\":\"964178\"}},{\"attributeHeader\":{\"labelValue\":\"964179\",\"primaryLabelValue\":\"964179\"}},{\"attributeHeader\":{\"labelValue\":\"964180\",\"primaryLabelValue\":\"964180\"}},{\"attributeHeader\":{\"labelValue\":\"964182\",\"primaryLabelValue\":\"964182\"}},{\"attributeHeader\":{\"labelValue\":\"964183\",\"primaryLabelValue\":\"964183\"}},{\"attributeHeader\":{\"labelValue\":\"964185\",\"primaryLabelValue\":\"964185\"}},{\"attributeHeader\":{\"labelValue\":\"964187\",\"primaryLabelValue\":\"964187\"}},{\"attributeHeader\":{\"labelValue\":\"964188\",\"primaryLabelValue\":\"964188\"}},{\"attributeHeader\":{\"labelValue\":\"964189\",\"primaryLabelValue\":\"964189\"}},{\"attributeHeader\":{\"labelValue\":\"964190\",\"primaryLabelValue\":\"964190\"}},{\"attributeHeader\":{\"labelValue\":\"964192\",\"primaryLabelValue\":\"964192\"}},{\"attributeHeader\":{\"labelValue\":\"964194\",\"primaryLabelValue\":\"964194\"}},{\"attributeHeader\":{\"labelValue\":\"964195\",\"primaryLabelValue\":\"964195\"}},{\"attributeHeader\":{\"labelValue\":\"964196\",\"primaryLabelValue\":\"964196\"}},{\"attributeHeader\":{\"labelValue\":\"964197\",\"primaryLabelValue\":\"964197\"}},{\"attributeHeader\":{\"labelValue\":\"964199\",\"primaryLabelValue\":\"964199\"}},{\"attributeHeader\":{\"labelValue\":\"964200\",\"primaryLabelValue\":\"964200\"}},{\"attributeHeader\":{\"labelValue\":\"964201\",\"primaryLabelValue\":\"964201\"}},{\"attributeHeader\":{\"labelValue\":\"964203\",\"primaryLabelValue\":\"964203\"}},{\"attributeHeader\":{\"labelValue\":\"964204\",\"primaryLabelValue\":\"964204\"}},{\"attributeHeader\":{\"labelValue\":\"964206\",\"primaryLabelValue\":\"964206\"}},{\"attributeHeader\":{\"labelValue\":\"964208\",\"primaryLabelValue\":\"964208\"}},{\"attributeHeader\":{\"labelValue\":\"964209\",\"primaryLabelValue\":\"964209\"}},{\"attributeHeader\":{\"labelValue\":\"964210\",\"primaryLabelValue\":\"964210\"}},{\"attributeHeader\":{\"labelValue\":\"964211\",\"primaryLabelValue\":\"964211\"}},{\"attributeHeader\":{\"labelValue\":\"964212\",\"primaryLabelValue\":\"964212\"}},{\"attributeHeader\":{\"labelValue\":\"964213\",\"primaryLabelValue\":\"964213\"}},{\"attributeHeader\":{\"labelValue\":\"964214\",\"primaryLabelValue\":\"964214\"}},{\"attributeHeader\":{\"labelValue\":\"964216\",\"primaryLabelValue\":\"964216\"}},{\"attributeHeader\":{\"labelValue\":\"964218\",\"primaryLabelValue\":\"964218\"}},{\"attributeHeader\":{\"labelValue\":\"964219\",\"primaryLabelValue\":\"964219\"}},{\"attributeHeader\":{\"labelValue\":\"964220\",\"primaryLabelValue\":\"964220\"}},{\"attributeHeader\":{\"labelValue\":\"964221\",\"primaryLabelValue\":\"964221\"}},{\"attributeHeader\":{\"labelValue\":\"964222\",\"primaryLabelValue\":\"964222\"}},{\"attributeHeader\":{\"labelValue\":\"964223\",\"primaryLabelValue\":\"964223\"}},{\"attributeHeader\":{\"labelValue\":\"964225\",\"primaryLabelValue\":\"964225\"}},{\"attributeHeader\":{\"labelValue\":\"964227\",\"primaryLabelValue\":\"964227\"}},{\"attributeHeader\":{\"labelValue\":\"964229\",\"primaryLabelValue\":\"964229\"}},{\"attributeHeader\":{\"labelValue\":\"964230\",\"primaryLabelValue\":\"964230\"}},{\"attributeHeader\":{\"labelValue\":\"964231\",\"primaryLabelValue\":\"964231\"}},{\"attributeHeader\":{\"labelValue\":\"964232\",\"primaryLabelValue\":\"964232\"}},{\"attributeHeader\":{\"labelValue\":\"964234\",\"primaryLabelValue\":\"964234\"}},{\"attributeHeader\":{\"labelValue\":\"964236\",\"primaryLabelValue\":\"964236\"}},{\"attributeHeader\":{\"labelValue\":\"964237\",\"primaryLabelValue\":\"964237\"}},{\"attributeHeader\":{\"labelValue\":\"964239\",\"primaryLabelValue\":\"964239\"}},{\"attributeHeader\":{\"labelValue\":\"964241\",\"primaryLabelValue\":\"964241\"}},{\"attributeHeader\":{\"labelValue\":\"964243\",\"primaryLabelValue\":\"964243\"}},{\"attributeHeader\":{\"labelValue\":\"964244\",\"primaryLabelValue\":\"964244\"}},{\"attributeHeader\":{\"labelValue\":\"964245\",\"primaryLabelValue\":\"964245\"}},{\"attributeHeader\":{\"labelValue\":\"964246\",\"primaryLabelValue\":\"964246\"}},{\"attributeHeader\":{\"labelValue\":\"964248\",\"primaryLabelValue\":\"964248\"}},{\"attributeHeader\":{\"labelValue\":\"964250\",\"primaryLabelValue\":\"964250\"}},{\"attributeHeader\":{\"labelValue\":\"964252\",\"primaryLabelValue\":\"964252\"}},{\"attributeHeader\":{\"labelValue\":\"964253\",\"primaryLabelValue\":\"964253\"}},{\"attributeHeader\":{\"labelValue\":\"964255\",\"primaryLabelValue\":\"964255\"}},{\"attributeHeader\":{\"labelValue\":\"964257\",\"primaryLabelValue\":\"964257\"}},{\"attributeHeader\":{\"labelValue\":\"964258\",\"primaryLabelValue\":\"964258\"}},{\"attributeHeader\":{\"labelValue\":\"964259\",\"primaryLabelValue\":\"964259\"}},{\"attributeHeader\":{\"labelValue\":\"964260\",\"primaryLabelValue\":\"964260\"}},{\"attributeHeader\":{\"labelValue\":\"964261\",\"primaryLabelValue\":\"964261\"}},{\"attributeHeader\":{\"labelValue\":\"964262\",\"primaryLabelValue\":\"964262\"}},{\"attributeHeader\":{\"labelValue\":\"964264\",\"primaryLabelValue\":\"964264\"}},{\"attributeHeader\":{\"labelValue\":\"964265\",\"primaryLabelValue\":\"964265\"}},{\"attributeHeader\":{\"labelValue\":\"964267\",\"primaryLabelValue\":\"964267\"}},{\"attributeHeader\":{\"labelValue\":\"964269\",\"primaryLabelValue\":\"964269\"}},{\"attributeHeader\":{\"labelValue\":\"964271\",\"primaryLabelValue\":\"964271\"}},{\"attributeHeader\":{\"labelValue\":\"964272\",\"primaryLabelValue\":\"964272\"}},{\"attributeHeader\":{\"labelValue\":\"964273\",\"primaryLabelValue\":\"964273\"}},{\"attributeHeader\":{\"labelValue\":\"964274\",\"primaryLabelValue\":\"964274\"}},{\"attributeHeader\":{\"labelValue\":\"964275\",\"primaryLabelValue\":\"964275\"}},{\"attributeHeader\":{\"labelValue\":\"964276\",\"primaryLabelValue\":\"964276\"}},{\"attributeHeader\":{\"labelValue\":\"964277\",\"primaryLabelValue\":\"964277\"}},{\"attributeHeader\":{\"labelValue\":\"964278\",\"primaryLabelValue\":\"964278\"}},{\"attributeHeader\":{\"labelValue\":\"964280\",\"primaryLabelValue\":\"964280\"}},{\"attributeHeader\":{\"labelValue\":\"964281\",\"primaryLabelValue\":\"964281\"}},{\"attributeHeader\":{\"labelValue\":\"964282\",\"primaryLabelValue\":\"964282\"}},{\"attributeHeader\":{\"labelValue\":\"964284\",\"primaryLabelValue\":\"964284\"}},{\"attributeHeader\":{\"labelValue\":\"964285\",\"primaryLabelValue\":\"964285\"}},{\"attributeHeader\":{\"labelValue\":\"964287\",\"primaryLabelValue\":\"964287\"}},{\"attributeHeader\":{\"labelValue\":\"964288\",\"primaryLabelValue\":\"964288\"}},{\"attributeHeader\":{\"labelValue\":\"964290\",\"primaryLabelValue\":\"964290\"}},{\"attributeHeader\":{\"labelValue\":\"964291\",\"primaryLabelValue\":\"964291\"}},{\"attributeHeader\":{\"labelValue\":\"964292\",\"primaryLabelValue\":\"964292\"}},{\"attributeHeader\":{\"labelValue\":\"964293\",\"primaryLabelValue\":\"964293\"}},{\"attributeHeader\":{\"labelValue\":\"964295\",\"primaryLabelValue\":\"964295\"}},{\"attributeHeader\":{\"labelValue\":\"964297\",\"primaryLabelValue\":\"964297\"}},{\"attributeHeader\":{\"labelValue\":\"964299\",\"primaryLabelValue\":\"964299\"}},{\"attributeHeader\":{\"labelValue\":\"964301\",\"primaryLabelValue\":\"964301\"}},{\"attributeHeader\":{\"labelValue\":\"964302\",\"primaryLabelValue\":\"964302\"}},{\"attributeHeader\":{\"labelValue\":\"964303\",\"primaryLabelValue\":\"964303\"}},{\"attributeHeader\":{\"labelValue\":\"964304\",\"primaryLabelValue\":\"964304\"}},{\"attributeHeader\":{\"labelValue\":\"964305\",\"primaryLabelValue\":\"964305\"}},{\"attributeHeader\":{\"labelValue\":\"964306\",\"primaryLabelValue\":\"964306\"}},{\"attributeHeader\":{\"labelValue\":\"964307\",\"primaryLabelValue\":\"964307\"}},{\"attributeHeader\":{\"labelValue\":\"964308\",\"primaryLabelValue\":\"964308\"}},{\"attributeHeader\":{\"labelValue\":\"964310\",\"primaryLabelValue\":\"964310\"}},{\"attributeHeader\":{\"labelValue\":\"964312\",\"primaryLabelValue\":\"964312\"}},{\"attributeHeader\":{\"labelValue\":\"964313\",\"primaryLabelValue\":\"964313\"}},{\"attributeHeader\":{\"labelValue\":\"964315\",\"primaryLabelValue\":\"964315\"}},{\"attributeHeader\":{\"labelValue\":\"964317\",\"primaryLabelValue\":\"964317\"}},{\"attributeHeader\":{\"labelValue\":\"964318\",\"primaryLabelValue\":\"964318\"}},{\"attributeHeader\":{\"labelValue\":\"964319\",\"primaryLabelValue\":\"964319\"}},{\"attributeHeader\":{\"labelValue\":\"964321\",\"primaryLabelValue\":\"964321\"}},{\"attributeHeader\":{\"labelValue\":\"964322\",\"primaryLabelValue\":\"964322\"}},{\"attributeHeader\":{\"labelValue\":\"964324\",\"primaryLabelValue\":\"964324\"}},{\"attributeHeader\":{\"labelValue\":\"964325\",\"primaryLabelValue\":\"964325\"}},{\"attributeHeader\":{\"labelValue\":\"964327\",\"primaryLabelValue\":\"964327\"}},{\"attributeHeader\":{\"labelValue\":\"964328\",\"primaryLabelValue\":\"964328\"}},{\"attributeHeader\":{\"labelValue\":\"964329\",\"primaryLabelValue\":\"964329\"}},{\"attributeHeader\":{\"labelValue\":\"964330\",\"primaryLabelValue\":\"964330\"}},{\"attributeHeader\":{\"labelValue\":\"964331\",\"primaryLabelValue\":\"964331\"}},{\"attributeHeader\":{\"labelValue\":\"964332\",\"primaryLabelValue\":\"964332\"}},{\"attributeHeader\":{\"labelValue\":\"964333\",\"primaryLabelValue\":\"964333\"}},{\"attributeHeader\":{\"labelValue\":\"964334\",\"primaryLabelValue\":\"964334\"}},{\"attributeHeader\":{\"labelValue\":\"964335\",\"primaryLabelValue\":\"964335\"}},{\"attributeHeader\":{\"labelValue\":\"964336\",\"primaryLabelValue\":\"964336\"}},{\"attributeHeader\":{\"labelValue\":\"964338\",\"primaryLabelValue\":\"964338\"}},{\"attributeHeader\":{\"labelValue\":\"964339\",\"primaryLabelValue\":\"964339\"}},{\"attributeHeader\":{\"labelValue\":\"964340\",\"primaryLabelValue\":\"964340\"}},{\"attributeHeader\":{\"labelValue\":\"964341\",\"primaryLabelValue\":\"964341\"}},{\"attributeHeader\":{\"labelValue\":\"964342\",\"primaryLabelValue\":\"964342\"}},{\"attributeHeader\":{\"labelValue\":\"964343\",\"primaryLabelValue\":\"964343\"}},{\"attributeHeader\":{\"labelValue\":\"964344\",\"primaryLabelValue\":\"964344\"}},{\"attributeHeader\":{\"labelValue\":\"964345\",\"primaryLabelValue\":\"964345\"}},{\"attributeHeader\":{\"labelValue\":\"964346\",\"primaryLabelValue\":\"964346\"}},{\"attributeHeader\":{\"labelValue\":\"964348\",\"primaryLabelValue\":\"964348\"}},{\"attributeHeader\":{\"labelValue\":\"964349\",\"primaryLabelValue\":\"964349\"}},{\"attributeHeader\":{\"labelValue\":\"964350\",\"primaryLabelValue\":\"964350\"}},{\"attributeHeader\":{\"labelValue\":\"964352\",\"primaryLabelValue\":\"964352\"}},{\"attributeHeader\":{\"labelValue\":\"964354\",\"primaryLabelValue\":\"964354\"}},{\"attributeHeader\":{\"labelValue\":\"964355\",\"primaryLabelValue\":\"964355\"}},{\"attributeHeader\":{\"labelValue\":\"964356\",\"primaryLabelValue\":\"964356\"}},{\"attributeHeader\":{\"labelValue\":\"964357\",\"primaryLabelValue\":\"964357\"}},{\"attributeHeader\":{\"labelValue\":\"964358\",\"primaryLabelValue\":\"964358\"}},{\"attributeHeader\":{\"labelValue\":\"964359\",\"primaryLabelValue\":\"964359\"}},{\"attributeHeader\":{\"labelValue\":\"964360\",\"primaryLabelValue\":\"964360\"}},{\"attributeHeader\":{\"labelValue\":\"964362\",\"primaryLabelValue\":\"964362\"}},{\"attributeHeader\":{\"labelValue\":\"964364\",\"primaryLabelValue\":\"964364\"}},{\"attributeHeader\":{\"labelValue\":\"964365\",\"primaryLabelValue\":\"964365\"}},{\"attributeHeader\":{\"labelValue\":\"964366\",\"primaryLabelValue\":\"964366\"}},{\"attributeHeader\":{\"labelValue\":\"964367\",\"primaryLabelValue\":\"964367\"}},{\"attributeHeader\":{\"labelValue\":\"964368\",\"primaryLabelValue\":\"964368\"}},{\"attributeHeader\":{\"labelValue\":\"964369\",\"primaryLabelValue\":\"964369\"}},{\"attributeHeader\":{\"labelValue\":\"964370\",\"primaryLabelValue\":\"964370\"}},{\"attributeHeader\":{\"labelValue\":\"964371\",\"primaryLabelValue\":\"964371\"}},{\"attributeHeader\":{\"labelValue\":\"964373\",\"primaryLabelValue\":\"964373\"}},{\"attributeHeader\":{\"labelValue\":\"964374\",\"primaryLabelValue\":\"964374\"}},{\"attributeHeader\":{\"labelValue\":\"964375\",\"primaryLabelValue\":\"964375\"}},{\"attributeHeader\":{\"labelValue\":\"964377\",\"primaryLabelValue\":\"964377\"}},{\"attributeHeader\":{\"labelValue\":\"964378\",\"primaryLabelValue\":\"964378\"}},{\"attributeHeader\":{\"labelValue\":\"964380\",\"primaryLabelValue\":\"964380\"}},{\"attributeHeader\":{\"labelValue\":\"964381\",\"primaryLabelValue\":\"964381\"}},{\"attributeHeader\":{\"labelValue\":\"964382\",\"primaryLabelValue\":\"964382\"}},{\"attributeHeader\":{\"labelValue\":\"964383\",\"primaryLabelValue\":\"964383\"}},{\"attributeHeader\":{\"labelValue\":\"964384\",\"primaryLabelValue\":\"964384\"}},{\"attributeHeader\":{\"labelValue\":\"964386\",\"primaryLabelValue\":\"964386\"}},{\"attributeHeader\":{\"labelValue\":\"964387\",\"primaryLabelValue\":\"964387\"}},{\"attributeHeader\":{\"labelValue\":\"964388\",\"primaryLabelValue\":\"964388\"}},{\"attributeHeader\":{\"labelValue\":\"964390\",\"primaryLabelValue\":\"964390\"}},{\"attributeHeader\":{\"labelValue\":\"964392\",\"primaryLabelValue\":\"964392\"}},{\"attributeHeader\":{\"labelValue\":\"964393\",\"primaryLabelValue\":\"964393\"}},{\"attributeHeader\":{\"labelValue\":\"964395\",\"primaryLabelValue\":\"964395\"}},{\"attributeHeader\":{\"labelValue\":\"964396\",\"primaryLabelValue\":\"964396\"}},{\"attributeHeader\":{\"labelValue\":\"964397\",\"primaryLabelValue\":\"964397\"}},{\"attributeHeader\":{\"labelValue\":\"964399\",\"primaryLabelValue\":\"964399\"}},{\"attributeHeader\":{\"labelValue\":\"964400\",\"primaryLabelValue\":\"964400\"}},{\"attributeHeader\":{\"labelValue\":\"964402\",\"primaryLabelValue\":\"964402\"}},{\"attributeHeader\":{\"labelValue\":\"964403\",\"primaryLabelValue\":\"964403\"}},{\"attributeHeader\":{\"labelValue\":\"964405\",\"primaryLabelValue\":\"964405\"}},{\"attributeHeader\":{\"labelValue\":\"964407\",\"primaryLabelValue\":\"964407\"}},{\"attributeHeader\":{\"labelValue\":\"964408\",\"primaryLabelValue\":\"964408\"}},{\"attributeHeader\":{\"labelValue\":\"964410\",\"primaryLabelValue\":\"964410\"}},{\"attributeHeader\":{\"labelValue\":\"964411\",\"primaryLabelValue\":\"964411\"}},{\"attributeHeader\":{\"labelValue\":\"964412\",\"primaryLabelValue\":\"964412\"}},{\"attributeHeader\":{\"labelValue\":\"964413\",\"primaryLabelValue\":\"964413\"}},{\"attributeHeader\":{\"labelValue\":\"964415\",\"primaryLabelValue\":\"964415\"}},{\"attributeHeader\":{\"labelValue\":\"964416\",\"primaryLabelValue\":\"964416\"}},{\"attributeHeader\":{\"labelValue\":\"964418\",\"primaryLabelValue\":\"964418\"}},{\"attributeHeader\":{\"labelValue\":\"964419\",\"primaryLabelValue\":\"964419\"}},{\"attributeHeader\":{\"labelValue\":\"964421\",\"primaryLabelValue\":\"964421\"}},{\"attributeHeader\":{\"labelValue\":\"964422\",\"primaryLabelValue\":\"964422\"}},{\"attributeHeader\":{\"labelValue\":\"964423\",\"primaryLabelValue\":\"964423\"}},{\"attributeHeader\":{\"labelValue\":\"964425\",\"primaryLabelValue\":\"964425\"}},{\"attributeHeader\":{\"labelValue\":\"964426\",\"primaryLabelValue\":\"964426\"}},{\"attributeHeader\":{\"labelValue\":\"964427\",\"primaryLabelValue\":\"964427\"}},{\"attributeHeader\":{\"labelValue\":\"964428\",\"primaryLabelValue\":\"964428\"}},{\"attributeHeader\":{\"labelValue\":\"964429\",\"primaryLabelValue\":\"964429\"}},{\"attributeHeader\":{\"labelValue\":\"964431\",\"primaryLabelValue\":\"964431\"}},{\"attributeHeader\":{\"labelValue\":\"964433\",\"primaryLabelValue\":\"964433\"}},{\"attributeHeader\":{\"labelValue\":\"964434\",\"primaryLabelValue\":\"964434\"}},{\"attributeHeader\":{\"labelValue\":\"964435\",\"primaryLabelValue\":\"964435\"}},{\"attributeHeader\":{\"labelValue\":\"964437\",\"primaryLabelValue\":\"964437\"}},{\"attributeHeader\":{\"labelValue\":\"964438\",\"primaryLabelValue\":\"964438\"}},{\"attributeHeader\":{\"labelValue\":\"964439\",\"primaryLabelValue\":\"964439\"}},{\"attributeHeader\":{\"labelValue\":\"964441\",\"primaryLabelValue\":\"964441\"}},{\"attributeHeader\":{\"labelValue\":\"964442\",\"primaryLabelValue\":\"964442\"}},{\"attributeHeader\":{\"labelValue\":\"964443\",\"primaryLabelValue\":\"964443\"}},{\"attributeHeader\":{\"labelValue\":\"964444\",\"primaryLabelValue\":\"964444\"}},{\"attributeHeader\":{\"labelValue\":\"964445\",\"primaryLabelValue\":\"964445\"}},{\"attributeHeader\":{\"labelValue\":\"964446\",\"primaryLabelValue\":\"964446\"}},{\"attributeHeader\":{\"labelValue\":\"964448\",\"primaryLabelValue\":\"964448\"}},{\"attributeHeader\":{\"labelValue\":\"964449\",\"primaryLabelValue\":\"964449\"}},{\"attributeHeader\":{\"labelValue\":\"964451\",\"primaryLabelValue\":\"964451\"}},{\"attributeHeader\":{\"labelValue\":\"964452\",\"primaryLabelValue\":\"964452\"}},{\"attributeHeader\":{\"labelValue\":\"964453\",\"primaryLabelValue\":\"964453\"}},{\"attributeHeader\":{\"labelValue\":\"964454\",\"primaryLabelValue\":\"964454\"}},{\"attributeHeader\":{\"labelValue\":\"964455\",\"primaryLabelValue\":\"964455\"}},{\"attributeHeader\":{\"labelValue\":\"964456\",\"primaryLabelValue\":\"964456\"}},{\"attributeHeader\":{\"labelValue\":\"964457\",\"primaryLabelValue\":\"964457\"}},{\"attributeHeader\":{\"labelValue\":\"964458\",\"primaryLabelValue\":\"964458\"}},{\"attributeHeader\":{\"labelValue\":\"964460\",\"primaryLabelValue\":\"964460\"}},{\"attributeHeader\":{\"labelValue\":\"964461\",\"primaryLabelValue\":\"964461\"}},{\"attributeHeader\":{\"labelValue\":\"964463\",\"primaryLabelValue\":\"964463\"}},{\"attributeHeader\":{\"labelValue\":\"964465\",\"primaryLabelValue\":\"964465\"}},{\"attributeHeader\":{\"labelValue\":\"964466\",\"primaryLabelValue\":\"964466\"}},{\"attributeHeader\":{\"labelValue\":\"964467\",\"primaryLabelValue\":\"964467\"}},{\"attributeHeader\":{\"labelValue\":\"964468\",\"primaryLabelValue\":\"964468\"}},{\"attributeHeader\":{\"labelValue\":\"964469\",\"primaryLabelValue\":\"964469\"}},{\"attributeHeader\":{\"labelValue\":\"964470\",\"primaryLabelValue\":\"964470\"}},{\"attributeHeader\":{\"labelValue\":\"964471\",\"primaryLabelValue\":\"964471\"}},{\"attributeHeader\":{\"labelValue\":\"964472\",\"primaryLabelValue\":\"964472\"}},{\"attributeHeader\":{\"labelValue\":\"964473\",\"primaryLabelValue\":\"964473\"}},{\"attributeHeader\":{\"labelValue\":\"964474\",\"primaryLabelValue\":\"964474\"}},{\"attributeHeader\":{\"labelValue\":\"964475\",\"primaryLabelValue\":\"964475\"}},{\"attributeHeader\":{\"labelValue\":\"964477\",\"primaryLabelValue\":\"964477\"}},{\"attributeHeader\":{\"labelValue\":\"964479\",\"primaryLabelValue\":\"964479\"}},{\"attributeHeader\":{\"labelValue\":\"964480\",\"primaryLabelValue\":\"964480\"}},{\"attributeHeader\":{\"labelValue\":\"964482\",\"primaryLabelValue\":\"964482\"}},{\"attributeHeader\":{\"labelValue\":\"964483\",\"primaryLabelValue\":\"964483\"}},{\"attributeHeader\":{\"labelValue\":\"964484\",\"primaryLabelValue\":\"964484\"}},{\"attributeHeader\":{\"labelValue\":\"964486\",\"primaryLabelValue\":\"964486\"}},{\"attributeHeader\":{\"labelValue\":\"964487\",\"primaryLabelValue\":\"964487\"}},{\"attributeHeader\":{\"labelValue\":\"964488\",\"primaryLabelValue\":\"964488\"}},{\"attributeHeader\":{\"labelValue\":\"964489\",\"primaryLabelValue\":\"964489\"}},{\"attributeHeader\":{\"labelValue\":\"964491\",\"primaryLabelValue\":\"964491\"}},{\"attributeHeader\":{\"labelValue\":\"964492\",\"primaryLabelValue\":\"964492\"}},{\"attributeHeader\":{\"labelValue\":\"964493\",\"primaryLabelValue\":\"964493\"}},{\"attributeHeader\":{\"labelValue\":\"964494\",\"primaryLabelValue\":\"964494\"}},{\"attributeHeader\":{\"labelValue\":\"964496\",\"primaryLabelValue\":\"964496\"}},{\"attributeHeader\":{\"labelValue\":\"964498\",\"primaryLabelValue\":\"964498\"}},{\"attributeHeader\":{\"labelValue\":\"964500\",\"primaryLabelValue\":\"964500\"}},{\"attributeHeader\":{\"labelValue\":\"964501\",\"primaryLabelValue\":\"964501\"}},{\"attributeHeader\":{\"labelValue\":\"964503\",\"primaryLabelValue\":\"964503\"}},{\"attributeHeader\":{\"labelValue\":\"964505\",\"primaryLabelValue\":\"964505\"}},{\"attributeHeader\":{\"labelValue\":\"964507\",\"primaryLabelValue\":\"964507\"}},{\"attributeHeader\":{\"labelValue\":\"964508\",\"primaryLabelValue\":\"964508\"}},{\"attributeHeader\":{\"labelValue\":\"964509\",\"primaryLabelValue\":\"964509\"}},{\"attributeHeader\":{\"labelValue\":\"964510\",\"primaryLabelValue\":\"964510\"}},{\"attributeHeader\":{\"labelValue\":\"964512\",\"primaryLabelValue\":\"964512\"}},{\"attributeHeader\":{\"labelValue\":\"964514\",\"primaryLabelValue\":\"964514\"}},{\"attributeHeader\":{\"labelValue\":\"964515\",\"primaryLabelValue\":\"964515\"}},{\"attributeHeader\":{\"labelValue\":\"964516\",\"primaryLabelValue\":\"964516\"}},{\"attributeHeader\":{\"labelValue\":\"964517\",\"primaryLabelValue\":\"964517\"}},{\"attributeHeader\":{\"labelValue\":\"964518\",\"primaryLabelValue\":\"964518\"}},{\"attributeHeader\":{\"labelValue\":\"964520\",\"primaryLabelValue\":\"964520\"}},{\"attributeHeader\":{\"labelValue\":\"964521\",\"primaryLabelValue\":\"964521\"}},{\"attributeHeader\":{\"labelValue\":\"964523\",\"primaryLabelValue\":\"964523\"}},{\"attributeHeader\":{\"labelValue\":\"964524\",\"primaryLabelValue\":\"964524\"}},{\"attributeHeader\":{\"labelValue\":\"964525\",\"primaryLabelValue\":\"964525\"}},{\"attributeHeader\":{\"labelValue\":\"964526\",\"primaryLabelValue\":\"964526\"}},{\"attributeHeader\":{\"labelValue\":\"964527\",\"primaryLabelValue\":\"964527\"}},{\"attributeHeader\":{\"labelValue\":\"964529\",\"primaryLabelValue\":\"964529\"}},{\"attributeHeader\":{\"labelValue\":\"964530\",\"primaryLabelValue\":\"964530\"}},{\"attributeHeader\":{\"labelValue\":\"964531\",\"primaryLabelValue\":\"964531\"}},{\"attributeHeader\":{\"labelValue\":\"964533\",\"primaryLabelValue\":\"964533\"}},{\"attributeHeader\":{\"labelValue\":\"964534\",\"primaryLabelValue\":\"964534\"}},{\"attributeHeader\":{\"labelValue\":\"964535\",\"primaryLabelValue\":\"964535\"}},{\"attributeHeader\":{\"labelValue\":\"964537\",\"primaryLabelValue\":\"964537\"}},{\"attributeHeader\":{\"labelValue\":\"964539\",\"primaryLabelValue\":\"964539\"}},{\"attributeHeader\":{\"labelValue\":\"964541\",\"primaryLabelValue\":\"964541\"}},{\"attributeHeader\":{\"labelValue\":\"964542\",\"primaryLabelValue\":\"964542\"}},{\"attributeHeader\":{\"labelValue\":\"964543\",\"primaryLabelValue\":\"964543\"}},{\"attributeHeader\":{\"labelValue\":\"964544\",\"primaryLabelValue\":\"964544\"}},{\"attributeHeader\":{\"labelValue\":\"964545\",\"primaryLabelValue\":\"964545\"}},{\"attributeHeader\":{\"labelValue\":\"964548\",\"primaryLabelValue\":\"964548\"}},{\"attributeHeader\":{\"labelValue\":\"964549\",\"primaryLabelValue\":\"964549\"}},{\"attributeHeader\":{\"labelValue\":\"964550\",\"primaryLabelValue\":\"964550\"}},{\"attributeHeader\":{\"labelValue\":\"964551\",\"primaryLabelValue\":\"964551\"}},{\"attributeHeader\":{\"labelValue\":\"964552\",\"primaryLabelValue\":\"964552\"}},{\"attributeHeader\":{\"labelValue\":\"964554\",\"primaryLabelValue\":\"964554\"}},{\"attributeHeader\":{\"labelValue\":\"964555\",\"primaryLabelValue\":\"964555\"}},{\"attributeHeader\":{\"labelValue\":\"964557\",\"primaryLabelValue\":\"964557\"}},{\"attributeHeader\":{\"labelValue\":\"964558\",\"primaryLabelValue\":\"964558\"}},{\"attributeHeader\":{\"labelValue\":\"964560\",\"primaryLabelValue\":\"964560\"}},{\"attributeHeader\":{\"labelValue\":\"964561\",\"primaryLabelValue\":\"964561\"}},{\"attributeHeader\":{\"labelValue\":\"964562\",\"primaryLabelValue\":\"964562\"}},{\"attributeHeader\":{\"labelValue\":\"964563\",\"primaryLabelValue\":\"964563\"}},{\"attributeHeader\":{\"labelValue\":\"964565\",\"primaryLabelValue\":\"964565\"}},{\"attributeHeader\":{\"labelValue\":\"964567\",\"primaryLabelValue\":\"964567\"}},{\"attributeHeader\":{\"labelValue\":\"964568\",\"primaryLabelValue\":\"964568\"}},{\"attributeHeader\":{\"labelValue\":\"964570\",\"primaryLabelValue\":\"964570\"}},{\"attributeHeader\":{\"labelValue\":\"964572\",\"primaryLabelValue\":\"964572\"}},{\"attributeHeader\":{\"labelValue\":\"964573\",\"primaryLabelValue\":\"964573\"}},{\"attributeHeader\":{\"labelValue\":\"964574\",\"primaryLabelValue\":\"964574\"}},{\"attributeHeader\":{\"labelValue\":\"964575\",\"primaryLabelValue\":\"964575\"}},{\"attributeHeader\":{\"labelValue\":\"964577\",\"primaryLabelValue\":\"964577\"}},{\"attributeHeader\":{\"labelValue\":\"964578\",\"primaryLabelValue\":\"964578\"}},{\"attributeHeader\":{\"labelValue\":\"964579\",\"primaryLabelValue\":\"964579\"}},{\"attributeHeader\":{\"labelValue\":\"964580\",\"primaryLabelValue\":\"964580\"}},{\"attributeHeader\":{\"labelValue\":\"964582\",\"primaryLabelValue\":\"964582\"}},{\"attributeHeader\":{\"labelValue\":\"964584\",\"primaryLabelValue\":\"964584\"}},{\"attributeHeader\":{\"labelValue\":\"964586\",\"primaryLabelValue\":\"964586\"}},{\"attributeHeader\":{\"labelValue\":\"964588\",\"primaryLabelValue\":\"964588\"}},{\"attributeHeader\":{\"labelValue\":\"964589\",\"primaryLabelValue\":\"964589\"}},{\"attributeHeader\":{\"labelValue\":\"964590\",\"primaryLabelValue\":\"964590\"}},{\"attributeHeader\":{\"labelValue\":\"964591\",\"primaryLabelValue\":\"964591\"}},{\"attributeHeader\":{\"labelValue\":\"964592\",\"primaryLabelValue\":\"964592\"}},{\"attributeHeader\":{\"labelValue\":\"964594\",\"primaryLabelValue\":\"964594\"}},{\"attributeHeader\":{\"labelValue\":\"964595\",\"primaryLabelValue\":\"964595\"}},{\"attributeHeader\":{\"labelValue\":\"964596\",\"primaryLabelValue\":\"964596\"}},{\"attributeHeader\":{\"labelValue\":\"964598\",\"primaryLabelValue\":\"964598\"}},{\"attributeHeader\":{\"labelValue\":\"964600\",\"primaryLabelValue\":\"964600\"}},{\"attributeHeader\":{\"labelValue\":\"964601\",\"primaryLabelValue\":\"964601\"}},{\"attributeHeader\":{\"labelValue\":\"964603\",\"primaryLabelValue\":\"964603\"}},{\"attributeHeader\":{\"labelValue\":\"964604\",\"primaryLabelValue\":\"964604\"}},{\"attributeHeader\":{\"labelValue\":\"964605\",\"primaryLabelValue\":\"964605\"}},{\"attributeHeader\":{\"labelValue\":\"964606\",\"primaryLabelValue\":\"964606\"}},{\"attributeHeader\":{\"labelValue\":\"964607\",\"primaryLabelValue\":\"964607\"}},{\"attributeHeader\":{\"labelValue\":\"964608\",\"primaryLabelValue\":\"964608\"}},{\"attributeHeader\":{\"labelValue\":\"964609\",\"primaryLabelValue\":\"964609\"}},{\"attributeHeader\":{\"labelValue\":\"964610\",\"primaryLabelValue\":\"964610\"}},{\"attributeHeader\":{\"labelValue\":\"964611\",\"primaryLabelValue\":\"964611\"}},{\"attributeHeader\":{\"labelValue\":\"964612\",\"primaryLabelValue\":\"964612\"}},{\"attributeHeader\":{\"labelValue\":\"964614\",\"primaryLabelValue\":\"964614\"}},{\"attributeHeader\":{\"labelValue\":\"964615\",\"primaryLabelValue\":\"964615\"}},{\"attributeHeader\":{\"labelValue\":\"964616\",\"primaryLabelValue\":\"964616\"}},{\"attributeHeader\":{\"labelValue\":\"964618\",\"primaryLabelValue\":\"964618\"}},{\"attributeHeader\":{\"labelValue\":\"964620\",\"primaryLabelValue\":\"964620\"}},{\"attributeHeader\":{\"labelValue\":\"964621\",\"primaryLabelValue\":\"964621\"}},{\"attributeHeader\":{\"labelValue\":\"964622\",\"primaryLabelValue\":\"964622\"}},{\"attributeHeader\":{\"labelValue\":\"964624\",\"primaryLabelValue\":\"964624\"}},{\"attributeHeader\":{\"labelValue\":\"964626\",\"primaryLabelValue\":\"964626\"}},{\"attributeHeader\":{\"labelValue\":\"964627\",\"primaryLabelValue\":\"964627\"}},{\"attributeHeader\":{\"labelValue\":\"964629\",\"primaryLabelValue\":\"964629\"}},{\"attributeHeader\":{\"labelValue\":\"964630\",\"primaryLabelValue\":\"964630\"}},{\"attributeHeader\":{\"labelValue\":\"964631\",\"primaryLabelValue\":\"964631\"}},{\"attributeHeader\":{\"labelValue\":\"964632\",\"primaryLabelValue\":\"964632\"}},{\"attributeHeader\":{\"labelValue\":\"964634\",\"primaryLabelValue\":\"964634\"}},{\"attributeHeader\":{\"labelValue\":\"964637\",\"primaryLabelValue\":\"964637\"}},{\"attributeHeader\":{\"labelValue\":\"964638\",\"primaryLabelValue\":\"964638\"}},{\"attributeHeader\":{\"labelValue\":\"964640\",\"primaryLabelValue\":\"964640\"}},{\"attributeHeader\":{\"labelValue\":\"964642\",\"primaryLabelValue\":\"964642\"}},{\"attributeHeader\":{\"labelValue\":\"964644\",\"primaryLabelValue\":\"964644\"}},{\"attributeHeader\":{\"labelValue\":\"964645\",\"primaryLabelValue\":\"964645\"}},{\"attributeHeader\":{\"labelValue\":\"964646\",\"primaryLabelValue\":\"964646\"}},{\"attributeHeader\":{\"labelValue\":\"964647\",\"primaryLabelValue\":\"964647\"}},{\"attributeHeader\":{\"labelValue\":\"964648\",\"primaryLabelValue\":\"964648\"}},{\"attributeHeader\":{\"labelValue\":\"964649\",\"primaryLabelValue\":\"964649\"}},{\"attributeHeader\":{\"labelValue\":\"964650\",\"primaryLabelValue\":\"964650\"}},{\"attributeHeader\":{\"labelValue\":\"964651\",\"primaryLabelValue\":\"964651\"}},{\"attributeHeader\":{\"labelValue\":\"964652\",\"primaryLabelValue\":\"964652\"}},{\"attributeHeader\":{\"labelValue\":\"964654\",\"primaryLabelValue\":\"964654\"}},{\"attributeHeader\":{\"labelValue\":\"964655\",\"primaryLabelValue\":\"964655\"}},{\"attributeHeader\":{\"labelValue\":\"964656\",\"primaryLabelValue\":\"964656\"}},{\"attributeHeader\":{\"labelValue\":\"964658\",\"primaryLabelValue\":\"964658\"}},{\"attributeHeader\":{\"labelValue\":\"964660\",\"primaryLabelValue\":\"964660\"}},{\"attributeHeader\":{\"labelValue\":\"964662\",\"primaryLabelValue\":\"964662\"}},{\"attributeHeader\":{\"labelValue\":\"964663\",\"primaryLabelValue\":\"964663\"}},{\"attributeHeader\":{\"labelValue\":\"964664\",\"primaryLabelValue\":\"964664\"}},{\"attributeHeader\":{\"labelValue\":\"964665\",\"primaryLabelValue\":\"964665\"}},{\"attributeHeader\":{\"labelValue\":\"964666\",\"primaryLabelValue\":\"964666\"}},{\"attributeHeader\":{\"labelValue\":\"964667\",\"primaryLabelValue\":\"964667\"}},{\"attributeHeader\":{\"labelValue\":\"964668\",\"primaryLabelValue\":\"964668\"}},{\"attributeHeader\":{\"labelValue\":\"964669\",\"primaryLabelValue\":\"964669\"}},{\"attributeHeader\":{\"labelValue\":\"964671\",\"primaryLabelValue\":\"964671\"}},{\"attributeHeader\":{\"labelValue\":\"964673\",\"primaryLabelValue\":\"964673\"}},{\"attributeHeader\":{\"labelValue\":\"964674\",\"primaryLabelValue\":\"964674\"}},{\"attributeHeader\":{\"labelValue\":\"964675\",\"primaryLabelValue\":\"964675\"}},{\"attributeHeader\":{\"labelValue\":\"964676\",\"primaryLabelValue\":\"964676\"}},{\"attributeHeader\":{\"labelValue\":\"964678\",\"primaryLabelValue\":\"964678\"}},{\"attributeHeader\":{\"labelValue\":\"964680\",\"primaryLabelValue\":\"964680\"}},{\"attributeHeader\":{\"labelValue\":\"964682\",\"primaryLabelValue\":\"964682\"}},{\"attributeHeader\":{\"labelValue\":\"964683\",\"primaryLabelValue\":\"964683\"}},{\"attributeHeader\":{\"labelValue\":\"964685\",\"primaryLabelValue\":\"964685\"}},{\"attributeHeader\":{\"labelValue\":\"964686\",\"primaryLabelValue\":\"964686\"}},{\"attributeHeader\":{\"labelValue\":\"964687\",\"primaryLabelValue\":\"964687\"}},{\"attributeHeader\":{\"labelValue\":\"964688\",\"primaryLabelValue\":\"964688\"}},{\"attributeHeader\":{\"labelValue\":\"964689\",\"primaryLabelValue\":\"964689\"}},{\"attributeHeader\":{\"labelValue\":\"964690\",\"primaryLabelValue\":\"964690\"}},{\"attributeHeader\":{\"labelValue\":\"964691\",\"primaryLabelValue\":\"964691\"}},{\"attributeHeader\":{\"labelValue\":\"964693\",\"primaryLabelValue\":\"964693\"}},{\"attributeHeader\":{\"labelValue\":\"964694\",\"primaryLabelValue\":\"964694\"}},{\"attributeHeader\":{\"labelValue\":\"964696\",\"primaryLabelValue\":\"964696\"}},{\"attributeHeader\":{\"labelValue\":\"964697\",\"primaryLabelValue\":\"964697\"}},{\"attributeHeader\":{\"labelValue\":\"964698\",\"primaryLabelValue\":\"964698\"}},{\"attributeHeader\":{\"labelValue\":\"964699\",\"primaryLabelValue\":\"964699\"}},{\"attributeHeader\":{\"labelValue\":\"964701\",\"primaryLabelValue\":\"964701\"}},{\"attributeHeader\":{\"labelValue\":\"964702\",\"primaryLabelValue\":\"964702\"}},{\"attributeHeader\":{\"labelValue\":\"964703\",\"primaryLabelValue\":\"964703\"}},{\"attributeHeader\":{\"labelValue\":\"964704\",\"primaryLabelValue\":\"964704\"}},{\"attributeHeader\":{\"labelValue\":\"964705\",\"primaryLabelValue\":\"964705\"}},{\"attributeHeader\":{\"labelValue\":\"964706\",\"primaryLabelValue\":\"964706\"}},{\"attributeHeader\":{\"labelValue\":\"964707\",\"primaryLabelValue\":\"964707\"}},{\"attributeHeader\":{\"labelValue\":\"964709\",\"primaryLabelValue\":\"964709\"}},{\"attributeHeader\":{\"labelValue\":\"964710\",\"primaryLabelValue\":\"964710\"}},{\"attributeHeader\":{\"labelValue\":\"964711\",\"primaryLabelValue\":\"964711\"}},{\"attributeHeader\":{\"labelValue\":\"964712\",\"primaryLabelValue\":\"964712\"}},{\"attributeHeader\":{\"labelValue\":\"964713\",\"primaryLabelValue\":\"964713\"}},{\"attributeHeader\":{\"labelValue\":\"964717\",\"primaryLabelValue\":\"964717\"}},{\"attributeHeader\":{\"labelValue\":\"964718\",\"primaryLabelValue\":\"964718\"}},{\"attributeHeader\":{\"labelValue\":\"964720\",\"primaryLabelValue\":\"964720\"}},{\"attributeHeader\":{\"labelValue\":\"964721\",\"primaryLabelValue\":\"964721\"}},{\"attributeHeader\":{\"labelValue\":\"964722\",\"primaryLabelValue\":\"964722\"}},{\"attributeHeader\":{\"labelValue\":\"964724\",\"primaryLabelValue\":\"964724\"}},{\"attributeHeader\":{\"labelValue\":\"964726\",\"primaryLabelValue\":\"964726\"}},{\"attributeHeader\":{\"labelValue\":\"964727\",\"primaryLabelValue\":\"964727\"}},{\"attributeHeader\":{\"labelValue\":\"964728\",\"primaryLabelValue\":\"964728\"}},{\"attributeHeader\":{\"labelValue\":\"964729\",\"primaryLabelValue\":\"964729\"}},{\"attributeHeader\":{\"labelValue\":\"964730\",\"primaryLabelValue\":\"964730\"}},{\"attributeHeader\":{\"labelValue\":\"964732\",\"primaryLabelValue\":\"964732\"}},{\"attributeHeader\":{\"labelValue\":\"964733\",\"primaryLabelValue\":\"964733\"}},{\"attributeHeader\":{\"labelValue\":\"964734\",\"primaryLabelValue\":\"964734\"}},{\"attributeHeader\":{\"labelValue\":\"964736\",\"primaryLabelValue\":\"964736\"}},{\"attributeHeader\":{\"labelValue\":\"964738\",\"primaryLabelValue\":\"964738\"}},{\"attributeHeader\":{\"labelValue\":\"964739\",\"primaryLabelValue\":\"964739\"}},{\"attributeHeader\":{\"labelValue\":\"964742\",\"primaryLabelValue\":\"964742\"}},{\"attributeHeader\":{\"labelValue\":\"964743\",\"primaryLabelValue\":\"964743\"}},{\"attributeHeader\":{\"labelValue\":\"964745\",\"primaryLabelValue\":\"964745\"}},{\"attributeHeader\":{\"labelValue\":\"964746\",\"primaryLabelValue\":\"964746\"}},{\"attributeHeader\":{\"labelValue\":\"964747\",\"primaryLabelValue\":\"964747\"}},{\"attributeHeader\":{\"labelValue\":\"964748\",\"primaryLabelValue\":\"964748\"}},{\"attributeHeader\":{\"labelValue\":\"964750\",\"primaryLabelValue\":\"964750\"}},{\"attributeHeader\":{\"labelValue\":\"964751\",\"primaryLabelValue\":\"964751\"}},{\"attributeHeader\":{\"labelValue\":\"964753\",\"primaryLabelValue\":\"964753\"}},{\"attributeHeader\":{\"labelValue\":\"964756\",\"primaryLabelValue\":\"964756\"}},{\"attributeHeader\":{\"labelValue\":\"964757\",\"primaryLabelValue\":\"964757\"}},{\"attributeHeader\":{\"labelValue\":\"964759\",\"primaryLabelValue\":\"964759\"}},{\"attributeHeader\":{\"labelValue\":\"964760\",\"primaryLabelValue\":\"964760\"}},{\"attributeHeader\":{\"labelValue\":\"964761\",\"primaryLabelValue\":\"964761\"}},{\"attributeHeader\":{\"labelValue\":\"964763\",\"primaryLabelValue\":\"964763\"}},{\"attributeHeader\":{\"labelValue\":\"964764\",\"primaryLabelValue\":\"964764\"}},{\"attributeHeader\":{\"labelValue\":\"964765\",\"primaryLabelValue\":\"964765\"}},{\"attributeHeader\":{\"labelValue\":\"964766\",\"primaryLabelValue\":\"964766\"}},{\"attributeHeader\":{\"labelValue\":\"964767\",\"primaryLabelValue\":\"964767\"}},{\"attributeHeader\":{\"labelValue\":\"964769\",\"primaryLabelValue\":\"964769\"}},{\"attributeHeader\":{\"labelValue\":\"964772\",\"primaryLabelValue\":\"964772\"}},{\"attributeHeader\":{\"labelValue\":\"964773\",\"primaryLabelValue\":\"964773\"}},{\"attributeHeader\":{\"labelValue\":\"964774\",\"primaryLabelValue\":\"964774\"}},{\"attributeHeader\":{\"labelValue\":\"964776\",\"primaryLabelValue\":\"964776\"}},{\"attributeHeader\":{\"labelValue\":\"964778\",\"primaryLabelValue\":\"964778\"}},{\"attributeHeader\":{\"labelValue\":\"964780\",\"primaryLabelValue\":\"964780\"}},{\"attributeHeader\":{\"labelValue\":\"964781\",\"primaryLabelValue\":\"964781\"}},{\"attributeHeader\":{\"labelValue\":\"964783\",\"primaryLabelValue\":\"964783\"}},{\"attributeHeader\":{\"labelValue\":\"964786\",\"primaryLabelValue\":\"964786\"}},{\"attributeHeader\":{\"labelValue\":\"964787\",\"primaryLabelValue\":\"964787\"}},{\"attributeHeader\":{\"labelValue\":\"964788\",\"primaryLabelValue\":\"964788\"}},{\"attributeHeader\":{\"labelValue\":\"964789\",\"primaryLabelValue\":\"964789\"}},{\"attributeHeader\":{\"labelValue\":\"964791\",\"primaryLabelValue\":\"964791\"}},{\"attributeHeader\":{\"labelValue\":\"964792\",\"primaryLabelValue\":\"964792\"}},{\"attributeHeader\":{\"labelValue\":\"964793\",\"primaryLabelValue\":\"964793\"}},{\"attributeHeader\":{\"labelValue\":\"964795\",\"primaryLabelValue\":\"964795\"}},{\"attributeHeader\":{\"labelValue\":\"964796\",\"primaryLabelValue\":\"964796\"}},{\"attributeHeader\":{\"labelValue\":\"964798\",\"primaryLabelValue\":\"964798\"}},{\"attributeHeader\":{\"labelValue\":\"964799\",\"primaryLabelValue\":\"964799\"}},{\"attributeHeader\":{\"labelValue\":\"964801\",\"primaryLabelValue\":\"964801\"}},{\"attributeHeader\":{\"labelValue\":\"964802\",\"primaryLabelValue\":\"964802\"}},{\"attributeHeader\":{\"labelValue\":\"964803\",\"primaryLabelValue\":\"964803\"}},{\"attributeHeader\":{\"labelValue\":\"964804\",\"primaryLabelValue\":\"964804\"}},{\"attributeHeader\":{\"labelValue\":\"964805\",\"primaryLabelValue\":\"964805\"}},{\"attributeHeader\":{\"labelValue\":\"964808\",\"primaryLabelValue\":\"964808\"}},{\"attributeHeader\":{\"labelValue\":\"964809\",\"primaryLabelValue\":\"964809\"}},{\"attributeHeader\":{\"labelValue\":\"964812\",\"primaryLabelValue\":\"964812\"}},{\"attributeHeader\":{\"labelValue\":\"964813\",\"primaryLabelValue\":\"964813\"}},{\"attributeHeader\":{\"labelValue\":\"964814\",\"primaryLabelValue\":\"964814\"}},{\"attributeHeader\":{\"labelValue\":\"964815\",\"primaryLabelValue\":\"964815\"}},{\"attributeHeader\":{\"labelValue\":\"964816\",\"primaryLabelValue\":\"964816\"}},{\"attributeHeader\":{\"labelValue\":\"964817\",\"primaryLabelValue\":\"964817\"}},{\"attributeHeader\":{\"labelValue\":\"964818\",\"primaryLabelValue\":\"964818\"}},{\"attributeHeader\":{\"labelValue\":\"964819\",\"primaryLabelValue\":\"964819\"}},{\"attributeHeader\":{\"labelValue\":\"964820\",\"primaryLabelValue\":\"964820\"}},{\"attributeHeader\":{\"labelValue\":\"964822\",\"primaryLabelValue\":\"964822\"}},{\"attributeHeader\":{\"labelValue\":\"964823\",\"primaryLabelValue\":\"964823\"}},{\"attributeHeader\":{\"labelValue\":\"964824\",\"primaryLabelValue\":\"964824\"}},{\"attributeHeader\":{\"labelValue\":\"964825\",\"primaryLabelValue\":\"964825\"}},{\"attributeHeader\":{\"labelValue\":\"964826\",\"primaryLabelValue\":\"964826\"}},{\"attributeHeader\":{\"labelValue\":\"964831\",\"primaryLabelValue\":\"964831\"}},{\"attributeHeader\":{\"labelValue\":\"964833\",\"primaryLabelValue\":\"964833\"}},{\"attributeHeader\":{\"labelValue\":\"964835\",\"primaryLabelValue\":\"964835\"}},{\"attributeHeader\":{\"labelValue\":\"964837\",\"primaryLabelValue\":\"964837\"}},{\"attributeHeader\":{\"labelValue\":\"964839\",\"primaryLabelValue\":\"964839\"}},{\"attributeHeader\":{\"labelValue\":\"964841\",\"primaryLabelValue\":\"964841\"}},{\"attributeHeader\":{\"labelValue\":\"964843\",\"primaryLabelValue\":\"964843\"}},{\"attributeHeader\":{\"labelValue\":\"964844\",\"primaryLabelValue\":\"964844\"}},{\"attributeHeader\":{\"labelValue\":\"964845\",\"primaryLabelValue\":\"964845\"}},{\"attributeHeader\":{\"labelValue\":\"964846\",\"primaryLabelValue\":\"964846\"}},{\"attributeHeader\":{\"labelValue\":\"964848\",\"primaryLabelValue\":\"964848\"}},{\"attributeHeader\":{\"labelValue\":\"964849\",\"primaryLabelValue\":\"964849\"}},{\"attributeHeader\":{\"labelValue\":\"964850\",\"primaryLabelValue\":\"964850\"}},{\"attributeHeader\":{\"labelValue\":\"964851\",\"primaryLabelValue\":\"964851\"}},{\"attributeHeader\":{\"labelValue\":\"964852\",\"primaryLabelValue\":\"964852\"}},{\"attributeHeader\":{\"labelValue\":\"964854\",\"primaryLabelValue\":\"964854\"}},{\"attributeHeader\":{\"labelValue\":\"964855\",\"primaryLabelValue\":\"964855\"}},{\"attributeHeader\":{\"labelValue\":\"964856\",\"primaryLabelValue\":\"964856\"}},{\"attributeHeader\":{\"labelValue\":\"964858\",\"primaryLabelValue\":\"964858\"}},{\"attributeHeader\":{\"labelValue\":\"964860\",\"primaryLabelValue\":\"964860\"}},{\"attributeHeader\":{\"labelValue\":\"964862\",\"primaryLabelValue\":\"964862\"}},{\"attributeHeader\":{\"labelValue\":\"964864\",\"primaryLabelValue\":\"964864\"}},{\"attributeHeader\":{\"labelValue\":\"964865\",\"primaryLabelValue\":\"964865\"}},{\"attributeHeader\":{\"labelValue\":\"964866\",\"primaryLabelValue\":\"964866\"}},{\"attributeHeader\":{\"labelValue\":\"964868\",\"primaryLabelValue\":\"964868\"}},{\"attributeHeader\":{\"labelValue\":\"964870\",\"primaryLabelValue\":\"964870\"}},{\"attributeHeader\":{\"labelValue\":\"964871\",\"primaryLabelValue\":\"964871\"}},{\"attributeHeader\":{\"labelValue\":\"964873\",\"primaryLabelValue\":\"964873\"}},{\"attributeHeader\":{\"labelValue\":\"964875\",\"primaryLabelValue\":\"964875\"}},{\"attributeHeader\":{\"labelValue\":\"964877\",\"primaryLabelValue\":\"964877\"}},{\"attributeHeader\":{\"labelValue\":\"964878\",\"primaryLabelValue\":\"964878\"}},{\"attributeHeader\":{\"labelValue\":\"964879\",\"primaryLabelValue\":\"964879\"}},{\"attributeHeader\":{\"labelValue\":\"964880\",\"primaryLabelValue\":\"964880\"}},{\"attributeHeader\":{\"labelValue\":\"964881\",\"primaryLabelValue\":\"964881\"}},{\"attributeHeader\":{\"labelValue\":\"964882\",\"primaryLabelValue\":\"964882\"}},{\"attributeHeader\":{\"labelValue\":\"964883\",\"primaryLabelValue\":\"964883\"}},{\"attributeHeader\":{\"labelValue\":\"964884\",\"primaryLabelValue\":\"964884\"}},{\"attributeHeader\":{\"labelValue\":\"964885\",\"primaryLabelValue\":\"964885\"}},{\"attributeHeader\":{\"labelValue\":\"964886\",\"primaryLabelValue\":\"964886\"}},{\"attributeHeader\":{\"labelValue\":\"964887\",\"primaryLabelValue\":\"964887\"}},{\"attributeHeader\":{\"labelValue\":\"964888\",\"primaryLabelValue\":\"964888\"}},{\"attributeHeader\":{\"labelValue\":\"964890\",\"primaryLabelValue\":\"964890\"}},{\"attributeHeader\":{\"labelValue\":\"964891\",\"primaryLabelValue\":\"964891\"}},{\"attributeHeader\":{\"labelValue\":\"964892\",\"primaryLabelValue\":\"964892\"}},{\"attributeHeader\":{\"labelValue\":\"964893\",\"primaryLabelValue\":\"964893\"}},{\"attributeHeader\":{\"labelValue\":\"964894\",\"primaryLabelValue\":\"964894\"}},{\"attributeHeader\":{\"labelValue\":\"964896\",\"primaryLabelValue\":\"964896\"}},{\"attributeHeader\":{\"labelValue\":\"964897\",\"primaryLabelValue\":\"964897\"}},{\"attributeHeader\":{\"labelValue\":\"964898\",\"primaryLabelValue\":\"964898\"}},{\"attributeHeader\":{\"labelValue\":\"964900\",\"primaryLabelValue\":\"964900\"}},{\"attributeHeader\":{\"labelValue\":\"964901\",\"primaryLabelValue\":\"964901\"}},{\"attributeHeader\":{\"labelValue\":\"964902\",\"primaryLabelValue\":\"964902\"}},{\"attributeHeader\":{\"labelValue\":\"964903\",\"primaryLabelValue\":\"964903\"}},{\"attributeHeader\":{\"labelValue\":\"964905\",\"primaryLabelValue\":\"964905\"}},{\"attributeHeader\":{\"labelValue\":\"964907\",\"primaryLabelValue\":\"964907\"}},{\"attributeHeader\":{\"labelValue\":\"964909\",\"primaryLabelValue\":\"964909\"}},{\"attributeHeader\":{\"labelValue\":\"964911\",\"primaryLabelValue\":\"964911\"}},{\"attributeHeader\":{\"labelValue\":\"964912\",\"primaryLabelValue\":\"964912\"}},{\"attributeHeader\":{\"labelValue\":\"964914\",\"primaryLabelValue\":\"964914\"}},{\"attributeHeader\":{\"labelValue\":\"964915\",\"primaryLabelValue\":\"964915\"}},{\"attributeHeader\":{\"labelValue\":\"964917\",\"primaryLabelValue\":\"964917\"}},{\"attributeHeader\":{\"labelValue\":\"964919\",\"primaryLabelValue\":\"964919\"}},{\"attributeHeader\":{\"labelValue\":\"964921\",\"primaryLabelValue\":\"964921\"}},{\"attributeHeader\":{\"labelValue\":\"964923\",\"primaryLabelValue\":\"964923\"}},{\"attributeHeader\":{\"labelValue\":\"964924\",\"primaryLabelValue\":\"964924\"}},{\"attributeHeader\":{\"labelValue\":\"964926\",\"primaryLabelValue\":\"964926\"}},{\"attributeHeader\":{\"labelValue\":\"964928\",\"primaryLabelValue\":\"964928\"}},{\"attributeHeader\":{\"labelValue\":\"964929\",\"primaryLabelValue\":\"964929\"}},{\"attributeHeader\":{\"labelValue\":\"964930\",\"primaryLabelValue\":\"964930\"}},{\"attributeHeader\":{\"labelValue\":\"964931\",\"primaryLabelValue\":\"964931\"}},{\"attributeHeader\":{\"labelValue\":\"964933\",\"primaryLabelValue\":\"964933\"}},{\"attributeHeader\":{\"labelValue\":\"964935\",\"primaryLabelValue\":\"964935\"}},{\"attributeHeader\":{\"labelValue\":\"964936\",\"primaryLabelValue\":\"964936\"}},{\"attributeHeader\":{\"labelValue\":\"964937\",\"primaryLabelValue\":\"964937\"}},{\"attributeHeader\":{\"labelValue\":\"964939\",\"primaryLabelValue\":\"964939\"}},{\"attributeHeader\":{\"labelValue\":\"964940\",\"primaryLabelValue\":\"964940\"}},{\"attributeHeader\":{\"labelValue\":\"964942\",\"primaryLabelValue\":\"964942\"}},{\"attributeHeader\":{\"labelValue\":\"964943\",\"primaryLabelValue\":\"964943\"}},{\"attributeHeader\":{\"labelValue\":\"964944\",\"primaryLabelValue\":\"964944\"}},{\"attributeHeader\":{\"labelValue\":\"964946\",\"primaryLabelValue\":\"964946\"}},{\"attributeHeader\":{\"labelValue\":\"964947\",\"primaryLabelValue\":\"964947\"}},{\"attributeHeader\":{\"labelValue\":\"964948\",\"primaryLabelValue\":\"964948\"}},{\"attributeHeader\":{\"labelValue\":\"964949\",\"primaryLabelValue\":\"964949\"}},{\"attributeHeader\":{\"labelValue\":\"964950\",\"primaryLabelValue\":\"964950\"}},{\"attributeHeader\":{\"labelValue\":\"964952\",\"primaryLabelValue\":\"964952\"}},{\"attributeHeader\":{\"labelValue\":\"964953\",\"primaryLabelValue\":\"964953\"}},{\"attributeHeader\":{\"labelValue\":\"964954\",\"primaryLabelValue\":\"964954\"}},{\"attributeHeader\":{\"labelValue\":\"964956\",\"primaryLabelValue\":\"964956\"}},{\"attributeHeader\":{\"labelValue\":\"964958\",\"primaryLabelValue\":\"964958\"}},{\"attributeHeader\":{\"labelValue\":\"964960\",\"primaryLabelValue\":\"964960\"}},{\"attributeHeader\":{\"labelValue\":\"964962\",\"primaryLabelValue\":\"964962\"}},{\"attributeHeader\":{\"labelValue\":\"964964\",\"primaryLabelValue\":\"964964\"}},{\"attributeHeader\":{\"labelValue\":\"964965\",\"primaryLabelValue\":\"964965\"}},{\"attributeHeader\":{\"labelValue\":\"964966\",\"primaryLabelValue\":\"964966\"}},{\"attributeHeader\":{\"labelValue\":\"964967\",\"primaryLabelValue\":\"964967\"}},{\"attributeHeader\":{\"labelValue\":\"964968\",\"primaryLabelValue\":\"964968\"}},{\"attributeHeader\":{\"labelValue\":\"964969\",\"primaryLabelValue\":\"964969\"}},{\"attributeHeader\":{\"labelValue\":\"964970\",\"primaryLabelValue\":\"964970\"}},{\"attributeHeader\":{\"labelValue\":\"964971\",\"primaryLabelValue\":\"964971\"}},{\"attributeHeader\":{\"labelValue\":\"964972\",\"primaryLabelValue\":\"964972\"}},{\"attributeHeader\":{\"labelValue\":\"964973\",\"primaryLabelValue\":\"964973\"}},{\"attributeHeader\":{\"labelValue\":\"964974\",\"primaryLabelValue\":\"964974\"}},{\"attributeHeader\":{\"labelValue\":\"964976\",\"primaryLabelValue\":\"964976\"}},{\"attributeHeader\":{\"labelValue\":\"964977\",\"primaryLabelValue\":\"964977\"}},{\"attributeHeader\":{\"labelValue\":\"964978\",\"primaryLabelValue\":\"964978\"}},{\"attributeHeader\":{\"labelValue\":\"964979\",\"primaryLabelValue\":\"964979\"}},{\"attributeHeader\":{\"labelValue\":\"964980\",\"primaryLabelValue\":\"964980\"}},{\"attributeHeader\":{\"labelValue\":\"964981\",\"primaryLabelValue\":\"964981\"}},{\"attributeHeader\":{\"labelValue\":\"964982\",\"primaryLabelValue\":\"964982\"}},{\"attributeHeader\":{\"labelValue\":\"964983\",\"primaryLabelValue\":\"964983\"}},{\"attributeHeader\":{\"labelValue\":\"964984\",\"primaryLabelValue\":\"964984\"}},{\"attributeHeader\":{\"labelValue\":\"964985\",\"primaryLabelValue\":\"964985\"}},{\"attributeHeader\":{\"labelValue\":\"964986\",\"primaryLabelValue\":\"964986\"}},{\"attributeHeader\":{\"labelValue\":\"964988\",\"primaryLabelValue\":\"964988\"}},{\"attributeHeader\":{\"labelValue\":\"964989\",\"primaryLabelValue\":\"964989\"}},{\"attributeHeader\":{\"labelValue\":\"964991\",\"primaryLabelValue\":\"964991\"}},{\"attributeHeader\":{\"labelValue\":\"964992\",\"primaryLabelValue\":\"964992\"}},{\"attributeHeader\":{\"labelValue\":\"964993\",\"primaryLabelValue\":\"964993\"}},{\"attributeHeader\":{\"labelValue\":\"964994\",\"primaryLabelValue\":\"964994\"}},{\"attributeHeader\":{\"labelValue\":\"964995\",\"primaryLabelValue\":\"964995\"}},{\"attributeHeader\":{\"labelValue\":\"964996\",\"primaryLabelValue\":\"964996\"}},{\"attributeHeader\":{\"labelValue\":\"964997\",\"primaryLabelValue\":\"964997\"}},{\"attributeHeader\":{\"labelValue\":\"964999\",\"primaryLabelValue\":\"964999\"}},{\"attributeHeader\":{\"labelValue\":\"965000\",\"primaryLabelValue\":\"965000\"}},{\"attributeHeader\":{\"labelValue\":\"965001\",\"primaryLabelValue\":\"965001\"}},{\"attributeHeader\":{\"labelValue\":\"965002\",\"primaryLabelValue\":\"965002\"}},{\"attributeHeader\":{\"labelValue\":\"965003\",\"primaryLabelValue\":\"965003\"}},{\"attributeHeader\":{\"labelValue\":\"965004\",\"primaryLabelValue\":\"965004\"}},{\"attributeHeader\":{\"labelValue\":\"965005\",\"primaryLabelValue\":\"965005\"}},{\"attributeHeader\":{\"labelValue\":\"965007\",\"primaryLabelValue\":\"965007\"}},{\"attributeHeader\":{\"labelValue\":\"965008\",\"primaryLabelValue\":\"965008\"}},{\"attributeHeader\":{\"labelValue\":\"965009\",\"primaryLabelValue\":\"965009\"}},{\"attributeHeader\":{\"labelValue\":\"965011\",\"primaryLabelValue\":\"965011\"}},{\"attributeHeader\":{\"labelValue\":\"965012\",\"primaryLabelValue\":\"965012\"}},{\"attributeHeader\":{\"labelValue\":\"965013\",\"primaryLabelValue\":\"965013\"}},{\"attributeHeader\":{\"labelValue\":\"965015\",\"primaryLabelValue\":\"965015\"}},{\"attributeHeader\":{\"labelValue\":\"965016\",\"primaryLabelValue\":\"965016\"}},{\"attributeHeader\":{\"labelValue\":\"965017\",\"primaryLabelValue\":\"965017\"}},{\"attributeHeader\":{\"labelValue\":\"965019\",\"primaryLabelValue\":\"965019\"}},{\"attributeHeader\":{\"labelValue\":\"965020\",\"primaryLabelValue\":\"965020\"}},{\"attributeHeader\":{\"labelValue\":\"965021\",\"primaryLabelValue\":\"965021\"}},{\"attributeHeader\":{\"labelValue\":\"965022\",\"primaryLabelValue\":\"965022\"}},{\"attributeHeader\":{\"labelValue\":\"965023\",\"primaryLabelValue\":\"965023\"}},{\"attributeHeader\":{\"labelValue\":\"965024\",\"primaryLabelValue\":\"965024\"}},{\"attributeHeader\":{\"labelValue\":\"965025\",\"primaryLabelValue\":\"965025\"}},{\"attributeHeader\":{\"labelValue\":\"965026\",\"primaryLabelValue\":\"965026\"}},{\"attributeHeader\":{\"labelValue\":\"965028\",\"primaryLabelValue\":\"965028\"}},{\"attributeHeader\":{\"labelValue\":\"965029\",\"primaryLabelValue\":\"965029\"}},{\"attributeHeader\":{\"labelValue\":\"965031\",\"primaryLabelValue\":\"965031\"}},{\"attributeHeader\":{\"labelValue\":\"965032\",\"primaryLabelValue\":\"965032\"}},{\"attributeHeader\":{\"labelValue\":\"965034\",\"primaryLabelValue\":\"965034\"}},{\"attributeHeader\":{\"labelValue\":\"965036\",\"primaryLabelValue\":\"965036\"}},{\"attributeHeader\":{\"labelValue\":\"965038\",\"primaryLabelValue\":\"965038\"}},{\"attributeHeader\":{\"labelValue\":\"965041\",\"primaryLabelValue\":\"965041\"}},{\"attributeHeader\":{\"labelValue\":\"965042\",\"primaryLabelValue\":\"965042\"}},{\"attributeHeader\":{\"labelValue\":\"965044\",\"primaryLabelValue\":\"965044\"}},{\"attributeHeader\":{\"labelValue\":\"965045\",\"primaryLabelValue\":\"965045\"}},{\"attributeHeader\":{\"labelValue\":\"965046\",\"primaryLabelValue\":\"965046\"}},{\"attributeHeader\":{\"labelValue\":\"965047\",\"primaryLabelValue\":\"965047\"}},{\"attributeHeader\":{\"labelValue\":\"965048\",\"primaryLabelValue\":\"965048\"}},{\"attributeHeader\":{\"labelValue\":\"965049\",\"primaryLabelValue\":\"965049\"}},{\"attributeHeader\":{\"labelValue\":\"965050\",\"primaryLabelValue\":\"965050\"}},{\"attributeHeader\":{\"labelValue\":\"965052\",\"primaryLabelValue\":\"965052\"}},{\"attributeHeader\":{\"labelValue\":\"965053\",\"primaryLabelValue\":\"965053\"}},{\"attributeHeader\":{\"labelValue\":\"965055\",\"primaryLabelValue\":\"965055\"}},{\"attributeHeader\":{\"labelValue\":\"965056\",\"primaryLabelValue\":\"965056\"}},{\"attributeHeader\":{\"labelValue\":\"965058\",\"primaryLabelValue\":\"965058\"}},{\"attributeHeader\":{\"labelValue\":\"965059\",\"primaryLabelValue\":\"965059\"}},{\"attributeHeader\":{\"labelValue\":\"965060\",\"primaryLabelValue\":\"965060\"}},{\"attributeHeader\":{\"labelValue\":\"965061\",\"primaryLabelValue\":\"965061\"}},{\"attributeHeader\":{\"labelValue\":\"965062\",\"primaryLabelValue\":\"965062\"}},{\"attributeHeader\":{\"labelValue\":\"965063\",\"primaryLabelValue\":\"965063\"}},{\"attributeHeader\":{\"labelValue\":\"965065\",\"primaryLabelValue\":\"965065\"}},{\"attributeHeader\":{\"labelValue\":\"965066\",\"primaryLabelValue\":\"965066\"}},{\"attributeHeader\":{\"labelValue\":\"965067\",\"primaryLabelValue\":\"965067\"}},{\"attributeHeader\":{\"labelValue\":\"965068\",\"primaryLabelValue\":\"965068\"}},{\"attributeHeader\":{\"labelValue\":\"965069\",\"primaryLabelValue\":\"965069\"}},{\"attributeHeader\":{\"labelValue\":\"965070\",\"primaryLabelValue\":\"965070\"}},{\"attributeHeader\":{\"labelValue\":\"965071\",\"primaryLabelValue\":\"965071\"}},{\"attributeHeader\":{\"labelValue\":\"965072\",\"primaryLabelValue\":\"965072\"}},{\"attributeHeader\":{\"labelValue\":\"965074\",\"primaryLabelValue\":\"965074\"}},{\"attributeHeader\":{\"labelValue\":\"965077\",\"primaryLabelValue\":\"965077\"}},{\"attributeHeader\":{\"labelValue\":\"965078\",\"primaryLabelValue\":\"965078\"}},{\"attributeHeader\":{\"labelValue\":\"965080\",\"primaryLabelValue\":\"965080\"}},{\"attributeHeader\":{\"labelValue\":\"965081\",\"primaryLabelValue\":\"965081\"}},{\"attributeHeader\":{\"labelValue\":\"965083\",\"primaryLabelValue\":\"965083\"}},{\"attributeHeader\":{\"labelValue\":\"965084\",\"primaryLabelValue\":\"965084\"}},{\"attributeHeader\":{\"labelValue\":\"965086\",\"primaryLabelValue\":\"965086\"}},{\"attributeHeader\":{\"labelValue\":\"965087\",\"primaryLabelValue\":\"965087\"}},{\"attributeHeader\":{\"labelValue\":\"965089\",\"primaryLabelValue\":\"965089\"}},{\"attributeHeader\":{\"labelValue\":\"965091\",\"primaryLabelValue\":\"965091\"}},{\"attributeHeader\":{\"labelValue\":\"965092\",\"primaryLabelValue\":\"965092\"}},{\"attributeHeader\":{\"labelValue\":\"965093\",\"primaryLabelValue\":\"965093\"}},{\"attributeHeader\":{\"labelValue\":\"965094\",\"primaryLabelValue\":\"965094\"}},{\"attributeHeader\":{\"labelValue\":\"965095\",\"primaryLabelValue\":\"965095\"}},{\"attributeHeader\":{\"labelValue\":\"965096\",\"primaryLabelValue\":\"965096\"}},{\"attributeHeader\":{\"labelValue\":\"965097\",\"primaryLabelValue\":\"965097\"}},{\"attributeHeader\":{\"labelValue\":\"965098\",\"primaryLabelValue\":\"965098\"}},{\"attributeHeader\":{\"labelValue\":\"965100\",\"primaryLabelValue\":\"965100\"}},{\"attributeHeader\":{\"labelValue\":\"965101\",\"primaryLabelValue\":\"965101\"}},{\"attributeHeader\":{\"labelValue\":\"965102\",\"primaryLabelValue\":\"965102\"}},{\"attributeHeader\":{\"labelValue\":\"965103\",\"primaryLabelValue\":\"965103\"}},{\"attributeHeader\":{\"labelValue\":\"965104\",\"primaryLabelValue\":\"965104\"}},{\"attributeHeader\":{\"labelValue\":\"965106\",\"primaryLabelValue\":\"965106\"}},{\"attributeHeader\":{\"labelValue\":\"965107\",\"primaryLabelValue\":\"965107\"}},{\"attributeHeader\":{\"labelValue\":\"965109\",\"primaryLabelValue\":\"965109\"}},{\"attributeHeader\":{\"labelValue\":\"965110\",\"primaryLabelValue\":\"965110\"}},{\"attributeHeader\":{\"labelValue\":\"965112\",\"primaryLabelValue\":\"965112\"}},{\"attributeHeader\":{\"labelValue\":\"965113\",\"primaryLabelValue\":\"965113\"}},{\"attributeHeader\":{\"labelValue\":\"965114\",\"primaryLabelValue\":\"965114\"}},{\"attributeHeader\":{\"labelValue\":\"965116\",\"primaryLabelValue\":\"965116\"}},{\"attributeHeader\":{\"labelValue\":\"965117\",\"primaryLabelValue\":\"965117\"}},{\"attributeHeader\":{\"labelValue\":\"965118\",\"primaryLabelValue\":\"965118\"}},{\"attributeHeader\":{\"labelValue\":\"965119\",\"primaryLabelValue\":\"965119\"}},{\"attributeHeader\":{\"labelValue\":\"965121\",\"primaryLabelValue\":\"965121\"}},{\"attributeHeader\":{\"labelValue\":\"965122\",\"primaryLabelValue\":\"965122\"}},{\"attributeHeader\":{\"labelValue\":\"965123\",\"primaryLabelValue\":\"965123\"}},{\"attributeHeader\":{\"labelValue\":\"965124\",\"primaryLabelValue\":\"965124\"}},{\"attributeHeader\":{\"labelValue\":\"965125\",\"primaryLabelValue\":\"965125\"}},{\"attributeHeader\":{\"labelValue\":\"965127\",\"primaryLabelValue\":\"965127\"}},{\"attributeHeader\":{\"labelValue\":\"965128\",\"primaryLabelValue\":\"965128\"}},{\"attributeHeader\":{\"labelValue\":\"965129\",\"primaryLabelValue\":\"965129\"}},{\"attributeHeader\":{\"labelValue\":\"965131\",\"primaryLabelValue\":\"965131\"}},{\"attributeHeader\":{\"labelValue\":\"965132\",\"primaryLabelValue\":\"965132\"}},{\"attributeHeader\":{\"labelValue\":\"965133\",\"primaryLabelValue\":\"965133\"}},{\"attributeHeader\":{\"labelValue\":\"965134\",\"primaryLabelValue\":\"965134\"}},{\"attributeHeader\":{\"labelValue\":\"965136\",\"primaryLabelValue\":\"965136\"}},{\"attributeHeader\":{\"labelValue\":\"965138\",\"primaryLabelValue\":\"965138\"}},{\"attributeHeader\":{\"labelValue\":\"965139\",\"primaryLabelValue\":\"965139\"}},{\"attributeHeader\":{\"labelValue\":\"965140\",\"primaryLabelValue\":\"965140\"}},{\"attributeHeader\":{\"labelValue\":\"965142\",\"primaryLabelValue\":\"965142\"}},{\"attributeHeader\":{\"labelValue\":\"965143\",\"primaryLabelValue\":\"965143\"}},{\"attributeHeader\":{\"labelValue\":\"965144\",\"primaryLabelValue\":\"965144\"}},{\"attributeHeader\":{\"labelValue\":\"965145\",\"primaryLabelValue\":\"965145\"}},{\"attributeHeader\":{\"labelValue\":\"965146\",\"primaryLabelValue\":\"965146\"}},{\"attributeHeader\":{\"labelValue\":\"965148\",\"primaryLabelValue\":\"965148\"}},{\"attributeHeader\":{\"labelValue\":\"965149\",\"primaryLabelValue\":\"965149\"}},{\"attributeHeader\":{\"labelValue\":\"965150\",\"primaryLabelValue\":\"965150\"}},{\"attributeHeader\":{\"labelValue\":\"965151\",\"primaryLabelValue\":\"965151\"}},{\"attributeHeader\":{\"labelValue\":\"965152\",\"primaryLabelValue\":\"965152\"}},{\"attributeHeader\":{\"labelValue\":\"965155\",\"primaryLabelValue\":\"965155\"}},{\"attributeHeader\":{\"labelValue\":\"965156\",\"primaryLabelValue\":\"965156\"}},{\"attributeHeader\":{\"labelValue\":\"965157\",\"primaryLabelValue\":\"965157\"}},{\"attributeHeader\":{\"labelValue\":\"965158\",\"primaryLabelValue\":\"965158\"}},{\"attributeHeader\":{\"labelValue\":\"965159\",\"primaryLabelValue\":\"965159\"}},{\"attributeHeader\":{\"labelValue\":\"965160\",\"primaryLabelValue\":\"965160\"}},{\"attributeHeader\":{\"labelValue\":\"965161\",\"primaryLabelValue\":\"965161\"}},{\"attributeHeader\":{\"labelValue\":\"965163\",\"primaryLabelValue\":\"965163\"}},{\"attributeHeader\":{\"labelValue\":\"965165\",\"primaryLabelValue\":\"965165\"}},{\"attributeHeader\":{\"labelValue\":\"965166\",\"primaryLabelValue\":\"965166\"}},{\"attributeHeader\":{\"labelValue\":\"965167\",\"primaryLabelValue\":\"965167\"}},{\"attributeHeader\":{\"labelValue\":\"965168\",\"primaryLabelValue\":\"965168\"}},{\"attributeHeader\":{\"labelValue\":\"965170\",\"primaryLabelValue\":\"965170\"}},{\"attributeHeader\":{\"labelValue\":\"965171\",\"primaryLabelValue\":\"965171\"}},{\"attributeHeader\":{\"labelValue\":\"965172\",\"primaryLabelValue\":\"965172\"}},{\"attributeHeader\":{\"labelValue\":\"965173\",\"primaryLabelValue\":\"965173\"}},{\"attributeHeader\":{\"labelValue\":\"965174\",\"primaryLabelValue\":\"965174\"}},{\"attributeHeader\":{\"labelValue\":\"965176\",\"primaryLabelValue\":\"965176\"}},{\"attributeHeader\":{\"labelValue\":\"965178\",\"primaryLabelValue\":\"965178\"}},{\"attributeHeader\":{\"labelValue\":\"965180\",\"primaryLabelValue\":\"965180\"}},{\"attributeHeader\":{\"labelValue\":\"965181\",\"primaryLabelValue\":\"965181\"}},{\"attributeHeader\":{\"labelValue\":\"965182\",\"primaryLabelValue\":\"965182\"}},{\"attributeHeader\":{\"labelValue\":\"965184\",\"primaryLabelValue\":\"965184\"}},{\"attributeHeader\":{\"labelValue\":\"965186\",\"primaryLabelValue\":\"965186\"}},{\"attributeHeader\":{\"labelValue\":\"965187\",\"primaryLabelValue\":\"965187\"}},{\"attributeHeader\":{\"labelValue\":\"965188\",\"primaryLabelValue\":\"965188\"}},{\"attributeHeader\":{\"labelValue\":\"965189\",\"primaryLabelValue\":\"965189\"}},{\"attributeHeader\":{\"labelValue\":\"965190\",\"primaryLabelValue\":\"965190\"}},{\"attributeHeader\":{\"labelValue\":\"965191\",\"primaryLabelValue\":\"965191\"}},{\"attributeHeader\":{\"labelValue\":\"965192\",\"primaryLabelValue\":\"965192\"}},{\"attributeHeader\":{\"labelValue\":\"965194\",\"primaryLabelValue\":\"965194\"}},{\"attributeHeader\":{\"labelValue\":\"965196\",\"primaryLabelValue\":\"965196\"}},{\"attributeHeader\":{\"labelValue\":\"965197\",\"primaryLabelValue\":\"965197\"}},{\"attributeHeader\":{\"labelValue\":\"965199\",\"primaryLabelValue\":\"965199\"}},{\"attributeHeader\":{\"labelValue\":\"965200\",\"primaryLabelValue\":\"965200\"}},{\"attributeHeader\":{\"labelValue\":\"965201\",\"primaryLabelValue\":\"965201\"}},{\"attributeHeader\":{\"labelValue\":\"965202\",\"primaryLabelValue\":\"965202\"}},{\"attributeHeader\":{\"labelValue\":\"965203\",\"primaryLabelValue\":\"965203\"}},{\"attributeHeader\":{\"labelValue\":\"965205\",\"primaryLabelValue\":\"965205\"}},{\"attributeHeader\":{\"labelValue\":\"965206\",\"primaryLabelValue\":\"965206\"}},{\"attributeHeader\":{\"labelValue\":\"965207\",\"primaryLabelValue\":\"965207\"}},{\"attributeHeader\":{\"labelValue\":\"965208\",\"primaryLabelValue\":\"965208\"}},{\"attributeHeader\":{\"labelValue\":\"965209\",\"primaryLabelValue\":\"965209\"}},{\"attributeHeader\":{\"labelValue\":\"965210\",\"primaryLabelValue\":\"965210\"}},{\"attributeHeader\":{\"labelValue\":\"965212\",\"primaryLabelValue\":\"965212\"}},{\"attributeHeader\":{\"labelValue\":\"965213\",\"primaryLabelValue\":\"965213\"}},{\"attributeHeader\":{\"labelValue\":\"965215\",\"primaryLabelValue\":\"965215\"}},{\"attributeHeader\":{\"labelValue\":\"965217\",\"primaryLabelValue\":\"965217\"}},{\"attributeHeader\":{\"labelValue\":\"965219\",\"primaryLabelValue\":\"965219\"}},{\"attributeHeader\":{\"labelValue\":\"965220\",\"primaryLabelValue\":\"965220\"}},{\"attributeHeader\":{\"labelValue\":\"965221\",\"primaryLabelValue\":\"965221\"}},{\"attributeHeader\":{\"labelValue\":\"965222\",\"primaryLabelValue\":\"965222\"}},{\"attributeHeader\":{\"labelValue\":\"965223\",\"primaryLabelValue\":\"965223\"}},{\"attributeHeader\":{\"labelValue\":\"965224\",\"primaryLabelValue\":\"965224\"}},{\"attributeHeader\":{\"labelValue\":\"965226\",\"primaryLabelValue\":\"965226\"}},{\"attributeHeader\":{\"labelValue\":\"965228\",\"primaryLabelValue\":\"965228\"}},{\"attributeHeader\":{\"labelValue\":\"965229\",\"primaryLabelValue\":\"965229\"}},{\"attributeHeader\":{\"labelValue\":\"965230\",\"primaryLabelValue\":\"965230\"}},{\"attributeHeader\":{\"labelValue\":\"965232\",\"primaryLabelValue\":\"965232\"}},{\"attributeHeader\":{\"labelValue\":\"965233\",\"primaryLabelValue\":\"965233\"}},{\"attributeHeader\":{\"labelValue\":\"965234\",\"primaryLabelValue\":\"965234\"}},{\"attributeHeader\":{\"labelValue\":\"965235\",\"primaryLabelValue\":\"965235\"}},{\"attributeHeader\":{\"labelValue\":\"965236\",\"primaryLabelValue\":\"965236\"}},{\"attributeHeader\":{\"labelValue\":\"965237\",\"primaryLabelValue\":\"965237\"}},{\"attributeHeader\":{\"labelValue\":\"965238\",\"primaryLabelValue\":\"965238\"}},{\"attributeHeader\":{\"labelValue\":\"965239\",\"primaryLabelValue\":\"965239\"}},{\"attributeHeader\":{\"labelValue\":\"965240\",\"primaryLabelValue\":\"965240\"}},{\"attributeHeader\":{\"labelValue\":\"965241\",\"primaryLabelValue\":\"965241\"}},{\"attributeHeader\":{\"labelValue\":\"965242\",\"primaryLabelValue\":\"965242\"}},{\"attributeHeader\":{\"labelValue\":\"965243\",\"primaryLabelValue\":\"965243\"}},{\"attributeHeader\":{\"labelValue\":\"965244\",\"primaryLabelValue\":\"965244\"}},{\"attributeHeader\":{\"labelValue\":\"965245\",\"primaryLabelValue\":\"965245\"}},{\"attributeHeader\":{\"labelValue\":\"965246\",\"primaryLabelValue\":\"965246\"}},{\"attributeHeader\":{\"labelValue\":\"965248\",\"primaryLabelValue\":\"965248\"}},{\"attributeHeader\":{\"labelValue\":\"965249\",\"primaryLabelValue\":\"965249\"}},{\"attributeHeader\":{\"labelValue\":\"965250\",\"primaryLabelValue\":\"965250\"}},{\"attributeHeader\":{\"labelValue\":\"965252\",\"primaryLabelValue\":\"965252\"}},{\"attributeHeader\":{\"labelValue\":\"965253\",\"primaryLabelValue\":\"965253\"}},{\"attributeHeader\":{\"labelValue\":\"965254\",\"primaryLabelValue\":\"965254\"}},{\"attributeHeader\":{\"labelValue\":\"965256\",\"primaryLabelValue\":\"965256\"}},{\"attributeHeader\":{\"labelValue\":\"965259\",\"primaryLabelValue\":\"965259\"}},{\"attributeHeader\":{\"labelValue\":\"965260\",\"primaryLabelValue\":\"965260\"}},{\"attributeHeader\":{\"labelValue\":\"965261\",\"primaryLabelValue\":\"965261\"}},{\"attributeHeader\":{\"labelValue\":\"965262\",\"primaryLabelValue\":\"965262\"}},{\"attributeHeader\":{\"labelValue\":\"965263\",\"primaryLabelValue\":\"965263\"}},{\"attributeHeader\":{\"labelValue\":\"965264\",\"primaryLabelValue\":\"965264\"}},{\"attributeHeader\":{\"labelValue\":\"965265\",\"primaryLabelValue\":\"965265\"}},{\"attributeHeader\":{\"labelValue\":\"965266\",\"primaryLabelValue\":\"965266\"}},{\"attributeHeader\":{\"labelValue\":\"965267\",\"primaryLabelValue\":\"965267\"}},{\"attributeHeader\":{\"labelValue\":\"965268\",\"primaryLabelValue\":\"965268\"}},{\"attributeHeader\":{\"labelValue\":\"965269\",\"primaryLabelValue\":\"965269\"}},{\"attributeHeader\":{\"labelValue\":\"965270\",\"primaryLabelValue\":\"965270\"}},{\"attributeHeader\":{\"labelValue\":\"965271\",\"primaryLabelValue\":\"965271\"}},{\"attributeHeader\":{\"labelValue\":\"965272\",\"primaryLabelValue\":\"965272\"}},{\"attributeHeader\":{\"labelValue\":\"965273\",\"primaryLabelValue\":\"965273\"}},{\"attributeHeader\":{\"labelValue\":\"965274\",\"primaryLabelValue\":\"965274\"}},{\"attributeHeader\":{\"labelValue\":\"965275\",\"primaryLabelValue\":\"965275\"}},{\"attributeHeader\":{\"labelValue\":\"965276\",\"primaryLabelValue\":\"965276\"}},{\"attributeHeader\":{\"labelValue\":\"965278\",\"primaryLabelValue\":\"965278\"}},{\"attributeHeader\":{\"labelValue\":\"965279\",\"primaryLabelValue\":\"965279\"}},{\"attributeHeader\":{\"labelValue\":\"965280\",\"primaryLabelValue\":\"965280\"}},{\"attributeHeader\":{\"labelValue\":\"965282\",\"primaryLabelValue\":\"965282\"}},{\"attributeHeader\":{\"labelValue\":\"965283\",\"primaryLabelValue\":\"965283\"}},{\"attributeHeader\":{\"labelValue\":\"965284\",\"primaryLabelValue\":\"965284\"}},{\"attributeHeader\":{\"labelValue\":\"965285\",\"primaryLabelValue\":\"965285\"}},{\"attributeHeader\":{\"labelValue\":\"965288\",\"primaryLabelValue\":\"965288\"}},{\"attributeHeader\":{\"labelValue\":\"965290\",\"primaryLabelValue\":\"965290\"}},{\"attributeHeader\":{\"labelValue\":\"965291\",\"primaryLabelValue\":\"965291\"}},{\"attributeHeader\":{\"labelValue\":\"965292\",\"primaryLabelValue\":\"965292\"}},{\"attributeHeader\":{\"labelValue\":\"965293\",\"primaryLabelValue\":\"965293\"}},{\"attributeHeader\":{\"labelValue\":\"965294\",\"primaryLabelValue\":\"965294\"}},{\"attributeHeader\":{\"labelValue\":\"965295\",\"primaryLabelValue\":\"965295\"}},{\"attributeHeader\":{\"labelValue\":\"965296\",\"primaryLabelValue\":\"965296\"}},{\"attributeHeader\":{\"labelValue\":\"965297\",\"primaryLabelValue\":\"965297\"}},{\"attributeHeader\":{\"labelValue\":\"965298\",\"primaryLabelValue\":\"965298\"}},{\"attributeHeader\":{\"labelValue\":\"965299\",\"primaryLabelValue\":\"965299\"}},{\"attributeHeader\":{\"labelValue\":\"965300\",\"primaryLabelValue\":\"965300\"}},{\"attributeHeader\":{\"labelValue\":\"965301\",\"primaryLabelValue\":\"965301\"}},{\"attributeHeader\":{\"labelValue\":\"965302\",\"primaryLabelValue\":\"965302\"}},{\"attributeHeader\":{\"labelValue\":\"965304\",\"primaryLabelValue\":\"965304\"}},{\"attributeHeader\":{\"labelValue\":\"965306\",\"primaryLabelValue\":\"965306\"}},{\"attributeHeader\":{\"labelValue\":\"965307\",\"primaryLabelValue\":\"965307\"}},{\"attributeHeader\":{\"labelValue\":\"965308\",\"primaryLabelValue\":\"965308\"}},{\"attributeHeader\":{\"labelValue\":\"965310\",\"primaryLabelValue\":\"965310\"}},{\"attributeHeader\":{\"labelValue\":\"965311\",\"primaryLabelValue\":\"965311\"}},{\"attributeHeader\":{\"labelValue\":\"965313\",\"primaryLabelValue\":\"965313\"}},{\"attributeHeader\":{\"labelValue\":\"965314\",\"primaryLabelValue\":\"965314\"}},{\"attributeHeader\":{\"labelValue\":\"965315\",\"primaryLabelValue\":\"965315\"}},{\"attributeHeader\":{\"labelValue\":\"965316\",\"primaryLabelValue\":\"965316\"}},{\"attributeHeader\":{\"labelValue\":\"965317\",\"primaryLabelValue\":\"965317\"}},{\"attributeHeader\":{\"labelValue\":\"965318\",\"primaryLabelValue\":\"965318\"}},{\"attributeHeader\":{\"labelValue\":\"965319\",\"primaryLabelValue\":\"965319\"}},{\"attributeHeader\":{\"labelValue\":\"965320\",\"primaryLabelValue\":\"965320\"}},{\"attributeHeader\":{\"labelValue\":\"965321\",\"primaryLabelValue\":\"965321\"}},{\"attributeHeader\":{\"labelValue\":\"965322\",\"primaryLabelValue\":\"965322\"}},{\"attributeHeader\":{\"labelValue\":\"965323\",\"primaryLabelValue\":\"965323\"}},{\"attributeHeader\":{\"labelValue\":\"965325\",\"primaryLabelValue\":\"965325\"}},{\"attributeHeader\":{\"labelValue\":\"965326\",\"primaryLabelValue\":\"965326\"}},{\"attributeHeader\":{\"labelValue\":\"965328\",\"primaryLabelValue\":\"965328\"}},{\"attributeHeader\":{\"labelValue\":\"965329\",\"primaryLabelValue\":\"965329\"}},{\"attributeHeader\":{\"labelValue\":\"965331\",\"primaryLabelValue\":\"965331\"}},{\"attributeHeader\":{\"labelValue\":\"965332\",\"primaryLabelValue\":\"965332\"}},{\"attributeHeader\":{\"labelValue\":\"965333\",\"primaryLabelValue\":\"965333\"}},{\"attributeHeader\":{\"labelValue\":\"965335\",\"primaryLabelValue\":\"965335\"}},{\"attributeHeader\":{\"labelValue\":\"965336\",\"primaryLabelValue\":\"965336\"}},{\"attributeHeader\":{\"labelValue\":\"965337\",\"primaryLabelValue\":\"965337\"}},{\"attributeHeader\":{\"labelValue\":\"965338\",\"primaryLabelValue\":\"965338\"}},{\"attributeHeader\":{\"labelValue\":\"965339\",\"primaryLabelValue\":\"965339\"}},{\"attributeHeader\":{\"labelValue\":\"965340\",\"primaryLabelValue\":\"965340\"}},{\"attributeHeader\":{\"labelValue\":\"965341\",\"primaryLabelValue\":\"965341\"}},{\"attributeHeader\":{\"labelValue\":\"965342\",\"primaryLabelValue\":\"965342\"}},{\"attributeHeader\":{\"labelValue\":\"965343\",\"primaryLabelValue\":\"965343\"}},{\"attributeHeader\":{\"labelValue\":\"965345\",\"primaryLabelValue\":\"965345\"}},{\"attributeHeader\":{\"labelValue\":\"965346\",\"primaryLabelValue\":\"965346\"}},{\"attributeHeader\":{\"labelValue\":\"965347\",\"primaryLabelValue\":\"965347\"}},{\"attributeHeader\":{\"labelValue\":\"965349\",\"primaryLabelValue\":\"965349\"}},{\"attributeHeader\":{\"labelValue\":\"965350\",\"primaryLabelValue\":\"965350\"}},{\"attributeHeader\":{\"labelValue\":\"965351\",\"primaryLabelValue\":\"965351\"}},{\"attributeHeader\":{\"labelValue\":\"965353\",\"primaryLabelValue\":\"965353\"}},{\"attributeHeader\":{\"labelValue\":\"965354\",\"primaryLabelValue\":\"965354\"}},{\"attributeHeader\":{\"labelValue\":\"965355\",\"primaryLabelValue\":\"965355\"}},{\"attributeHeader\":{\"labelValue\":\"965357\",\"primaryLabelValue\":\"965357\"}},{\"attributeHeader\":{\"labelValue\":\"965359\",\"primaryLabelValue\":\"965359\"}},{\"attributeHeader\":{\"labelValue\":\"965360\",\"primaryLabelValue\":\"965360\"}},{\"attributeHeader\":{\"labelValue\":\"965361\",\"primaryLabelValue\":\"965361\"}},{\"attributeHeader\":{\"labelValue\":\"965362\",\"primaryLabelValue\":\"965362\"}},{\"attributeHeader\":{\"labelValue\":\"965363\",\"primaryLabelValue\":\"965363\"}},{\"attributeHeader\":{\"labelValue\":\"965365\",\"primaryLabelValue\":\"965365\"}},{\"attributeHeader\":{\"labelValue\":\"965367\",\"primaryLabelValue\":\"965367\"}},{\"attributeHeader\":{\"labelValue\":\"965368\",\"primaryLabelValue\":\"965368\"}},{\"attributeHeader\":{\"labelValue\":\"965370\",\"primaryLabelValue\":\"965370\"}},{\"attributeHeader\":{\"labelValue\":\"965371\",\"primaryLabelValue\":\"965371\"}},{\"attributeHeader\":{\"labelValue\":\"965373\",\"primaryLabelValue\":\"965373\"}},{\"attributeHeader\":{\"labelValue\":\"965375\",\"primaryLabelValue\":\"965375\"}},{\"attributeHeader\":{\"labelValue\":\"965376\",\"primaryLabelValue\":\"965376\"}},{\"attributeHeader\":{\"labelValue\":\"965377\",\"primaryLabelValue\":\"965377\"}},{\"attributeHeader\":{\"labelValue\":\"965378\",\"primaryLabelValue\":\"965378\"}},{\"attributeHeader\":{\"labelValue\":\"965379\",\"primaryLabelValue\":\"965379\"}},{\"attributeHeader\":{\"labelValue\":\"965381\",\"primaryLabelValue\":\"965381\"}},{\"attributeHeader\":{\"labelValue\":\"965382\",\"primaryLabelValue\":\"965382\"}},{\"attributeHeader\":{\"labelValue\":\"965384\",\"primaryLabelValue\":\"965384\"}},{\"attributeHeader\":{\"labelValue\":\"965385\",\"primaryLabelValue\":\"965385\"}},{\"attributeHeader\":{\"labelValue\":\"965386\",\"primaryLabelValue\":\"965386\"}},{\"attributeHeader\":{\"labelValue\":\"965387\",\"primaryLabelValue\":\"965387\"}},{\"attributeHeader\":{\"labelValue\":\"965389\",\"primaryLabelValue\":\"965389\"}},{\"attributeHeader\":{\"labelValue\":\"965390\",\"primaryLabelValue\":\"965390\"}},{\"attributeHeader\":{\"labelValue\":\"965392\",\"primaryLabelValue\":\"965392\"}},{\"attributeHeader\":{\"labelValue\":\"965393\",\"primaryLabelValue\":\"965393\"}},{\"attributeHeader\":{\"labelValue\":\"965394\",\"primaryLabelValue\":\"965394\"}},{\"attributeHeader\":{\"labelValue\":\"965396\",\"primaryLabelValue\":\"965396\"}},{\"attributeHeader\":{\"labelValue\":\"965397\",\"primaryLabelValue\":\"965397\"}},{\"attributeHeader\":{\"labelValue\":\"965399\",\"primaryLabelValue\":\"965399\"}},{\"attributeHeader\":{\"labelValue\":\"965400\",\"primaryLabelValue\":\"965400\"}},{\"attributeHeader\":{\"labelValue\":\"965401\",\"primaryLabelValue\":\"965401\"}},{\"attributeHeader\":{\"labelValue\":\"965402\",\"primaryLabelValue\":\"965402\"}},{\"attributeHeader\":{\"labelValue\":\"965403\",\"primaryLabelValue\":\"965403\"}},{\"attributeHeader\":{\"labelValue\":\"965404\",\"primaryLabelValue\":\"965404\"}},{\"attributeHeader\":{\"labelValue\":\"965405\",\"primaryLabelValue\":\"965405\"}},{\"attributeHeader\":{\"labelValue\":\"965406\",\"primaryLabelValue\":\"965406\"}},{\"attributeHeader\":{\"labelValue\":\"965407\",\"primaryLabelValue\":\"965407\"}},{\"attributeHeader\":{\"labelValue\":\"965408\",\"primaryLabelValue\":\"965408\"}},{\"attributeHeader\":{\"labelValue\":\"965409\",\"primaryLabelValue\":\"965409\"}},{\"attributeHeader\":{\"labelValue\":\"965410\",\"primaryLabelValue\":\"965410\"}},{\"attributeHeader\":{\"labelValue\":\"965411\",\"primaryLabelValue\":\"965411\"}},{\"attributeHeader\":{\"labelValue\":\"965413\",\"primaryLabelValue\":\"965413\"}},{\"attributeHeader\":{\"labelValue\":\"965415\",\"primaryLabelValue\":\"965415\"}},{\"attributeHeader\":{\"labelValue\":\"965416\",\"primaryLabelValue\":\"965416\"}},{\"attributeHeader\":{\"labelValue\":\"965417\",\"primaryLabelValue\":\"965417\"}},{\"attributeHeader\":{\"labelValue\":\"965418\",\"primaryLabelValue\":\"965418\"}},{\"attributeHeader\":{\"labelValue\":\"965419\",\"primaryLabelValue\":\"965419\"}},{\"attributeHeader\":{\"labelValue\":\"965421\",\"primaryLabelValue\":\"965421\"}},{\"attributeHeader\":{\"labelValue\":\"965423\",\"primaryLabelValue\":\"965423\"}},{\"attributeHeader\":{\"labelValue\":\"965425\",\"primaryLabelValue\":\"965425\"}},{\"attributeHeader\":{\"labelValue\":\"965427\",\"primaryLabelValue\":\"965427\"}},{\"attributeHeader\":{\"labelValue\":\"965428\",\"primaryLabelValue\":\"965428\"}},{\"attributeHeader\":{\"labelValue\":\"965429\",\"primaryLabelValue\":\"965429\"}},{\"attributeHeader\":{\"labelValue\":\"965430\",\"primaryLabelValue\":\"965430\"}},{\"attributeHeader\":{\"labelValue\":\"965432\",\"primaryLabelValue\":\"965432\"}},{\"attributeHeader\":{\"labelValue\":\"965433\",\"primaryLabelValue\":\"965433\"}},{\"attributeHeader\":{\"labelValue\":\"965434\",\"primaryLabelValue\":\"965434\"}},{\"attributeHeader\":{\"labelValue\":\"965435\",\"primaryLabelValue\":\"965435\"}},{\"attributeHeader\":{\"labelValue\":\"965436\",\"primaryLabelValue\":\"965436\"}},{\"attributeHeader\":{\"labelValue\":\"965438\",\"primaryLabelValue\":\"965438\"}},{\"attributeHeader\":{\"labelValue\":\"965440\",\"primaryLabelValue\":\"965440\"}},{\"attributeHeader\":{\"labelValue\":\"965441\",\"primaryLabelValue\":\"965441\"}},{\"attributeHeader\":{\"labelValue\":\"965442\",\"primaryLabelValue\":\"965442\"}},{\"attributeHeader\":{\"labelValue\":\"965443\",\"primaryLabelValue\":\"965443\"}},{\"attributeHeader\":{\"labelValue\":\"965445\",\"primaryLabelValue\":\"965445\"}},{\"attributeHeader\":{\"labelValue\":\"965447\",\"primaryLabelValue\":\"965447\"}},{\"attributeHeader\":{\"labelValue\":\"965449\",\"primaryLabelValue\":\"965449\"}},{\"attributeHeader\":{\"labelValue\":\"965450\",\"primaryLabelValue\":\"965450\"}},{\"attributeHeader\":{\"labelValue\":\"965451\",\"primaryLabelValue\":\"965451\"}},{\"attributeHeader\":{\"labelValue\":\"965453\",\"primaryLabelValue\":\"965453\"}},{\"attributeHeader\":{\"labelValue\":\"965454\",\"primaryLabelValue\":\"965454\"}},{\"attributeHeader\":{\"labelValue\":\"965456\",\"primaryLabelValue\":\"965456\"}},{\"attributeHeader\":{\"labelValue\":\"965457\",\"primaryLabelValue\":\"965457\"}},{\"attributeHeader\":{\"labelValue\":\"965458\",\"primaryLabelValue\":\"965458\"}},{\"attributeHeader\":{\"labelValue\":\"965459\",\"primaryLabelValue\":\"965459\"}},{\"attributeHeader\":{\"labelValue\":\"965461\",\"primaryLabelValue\":\"965461\"}},{\"attributeHeader\":{\"labelValue\":\"965462\",\"primaryLabelValue\":\"965462\"}},{\"attributeHeader\":{\"labelValue\":\"965466\",\"primaryLabelValue\":\"965466\"}},{\"attributeHeader\":{\"labelValue\":\"965467\",\"primaryLabelValue\":\"965467\"}},{\"attributeHeader\":{\"labelValue\":\"965469\",\"primaryLabelValue\":\"965469\"}},{\"attributeHeader\":{\"labelValue\":\"965470\",\"primaryLabelValue\":\"965470\"}},{\"attributeHeader\":{\"labelValue\":\"965471\",\"primaryLabelValue\":\"965471\"}},{\"attributeHeader\":{\"labelValue\":\"965473\",\"primaryLabelValue\":\"965473\"}},{\"attributeHeader\":{\"labelValue\":\"965474\",\"primaryLabelValue\":\"965474\"}},{\"attributeHeader\":{\"labelValue\":\"965476\",\"primaryLabelValue\":\"965476\"}},{\"attributeHeader\":{\"labelValue\":\"965477\",\"primaryLabelValue\":\"965477\"}},{\"attributeHeader\":{\"labelValue\":\"965478\",\"primaryLabelValue\":\"965478\"}},{\"attributeHeader\":{\"labelValue\":\"965479\",\"primaryLabelValue\":\"965479\"}},{\"attributeHeader\":{\"labelValue\":\"965481\",\"primaryLabelValue\":\"965481\"}},{\"attributeHeader\":{\"labelValue\":\"965483\",\"primaryLabelValue\":\"965483\"}},{\"attributeHeader\":{\"labelValue\":\"965484\",\"primaryLabelValue\":\"965484\"}},{\"attributeHeader\":{\"labelValue\":\"965485\",\"primaryLabelValue\":\"965485\"}},{\"attributeHeader\":{\"labelValue\":\"965487\",\"primaryLabelValue\":\"965487\"}},{\"attributeHeader\":{\"labelValue\":\"965489\",\"primaryLabelValue\":\"965489\"}},{\"attributeHeader\":{\"labelValue\":\"965490\",\"primaryLabelValue\":\"965490\"}},{\"attributeHeader\":{\"labelValue\":\"965492\",\"primaryLabelValue\":\"965492\"}},{\"attributeHeader\":{\"labelValue\":\"965493\",\"primaryLabelValue\":\"965493\"}},{\"attributeHeader\":{\"labelValue\":\"965496\",\"primaryLabelValue\":\"965496\"}},{\"attributeHeader\":{\"labelValue\":\"965498\",\"primaryLabelValue\":\"965498\"}},{\"attributeHeader\":{\"labelValue\":\"965499\",\"primaryLabelValue\":\"965499\"}},{\"attributeHeader\":{\"labelValue\":\"965500\",\"primaryLabelValue\":\"965500\"}},{\"attributeHeader\":{\"labelValue\":\"965501\",\"primaryLabelValue\":\"965501\"}},{\"attributeHeader\":{\"labelValue\":\"965502\",\"primaryLabelValue\":\"965502\"}},{\"attributeHeader\":{\"labelValue\":\"965504\",\"primaryLabelValue\":\"965504\"}},{\"attributeHeader\":{\"labelValue\":\"965505\",\"primaryLabelValue\":\"965505\"}},{\"attributeHeader\":{\"labelValue\":\"965506\",\"primaryLabelValue\":\"965506\"}},{\"attributeHeader\":{\"labelValue\":\"965508\",\"primaryLabelValue\":\"965508\"}},{\"attributeHeader\":{\"labelValue\":\"965510\",\"primaryLabelValue\":\"965510\"}},{\"attributeHeader\":{\"labelValue\":\"965511\",\"primaryLabelValue\":\"965511\"}},{\"attributeHeader\":{\"labelValue\":\"965512\",\"primaryLabelValue\":\"965512\"}},{\"attributeHeader\":{\"labelValue\":\"965513\",\"primaryLabelValue\":\"965513\"}},{\"attributeHeader\":{\"labelValue\":\"965515\",\"primaryLabelValue\":\"965515\"}},{\"attributeHeader\":{\"labelValue\":\"965516\",\"primaryLabelValue\":\"965516\"}},{\"attributeHeader\":{\"labelValue\":\"965517\",\"primaryLabelValue\":\"965517\"}},{\"attributeHeader\":{\"labelValue\":\"965518\",\"primaryLabelValue\":\"965518\"}},{\"attributeHeader\":{\"labelValue\":\"965520\",\"primaryLabelValue\":\"965520\"}},{\"attributeHeader\":{\"labelValue\":\"965522\",\"primaryLabelValue\":\"965522\"}},{\"attributeHeader\":{\"labelValue\":\"965524\",\"primaryLabelValue\":\"965524\"}},{\"attributeHeader\":{\"labelValue\":\"965525\",\"primaryLabelValue\":\"965525\"}},{\"attributeHeader\":{\"labelValue\":\"965526\",\"primaryLabelValue\":\"965526\"}},{\"attributeHeader\":{\"labelValue\":\"965527\",\"primaryLabelValue\":\"965527\"}},{\"attributeHeader\":{\"labelValue\":\"965528\",\"primaryLabelValue\":\"965528\"}},{\"attributeHeader\":{\"labelValue\":\"965531\",\"primaryLabelValue\":\"965531\"}},{\"attributeHeader\":{\"labelValue\":\"965533\",\"primaryLabelValue\":\"965533\"}},{\"attributeHeader\":{\"labelValue\":\"965534\",\"primaryLabelValue\":\"965534\"}},{\"attributeHeader\":{\"labelValue\":\"965536\",\"primaryLabelValue\":\"965536\"}},{\"attributeHeader\":{\"labelValue\":\"965537\",\"primaryLabelValue\":\"965537\"}},{\"attributeHeader\":{\"labelValue\":\"965538\",\"primaryLabelValue\":\"965538\"}},{\"attributeHeader\":{\"labelValue\":\"965539\",\"primaryLabelValue\":\"965539\"}},{\"attributeHeader\":{\"labelValue\":\"965540\",\"primaryLabelValue\":\"965540\"}},{\"attributeHeader\":{\"labelValue\":\"965541\",\"primaryLabelValue\":\"965541\"}},{\"attributeHeader\":{\"labelValue\":\"965542\",\"primaryLabelValue\":\"965542\"}},{\"attributeHeader\":{\"labelValue\":\"965545\",\"primaryLabelValue\":\"965545\"}},{\"attributeHeader\":{\"labelValue\":\"965546\",\"primaryLabelValue\":\"965546\"}},{\"attributeHeader\":{\"labelValue\":\"965547\",\"primaryLabelValue\":\"965547\"}},{\"attributeHeader\":{\"labelValue\":\"965548\",\"primaryLabelValue\":\"965548\"}},{\"attributeHeader\":{\"labelValue\":\"965549\",\"primaryLabelValue\":\"965549\"}},{\"attributeHeader\":{\"labelValue\":\"965550\",\"primaryLabelValue\":\"965550\"}},{\"attributeHeader\":{\"labelValue\":\"965551\",\"primaryLabelValue\":\"965551\"}},{\"attributeHeader\":{\"labelValue\":\"965552\",\"primaryLabelValue\":\"965552\"}},{\"attributeHeader\":{\"labelValue\":\"965553\",\"primaryLabelValue\":\"965553\"}},{\"attributeHeader\":{\"labelValue\":\"965555\",\"primaryLabelValue\":\"965555\"}},{\"attributeHeader\":{\"labelValue\":\"965557\",\"primaryLabelValue\":\"965557\"}},{\"attributeHeader\":{\"labelValue\":\"965559\",\"primaryLabelValue\":\"965559\"}},{\"attributeHeader\":{\"labelValue\":\"965560\",\"primaryLabelValue\":\"965560\"}},{\"attributeHeader\":{\"labelValue\":\"965562\",\"primaryLabelValue\":\"965562\"}},{\"attributeHeader\":{\"labelValue\":\"965563\",\"primaryLabelValue\":\"965563\"}},{\"attributeHeader\":{\"labelValue\":\"965564\",\"primaryLabelValue\":\"965564\"}},{\"attributeHeader\":{\"labelValue\":\"965565\",\"primaryLabelValue\":\"965565\"}},{\"attributeHeader\":{\"labelValue\":\"965566\",\"primaryLabelValue\":\"965566\"}},{\"attributeHeader\":{\"labelValue\":\"965567\",\"primaryLabelValue\":\"965567\"}},{\"attributeHeader\":{\"labelValue\":\"965569\",\"primaryLabelValue\":\"965569\"}},{\"attributeHeader\":{\"labelValue\":\"965570\",\"primaryLabelValue\":\"965570\"}},{\"attributeHeader\":{\"labelValue\":\"965571\",\"primaryLabelValue\":\"965571\"}},{\"attributeHeader\":{\"labelValue\":\"965572\",\"primaryLabelValue\":\"965572\"}},{\"attributeHeader\":{\"labelValue\":\"965573\",\"primaryLabelValue\":\"965573\"}},{\"attributeHeader\":{\"labelValue\":\"965574\",\"primaryLabelValue\":\"965574\"}},{\"attributeHeader\":{\"labelValue\":\"965576\",\"primaryLabelValue\":\"965576\"}},{\"attributeHeader\":{\"labelValue\":\"965578\",\"primaryLabelValue\":\"965578\"}},{\"attributeHeader\":{\"labelValue\":\"965579\",\"primaryLabelValue\":\"965579\"}},{\"attributeHeader\":{\"labelValue\":\"965580\",\"primaryLabelValue\":\"965580\"}},{\"attributeHeader\":{\"labelValue\":\"965582\",\"primaryLabelValue\":\"965582\"}},{\"attributeHeader\":{\"labelValue\":\"965583\",\"primaryLabelValue\":\"965583\"}},{\"attributeHeader\":{\"labelValue\":\"965584\",\"primaryLabelValue\":\"965584\"}},{\"attributeHeader\":{\"labelValue\":\"965585\",\"primaryLabelValue\":\"965585\"}},{\"attributeHeader\":{\"labelValue\":\"965586\",\"primaryLabelValue\":\"965586\"}},{\"attributeHeader\":{\"labelValue\":\"965587\",\"primaryLabelValue\":\"965587\"}},{\"attributeHeader\":{\"labelValue\":\"965588\",\"primaryLabelValue\":\"965588\"}},{\"attributeHeader\":{\"labelValue\":\"965589\",\"primaryLabelValue\":\"965589\"}},{\"attributeHeader\":{\"labelValue\":\"965591\",\"primaryLabelValue\":\"965591\"}},{\"attributeHeader\":{\"labelValue\":\"965592\",\"primaryLabelValue\":\"965592\"}},{\"attributeHeader\":{\"labelValue\":\"965593\",\"primaryLabelValue\":\"965593\"}},{\"attributeHeader\":{\"labelValue\":\"965595\",\"primaryLabelValue\":\"965595\"}},{\"attributeHeader\":{\"labelValue\":\"965596\",\"primaryLabelValue\":\"965596\"}},{\"attributeHeader\":{\"labelValue\":\"965597\",\"primaryLabelValue\":\"965597\"}},{\"attributeHeader\":{\"labelValue\":\"965600\",\"primaryLabelValue\":\"965600\"}},{\"attributeHeader\":{\"labelValue\":\"965602\",\"primaryLabelValue\":\"965602\"}},{\"attributeHeader\":{\"labelValue\":\"965605\",\"primaryLabelValue\":\"965605\"}},{\"attributeHeader\":{\"labelValue\":\"965606\",\"primaryLabelValue\":\"965606\"}},{\"attributeHeader\":{\"labelValue\":\"965607\",\"primaryLabelValue\":\"965607\"}},{\"attributeHeader\":{\"labelValue\":\"965609\",\"primaryLabelValue\":\"965609\"}},{\"attributeHeader\":{\"labelValue\":\"965611\",\"primaryLabelValue\":\"965611\"}},{\"attributeHeader\":{\"labelValue\":\"965612\",\"primaryLabelValue\":\"965612\"}},{\"attributeHeader\":{\"labelValue\":\"965613\",\"primaryLabelValue\":\"965613\"}},{\"attributeHeader\":{\"labelValue\":\"965614\",\"primaryLabelValue\":\"965614\"}},{\"attributeHeader\":{\"labelValue\":\"965615\",\"primaryLabelValue\":\"965615\"}},{\"attributeHeader\":{\"labelValue\":\"965616\",\"primaryLabelValue\":\"965616\"}},{\"attributeHeader\":{\"labelValue\":\"965617\",\"primaryLabelValue\":\"965617\"}},{\"attributeHeader\":{\"labelValue\":\"965619\",\"primaryLabelValue\":\"965619\"}},{\"attributeHeader\":{\"labelValue\":\"965620\",\"primaryLabelValue\":\"965620\"}},{\"attributeHeader\":{\"labelValue\":\"965621\",\"primaryLabelValue\":\"965621\"}},{\"attributeHeader\":{\"labelValue\":\"965622\",\"primaryLabelValue\":\"965622\"}},{\"attributeHeader\":{\"labelValue\":\"965624\",\"primaryLabelValue\":\"965624\"}},{\"attributeHeader\":{\"labelValue\":\"965625\",\"primaryLabelValue\":\"965625\"}},{\"attributeHeader\":{\"labelValue\":\"965626\",\"primaryLabelValue\":\"965626\"}},{\"attributeHeader\":{\"labelValue\":\"965627\",\"primaryLabelValue\":\"965627\"}},{\"attributeHeader\":{\"labelValue\":\"965628\",\"primaryLabelValue\":\"965628\"}},{\"attributeHeader\":{\"labelValue\":\"965630\",\"primaryLabelValue\":\"965630\"}},{\"attributeHeader\":{\"labelValue\":\"965632\",\"primaryLabelValue\":\"965632\"}},{\"attributeHeader\":{\"labelValue\":\"965634\",\"primaryLabelValue\":\"965634\"}},{\"attributeHeader\":{\"labelValue\":\"965635\",\"primaryLabelValue\":\"965635\"}},{\"attributeHeader\":{\"labelValue\":\"965636\",\"primaryLabelValue\":\"965636\"}},{\"attributeHeader\":{\"labelValue\":\"965637\",\"primaryLabelValue\":\"965637\"}},{\"attributeHeader\":{\"labelValue\":\"965638\",\"primaryLabelValue\":\"965638\"}},{\"attributeHeader\":{\"labelValue\":\"965639\",\"primaryLabelValue\":\"965639\"}},{\"attributeHeader\":{\"labelValue\":\"965640\",\"primaryLabelValue\":\"965640\"}},{\"attributeHeader\":{\"labelValue\":\"965641\",\"primaryLabelValue\":\"965641\"}},{\"attributeHeader\":{\"labelValue\":\"965642\",\"primaryLabelValue\":\"965642\"}},{\"attributeHeader\":{\"labelValue\":\"965643\",\"primaryLabelValue\":\"965643\"}},{\"attributeHeader\":{\"labelValue\":\"965645\",\"primaryLabelValue\":\"965645\"}},{\"attributeHeader\":{\"labelValue\":\"965646\",\"primaryLabelValue\":\"965646\"}},{\"attributeHeader\":{\"labelValue\":\"965648\",\"primaryLabelValue\":\"965648\"}},{\"attributeHeader\":{\"labelValue\":\"965650\",\"primaryLabelValue\":\"965650\"}},{\"attributeHeader\":{\"labelValue\":\"965652\",\"primaryLabelValue\":\"965652\"}},{\"attributeHeader\":{\"labelValue\":\"965653\",\"primaryLabelValue\":\"965653\"}},{\"attributeHeader\":{\"labelValue\":\"965654\",\"primaryLabelValue\":\"965654\"}},{\"attributeHeader\":{\"labelValue\":\"965656\",\"primaryLabelValue\":\"965656\"}},{\"attributeHeader\":{\"labelValue\":\"965657\",\"primaryLabelValue\":\"965657\"}},{\"attributeHeader\":{\"labelValue\":\"965659\",\"primaryLabelValue\":\"965659\"}},{\"attributeHeader\":{\"labelValue\":\"965661\",\"primaryLabelValue\":\"965661\"}},{\"attributeHeader\":{\"labelValue\":\"965663\",\"primaryLabelValue\":\"965663\"}},{\"attributeHeader\":{\"labelValue\":\"965664\",\"primaryLabelValue\":\"965664\"}},{\"attributeHeader\":{\"labelValue\":\"965666\",\"primaryLabelValue\":\"965666\"}},{\"attributeHeader\":{\"labelValue\":\"965668\",\"primaryLabelValue\":\"965668\"}},{\"attributeHeader\":{\"labelValue\":\"965669\",\"primaryLabelValue\":\"965669\"}},{\"attributeHeader\":{\"labelValue\":\"965670\",\"primaryLabelValue\":\"965670\"}},{\"attributeHeader\":{\"labelValue\":\"965672\",\"primaryLabelValue\":\"965672\"}},{\"attributeHeader\":{\"labelValue\":\"965673\",\"primaryLabelValue\":\"965673\"}},{\"attributeHeader\":{\"labelValue\":\"965675\",\"primaryLabelValue\":\"965675\"}},{\"attributeHeader\":{\"labelValue\":\"965676\",\"primaryLabelValue\":\"965676\"}},{\"attributeHeader\":{\"labelValue\":\"965677\",\"primaryLabelValue\":\"965677\"}},{\"attributeHeader\":{\"labelValue\":\"965678\",\"primaryLabelValue\":\"965678\"}},{\"attributeHeader\":{\"labelValue\":\"965679\",\"primaryLabelValue\":\"965679\"}},{\"attributeHeader\":{\"labelValue\":\"965680\",\"primaryLabelValue\":\"965680\"}},{\"attributeHeader\":{\"labelValue\":\"965681\",\"primaryLabelValue\":\"965681\"}},{\"attributeHeader\":{\"labelValue\":\"965682\",\"primaryLabelValue\":\"965682\"}},{\"attributeHeader\":{\"labelValue\":\"965683\",\"primaryLabelValue\":\"965683\"}},{\"attributeHeader\":{\"labelValue\":\"965684\",\"primaryLabelValue\":\"965684\"}},{\"attributeHeader\":{\"labelValue\":\"965685\",\"primaryLabelValue\":\"965685\"}},{\"attributeHeader\":{\"labelValue\":\"965687\",\"primaryLabelValue\":\"965687\"}},{\"attributeHeader\":{\"labelValue\":\"965688\",\"primaryLabelValue\":\"965688\"}},{\"attributeHeader\":{\"labelValue\":\"965689\",\"primaryLabelValue\":\"965689\"}},{\"attributeHeader\":{\"labelValue\":\"965691\",\"primaryLabelValue\":\"965691\"}},{\"attributeHeader\":{\"labelValue\":\"965693\",\"primaryLabelValue\":\"965693\"}},{\"attributeHeader\":{\"labelValue\":\"965695\",\"primaryLabelValue\":\"965695\"}},{\"attributeHeader\":{\"labelValue\":\"965696\",\"primaryLabelValue\":\"965696\"}},{\"attributeHeader\":{\"labelValue\":\"965698\",\"primaryLabelValue\":\"965698\"}},{\"attributeHeader\":{\"labelValue\":\"965700\",\"primaryLabelValue\":\"965700\"}},{\"attributeHeader\":{\"labelValue\":\"965702\",\"primaryLabelValue\":\"965702\"}},{\"attributeHeader\":{\"labelValue\":\"965703\",\"primaryLabelValue\":\"965703\"}},{\"attributeHeader\":{\"labelValue\":\"965704\",\"primaryLabelValue\":\"965704\"}},{\"attributeHeader\":{\"labelValue\":\"965705\",\"primaryLabelValue\":\"965705\"}},{\"attributeHeader\":{\"labelValue\":\"965706\",\"primaryLabelValue\":\"965706\"}},{\"attributeHeader\":{\"labelValue\":\"965708\",\"primaryLabelValue\":\"965708\"}},{\"attributeHeader\":{\"labelValue\":\"965709\",\"primaryLabelValue\":\"965709\"}},{\"attributeHeader\":{\"labelValue\":\"965710\",\"primaryLabelValue\":\"965710\"}},{\"attributeHeader\":{\"labelValue\":\"965711\",\"primaryLabelValue\":\"965711\"}},{\"attributeHeader\":{\"labelValue\":\"965712\",\"primaryLabelValue\":\"965712\"}},{\"attributeHeader\":{\"labelValue\":\"965713\",\"primaryLabelValue\":\"965713\"}},{\"attributeHeader\":{\"labelValue\":\"965714\",\"primaryLabelValue\":\"965714\"}},{\"attributeHeader\":{\"labelValue\":\"965715\",\"primaryLabelValue\":\"965715\"}},{\"attributeHeader\":{\"labelValue\":\"965716\",\"primaryLabelValue\":\"965716\"}},{\"attributeHeader\":{\"labelValue\":\"965717\",\"primaryLabelValue\":\"965717\"}},{\"attributeHeader\":{\"labelValue\":\"965719\",\"primaryLabelValue\":\"965719\"}},{\"attributeHeader\":{\"labelValue\":\"965720\",\"primaryLabelValue\":\"965720\"}},{\"attributeHeader\":{\"labelValue\":\"965722\",\"primaryLabelValue\":\"965722\"}},{\"attributeHeader\":{\"labelValue\":\"965724\",\"primaryLabelValue\":\"965724\"}},{\"attributeHeader\":{\"labelValue\":\"965726\",\"primaryLabelValue\":\"965726\"}},{\"attributeHeader\":{\"labelValue\":\"965727\",\"primaryLabelValue\":\"965727\"}},{\"attributeHeader\":{\"labelValue\":\"965728\",\"primaryLabelValue\":\"965728\"}},{\"attributeHeader\":{\"labelValue\":\"965730\",\"primaryLabelValue\":\"965730\"}},{\"attributeHeader\":{\"labelValue\":\"965732\",\"primaryLabelValue\":\"965732\"}},{\"attributeHeader\":{\"labelValue\":\"965733\",\"primaryLabelValue\":\"965733\"}},{\"attributeHeader\":{\"labelValue\":\"965734\",\"primaryLabelValue\":\"965734\"}},{\"attributeHeader\":{\"labelValue\":\"965735\",\"primaryLabelValue\":\"965735\"}},{\"attributeHeader\":{\"labelValue\":\"965736\",\"primaryLabelValue\":\"965736\"}},{\"attributeHeader\":{\"labelValue\":\"965737\",\"primaryLabelValue\":\"965737\"}},{\"attributeHeader\":{\"labelValue\":\"965738\",\"primaryLabelValue\":\"965738\"}},{\"attributeHeader\":{\"labelValue\":\"965740\",\"primaryLabelValue\":\"965740\"}},{\"attributeHeader\":{\"labelValue\":\"965741\",\"primaryLabelValue\":\"965741\"}},{\"attributeHeader\":{\"labelValue\":\"965743\",\"primaryLabelValue\":\"965743\"}},{\"attributeHeader\":{\"labelValue\":\"965745\",\"primaryLabelValue\":\"965745\"}},{\"attributeHeader\":{\"labelValue\":\"965746\",\"primaryLabelValue\":\"965746\"}},{\"attributeHeader\":{\"labelValue\":\"965747\",\"primaryLabelValue\":\"965747\"}},{\"attributeHeader\":{\"labelValue\":\"965748\",\"primaryLabelValue\":\"965748\"}},{\"attributeHeader\":{\"labelValue\":\"965749\",\"primaryLabelValue\":\"965749\"}},{\"attributeHeader\":{\"labelValue\":\"965750\",\"primaryLabelValue\":\"965750\"}},{\"attributeHeader\":{\"labelValue\":\"965751\",\"primaryLabelValue\":\"965751\"}},{\"attributeHeader\":{\"labelValue\":\"965753\",\"primaryLabelValue\":\"965753\"}},{\"attributeHeader\":{\"labelValue\":\"965754\",\"primaryLabelValue\":\"965754\"}},{\"attributeHeader\":{\"labelValue\":\"965756\",\"primaryLabelValue\":\"965756\"}},{\"attributeHeader\":{\"labelValue\":\"965757\",\"primaryLabelValue\":\"965757\"}},{\"attributeHeader\":{\"labelValue\":\"965758\",\"primaryLabelValue\":\"965758\"}},{\"attributeHeader\":{\"labelValue\":\"965759\",\"primaryLabelValue\":\"965759\"}},{\"attributeHeader\":{\"labelValue\":\"965760\",\"primaryLabelValue\":\"965760\"}},{\"attributeHeader\":{\"labelValue\":\"965762\",\"primaryLabelValue\":\"965762\"}},{\"attributeHeader\":{\"labelValue\":\"965763\",\"primaryLabelValue\":\"965763\"}},{\"attributeHeader\":{\"labelValue\":\"965764\",\"primaryLabelValue\":\"965764\"}},{\"attributeHeader\":{\"labelValue\":\"965766\",\"primaryLabelValue\":\"965766\"}},{\"attributeHeader\":{\"labelValue\":\"965767\",\"primaryLabelValue\":\"965767\"}},{\"attributeHeader\":{\"labelValue\":\"965768\",\"primaryLabelValue\":\"965768\"}},{\"attributeHeader\":{\"labelValue\":\"965770\",\"primaryLabelValue\":\"965770\"}},{\"attributeHeader\":{\"labelValue\":\"965772\",\"primaryLabelValue\":\"965772\"}},{\"attributeHeader\":{\"labelValue\":\"965773\",\"primaryLabelValue\":\"965773\"}},{\"attributeHeader\":{\"labelValue\":\"965775\",\"primaryLabelValue\":\"965775\"}},{\"attributeHeader\":{\"labelValue\":\"965777\",\"primaryLabelValue\":\"965777\"}},{\"attributeHeader\":{\"labelValue\":\"965779\",\"primaryLabelValue\":\"965779\"}},{\"attributeHeader\":{\"labelValue\":\"965780\",\"primaryLabelValue\":\"965780\"}},{\"attributeHeader\":{\"labelValue\":\"965781\",\"primaryLabelValue\":\"965781\"}},{\"attributeHeader\":{\"labelValue\":\"965783\",\"primaryLabelValue\":\"965783\"}},{\"attributeHeader\":{\"labelValue\":\"965785\",\"primaryLabelValue\":\"965785\"}},{\"attributeHeader\":{\"labelValue\":\"965786\",\"primaryLabelValue\":\"965786\"}},{\"attributeHeader\":{\"labelValue\":\"965787\",\"primaryLabelValue\":\"965787\"}},{\"attributeHeader\":{\"labelValue\":\"965788\",\"primaryLabelValue\":\"965788\"}},{\"attributeHeader\":{\"labelValue\":\"965789\",\"primaryLabelValue\":\"965789\"}},{\"attributeHeader\":{\"labelValue\":\"965791\",\"primaryLabelValue\":\"965791\"}},{\"attributeHeader\":{\"labelValue\":\"965792\",\"primaryLabelValue\":\"965792\"}},{\"attributeHeader\":{\"labelValue\":\"965793\",\"primaryLabelValue\":\"965793\"}},{\"attributeHeader\":{\"labelValue\":\"965794\",\"primaryLabelValue\":\"965794\"}},{\"attributeHeader\":{\"labelValue\":\"965795\",\"primaryLabelValue\":\"965795\"}},{\"attributeHeader\":{\"labelValue\":\"965796\",\"primaryLabelValue\":\"965796\"}},{\"attributeHeader\":{\"labelValue\":\"965798\",\"primaryLabelValue\":\"965798\"}},{\"attributeHeader\":{\"labelValue\":\"965799\",\"primaryLabelValue\":\"965799\"}},{\"attributeHeader\":{\"labelValue\":\"965800\",\"primaryLabelValue\":\"965800\"}},{\"attributeHeader\":{\"labelValue\":\"965801\",\"primaryLabelValue\":\"965801\"}},{\"attributeHeader\":{\"labelValue\":\"965802\",\"primaryLabelValue\":\"965802\"}},{\"attributeHeader\":{\"labelValue\":\"965804\",\"primaryLabelValue\":\"965804\"}},{\"attributeHeader\":{\"labelValue\":\"965805\",\"primaryLabelValue\":\"965805\"}},{\"attributeHeader\":{\"labelValue\":\"965807\",\"primaryLabelValue\":\"965807\"}},{\"attributeHeader\":{\"labelValue\":\"965808\",\"primaryLabelValue\":\"965808\"}},{\"attributeHeader\":{\"labelValue\":\"965810\",\"primaryLabelValue\":\"965810\"}},{\"attributeHeader\":{\"labelValue\":\"965811\",\"primaryLabelValue\":\"965811\"}},{\"attributeHeader\":{\"labelValue\":\"965813\",\"primaryLabelValue\":\"965813\"}},{\"attributeHeader\":{\"labelValue\":\"965814\",\"primaryLabelValue\":\"965814\"}},{\"attributeHeader\":{\"labelValue\":\"965816\",\"primaryLabelValue\":\"965816\"}},{\"attributeHeader\":{\"labelValue\":\"965817\",\"primaryLabelValue\":\"965817\"}},{\"attributeHeader\":{\"labelValue\":\"965818\",\"primaryLabelValue\":\"965818\"}},{\"attributeHeader\":{\"labelValue\":\"965819\",\"primaryLabelValue\":\"965819\"}},{\"attributeHeader\":{\"labelValue\":\"965821\",\"primaryLabelValue\":\"965821\"}},{\"attributeHeader\":{\"labelValue\":\"965823\",\"primaryLabelValue\":\"965823\"}},{\"attributeHeader\":{\"labelValue\":\"965825\",\"primaryLabelValue\":\"965825\"}},{\"attributeHeader\":{\"labelValue\":\"965826\",\"primaryLabelValue\":\"965826\"}},{\"attributeHeader\":{\"labelValue\":\"965827\",\"primaryLabelValue\":\"965827\"}},{\"attributeHeader\":{\"labelValue\":\"965829\",\"primaryLabelValue\":\"965829\"}},{\"attributeHeader\":{\"labelValue\":\"965830\",\"primaryLabelValue\":\"965830\"}},{\"attributeHeader\":{\"labelValue\":\"965831\",\"primaryLabelValue\":\"965831\"}},{\"attributeHeader\":{\"labelValue\":\"965833\",\"primaryLabelValue\":\"965833\"}},{\"attributeHeader\":{\"labelValue\":\"965835\",\"primaryLabelValue\":\"965835\"}},{\"attributeHeader\":{\"labelValue\":\"965837\",\"primaryLabelValue\":\"965837\"}},{\"attributeHeader\":{\"labelValue\":\"965838\",\"primaryLabelValue\":\"965838\"}},{\"attributeHeader\":{\"labelValue\":\"965839\",\"primaryLabelValue\":\"965839\"}},{\"attributeHeader\":{\"labelValue\":\"965841\",\"primaryLabelValue\":\"965841\"}},{\"attributeHeader\":{\"labelValue\":\"965842\",\"primaryLabelValue\":\"965842\"}},{\"attributeHeader\":{\"labelValue\":\"965843\",\"primaryLabelValue\":\"965843\"}},{\"attributeHeader\":{\"labelValue\":\"965844\",\"primaryLabelValue\":\"965844\"}},{\"attributeHeader\":{\"labelValue\":\"965845\",\"primaryLabelValue\":\"965845\"}},{\"attributeHeader\":{\"labelValue\":\"965846\",\"primaryLabelValue\":\"965846\"}},{\"attributeHeader\":{\"labelValue\":\"965847\",\"primaryLabelValue\":\"965847\"}},{\"attributeHeader\":{\"labelValue\":\"965848\",\"primaryLabelValue\":\"965848\"}},{\"attributeHeader\":{\"labelValue\":\"965849\",\"primaryLabelValue\":\"965849\"}},{\"attributeHeader\":{\"labelValue\":\"965850\",\"primaryLabelValue\":\"965850\"}},{\"attributeHeader\":{\"labelValue\":\"965852\",\"primaryLabelValue\":\"965852\"}},{\"attributeHeader\":{\"labelValue\":\"965854\",\"primaryLabelValue\":\"965854\"}},{\"attributeHeader\":{\"labelValue\":\"965855\",\"primaryLabelValue\":\"965855\"}},{\"attributeHeader\":{\"labelValue\":\"965856\",\"primaryLabelValue\":\"965856\"}},{\"attributeHeader\":{\"labelValue\":\"965857\",\"primaryLabelValue\":\"965857\"}},{\"attributeHeader\":{\"labelValue\":\"965859\",\"primaryLabelValue\":\"965859\"}},{\"attributeHeader\":{\"labelValue\":\"965860\",\"primaryLabelValue\":\"965860\"}},{\"attributeHeader\":{\"labelValue\":\"965861\",\"primaryLabelValue\":\"965861\"}},{\"attributeHeader\":{\"labelValue\":\"965862\",\"primaryLabelValue\":\"965862\"}},{\"attributeHeader\":{\"labelValue\":\"965863\",\"primaryLabelValue\":\"965863\"}},{\"attributeHeader\":{\"labelValue\":\"965864\",\"primaryLabelValue\":\"965864\"}},{\"attributeHeader\":{\"labelValue\":\"965865\",\"primaryLabelValue\":\"965865\"}},{\"attributeHeader\":{\"labelValue\":\"965867\",\"primaryLabelValue\":\"965867\"}},{\"attributeHeader\":{\"labelValue\":\"965868\",\"primaryLabelValue\":\"965868\"}},{\"attributeHeader\":{\"labelValue\":\"965870\",\"primaryLabelValue\":\"965870\"}},{\"attributeHeader\":{\"labelValue\":\"965871\",\"primaryLabelValue\":\"965871\"}},{\"attributeHeader\":{\"labelValue\":\"965872\",\"primaryLabelValue\":\"965872\"}},{\"attributeHeader\":{\"labelValue\":\"965873\",\"primaryLabelValue\":\"965873\"}},{\"attributeHeader\":{\"labelValue\":\"965874\",\"primaryLabelValue\":\"965874\"}},{\"attributeHeader\":{\"labelValue\":\"965876\",\"primaryLabelValue\":\"965876\"}},{\"attributeHeader\":{\"labelValue\":\"965877\",\"primaryLabelValue\":\"965877\"}},{\"attributeHeader\":{\"labelValue\":\"965878\",\"primaryLabelValue\":\"965878\"}},{\"attributeHeader\":{\"labelValue\":\"965880\",\"primaryLabelValue\":\"965880\"}},{\"attributeHeader\":{\"labelValue\":\"965882\",\"primaryLabelValue\":\"965882\"}},{\"attributeHeader\":{\"labelValue\":\"965883\",\"primaryLabelValue\":\"965883\"}},{\"attributeHeader\":{\"labelValue\":\"965884\",\"primaryLabelValue\":\"965884\"}},{\"attributeHeader\":{\"labelValue\":\"965885\",\"primaryLabelValue\":\"965885\"}},{\"attributeHeader\":{\"labelValue\":\"965888\",\"primaryLabelValue\":\"965888\"}},{\"attributeHeader\":{\"labelValue\":\"965890\",\"primaryLabelValue\":\"965890\"}},{\"attributeHeader\":{\"labelValue\":\"965891\",\"primaryLabelValue\":\"965891\"}},{\"attributeHeader\":{\"labelValue\":\"965892\",\"primaryLabelValue\":\"965892\"}},{\"attributeHeader\":{\"labelValue\":\"965894\",\"primaryLabelValue\":\"965894\"}},{\"attributeHeader\":{\"labelValue\":\"965895\",\"primaryLabelValue\":\"965895\"}},{\"attributeHeader\":{\"labelValue\":\"965896\",\"primaryLabelValue\":\"965896\"}},{\"attributeHeader\":{\"labelValue\":\"965898\",\"primaryLabelValue\":\"965898\"}},{\"attributeHeader\":{\"labelValue\":\"965900\",\"primaryLabelValue\":\"965900\"}},{\"attributeHeader\":{\"labelValue\":\"965901\",\"primaryLabelValue\":\"965901\"}},{\"attributeHeader\":{\"labelValue\":\"965902\",\"primaryLabelValue\":\"965902\"}},{\"attributeHeader\":{\"labelValue\":\"965903\",\"primaryLabelValue\":\"965903\"}},{\"attributeHeader\":{\"labelValue\":\"965904\",\"primaryLabelValue\":\"965904\"}},{\"attributeHeader\":{\"labelValue\":\"965905\",\"primaryLabelValue\":\"965905\"}},{\"attributeHeader\":{\"labelValue\":\"965906\",\"primaryLabelValue\":\"965906\"}},{\"attributeHeader\":{\"labelValue\":\"965908\",\"primaryLabelValue\":\"965908\"}},{\"attributeHeader\":{\"labelValue\":\"965909\",\"primaryLabelValue\":\"965909\"}},{\"attributeHeader\":{\"labelValue\":\"965910\",\"primaryLabelValue\":\"965910\"}},{\"attributeHeader\":{\"labelValue\":\"965912\",\"primaryLabelValue\":\"965912\"}},{\"attributeHeader\":{\"labelValue\":\"965914\",\"primaryLabelValue\":\"965914\"}},{\"attributeHeader\":{\"labelValue\":\"965916\",\"primaryLabelValue\":\"965916\"}},{\"attributeHeader\":{\"labelValue\":\"965917\",\"primaryLabelValue\":\"965917\"}},{\"attributeHeader\":{\"labelValue\":\"965919\",\"primaryLabelValue\":\"965919\"}},{\"attributeHeader\":{\"labelValue\":\"965922\",\"primaryLabelValue\":\"965922\"}},{\"attributeHeader\":{\"labelValue\":\"965923\",\"primaryLabelValue\":\"965923\"}},{\"attributeHeader\":{\"labelValue\":\"965925\",\"primaryLabelValue\":\"965925\"}},{\"attributeHeader\":{\"labelValue\":\"965926\",\"primaryLabelValue\":\"965926\"}},{\"attributeHeader\":{\"labelValue\":\"965927\",\"primaryLabelValue\":\"965927\"}},{\"attributeHeader\":{\"labelValue\":\"965928\",\"primaryLabelValue\":\"965928\"}},{\"attributeHeader\":{\"labelValue\":\"965929\",\"primaryLabelValue\":\"965929\"}},{\"attributeHeader\":{\"labelValue\":\"965930\",\"primaryLabelValue\":\"965930\"}},{\"attributeHeader\":{\"labelValue\":\"965931\",\"primaryLabelValue\":\"965931\"}},{\"attributeHeader\":{\"labelValue\":\"965932\",\"primaryLabelValue\":\"965932\"}},{\"attributeHeader\":{\"labelValue\":\"965934\",\"primaryLabelValue\":\"965934\"}},{\"attributeHeader\":{\"labelValue\":\"965935\",\"primaryLabelValue\":\"965935\"}},{\"attributeHeader\":{\"labelValue\":\"965936\",\"primaryLabelValue\":\"965936\"}},{\"attributeHeader\":{\"labelValue\":\"965937\",\"primaryLabelValue\":\"965937\"}},{\"attributeHeader\":{\"labelValue\":\"965938\",\"primaryLabelValue\":\"965938\"}},{\"attributeHeader\":{\"labelValue\":\"965939\",\"primaryLabelValue\":\"965939\"}},{\"attributeHeader\":{\"labelValue\":\"965941\",\"primaryLabelValue\":\"965941\"}},{\"attributeHeader\":{\"labelValue\":\"965942\",\"primaryLabelValue\":\"965942\"}},{\"attributeHeader\":{\"labelValue\":\"965944\",\"primaryLabelValue\":\"965944\"}},{\"attributeHeader\":{\"labelValue\":\"965946\",\"primaryLabelValue\":\"965946\"}},{\"attributeHeader\":{\"labelValue\":\"965948\",\"primaryLabelValue\":\"965948\"}},{\"attributeHeader\":{\"labelValue\":\"965950\",\"primaryLabelValue\":\"965950\"}},{\"attributeHeader\":{\"labelValue\":\"965951\",\"primaryLabelValue\":\"965951\"}},{\"attributeHeader\":{\"labelValue\":\"965953\",\"primaryLabelValue\":\"965953\"}},{\"attributeHeader\":{\"labelValue\":\"965955\",\"primaryLabelValue\":\"965955\"}},{\"attributeHeader\":{\"labelValue\":\"965956\",\"primaryLabelValue\":\"965956\"}},{\"attributeHeader\":{\"labelValue\":\"965958\",\"primaryLabelValue\":\"965958\"}},{\"attributeHeader\":{\"labelValue\":\"965960\",\"primaryLabelValue\":\"965960\"}},{\"attributeHeader\":{\"labelValue\":\"965961\",\"primaryLabelValue\":\"965961\"}},{\"attributeHeader\":{\"labelValue\":\"965963\",\"primaryLabelValue\":\"965963\"}},{\"attributeHeader\":{\"labelValue\":\"965964\",\"primaryLabelValue\":\"965964\"}},{\"attributeHeader\":{\"labelValue\":\"965965\",\"primaryLabelValue\":\"965965\"}},{\"attributeHeader\":{\"labelValue\":\"965966\",\"primaryLabelValue\":\"965966\"}},{\"attributeHeader\":{\"labelValue\":\"965968\",\"primaryLabelValue\":\"965968\"}},{\"attributeHeader\":{\"labelValue\":\"965969\",\"primaryLabelValue\":\"965969\"}},{\"attributeHeader\":{\"labelValue\":\"965970\",\"primaryLabelValue\":\"965970\"}},{\"attributeHeader\":{\"labelValue\":\"965971\",\"primaryLabelValue\":\"965971\"}},{\"attributeHeader\":{\"labelValue\":\"965972\",\"primaryLabelValue\":\"965972\"}},{\"attributeHeader\":{\"labelValue\":\"965973\",\"primaryLabelValue\":\"965973\"}},{\"attributeHeader\":{\"labelValue\":\"965974\",\"primaryLabelValue\":\"965974\"}},{\"attributeHeader\":{\"labelValue\":\"965976\",\"primaryLabelValue\":\"965976\"}},{\"attributeHeader\":{\"labelValue\":\"965977\",\"primaryLabelValue\":\"965977\"}},{\"attributeHeader\":{\"labelValue\":\"965979\",\"primaryLabelValue\":\"965979\"}},{\"attributeHeader\":{\"labelValue\":\"965981\",\"primaryLabelValue\":\"965981\"}},{\"attributeHeader\":{\"labelValue\":\"965982\",\"primaryLabelValue\":\"965982\"}},{\"attributeHeader\":{\"labelValue\":\"965983\",\"primaryLabelValue\":\"965983\"}},{\"attributeHeader\":{\"labelValue\":\"965985\",\"primaryLabelValue\":\"965985\"}},{\"attributeHeader\":{\"labelValue\":\"965986\",\"primaryLabelValue\":\"965986\"}},{\"attributeHeader\":{\"labelValue\":\"965987\",\"primaryLabelValue\":\"965987\"}},{\"attributeHeader\":{\"labelValue\":\"965989\",\"primaryLabelValue\":\"965989\"}},{\"attributeHeader\":{\"labelValue\":\"965991\",\"primaryLabelValue\":\"965991\"}},{\"attributeHeader\":{\"labelValue\":\"965993\",\"primaryLabelValue\":\"965993\"}},{\"attributeHeader\":{\"labelValue\":\"965994\",\"primaryLabelValue\":\"965994\"}},{\"attributeHeader\":{\"labelValue\":\"965995\",\"primaryLabelValue\":\"965995\"}},{\"attributeHeader\":{\"labelValue\":\"965996\",\"primaryLabelValue\":\"965996\"}},{\"attributeHeader\":{\"labelValue\":\"965997\",\"primaryLabelValue\":\"965997\"}},{\"attributeHeader\":{\"labelValue\":\"965999\",\"primaryLabelValue\":\"965999\"}},{\"attributeHeader\":{\"labelValue\":\"966001\",\"primaryLabelValue\":\"966001\"}},{\"attributeHeader\":{\"labelValue\":\"966002\",\"primaryLabelValue\":\"966002\"}},{\"attributeHeader\":{\"labelValue\":\"966004\",\"primaryLabelValue\":\"966004\"}},{\"attributeHeader\":{\"labelValue\":\"966005\",\"primaryLabelValue\":\"966005\"}},{\"attributeHeader\":{\"labelValue\":\"966007\",\"primaryLabelValue\":\"966007\"}},{\"attributeHeader\":{\"labelValue\":\"966009\",\"primaryLabelValue\":\"966009\"}},{\"attributeHeader\":{\"labelValue\":\"966010\",\"primaryLabelValue\":\"966010\"}},{\"attributeHeader\":{\"labelValue\":\"966011\",\"primaryLabelValue\":\"966011\"}},{\"attributeHeader\":{\"labelValue\":\"966013\",\"primaryLabelValue\":\"966013\"}},{\"attributeHeader\":{\"labelValue\":\"966016\",\"primaryLabelValue\":\"966016\"}},{\"attributeHeader\":{\"labelValue\":\"966017\",\"primaryLabelValue\":\"966017\"}},{\"attributeHeader\":{\"labelValue\":\"966019\",\"primaryLabelValue\":\"966019\"}},{\"attributeHeader\":{\"labelValue\":\"966020\",\"primaryLabelValue\":\"966020\"}},{\"attributeHeader\":{\"labelValue\":\"966021\",\"primaryLabelValue\":\"966021\"}},{\"attributeHeader\":{\"labelValue\":\"966023\",\"primaryLabelValue\":\"966023\"}},{\"attributeHeader\":{\"labelValue\":\"966025\",\"primaryLabelValue\":\"966025\"}},{\"attributeHeader\":{\"labelValue\":\"966026\",\"primaryLabelValue\":\"966026\"}},{\"attributeHeader\":{\"labelValue\":\"966027\",\"primaryLabelValue\":\"966027\"}},{\"attributeHeader\":{\"labelValue\":\"966028\",\"primaryLabelValue\":\"966028\"}},{\"attributeHeader\":{\"labelValue\":\"966029\",\"primaryLabelValue\":\"966029\"}},{\"attributeHeader\":{\"labelValue\":\"966030\",\"primaryLabelValue\":\"966030\"}},{\"attributeHeader\":{\"labelValue\":\"966031\",\"primaryLabelValue\":\"966031\"}},{\"attributeHeader\":{\"labelValue\":\"966033\",\"primaryLabelValue\":\"966033\"}},{\"attributeHeader\":{\"labelValue\":\"966034\",\"primaryLabelValue\":\"966034\"}},{\"attributeHeader\":{\"labelValue\":\"966035\",\"primaryLabelValue\":\"966035\"}},{\"attributeHeader\":{\"labelValue\":\"966036\",\"primaryLabelValue\":\"966036\"}},{\"attributeHeader\":{\"labelValue\":\"966037\",\"primaryLabelValue\":\"966037\"}},{\"attributeHeader\":{\"labelValue\":\"966039\",\"primaryLabelValue\":\"966039\"}},{\"attributeHeader\":{\"labelValue\":\"966041\",\"primaryLabelValue\":\"966041\"}},{\"attributeHeader\":{\"labelValue\":\"966043\",\"primaryLabelValue\":\"966043\"}},{\"attributeHeader\":{\"labelValue\":\"966045\",\"primaryLabelValue\":\"966045\"}},{\"attributeHeader\":{\"labelValue\":\"966047\",\"primaryLabelValue\":\"966047\"}},{\"attributeHeader\":{\"labelValue\":\"966049\",\"primaryLabelValue\":\"966049\"}},{\"attributeHeader\":{\"labelValue\":\"966050\",\"primaryLabelValue\":\"966050\"}},{\"attributeHeader\":{\"labelValue\":\"966051\",\"primaryLabelValue\":\"966051\"}},{\"attributeHeader\":{\"labelValue\":\"966053\",\"primaryLabelValue\":\"966053\"}},{\"attributeHeader\":{\"labelValue\":\"966055\",\"primaryLabelValue\":\"966055\"}},{\"attributeHeader\":{\"labelValue\":\"966057\",\"primaryLabelValue\":\"966057\"}},{\"attributeHeader\":{\"labelValue\":\"966059\",\"primaryLabelValue\":\"966059\"}},{\"attributeHeader\":{\"labelValue\":\"966061\",\"primaryLabelValue\":\"966061\"}},{\"attributeHeader\":{\"labelValue\":\"966062\",\"primaryLabelValue\":\"966062\"}},{\"attributeHeader\":{\"labelValue\":\"966063\",\"primaryLabelValue\":\"966063\"}},{\"attributeHeader\":{\"labelValue\":\"966064\",\"primaryLabelValue\":\"966064\"}},{\"attributeHeader\":{\"labelValue\":\"966066\",\"primaryLabelValue\":\"966066\"}},{\"attributeHeader\":{\"labelValue\":\"966067\",\"primaryLabelValue\":\"966067\"}},{\"attributeHeader\":{\"labelValue\":\"966068\",\"primaryLabelValue\":\"966068\"}},{\"attributeHeader\":{\"labelValue\":\"966069\",\"primaryLabelValue\":\"966069\"}},{\"attributeHeader\":{\"labelValue\":\"966071\",\"primaryLabelValue\":\"966071\"}},{\"attributeHeader\":{\"labelValue\":\"966072\",\"primaryLabelValue\":\"966072\"}},{\"attributeHeader\":{\"labelValue\":\"966074\",\"primaryLabelValue\":\"966074\"}},{\"attributeHeader\":{\"labelValue\":\"966075\",\"primaryLabelValue\":\"966075\"}},{\"attributeHeader\":{\"labelValue\":\"966077\",\"primaryLabelValue\":\"966077\"}},{\"attributeHeader\":{\"labelValue\":\"966079\",\"primaryLabelValue\":\"966079\"}},{\"attributeHeader\":{\"labelValue\":\"966083\",\"primaryLabelValue\":\"966083\"}},{\"attributeHeader\":{\"labelValue\":\"966084\",\"primaryLabelValue\":\"966084\"}},{\"attributeHeader\":{\"labelValue\":\"966085\",\"primaryLabelValue\":\"966085\"}},{\"attributeHeader\":{\"labelValue\":\"966086\",\"primaryLabelValue\":\"966086\"}},{\"attributeHeader\":{\"labelValue\":\"966087\",\"primaryLabelValue\":\"966087\"}},{\"attributeHeader\":{\"labelValue\":\"966088\",\"primaryLabelValue\":\"966088\"}},{\"attributeHeader\":{\"labelValue\":\"966089\",\"primaryLabelValue\":\"966089\"}},{\"attributeHeader\":{\"labelValue\":\"966090\",\"primaryLabelValue\":\"966090\"}},{\"attributeHeader\":{\"labelValue\":\"966091\",\"primaryLabelValue\":\"966091\"}},{\"attributeHeader\":{\"labelValue\":\"966092\",\"primaryLabelValue\":\"966092\"}},{\"attributeHeader\":{\"labelValue\":\"966094\",\"primaryLabelValue\":\"966094\"}},{\"attributeHeader\":{\"labelValue\":\"966095\",\"primaryLabelValue\":\"966095\"}},{\"attributeHeader\":{\"labelValue\":\"966097\",\"primaryLabelValue\":\"966097\"}},{\"attributeHeader\":{\"labelValue\":\"966099\",\"primaryLabelValue\":\"966099\"}},{\"attributeHeader\":{\"labelValue\":\"966101\",\"primaryLabelValue\":\"966101\"}},{\"attributeHeader\":{\"labelValue\":\"966102\",\"primaryLabelValue\":\"966102\"}},{\"attributeHeader\":{\"labelValue\":\"966104\",\"primaryLabelValue\":\"966104\"}},{\"attributeHeader\":{\"labelValue\":\"966105\",\"primaryLabelValue\":\"966105\"}},{\"attributeHeader\":{\"labelValue\":\"966106\",\"primaryLabelValue\":\"966106\"}},{\"attributeHeader\":{\"labelValue\":\"966107\",\"primaryLabelValue\":\"966107\"}},{\"attributeHeader\":{\"labelValue\":\"966109\",\"primaryLabelValue\":\"966109\"}},{\"attributeHeader\":{\"labelValue\":\"966110\",\"primaryLabelValue\":\"966110\"}},{\"attributeHeader\":{\"labelValue\":\"966111\",\"primaryLabelValue\":\"966111\"}},{\"attributeHeader\":{\"labelValue\":\"966113\",\"primaryLabelValue\":\"966113\"}},{\"attributeHeader\":{\"labelValue\":\"966114\",\"primaryLabelValue\":\"966114\"}},{\"attributeHeader\":{\"labelValue\":\"966115\",\"primaryLabelValue\":\"966115\"}},{\"attributeHeader\":{\"labelValue\":\"966116\",\"primaryLabelValue\":\"966116\"}},{\"attributeHeader\":{\"labelValue\":\"966118\",\"primaryLabelValue\":\"966118\"}},{\"attributeHeader\":{\"labelValue\":\"966119\",\"primaryLabelValue\":\"966119\"}},{\"attributeHeader\":{\"labelValue\":\"966120\",\"primaryLabelValue\":\"966120\"}},{\"attributeHeader\":{\"labelValue\":\"966122\",\"primaryLabelValue\":\"966122\"}},{\"attributeHeader\":{\"labelValue\":\"966123\",\"primaryLabelValue\":\"966123\"}},{\"attributeHeader\":{\"labelValue\":\"966125\",\"primaryLabelValue\":\"966125\"}},{\"attributeHeader\":{\"labelValue\":\"966126\",\"primaryLabelValue\":\"966126\"}},{\"attributeHeader\":{\"labelValue\":\"966128\",\"primaryLabelValue\":\"966128\"}},{\"attributeHeader\":{\"labelValue\":\"966129\",\"primaryLabelValue\":\"966129\"}},{\"attributeHeader\":{\"labelValue\":\"966130\",\"primaryLabelValue\":\"966130\"}},{\"attributeHeader\":{\"labelValue\":\"966131\",\"primaryLabelValue\":\"966131\"}},{\"attributeHeader\":{\"labelValue\":\"966132\",\"primaryLabelValue\":\"966132\"}},{\"attributeHeader\":{\"labelValue\":\"966133\",\"primaryLabelValue\":\"966133\"}},{\"attributeHeader\":{\"labelValue\":\"966134\",\"primaryLabelValue\":\"966134\"}},{\"attributeHeader\":{\"labelValue\":\"966136\",\"primaryLabelValue\":\"966136\"}},{\"attributeHeader\":{\"labelValue\":\"966137\",\"primaryLabelValue\":\"966137\"}},{\"attributeHeader\":{\"labelValue\":\"966139\",\"primaryLabelValue\":\"966139\"}},{\"attributeHeader\":{\"labelValue\":\"966140\",\"primaryLabelValue\":\"966140\"}},{\"attributeHeader\":{\"labelValue\":\"966141\",\"primaryLabelValue\":\"966141\"}},{\"attributeHeader\":{\"labelValue\":\"966142\",\"primaryLabelValue\":\"966142\"}},{\"attributeHeader\":{\"labelValue\":\"966143\",\"primaryLabelValue\":\"966143\"}},{\"attributeHeader\":{\"labelValue\":\"966144\",\"primaryLabelValue\":\"966144\"}},{\"attributeHeader\":{\"labelValue\":\"966145\",\"primaryLabelValue\":\"966145\"}},{\"attributeHeader\":{\"labelValue\":\"966147\",\"primaryLabelValue\":\"966147\"}},{\"attributeHeader\":{\"labelValue\":\"966148\",\"primaryLabelValue\":\"966148\"}},{\"attributeHeader\":{\"labelValue\":\"966150\",\"primaryLabelValue\":\"966150\"}},{\"attributeHeader\":{\"labelValue\":\"966151\",\"primaryLabelValue\":\"966151\"}},{\"attributeHeader\":{\"labelValue\":\"966153\",\"primaryLabelValue\":\"966153\"}},{\"attributeHeader\":{\"labelValue\":\"966154\",\"primaryLabelValue\":\"966154\"}},{\"attributeHeader\":{\"labelValue\":\"966156\",\"primaryLabelValue\":\"966156\"}},{\"attributeHeader\":{\"labelValue\":\"966157\",\"primaryLabelValue\":\"966157\"}},{\"attributeHeader\":{\"labelValue\":\"966159\",\"primaryLabelValue\":\"966159\"}},{\"attributeHeader\":{\"labelValue\":\"966160\",\"primaryLabelValue\":\"966160\"}},{\"attributeHeader\":{\"labelValue\":\"966162\",\"primaryLabelValue\":\"966162\"}},{\"attributeHeader\":{\"labelValue\":\"966164\",\"primaryLabelValue\":\"966164\"}},{\"attributeHeader\":{\"labelValue\":\"966165\",\"primaryLabelValue\":\"966165\"}},{\"attributeHeader\":{\"labelValue\":\"966166\",\"primaryLabelValue\":\"966166\"}},{\"attributeHeader\":{\"labelValue\":\"966167\",\"primaryLabelValue\":\"966167\"}},{\"attributeHeader\":{\"labelValue\":\"966168\",\"primaryLabelValue\":\"966168\"}},{\"attributeHeader\":{\"labelValue\":\"966169\",\"primaryLabelValue\":\"966169\"}},{\"attributeHeader\":{\"labelValue\":\"966170\",\"primaryLabelValue\":\"966170\"}},{\"attributeHeader\":{\"labelValue\":\"966171\",\"primaryLabelValue\":\"966171\"}},{\"attributeHeader\":{\"labelValue\":\"966173\",\"primaryLabelValue\":\"966173\"}},{\"attributeHeader\":{\"labelValue\":\"966174\",\"primaryLabelValue\":\"966174\"}},{\"attributeHeader\":{\"labelValue\":\"966176\",\"primaryLabelValue\":\"966176\"}},{\"attributeHeader\":{\"labelValue\":\"966177\",\"primaryLabelValue\":\"966177\"}},{\"attributeHeader\":{\"labelValue\":\"966178\",\"primaryLabelValue\":\"966178\"}},{\"attributeHeader\":{\"labelValue\":\"966179\",\"primaryLabelValue\":\"966179\"}},{\"attributeHeader\":{\"labelValue\":\"966181\",\"primaryLabelValue\":\"966181\"}},{\"attributeHeader\":{\"labelValue\":\"966182\",\"primaryLabelValue\":\"966182\"}},{\"attributeHeader\":{\"labelValue\":\"966183\",\"primaryLabelValue\":\"966183\"}},{\"attributeHeader\":{\"labelValue\":\"966184\",\"primaryLabelValue\":\"966184\"}},{\"attributeHeader\":{\"labelValue\":\"966185\",\"primaryLabelValue\":\"966185\"}},{\"attributeHeader\":{\"labelValue\":\"966187\",\"primaryLabelValue\":\"966187\"}},{\"attributeHeader\":{\"labelValue\":\"966188\",\"primaryLabelValue\":\"966188\"}},{\"attributeHeader\":{\"labelValue\":\"966189\",\"primaryLabelValue\":\"966189\"}},{\"attributeHeader\":{\"labelValue\":\"966190\",\"primaryLabelValue\":\"966190\"}},{\"attributeHeader\":{\"labelValue\":\"966191\",\"primaryLabelValue\":\"966191\"}},{\"attributeHeader\":{\"labelValue\":\"966193\",\"primaryLabelValue\":\"966193\"}},{\"attributeHeader\":{\"labelValue\":\"966194\",\"primaryLabelValue\":\"966194\"}},{\"attributeHeader\":{\"labelValue\":\"966195\",\"primaryLabelValue\":\"966195\"}},{\"attributeHeader\":{\"labelValue\":\"966196\",\"primaryLabelValue\":\"966196\"}},{\"attributeHeader\":{\"labelValue\":\"966198\",\"primaryLabelValue\":\"966198\"}},{\"attributeHeader\":{\"labelValue\":\"966199\",\"primaryLabelValue\":\"966199\"}},{\"attributeHeader\":{\"labelValue\":\"966200\",\"primaryLabelValue\":\"966200\"}},{\"attributeHeader\":{\"labelValue\":\"966201\",\"primaryLabelValue\":\"966201\"}},{\"attributeHeader\":{\"labelValue\":\"966203\",\"primaryLabelValue\":\"966203\"}},{\"attributeHeader\":{\"labelValue\":\"966204\",\"primaryLabelValue\":\"966204\"}},{\"attributeHeader\":{\"labelValue\":\"966206\",\"primaryLabelValue\":\"966206\"}},{\"attributeHeader\":{\"labelValue\":\"966207\",\"primaryLabelValue\":\"966207\"}},{\"attributeHeader\":{\"labelValue\":\"966209\",\"primaryLabelValue\":\"966209\"}},{\"attributeHeader\":{\"labelValue\":\"966211\",\"primaryLabelValue\":\"966211\"}},{\"attributeHeader\":{\"labelValue\":\"966212\",\"primaryLabelValue\":\"966212\"}},{\"attributeHeader\":{\"labelValue\":\"966214\",\"primaryLabelValue\":\"966214\"}},{\"attributeHeader\":{\"labelValue\":\"966215\",\"primaryLabelValue\":\"966215\"}},{\"attributeHeader\":{\"labelValue\":\"966217\",\"primaryLabelValue\":\"966217\"}},{\"attributeHeader\":{\"labelValue\":\"966222\",\"primaryLabelValue\":\"966222\"}},{\"attributeHeader\":{\"labelValue\":\"966223\",\"primaryLabelValue\":\"966223\"}},{\"attributeHeader\":{\"labelValue\":\"966224\",\"primaryLabelValue\":\"966224\"}},{\"attributeHeader\":{\"labelValue\":\"966225\",\"primaryLabelValue\":\"966225\"}},{\"attributeHeader\":{\"labelValue\":\"966226\",\"primaryLabelValue\":\"966226\"}},{\"attributeHeader\":{\"labelValue\":\"966227\",\"primaryLabelValue\":\"966227\"}},{\"attributeHeader\":{\"labelValue\":\"966229\",\"primaryLabelValue\":\"966229\"}},{\"attributeHeader\":{\"labelValue\":\"966230\",\"primaryLabelValue\":\"966230\"}},{\"attributeHeader\":{\"labelValue\":\"966231\",\"primaryLabelValue\":\"966231\"}},{\"attributeHeader\":{\"labelValue\":\"966233\",\"primaryLabelValue\":\"966233\"}},{\"attributeHeader\":{\"labelValue\":\"966234\",\"primaryLabelValue\":\"966234\"}},{\"attributeHeader\":{\"labelValue\":\"966235\",\"primaryLabelValue\":\"966235\"}},{\"attributeHeader\":{\"labelValue\":\"966237\",\"primaryLabelValue\":\"966237\"}},{\"attributeHeader\":{\"labelValue\":\"966239\",\"primaryLabelValue\":\"966239\"}},{\"attributeHeader\":{\"labelValue\":\"966242\",\"primaryLabelValue\":\"966242\"}},{\"attributeHeader\":{\"labelValue\":\"966243\",\"primaryLabelValue\":\"966243\"}},{\"attributeHeader\":{\"labelValue\":\"966244\",\"primaryLabelValue\":\"966244\"}},{\"attributeHeader\":{\"labelValue\":\"966245\",\"primaryLabelValue\":\"966245\"}},{\"attributeHeader\":{\"labelValue\":\"966246\",\"primaryLabelValue\":\"966246\"}},{\"attributeHeader\":{\"labelValue\":\"966247\",\"primaryLabelValue\":\"966247\"}},{\"attributeHeader\":{\"labelValue\":\"966248\",\"primaryLabelValue\":\"966248\"}},{\"attributeHeader\":{\"labelValue\":\"966249\",\"primaryLabelValue\":\"966249\"}},{\"attributeHeader\":{\"labelValue\":\"966250\",\"primaryLabelValue\":\"966250\"}},{\"attributeHeader\":{\"labelValue\":\"966251\",\"primaryLabelValue\":\"966251\"}},{\"attributeHeader\":{\"labelValue\":\"966253\",\"primaryLabelValue\":\"966253\"}},{\"attributeHeader\":{\"labelValue\":\"966255\",\"primaryLabelValue\":\"966255\"}},{\"attributeHeader\":{\"labelValue\":\"966256\",\"primaryLabelValue\":\"966256\"}},{\"attributeHeader\":{\"labelValue\":\"966257\",\"primaryLabelValue\":\"966257\"}},{\"attributeHeader\":{\"labelValue\":\"966258\",\"primaryLabelValue\":\"966258\"}},{\"attributeHeader\":{\"labelValue\":\"966259\",\"primaryLabelValue\":\"966259\"}},{\"attributeHeader\":{\"labelValue\":\"966261\",\"primaryLabelValue\":\"966261\"}},{\"attributeHeader\":{\"labelValue\":\"966262\",\"primaryLabelValue\":\"966262\"}},{\"attributeHeader\":{\"labelValue\":\"966263\",\"primaryLabelValue\":\"966263\"}},{\"attributeHeader\":{\"labelValue\":\"966264\",\"primaryLabelValue\":\"966264\"}},{\"attributeHeader\":{\"labelValue\":\"966265\",\"primaryLabelValue\":\"966265\"}},{\"attributeHeader\":{\"labelValue\":\"966266\",\"primaryLabelValue\":\"966266\"}},{\"attributeHeader\":{\"labelValue\":\"966267\",\"primaryLabelValue\":\"966267\"}},{\"attributeHeader\":{\"labelValue\":\"966268\",\"primaryLabelValue\":\"966268\"}},{\"attributeHeader\":{\"labelValue\":\"966269\",\"primaryLabelValue\":\"966269\"}},{\"attributeHeader\":{\"labelValue\":\"966270\",\"primaryLabelValue\":\"966270\"}},{\"attributeHeader\":{\"labelValue\":\"966271\",\"primaryLabelValue\":\"966271\"}},{\"attributeHeader\":{\"labelValue\":\"966272\",\"primaryLabelValue\":\"966272\"}},{\"attributeHeader\":{\"labelValue\":\"966273\",\"primaryLabelValue\":\"966273\"}},{\"attributeHeader\":{\"labelValue\":\"966275\",\"primaryLabelValue\":\"966275\"}},{\"attributeHeader\":{\"labelValue\":\"966276\",\"primaryLabelValue\":\"966276\"}},{\"attributeHeader\":{\"labelValue\":\"966278\",\"primaryLabelValue\":\"966278\"}},{\"attributeHeader\":{\"labelValue\":\"966279\",\"primaryLabelValue\":\"966279\"}},{\"attributeHeader\":{\"labelValue\":\"966280\",\"primaryLabelValue\":\"966280\"}},{\"attributeHeader\":{\"labelValue\":\"966281\",\"primaryLabelValue\":\"966281\"}},{\"attributeHeader\":{\"labelValue\":\"966282\",\"primaryLabelValue\":\"966282\"}},{\"attributeHeader\":{\"labelValue\":\"966283\",\"primaryLabelValue\":\"966283\"}},{\"attributeHeader\":{\"labelValue\":\"966284\",\"primaryLabelValue\":\"966284\"}},{\"attributeHeader\":{\"labelValue\":\"966285\",\"primaryLabelValue\":\"966285\"}},{\"attributeHeader\":{\"labelValue\":\"966286\",\"primaryLabelValue\":\"966286\"}},{\"attributeHeader\":{\"labelValue\":\"966287\",\"primaryLabelValue\":\"966287\"}},{\"attributeHeader\":{\"labelValue\":\"966288\",\"primaryLabelValue\":\"966288\"}},{\"attributeHeader\":{\"labelValue\":\"966289\",\"primaryLabelValue\":\"966289\"}},{\"attributeHeader\":{\"labelValue\":\"966290\",\"primaryLabelValue\":\"966290\"}},{\"attributeHeader\":{\"labelValue\":\"966291\",\"primaryLabelValue\":\"966291\"}},{\"attributeHeader\":{\"labelValue\":\"966293\",\"primaryLabelValue\":\"966293\"}},{\"attributeHeader\":{\"labelValue\":\"966295\",\"primaryLabelValue\":\"966295\"}},{\"attributeHeader\":{\"labelValue\":\"966297\",\"primaryLabelValue\":\"966297\"}},{\"attributeHeader\":{\"labelValue\":\"966298\",\"primaryLabelValue\":\"966298\"}},{\"attributeHeader\":{\"labelValue\":\"966299\",\"primaryLabelValue\":\"966299\"}},{\"attributeHeader\":{\"labelValue\":\"966300\",\"primaryLabelValue\":\"966300\"}},{\"attributeHeader\":{\"labelValue\":\"966302\",\"primaryLabelValue\":\"966302\"}},{\"attributeHeader\":{\"labelValue\":\"966303\",\"primaryLabelValue\":\"966303\"}},{\"attributeHeader\":{\"labelValue\":\"966305\",\"primaryLabelValue\":\"966305\"}},{\"attributeHeader\":{\"labelValue\":\"966307\",\"primaryLabelValue\":\"966307\"}},{\"attributeHeader\":{\"labelValue\":\"966308\",\"primaryLabelValue\":\"966308\"}},{\"attributeHeader\":{\"labelValue\":\"966309\",\"primaryLabelValue\":\"966309\"}},{\"attributeHeader\":{\"labelValue\":\"966310\",\"primaryLabelValue\":\"966310\"}},{\"attributeHeader\":{\"labelValue\":\"966311\",\"primaryLabelValue\":\"966311\"}},{\"attributeHeader\":{\"labelValue\":\"966312\",\"primaryLabelValue\":\"966312\"}},{\"attributeHeader\":{\"labelValue\":\"966313\",\"primaryLabelValue\":\"966313\"}},{\"attributeHeader\":{\"labelValue\":\"966314\",\"primaryLabelValue\":\"966314\"}},{\"attributeHeader\":{\"labelValue\":\"966315\",\"primaryLabelValue\":\"966315\"}},{\"attributeHeader\":{\"labelValue\":\"966316\",\"primaryLabelValue\":\"966316\"}},{\"attributeHeader\":{\"labelValue\":\"966317\",\"primaryLabelValue\":\"966317\"}},{\"attributeHeader\":{\"labelValue\":\"966318\",\"primaryLabelValue\":\"966318\"}},{\"attributeHeader\":{\"labelValue\":\"966319\",\"primaryLabelValue\":\"966319\"}},{\"attributeHeader\":{\"labelValue\":\"966320\",\"primaryLabelValue\":\"966320\"}},{\"attributeHeader\":{\"labelValue\":\"966321\",\"primaryLabelValue\":\"966321\"}},{\"attributeHeader\":{\"labelValue\":\"966322\",\"primaryLabelValue\":\"966322\"}},{\"attributeHeader\":{\"labelValue\":\"966323\",\"primaryLabelValue\":\"966323\"}},{\"attributeHeader\":{\"labelValue\":\"966324\",\"primaryLabelValue\":\"966324\"}},{\"attributeHeader\":{\"labelValue\":\"966325\",\"primaryLabelValue\":\"966325\"}},{\"attributeHeader\":{\"labelValue\":\"966326\",\"primaryLabelValue\":\"966326\"}},{\"attributeHeader\":{\"labelValue\":\"966327\",\"primaryLabelValue\":\"966327\"}},{\"attributeHeader\":{\"labelValue\":\"966328\",\"primaryLabelValue\":\"966328\"}},{\"attributeHeader\":{\"labelValue\":\"966329\",\"primaryLabelValue\":\"966329\"}},{\"attributeHeader\":{\"labelValue\":\"966330\",\"primaryLabelValue\":\"966330\"}},{\"attributeHeader\":{\"labelValue\":\"966331\",\"primaryLabelValue\":\"966331\"}},{\"attributeHeader\":{\"labelValue\":\"966332\",\"primaryLabelValue\":\"966332\"}},{\"attributeHeader\":{\"labelValue\":\"966333\",\"primaryLabelValue\":\"966333\"}},{\"attributeHeader\":{\"labelValue\":\"966335\",\"primaryLabelValue\":\"966335\"}},{\"attributeHeader\":{\"labelValue\":\"966336\",\"primaryLabelValue\":\"966336\"}},{\"attributeHeader\":{\"labelValue\":\"966337\",\"primaryLabelValue\":\"966337\"}},{\"attributeHeader\":{\"labelValue\":\"966339\",\"primaryLabelValue\":\"966339\"}},{\"attributeHeader\":{\"labelValue\":\"966340\",\"primaryLabelValue\":\"966340\"}},{\"attributeHeader\":{\"labelValue\":\"966341\",\"primaryLabelValue\":\"966341\"}},{\"attributeHeader\":{\"labelValue\":\"966342\",\"primaryLabelValue\":\"966342\"}},{\"attributeHeader\":{\"labelValue\":\"966343\",\"primaryLabelValue\":\"966343\"}},{\"attributeHeader\":{\"labelValue\":\"966344\",\"primaryLabelValue\":\"966344\"}},{\"attributeHeader\":{\"labelValue\":\"966346\",\"primaryLabelValue\":\"966346\"}},{\"attributeHeader\":{\"labelValue\":\"966348\",\"primaryLabelValue\":\"966348\"}},{\"attributeHeader\":{\"labelValue\":\"966349\",\"primaryLabelValue\":\"966349\"}},{\"attributeHeader\":{\"labelValue\":\"966350\",\"primaryLabelValue\":\"966350\"}},{\"attributeHeader\":{\"labelValue\":\"966351\",\"primaryLabelValue\":\"966351\"}},{\"attributeHeader\":{\"labelValue\":\"966352\",\"primaryLabelValue\":\"966352\"}},{\"attributeHeader\":{\"labelValue\":\"966353\",\"primaryLabelValue\":\"966353\"}},{\"attributeHeader\":{\"labelValue\":\"966354\",\"primaryLabelValue\":\"966354\"}},{\"attributeHeader\":{\"labelValue\":\"966355\",\"primaryLabelValue\":\"966355\"}},{\"attributeHeader\":{\"labelValue\":\"966356\",\"primaryLabelValue\":\"966356\"}},{\"attributeHeader\":{\"labelValue\":\"966359\",\"primaryLabelValue\":\"966359\"}},{\"attributeHeader\":{\"labelValue\":\"966360\",\"primaryLabelValue\":\"966360\"}},{\"attributeHeader\":{\"labelValue\":\"966361\",\"primaryLabelValue\":\"966361\"}},{\"attributeHeader\":{\"labelValue\":\"966362\",\"primaryLabelValue\":\"966362\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Hyland Software\",\"primaryLabelValue\":\"Hyland Software\"}},{\"attributeHeader\":{\"labelValue\":\"AMC Entertainment\",\"primaryLabelValue\":\"AMC Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"AC Lens\",\"primaryLabelValue\":\"AC Lens\"}},{\"attributeHeader\":{\"labelValue\":\"(add)ventures\",\"primaryLabelValue\":\"(add)ventures\"}},{\"attributeHeader\":{\"labelValue\":\"(mt) Media Temple\",\"primaryLabelValue\":\"(mt) Media Temple\"}},{\"attributeHeader\":{\"labelValue\":\"@properties\",\"primaryLabelValue\":\"@properties\"}},{\"attributeHeader\":{\"labelValue\":\"7 Medical Systems\",\"primaryLabelValue\":\"7 Medical Systems\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A White Orchid Wedding\",\"primaryLabelValue\":\"A White Orchid Wedding\"}},{\"attributeHeader\":{\"labelValue\":\"A&P Consulting Transportation Engineers\",\"primaryLabelValue\":\"A&P Consulting Transportation Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"A-1 Textiles\",\"primaryLabelValue\":\"A-1 Textiles\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron Oil Company\",\"primaryLabelValue\":\"Aaron Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease\",\"primaryLabelValue\":\"Aaron's Sales and Lease\"}},{\"attributeHeader\":{\"labelValue\":\"Abstract Displays\",\"primaryLabelValue\":\"Abstract Displays\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaris\",\"primaryLabelValue\":\"Acclaris\"}},{\"attributeHeader\":{\"labelValue\":\"Accounting Management Solutions\",\"primaryLabelValue\":\"Accounting Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ACFN Franchised\",\"primaryLabelValue\":\"ACFN Franchised\"}},{\"attributeHeader\":{\"labelValue\":\"Achatz Handmade Pie\",\"primaryLabelValue\":\"Achatz Handmade Pie\"}},{\"attributeHeader\":{\"labelValue\":\"Active Website\",\"primaryLabelValue\":\"Active Website\"}},{\"attributeHeader\":{\"labelValue\":\"Acumen Building Enterprise\",\"primaryLabelValue\":\"Acumen Building Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptik\",\"primaryLabelValue\":\"Adaptik\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Solutions\",\"primaryLabelValue\":\"Adaptive Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ADC Integrated Systems\",\"primaryLabelValue\":\"ADC Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"ADEX Manufacturing Technologies\",\"primaryLabelValue\":\"ADEX Manufacturing Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Adoresoft\",\"primaryLabelValue\":\"Adoresoft\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Brain Monitoring\",\"primaryLabelValue\":\"Advanced Brain Monitoring\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Educational Products\",\"primaryLabelValue\":\"Advanced Educational Products\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Global Communications\",\"primaryLabelValue\":\"Advanced Global Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Systems Engineering\",\"primaryLabelValue\":\"Advanced Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"AdvancedMD Software\",\"primaryLabelValue\":\"AdvancedMD Software\"}},{\"attributeHeader\":{\"labelValue\":\"AdvantageBridal.com\",\"primaryLabelValue\":\"AdvantageBridal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advent Global Solutions\",\"primaryLabelValue\":\"Advent Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Adventure Life\",\"primaryLabelValue\":\"Adventure Life\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Media\",\"primaryLabelValue\":\"Advocate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Networks\",\"primaryLabelValue\":\"Advocate Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aerial Services\",\"primaryLabelValue\":\"Aerial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aero Solutions\",\"primaryLabelValue\":\"Aero Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"agencyQ\",\"primaryLabelValue\":\"agencyQ\"}},{\"attributeHeader\":{\"labelValue\":\"Agile\",\"primaryLabelValue\":\"Agile\"}},{\"attributeHeader\":{\"labelValue\":\"AIMS Power\",\"primaryLabelValue\":\"AIMS Power\"}},{\"attributeHeader\":{\"labelValue\":\"Air Innovations\",\"primaryLabelValue\":\"Air Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Airgun Depot\",\"primaryLabelValue\":\"Airgun Depot\"}},{\"attributeHeader\":{\"labelValue\":\"AKASHA-US\",\"primaryLabelValue\":\"AKASHA-US\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Alexa's Angels\",\"primaryLabelValue\":\"Alexa's Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"A-Life Medical\",\"primaryLabelValue\":\"A-Life Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Alinean\",\"primaryLabelValue\":\"Alinean\"}},{\"attributeHeader\":{\"labelValue\":\"All Access Staging & Productions\",\"primaryLabelValue\":\"All Access Staging & Productions\"}},{\"attributeHeader\":{\"labelValue\":\"All Action Architectural Metal & Glass\",\"primaryLabelValue\":\"All Action Architectural Metal & Glass\"}},{\"attributeHeader\":{\"labelValue\":\"All American Rentals\",\"primaryLabelValue\":\"All American Rentals\"}},{\"attributeHeader\":{\"labelValue\":\"All Covered\",\"primaryLabelValue\":\"All Covered\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"allConnex\",\"primaryLabelValue\":\"allConnex\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\",\"primaryLabelValue\":\"Allen Matkins Leck Gamble Mallory & Natsis\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Benefit Group of Illinois\",\"primaryLabelValue\":\"Alliance Benefit Group of Illinois\"}},{\"attributeHeader\":{\"labelValue\":\"Allmenus.com\",\"primaryLabelValue\":\"Allmenus.com\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Alternate Solutions Homecare\",\"primaryLabelValue\":\"Alternate Solutions Homecare\"}},{\"attributeHeader\":{\"labelValue\":\"Altour\",\"primaryLabelValue\":\"Altour\"}},{\"attributeHeader\":{\"labelValue\":\"Ameresco\",\"primaryLabelValue\":\"Ameresco\"}},{\"attributeHeader\":{\"labelValue\":\"American Bancard\",\"primaryLabelValue\":\"American Bancard\"}},{\"attributeHeader\":{\"labelValue\":\"American Communications\",\"primaryLabelValue\":\"American Communications\"}},{\"attributeHeader\":{\"labelValue\":\"American Fire Restoration\",\"primaryLabelValue\":\"American Fire Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Reporting\",\"primaryLabelValue\":\"American Reporting\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"American Technologies\",\"primaryLabelValue\":\"American Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"American Tire Distributors\",\"primaryLabelValue\":\"American Tire Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"American Unit\",\"primaryLabelValue\":\"American Unit\"}},{\"attributeHeader\":{\"labelValue\":\"America's Window\",\"primaryLabelValue\":\"America's Window\"}},{\"attributeHeader\":{\"labelValue\":\"Amigo Mobility International\",\"primaryLabelValue\":\"Amigo Mobility International\"}},{\"attributeHeader\":{\"labelValue\":\"Amnet Technology Solutions\",\"primaryLabelValue\":\"Amnet Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Anago Cleaning Systems\",\"primaryLabelValue\":\"Anago Cleaning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ANDA Networks\",\"primaryLabelValue\":\"ANDA Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Annie's\",\"primaryLabelValue\":\"Annie's\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Answer Center America\",\"primaryLabelValue\":\"Answer Center America\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerLab\",\"primaryLabelValue\":\"AnswerLab\"}},{\"attributeHeader\":{\"labelValue\":\"AnswerNet\",\"primaryLabelValue\":\"AnswerNet\"}},{\"attributeHeader\":{\"labelValue\":\"Anu Resources Unlimited\",\"primaryLabelValue\":\"Anu Resources Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Instruments\",\"primaryLabelValue\":\"Apex Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"APG\",\"primaryLabelValue\":\"APG\"}},{\"attributeHeader\":{\"labelValue\":\"Appia Communications\",\"primaryLabelValue\":\"Appia Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Trust\",\"primaryLabelValue\":\"Applied Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Apptis\",\"primaryLabelValue\":\"Apptis\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"AQIWO\",\"primaryLabelValue\":\"AQIWO\"}},{\"attributeHeader\":{\"labelValue\":\"Arbor-Nomics Turf\",\"primaryLabelValue\":\"Arbor-Nomics Turf\"}},{\"attributeHeader\":{\"labelValue\":\"Arborwell\",\"primaryLabelValue\":\"Arborwell\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaTech Systems\",\"primaryLabelValue\":\"ArcaTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Arent Fox\",\"primaryLabelValue\":\"Arent Fox\"}},{\"attributeHeader\":{\"labelValue\":\"ARES\",\"primaryLabelValue\":\"ARES\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Capital Management\",\"primaryLabelValue\":\"Argent Capital Management\"}},{\"attributeHeader\":{\"labelValue\":\"ARHD\",\"primaryLabelValue\":\"ARHD\"}},{\"attributeHeader\":{\"labelValue\":\"Aribex\",\"primaryLabelValue\":\"Aribex\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arnold & Porter\",\"primaryLabelValue\":\"Arnold & Porter\"}},{\"attributeHeader\":{\"labelValue\":\"ARRC Technology\",\"primaryLabelValue\":\"ARRC Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Art & Logic\",\"primaryLabelValue\":\"Art & Logic\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP\",\"primaryLabelValue\":\"ASAP\"}},{\"attributeHeader\":{\"labelValue\":\"ASAP Towing & Storage\",\"primaryLabelValue\":\"ASAP Towing & Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend HR\",\"primaryLabelValue\":\"Ascend HR\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Technology\",\"primaryLabelValue\":\"Ascendant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"ASI System Integration\",\"primaryLabelValue\":\"ASI System Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Exteriors\",\"primaryLabelValue\":\"Aspen Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"AspireHR\",\"primaryLabelValue\":\"AspireHR\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Atkinson-Baker\",\"primaryLabelValue\":\"Atkinson-Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"Attack!\",\"primaryLabelValue\":\"Attack!\"}},{\"attributeHeader\":{\"labelValue\":\"Audigy Group\",\"primaryLabelValue\":\"Audigy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Audio Messaging Solutions\",\"primaryLabelValue\":\"Audio Messaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Consulting\",\"primaryLabelValue\":\"Avalon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Document Services\",\"primaryLabelValue\":\"Avalon Document Services\"}},{\"attributeHeader\":{\"labelValue\":\"AvcomEast\",\"primaryLabelValue\":\"AvcomEast\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Technical Resources\",\"primaryLabelValue\":\"AVID Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"BackOffice Associates\",\"primaryLabelValue\":\"BackOffice Associates\"}},{\"attributeHeader\":{\"labelValue\":\"BACtrack Breathalyzers\",\"primaryLabelValue\":\"BACtrack Breathalyzers\"}},{\"attributeHeader\":{\"labelValue\":\"Baggallini\",\"primaryLabelValue\":\"Baggallini\"}},{\"attributeHeader\":{\"labelValue\":\"Bain Medina Bain\",\"primaryLabelValue\":\"Bain Medina Bain\"}},{\"attributeHeader\":{\"labelValue\":\"Baker & McKenzie\",\"primaryLabelValue\":\"Baker & McKenzie\"}},{\"attributeHeader\":{\"labelValue\":\"BakerRisk\",\"primaryLabelValue\":\"BakerRisk\"}},{\"attributeHeader\":{\"labelValue\":\"BalancePoint\",\"primaryLabelValue\":\"BalancePoint\"}},{\"attributeHeader\":{\"labelValue\":\"Bamco\",\"primaryLabelValue\":\"Bamco\"}},{\"attributeHeader\":{\"labelValue\":\"BandCon\",\"primaryLabelValue\":\"BandCon\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Barbara Lynch Gruppo\",\"primaryLabelValue\":\"Barbara Lynch Gruppo\"}},{\"attributeHeader\":{\"labelValue\":\"Barnes & Thornburg\",\"primaryLabelValue\":\"Barnes & Thornburg\"}},{\"attributeHeader\":{\"labelValue\":\"Bars + Tone\",\"primaryLabelValue\":\"Bars + Tone\"}},{\"attributeHeader\":{\"labelValue\":\"Bay Bridge Decision Technologies\",\"primaryLabelValue\":\"Bay Bridge Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Baystate Financial Services\",\"primaryLabelValue\":\"Baystate Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"BB&E \",\"primaryLabelValue\":\"BB&E \"}},{\"attributeHeader\":{\"labelValue\":\"BBH Solutions\",\"primaryLabelValue\":\"BBH Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BBS Technologies\",\"primaryLabelValue\":\"BBS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Application Services\",\"primaryLabelValue\":\"Beacon Application Services\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beau-coup Wedding Favors\",\"primaryLabelValue\":\"Beau-coup Wedding Favors\"}},{\"attributeHeader\":{\"labelValue\":\"BeavEx\",\"primaryLabelValue\":\"BeavEx\"}},{\"attributeHeader\":{\"labelValue\":\"Bell ATM Service\",\"primaryLabelValue\":\"Bell ATM Service\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Express Services\",\"primaryLabelValue\":\"Benefit Express Services\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bennett Landscape\",\"primaryLabelValue\":\"Bennett Landscape\"}},{\"attributeHeader\":{\"labelValue\":\"Berk Wiper Converting\",\"primaryLabelValue\":\"Berk Wiper Converting\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Beverly Prior Architects\",\"primaryLabelValue\":\"Beverly Prior Architects\"}},{\"attributeHeader\":{\"labelValue\":\"BeyondTrust\",\"primaryLabelValue\":\"BeyondTrust\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Billtrust\",\"primaryLabelValue\":\"Billtrust\"}},{\"attributeHeader\":{\"labelValue\":\"Binary Tree\",\"primaryLabelValue\":\"Binary Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Biocare Medical\",\"primaryLabelValue\":\"Biocare Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BirdDog Solutions\",\"primaryLabelValue\":\"BirdDog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"Blank Rome\",\"primaryLabelValue\":\"Blank Rome\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blu SKY Restoration Contractors\",\"primaryLabelValue\":\"Blu SKY Restoration Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Exhibits\",\"primaryLabelValue\":\"Blue Sky Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Sky Factory\",\"primaryLabelValue\":\"Blue Sky Factory\"}},{\"attributeHeader\":{\"labelValue\":\"BlueCotton\",\"primaryLabelValue\":\"BlueCotton\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"BlueWave Computing\",\"primaryLabelValue\":\"BlueWave Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluewolf\",\"primaryLabelValue\":\"Bluewolf\"}},{\"attributeHeader\":{\"labelValue\":\"BOC International\",\"primaryLabelValue\":\"BOC International\"}},{\"attributeHeader\":{\"labelValue\":\"Body Central\",\"primaryLabelValue\":\"Body Central\"}},{\"attributeHeader\":{\"labelValue\":\"Bogota Latin Bistro\",\"primaryLabelValue\":\"Bogota Latin Bistro\"}},{\"attributeHeader\":{\"labelValue\":\"Boice.net\",\"primaryLabelValue\":\"Boice.net\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Health Economics\",\"primaryLabelValue\":\"Boston Health Economics\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BPA International\",\"primaryLabelValue\":\"BPA International\"}},{\"attributeHeader\":{\"labelValue\":\"Bradley Arant Boult Cummings\",\"primaryLabelValue\":\"Bradley Arant Boult Cummings\"}},{\"attributeHeader\":{\"labelValue\":\"Branco Enterprises\",\"primaryLabelValue\":\"Branco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Brandwise\",\"primaryLabelValue\":\"Brandwise\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Cork Human Capital\",\"primaryLabelValue\":\"Brian Cork Human Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Briteskies\",\"primaryLabelValue\":\"Briteskies\"}},{\"attributeHeader\":{\"labelValue\":\"BroadRiver\",\"primaryLabelValue\":\"BroadRiver\"}},{\"attributeHeader\":{\"labelValue\":\"BroadSoft\",\"primaryLabelValue\":\"BroadSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Bronto Software\",\"primaryLabelValue\":\"Bronto Software\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Brewery\",\"primaryLabelValue\":\"Brooklyn Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Medical Industries\",\"primaryLabelValue\":\"Brown Medical Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Exchange\",\"primaryLabelValue\":\"Buffalo Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Buffalo Filter\",\"primaryLabelValue\":\"Buffalo Filter\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bullhorn\",\"primaryLabelValue\":\"Bullhorn\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Burwood Group\",\"primaryLabelValue\":\"Burwood Group\"}},{\"attributeHeader\":{\"labelValue\":\"Busey Group\",\"primaryLabelValue\":\"Busey Group\"}},{\"attributeHeader\":{\"labelValue\":\"BusinessOnLine\",\"primaryLabelValue\":\"BusinessOnLine\"}},{\"attributeHeader\":{\"labelValue\":\"C&G Technologies\",\"primaryLabelValue\":\"C&G Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C&S Companies\",\"primaryLabelValue\":\"C&S Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Manufacturing Business\",\"primaryLabelValue\":\"Cable Manufacturing Business\"}},{\"attributeHeader\":{\"labelValue\":\"Cahill Gordon & Reindel\",\"primaryLabelValue\":\"Cahill Gordon & Reindel\"}},{\"attributeHeader\":{\"labelValue\":\"Cali Bamboo\",\"primaryLabelValue\":\"Cali Bamboo\"}},{\"attributeHeader\":{\"labelValue\":\"Callis Communications\",\"primaryLabelValue\":\"Callis Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Cameta Camera\",\"primaryLabelValue\":\"Cameta Camera\"}},{\"attributeHeader\":{\"labelValue\":\"Candle Warmers Etc.\",\"primaryLabelValue\":\"Candle Warmers Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"CandyWarehouse.com\",\"primaryLabelValue\":\"CandyWarehouse.com\"}},{\"attributeHeader\":{\"labelValue\":\"Canyon Manufacturing Services\",\"primaryLabelValue\":\"Canyon Manufacturing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Hill Exxon\",\"primaryLabelValue\":\"Capitol Hill Exxon\"}},{\"attributeHeader\":{\"labelValue\":\"Capps Manufacturing\",\"primaryLabelValue\":\"Capps Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone Brokerage\",\"primaryLabelValue\":\"Capstone Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Caribbean Food Delights\",\"primaryLabelValue\":\"Caribbean Food Delights\"}},{\"attributeHeader\":{\"labelValue\":\"Carlson Timber Products\",\"primaryLabelValue\":\"Carlson Timber Products\"}},{\"attributeHeader\":{\"labelValue\":\"Carousel Industries\",\"primaryLabelValue\":\"Carousel Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Carrillo Business Technologies\",\"primaryLabelValue\":\"Carrillo Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CaseTech\",\"primaryLabelValue\":\"CaseTech\"}},{\"attributeHeader\":{\"labelValue\":\"Cash Cycle Solutions\",\"primaryLabelValue\":\"Cash Cycle Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Marketing\",\"primaryLabelValue\":\"Catapult Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Cayenne Creative Group\",\"primaryLabelValue\":\"Cayenne Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"CBT Nuggets\",\"primaryLabelValue\":\"CBT Nuggets\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Presentation Systems\",\"primaryLabelValue\":\"CCS Presentation Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CD+M Lighting Design Group\",\"primaryLabelValue\":\"CD+M Lighting Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Celerant Technology\",\"primaryLabelValue\":\"Celerant Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Cellu Tissue Holdings\",\"primaryLabelValue\":\"Cellu Tissue Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy International Services\",\"primaryLabelValue\":\"Cenergy International Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cen-Med Enterprises\",\"primaryLabelValue\":\"Cen-Med Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Centerpoint Builders\",\"primaryLabelValue\":\"Centerpoint Builders\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"CentraComm Communications\",\"primaryLabelValue\":\"CentraComm Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Central Packaging\",\"primaryLabelValue\":\"Central Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Centric Consulting\",\"primaryLabelValue\":\"Centric Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"CenturyNovelty.com\",\"primaryLabelValue\":\"CenturyNovelty.com\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Aviation Services\",\"primaryLabelValue\":\"Certified Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Languages International\",\"primaryLabelValue\":\"Certified Languages International\"}},{\"attributeHeader\":{\"labelValue\":\"Certified Restoration Drycleaning Network\",\"primaryLabelValue\":\"Certified Restoration Drycleaning Network\"}},{\"attributeHeader\":{\"labelValue\":\"CETRA Language Solutions\",\"primaryLabelValue\":\"CETRA Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman Kelly\",\"primaryLabelValue\":\"Chapman Kelly\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chen and Associates\",\"primaryLabelValue\":\"Chen and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Chicago Apartment Finders\",\"primaryLabelValue\":\"Chicago Apartment Finders\"}},{\"attributeHeader\":{\"labelValue\":\"Chocolate Maven Bakery & Cafe\",\"primaryLabelValue\":\"Chocolate Maven Bakery & Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"CHR Solutions\",\"primaryLabelValue\":\"CHR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Chutes International\",\"primaryLabelValue\":\"Chutes International\"}},{\"attributeHeader\":{\"labelValue\":\"Citrin Cooperman\",\"primaryLabelValue\":\"Citrin Cooperman\"}},{\"attributeHeader\":{\"labelValue\":\"City Wide Maintenance of Colorado\",\"primaryLabelValue\":\"City Wide Maintenance of Colorado\"}},{\"attributeHeader\":{\"labelValue\":\"CKR Interactive\",\"primaryLabelValue\":\"CKR Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Resource Group\",\"primaryLabelValue\":\"Clarity Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Classified Ventures\",\"primaryLabelValue\":\"Classified Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clean Air Gardening\",\"primaryLabelValue\":\"Clean Air Gardening\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"Clearstar.net\",\"primaryLabelValue\":\"Clearstar.net\"}},{\"attributeHeader\":{\"labelValue\":\"Cleveland Medical Devices\",\"primaryLabelValue\":\"Cleveland Medical Devices\"}},{\"attributeHeader\":{\"labelValue\":\"ClickAway Computers & Networking\",\"primaryLabelValue\":\"ClickAway Computers & Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Clima-Tech\",\"primaryLabelValue\":\"Clima-Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Research Management\",\"primaryLabelValue\":\"Clinical Research Management\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resource Network\",\"primaryLabelValue\":\"Clinical Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"Clover Technologies Group\",\"primaryLabelValue\":\"Clover Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"CME Associates\",\"primaryLabelValue\":\"CME Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CMS Forex\",\"primaryLabelValue\":\"CMS Forex\"}},{\"attributeHeader\":{\"labelValue\":\"COCC\",\"primaryLabelValue\":\"COCC\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"CoffeeForLess.com\",\"primaryLabelValue\":\"CoffeeForLess.com\"}},{\"attributeHeader\":{\"labelValue\":\"CognitiveData\",\"primaryLabelValue\":\"CognitiveData\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen & Company\",\"primaryLabelValue\":\"Cohen & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cohn Marketing\",\"primaryLabelValue\":\"Cohn Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Keepers\",\"primaryLabelValue\":\"Comfort Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"Communication Company of South Bend\",\"primaryLabelValue\":\"Communication Company of South Bend\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Community Waste Disposal\",\"primaryLabelValue\":\"Community Waste Disposal\"}},{\"attributeHeader\":{\"labelValue\":\"Comm-Works\",\"primaryLabelValue\":\"Comm-Works\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Book & Media Supply\",\"primaryLabelValue\":\"Complete Book & Media Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Resources\",\"primaryLabelValue\":\"Complete Pharmacy Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"CompSource\",\"primaryLabelValue\":\"CompSource\"}},{\"attributeHeader\":{\"labelValue\":\"CompuTech Systems\",\"primaryLabelValue\":\"CompuTech Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Aided Technology\",\"primaryLabelValue\":\"Computer Aided Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Computing System Innovations\",\"primaryLabelValue\":\"Computing System Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"ConceptSolutions\",\"primaryLabelValue\":\"ConceptSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Engineering Group\",\"primaryLabelValue\":\"Concord Engineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"ConnectWise\",\"primaryLabelValue\":\"ConnectWise\"}},{\"attributeHeader\":{\"labelValue\":\"Connextions\",\"primaryLabelValue\":\"Connextions\"}},{\"attributeHeader\":{\"labelValue\":\"Connolly\",\"primaryLabelValue\":\"Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Conservice\",\"primaryLabelValue\":\"Conservice\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Container\",\"primaryLabelValue\":\"Consolidated Container\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Office Systems\",\"primaryLabelValue\":\"Consolidated Office Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Consona\",\"primaryLabelValue\":\"Consona\"}},{\"attributeHeader\":{\"labelValue\":\"Constellation Software Engineering\",\"primaryLabelValue\":\"Constellation Software Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Construction Coordinators\",\"primaryLabelValue\":\"Construction Coordinators\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Cellular\",\"primaryLabelValue\":\"Consumer Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Contingent Network Services\",\"primaryLabelValue\":\"Contingent Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Continuant\",\"primaryLabelValue\":\"Continuant\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Consulting Group\",\"primaryLabelValue\":\"Convergence Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Marketing\",\"primaryLabelValue\":\"Convergence Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corgan Associates\",\"primaryLabelValue\":\"Corgan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Appraisal Services\",\"primaryLabelValue\":\"Cornerstone Appraisal Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Detention Products\",\"primaryLabelValue\":\"Cornerstone Detention Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Information Technologies\",\"primaryLabelValue\":\"Cornerstone Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Staffing Solutions\",\"primaryLabelValue\":\"CornerStone Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate IT Solutions\",\"primaryLabelValue\":\"Corporate IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Network Services\",\"primaryLabelValue\":\"Corporate Network Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Results\",\"primaryLabelValue\":\"Corporate Results\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covington & Burling\",\"primaryLabelValue\":\"Covington & Burling\"}},{\"attributeHeader\":{\"labelValue\":\"Cozen O'Connor\",\"primaryLabelValue\":\"Cozen O'Connor\"}},{\"attributeHeader\":{\"labelValue\":\"CPI Solutions\",\"primaryLabelValue\":\"CPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"CR Software\",\"primaryLabelValue\":\"CR Software\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Criterion Systems\",\"primaryLabelValue\":\"Criterion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Crowley Marine\",\"primaryLabelValue\":\"Crowley Marine\"}},{\"attributeHeader\":{\"labelValue\":\"CS Technology\",\"primaryLabelValue\":\"CS Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CSI Electrical Contractors\",\"primaryLabelValue\":\"CSI Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"cSubs\",\"primaryLabelValue\":\"cSubs\"}},{\"attributeHeader\":{\"labelValue\":\"CTI Resource Management Services\",\"primaryLabelValue\":\"CTI Resource Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cufflinks.com\",\"primaryLabelValue\":\"Cufflinks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cuisine Unlimited Catering & Special Events\",\"primaryLabelValue\":\"Cuisine Unlimited Catering & Special Events\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Culmen International\",\"primaryLabelValue\":\"Culmen International\"}},{\"attributeHeader\":{\"labelValue\":\"Culpepper & Associates Security Services\",\"primaryLabelValue\":\"Culpepper & Associates Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Customized Energy Solutions\",\"primaryLabelValue\":\"Customized Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cyber Switching\",\"primaryLabelValue\":\"Cyber Switching\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cyrus Innovation\",\"primaryLabelValue\":\"Cyrus Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"D. Honore\",\"primaryLabelValue\":\"D. Honore\"}},{\"attributeHeader\":{\"labelValue\":\"Dancing Deer Baking Company\",\"primaryLabelValue\":\"Dancing Deer Baking Company\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Innovations\",\"primaryLabelValue\":\"Data Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"DataArt\",\"primaryLabelValue\":\"DataArt\"}},{\"attributeHeader\":{\"labelValue\":\"DataPipe\",\"primaryLabelValue\":\"DataPipe\"}},{\"attributeHeader\":{\"labelValue\":\"DataServ\",\"primaryLabelValue\":\"DataServ\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Polk & Wardwell\",\"primaryLabelValue\":\"Davis Polk & Wardwell\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Trucking\",\"primaryLabelValue\":\"Davis Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean & Draper Insurance Agency\",\"primaryLabelValue\":\"Dean & Draper Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DeSantis Breindel\",\"primaryLabelValue\":\"DeSantis Breindel\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dickstein Shapiro\",\"primaryLabelValue\":\"Dickstein Shapiro\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Blue Global\",\"primaryLabelValue\":\"Digital Blue Global\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Intelligence Systems\",\"primaryLabelValue\":\"Digital Intelligence Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Incorporation\",\"primaryLabelValue\":\"Direct Incorporation\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Two-Way Radio\",\"primaryLabelValue\":\"Discount Two-Way Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Discountmugs.com\",\"primaryLabelValue\":\"Discountmugs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Industrial Staffing\",\"primaryLabelValue\":\"Diversified Industrial Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"DMD Data Systems\",\"primaryLabelValue\":\"DMD Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Doctor Diabetic Supply\",\"primaryLabelValue\":\"Doctor Diabetic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Docutrend Imaging Solutions\",\"primaryLabelValue\":\"Docutrend Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dodge Communications\",\"primaryLabelValue\":\"Dodge Communications\"}},{\"attributeHeader\":{\"labelValue\":\"D'Onofrio & Son\",\"primaryLabelValue\":\"D'Onofrio & Son\"}},{\"attributeHeader\":{\"labelValue\":\"DOOR3 Business Applications\",\"primaryLabelValue\":\"DOOR3 Business Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Doormation\",\"primaryLabelValue\":\"Doormation\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Consulting & Computer Services\",\"primaryLabelValue\":\"Douglas Consulting & Computer Services\"}},{\"attributeHeader\":{\"labelValue\":\"dreamGEAR\",\"primaryLabelValue\":\"dreamGEAR\"}},{\"attributeHeader\":{\"labelValue\":\"Drilling Info\",\"primaryLabelValue\":\"Drilling Info\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Duo Consulting\",\"primaryLabelValue\":\"Duo Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"E.C. Ortiz & Co.\",\"primaryLabelValue\":\"E.C. Ortiz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eastbiz.com\",\"primaryLabelValue\":\"Eastbiz.com\"}},{\"attributeHeader\":{\"labelValue\":\"e-BI International\",\"primaryLabelValue\":\"e-BI International\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eClinicalWorks\",\"primaryLabelValue\":\"eClinicalWorks\"}},{\"attributeHeader\":{\"labelValue\":\"eCoast Sales Solutions\",\"primaryLabelValue\":\"eCoast Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Economic Modeling Specialists\",\"primaryLabelValue\":\"Economic Modeling Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"EdgeRock Technology Partners\",\"primaryLabelValue\":\"EdgeRock Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Edgetech I.G.\",\"primaryLabelValue\":\"Edgetech I.G.\"}},{\"attributeHeader\":{\"labelValue\":\"Edify Technologies\",\"primaryLabelValue\":\"Edify Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"eDimensional\",\"primaryLabelValue\":\"eDimensional\"}},{\"attributeHeader\":{\"labelValue\":\"EDTS\",\"primaryLabelValue\":\"EDTS\"}},{\"attributeHeader\":{\"labelValue\":\"Education Management Solutions\",\"primaryLabelValue\":\"Education Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Services of America\",\"primaryLabelValue\":\"Educational Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"Edwards Project Solutions\",\"primaryLabelValue\":\"Edwards Project Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eeBoo\",\"primaryLabelValue\":\"eeBoo\"}},{\"attributeHeader\":{\"labelValue\":\"eFashionSolutions\",\"primaryLabelValue\":\"eFashionSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobal\",\"primaryLabelValue\":\"eGlobal\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"EIS Office Solutions\",\"primaryLabelValue\":\"EIS Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ektron\",\"primaryLabelValue\":\"Ektron\"}},{\"attributeHeader\":{\"labelValue\":\"El Camino Charter Lines\",\"primaryLabelValue\":\"El Camino Charter Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Elastec\",\"primaryLabelValue\":\"Elastec\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Element Fusion\",\"primaryLabelValue\":\"Element Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Elite CME\",\"primaryLabelValue\":\"Elite CME\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eloqua\",\"primaryLabelValue\":\"Eloqua\"}},{\"attributeHeader\":{\"labelValue\":\"EMI - Online Research Solutions\",\"primaryLabelValue\":\"EMI - Online Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emmi Solutions\",\"primaryLabelValue\":\"Emmi Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Central\",\"primaryLabelValue\":\"Energy Central\"}},{\"attributeHeader\":{\"labelValue\":\"EnerSys\",\"primaryLabelValue\":\"EnerSys\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy Life Foods\",\"primaryLabelValue\":\"Enjoy Life Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy The City North\",\"primaryLabelValue\":\"Enjoy The City North\"}},{\"attributeHeader\":{\"labelValue\":\"Enroute Computer Solutions\",\"primaryLabelValue\":\"Enroute Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Entec Services\",\"primaryLabelValue\":\"Entec Services\"}},{\"attributeHeader\":{\"labelValue\":\"Entellects\",\"primaryLabelValue\":\"Entellects\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Management Specialists\",\"primaryLabelValue\":\"Environmental Management Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Products & Services of Vermont\",\"primaryLabelValue\":\"Environmental Products & Services of Vermont\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Standards\",\"primaryLabelValue\":\"Environmental Standards\"}},{\"attributeHeader\":{\"labelValue\":\"ePath Learning\",\"primaryLabelValue\":\"ePath Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Ephox\",\"primaryLabelValue\":\"Ephox\"}},{\"attributeHeader\":{\"labelValue\":\"ePlan Services\",\"primaryLabelValue\":\"ePlan Services\"}},{\"attributeHeader\":{\"labelValue\":\"Equilar\",\"primaryLabelValue\":\"Equilar\"}},{\"attributeHeader\":{\"labelValue\":\"eSolutions\",\"primaryLabelValue\":\"eSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"E-Solutions\",\"primaryLabelValue\":\"E-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Euclid Technology\",\"primaryLabelValue\":\"Euclid Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Event Architects\",\"primaryLabelValue\":\"Event Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Everglades Technologies\",\"primaryLabelValue\":\"Everglades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EverStaff\",\"primaryLabelValue\":\"EverStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Evocative\",\"primaryLabelValue\":\"Evocative\"}},{\"attributeHeader\":{\"labelValue\":\"Evoke Technologies\",\"primaryLabelValue\":\"Evoke Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Exhibits, A Swords Company\",\"primaryLabelValue\":\"Excalibur Exhibits, A Swords Company\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Technology\",\"primaryLabelValue\":\"Excalibur Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Excelsior Defense\",\"primaryLabelValue\":\"Excelsior Defense\"}},{\"attributeHeader\":{\"labelValue\":\"Exigen Services\",\"primaryLabelValue\":\"Exigen Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Express Travel\",\"primaryLabelValue\":\"Express Travel\"}},{\"attributeHeader\":{\"labelValue\":\"Extreme Pizza\",\"primaryLabelValue\":\"Extreme Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"eXude Benefits Group\",\"primaryLabelValue\":\"eXude Benefits Group\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Faegre & Benson\",\"primaryLabelValue\":\"Faegre & Benson\"}},{\"attributeHeader\":{\"labelValue\":\"Fairway Market\",\"primaryLabelValue\":\"Fairway Market\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Farwest Sports\",\"primaryLabelValue\":\"Farwest Sports\"}},{\"attributeHeader\":{\"labelValue\":\"fassforward consulting group\",\"primaryLabelValue\":\"fassforward consulting group\"}},{\"attributeHeader\":{\"labelValue\":\"Faultless Laundry Company\",\"primaryLabelValue\":\"Faultless Laundry Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Information Technologies\",\"primaryLabelValue\":\"Federated Information Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fedtech\",\"primaryLabelValue\":\"Fedtech\"}},{\"attributeHeader\":{\"labelValue\":\"Fenwick & West\",\"primaryLabelValue\":\"Fenwick & West\"}},{\"attributeHeader\":{\"labelValue\":\"Ferris Coffee & Nut\",\"primaryLabelValue\":\"Ferris Coffee & Nut\"}},{\"attributeHeader\":{\"labelValue\":\"FI Consulting\",\"primaryLabelValue\":\"FI Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelitone Logistics\",\"primaryLabelValue\":\"Fidelitone Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Fifth Avenue Restaurant Group\",\"primaryLabelValue\":\"Fifth Avenue Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Investments\",\"primaryLabelValue\":\"Financial Investments\"}},{\"attributeHeader\":{\"labelValue\":\"Find Great People\",\"primaryLabelValue\":\"Find Great People\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Finger Lakes Business Services\",\"primaryLabelValue\":\"Finger Lakes Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Firespring\",\"primaryLabelValue\":\"Firespring\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"First In Service Travel\",\"primaryLabelValue\":\"First In Service Travel\"}},{\"attributeHeader\":{\"labelValue\":\"First Interstate BancSystem\",\"primaryLabelValue\":\"First Interstate BancSystem\"}},{\"attributeHeader\":{\"labelValue\":\"First Tech Direct\",\"primaryLabelValue\":\"First Tech Direct\"}},{\"attributeHeader\":{\"labelValue\":\"First Western Financial\",\"primaryLabelValue\":\"First Western Financial\"}},{\"attributeHeader\":{\"labelValue\":\"firstPRO Inc.\",\"primaryLabelValue\":\"firstPRO Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher Tank Company\",\"primaryLabelValue\":\"Fisher Tank Company\"}},{\"attributeHeader\":{\"labelValue\":\"Fisher/Unitech\",\"primaryLabelValue\":\"Fisher/Unitech\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Together Holdings\",\"primaryLabelValue\":\"Fitness Together Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Feet\",\"primaryLabelValue\":\"Fleet Feet\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Food Group\",\"primaryLabelValue\":\"Flying Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Foodguys\",\"primaryLabelValue\":\"Foodguys\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Fox Rothschild\",\"primaryLabelValue\":\"Fox Rothschild\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"Friedman\",\"primaryLabelValue\":\"Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"Frontline International\",\"primaryLabelValue\":\"Frontline International\"}},{\"attributeHeader\":{\"labelValue\":\"Frost Brown Todd\",\"primaryLabelValue\":\"Frost Brown Todd\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"Fusco Personnel\",\"primaryLabelValue\":\"Fusco Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Services\",\"primaryLabelValue\":\"Futura Services\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"FXFOWLE Architects\",\"primaryLabelValue\":\"FXFOWLE Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gaithersburg Air Conditioning & Heating\",\"primaryLabelValue\":\"Gaithersburg Air Conditioning & Heating\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Galison Mudpuppy\",\"primaryLabelValue\":\"Galison Mudpuppy\"}},{\"attributeHeader\":{\"labelValue\":\"GAP Solutions\",\"primaryLabelValue\":\"GAP Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Garner Holt Productions\",\"primaryLabelValue\":\"Garner Holt Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Gas Depot Oil\",\"primaryLabelValue\":\"Gas Depot Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Gatski Commercial Real Estate Services\",\"primaryLabelValue\":\"Gatski Commercial Real Estate Services\"}},{\"attributeHeader\":{\"labelValue\":\"GB Investments\",\"primaryLabelValue\":\"GB Investments\"}},{\"attributeHeader\":{\"labelValue\":\"GDB International\",\"primaryLabelValue\":\"GDB International\"}},{\"attributeHeader\":{\"labelValue\":\"Geary Interactive\",\"primaryLabelValue\":\"Geary Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GelScrubs\",\"primaryLabelValue\":\"GelScrubs\"}},{\"attributeHeader\":{\"labelValue\":\"Geneca\",\"primaryLabelValue\":\"Geneca\"}},{\"attributeHeader\":{\"labelValue\":\"General Oil\",\"primaryLabelValue\":\"General Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"GeoLearning\",\"primaryLabelValue\":\"GeoLearning\"}},{\"attributeHeader\":{\"labelValue\":\"Geonetric\",\"primaryLabelValue\":\"Geonetric\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GH2 Architects\",\"primaryLabelValue\":\"GH2 Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Gibbons\",\"primaryLabelValue\":\"Gibbons\"}},{\"attributeHeader\":{\"labelValue\":\"Gibson, Dunn & Crutcher\",\"primaryLabelValue\":\"Gibson, Dunn & Crutcher\"}},{\"attributeHeader\":{\"labelValue\":\"Gilsbar\",\"primaryLabelValue\":\"Gilsbar\"}},{\"attributeHeader\":{\"labelValue\":\"Ginter Electrical Contractors\",\"primaryLabelValue\":\"Ginter Electrical Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Systems\",\"primaryLabelValue\":\"Gold Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"GolfTEC Enterprises\",\"primaryLabelValue\":\"GolfTEC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwin Procter\",\"primaryLabelValue\":\"Goodwin Procter\"}},{\"attributeHeader\":{\"labelValue\":\"Gordon & Rees\",\"primaryLabelValue\":\"Gordon & Rees\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Governor's Distributors\",\"primaryLabelValue\":\"Governor's Distributors\"}},{\"attributeHeader\":{\"labelValue\":\"Graham Behavioral Services\",\"primaryLabelValue\":\"Graham Behavioral Services\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Harvest Franchising\",\"primaryLabelValue\":\"Great Harvest Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Home Health & Hospice\",\"primaryLabelValue\":\"Great Lakes Home Health & Hospice\"}},{\"attributeHeader\":{\"labelValue\":\"Great Lakes Wire & Cable\",\"primaryLabelValue\":\"Great Lakes Wire & Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Green Dot\",\"primaryLabelValue\":\"Green Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Brand Strategy\",\"primaryLabelValue\":\"Greenberg Brand Strategy\"}},{\"attributeHeader\":{\"labelValue\":\"Greenberg Traurig\",\"primaryLabelValue\":\"Greenberg Traurig\"}},{\"attributeHeader\":{\"labelValue\":\"Greene Resources\",\"primaryLabelValue\":\"Greene Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Greenstein, Rogoff, Olsen & Co.\",\"primaryLabelValue\":\"Greenstein, Rogoff, Olsen & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Medical Technologies\",\"primaryLabelValue\":\"Greenway Medical Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Greenway Transportation Services\",\"primaryLabelValue\":\"Greenway Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Group DCA\",\"primaryLabelValue\":\"Group DCA\"}},{\"attributeHeader\":{\"labelValue\":\"Group Health Solutions\",\"primaryLabelValue\":\"Group Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Group Mobile\",\"primaryLabelValue\":\"Group Mobile\"}},{\"attributeHeader\":{\"labelValue\":\"Grove City Dental\",\"primaryLabelValue\":\"Grove City Dental\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GStek\",\"primaryLabelValue\":\"GStek\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"GTN Technical Staffing\",\"primaryLabelValue\":\"GTN Technical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Guaranteed Rate\",\"primaryLabelValue\":\"Guaranteed Rate\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Financial Group\",\"primaryLabelValue\":\"Guidant Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Guidant Partners\",\"primaryLabelValue\":\"Guidant Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"GWI\",\"primaryLabelValue\":\"GWI\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Steel Fabricators\",\"primaryLabelValue\":\"H&H Steel Fabricators\"}},{\"attributeHeader\":{\"labelValue\":\"Haig Service\",\"primaryLabelValue\":\"Haig Service\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Construction\",\"primaryLabelValue\":\"Hanson Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harmony Healthcare International\",\"primaryLabelValue\":\"Harmony Healthcare International\"}},{\"attributeHeader\":{\"labelValue\":\"Harpoon Brewery\",\"primaryLabelValue\":\"Harpoon Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Hawkeye\",\"primaryLabelValue\":\"Hawkeye\"}},{\"attributeHeader\":{\"labelValue\":\"HCA\",\"primaryLabelValue\":\"HCA\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"HealthPort Technologies\",\"primaryLabelValue\":\"HealthPort Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HealthTrans\",\"primaryLabelValue\":\"HealthTrans\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"Hellerman Baretz Communications\",\"primaryLabelValue\":\"Hellerman Baretz Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Henderson Engineers\",\"primaryLabelValue\":\"Henderson Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hershey Systems\",\"primaryLabelValue\":\"Hershey Systems\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hinshaw & Culbertson\",\"primaryLabelValue\":\"Hinshaw & Culbertson\"}},{\"attributeHeader\":{\"labelValue\":\"Home Warranty of America\",\"primaryLabelValue\":\"Home Warranty of America\"}},{\"attributeHeader\":{\"labelValue\":\"Honest Tea\",\"primaryLabelValue\":\"Honest Tea\"}},{\"attributeHeader\":{\"labelValue\":\"Honigman Miller Schwartz and Cohn\",\"primaryLabelValue\":\"Honigman Miller Schwartz and Cohn\"}},{\"attributeHeader\":{\"labelValue\":\"Hooven-Dayton\",\"primaryLabelValue\":\"Hooven-Dayton\"}},{\"attributeHeader\":{\"labelValue\":\"Hornblower Marine Services\",\"primaryLabelValue\":\"Hornblower Marine Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hospital Solutions\",\"primaryLabelValue\":\"Hospital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Housing Helpers\",\"primaryLabelValue\":\"Housing Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"HRsmart\",\"primaryLabelValue\":\"HRsmart\"}},{\"attributeHeader\":{\"labelValue\":\"Huberty & Associates\",\"primaryLabelValue\":\"Huberty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hughes Hubbard & Reed\",\"primaryLabelValue\":\"Hughes Hubbard & Reed\"}},{\"attributeHeader\":{\"labelValue\":\"I.O. Metro\",\"primaryLabelValue\":\"I.O. Metro\"}},{\"attributeHeader\":{\"labelValue\":\"IBBS\",\"primaryLabelValue\":\"IBBS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Specialized Transport\",\"primaryLabelValue\":\"ICON Specialized Transport\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ICR\",\"primaryLabelValue\":\"ICR\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"ICSN\",\"primaryLabelValue\":\"ICSN\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Integrations\",\"primaryLabelValue\":\"Ideal Integrations\"}},{\"attributeHeader\":{\"labelValue\":\"Identity Marketing & Public Relations\",\"primaryLabelValue\":\"Identity Marketing & Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"ImageTrend\",\"primaryLabelValue\":\"ImageTrend\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Imavex\",\"primaryLabelValue\":\"Imavex\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"immixGroup\",\"primaryLabelValue\":\"immixGroup\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Group\",\"primaryLabelValue\":\"Impact Group\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Management Services\",\"primaryLabelValue\":\"Impact Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"inBusiness Services\",\"primaryLabelValue\":\"inBusiness Services\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"Infosurv\",\"primaryLabelValue\":\"Infosurv\"}},{\"attributeHeader\":{\"labelValue\":\"InfoZen\",\"primaryLabelValue\":\"InfoZen\"}},{\"attributeHeader\":{\"labelValue\":\"InkHead\",\"primaryLabelValue\":\"InkHead\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Wireless Technologies\",\"primaryLabelValue\":\"Innovative Wireless Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inphi Corporation\",\"primaryLabelValue\":\"Inphi Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Insala\",\"primaryLabelValue\":\"Insala\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"Inspec Tech\",\"primaryLabelValue\":\"Inspec Tech\"}},{\"attributeHeader\":{\"labelValue\":\"INT Technologies\",\"primaryLabelValue\":\"INT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Integrant\",\"primaryLabelValue\":\"Integrant\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Pro Services\",\"primaryLabelValue\":\"Integrated Pro Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Project Management\",\"primaryLabelValue\":\"Integrated Project Management\"}},{\"attributeHeader\":{\"labelValue\":\"Integrative Logic Marketing Group\",\"primaryLabelValue\":\"Integrative Logic Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Staffing Solutions\",\"primaryLabelValue\":\"Integrity Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Access Systems of NC\",\"primaryLabelValue\":\"Intelligent Access Systems of NC\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Decisions\",\"primaryLabelValue\":\"Intelligent Decisions\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Logistics\",\"primaryLabelValue\":\"Intelligent Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligentsia Coffee\",\"primaryLabelValue\":\"Intelligentsia Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"Inter Technologies\",\"primaryLabelValue\":\"Inter Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Interbank FX\",\"primaryLabelValue\":\"Interbank FX\"}},{\"attributeHeader\":{\"labelValue\":\"Interbit Data\",\"primaryLabelValue\":\"Interbit Data\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim HealthCare\",\"primaryLabelValue\":\"Interim HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Physicians\",\"primaryLabelValue\":\"Interim Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"International Education\",\"primaryLabelValue\":\"International Education\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorks\",\"primaryLabelValue\":\"InterWorks\"}},{\"attributeHeader\":{\"labelValue\":\"InterWorld Highway\",\"primaryLabelValue\":\"InterWorld Highway\"}},{\"attributeHeader\":{\"labelValue\":\"Invision\",\"primaryLabelValue\":\"Invision\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"Iostudio\",\"primaryLabelValue\":\"Iostudio\"}},{\"attributeHeader\":{\"labelValue\":\"iPipeline\",\"primaryLabelValue\":\"iPipeline\"}},{\"attributeHeader\":{\"labelValue\":\"IQ Pipeline\",\"primaryLabelValue\":\"IQ Pipeline\"}},{\"attributeHeader\":{\"labelValue\":\"Iron Data Solutions\",\"primaryLabelValue\":\"Iron Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Isamax Snacks\",\"primaryLabelValue\":\"Isamax Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"IssueTrak\",\"primaryLabelValue\":\"IssueTrak\"}},{\"attributeHeader\":{\"labelValue\":\"ISWest\",\"primaryLabelValue\":\"ISWest\"}},{\"attributeHeader\":{\"labelValue\":\"iSys\",\"primaryLabelValue\":\"iSys\"}},{\"attributeHeader\":{\"labelValue\":\"iTalent\",\"primaryLabelValue\":\"iTalent\"}},{\"attributeHeader\":{\"labelValue\":\"ITSolutions\",\"primaryLabelValue\":\"ITSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"J&S Tool\",\"primaryLabelValue\":\"J&S Tool\"}},{\"attributeHeader\":{\"labelValue\":\"J&T Coins\",\"primaryLabelValue\":\"J&T Coins\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Jacquette Consulting\",\"primaryLabelValue\":\"Jacquette Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Jarrett Logistics Systems\",\"primaryLabelValue\":\"Jarrett Logistics Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Jaster-Quintanilla\",\"primaryLabelValue\":\"Jaster-Quintanilla\"}},{\"attributeHeader\":{\"labelValue\":\"Jawood\",\"primaryLabelValue\":\"Jawood\"}},{\"attributeHeader\":{\"labelValue\":\"Jensen Audio Visual\",\"primaryLabelValue\":\"Jensen Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jiffy Lube\",\"primaryLabelValue\":\"Jiffy Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Jimenez Custom Painting\",\"primaryLabelValue\":\"Jimenez Custom Painting\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Jones Day\",\"primaryLabelValue\":\"Jones Day\"}},{\"attributeHeader\":{\"labelValue\":\"Journey Mexico\",\"primaryLabelValue\":\"Journey Mexico\"}},{\"attributeHeader\":{\"labelValue\":\"Juice Pharma Worldwide\",\"primaryLabelValue\":\"Juice Pharma Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Jump2 Group\",\"primaryLabelValue\":\"Jump2 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jung's Trucking\",\"primaryLabelValue\":\"Jung's Trucking\"}},{\"attributeHeader\":{\"labelValue\":\"Just Marketing International\",\"primaryLabelValue\":\"Just Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Kansas City Home Care\",\"primaryLabelValue\":\"Kansas City Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Kapnick Insurance Group\",\"primaryLabelValue\":\"Kapnick Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"KAYA Associates\",\"primaryLabelValue\":\"KAYA Associates\"}},{\"attributeHeader\":{\"labelValue\":\"KaZaK Composites\",\"primaryLabelValue\":\"KaZaK Composites\"}},{\"attributeHeader\":{\"labelValue\":\"KBK Technologies\",\"primaryLabelValue\":\"KBK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Keating Magee Marketing Communications\",\"primaryLabelValue\":\"Keating Magee Marketing Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Capital Properties\",\"primaryLabelValue\":\"Keller Williams Capital Properties\"}},{\"attributeHeader\":{\"labelValue\":\"Kenosia Construction\",\"primaryLabelValue\":\"Kenosia Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Kerusso\",\"primaryLabelValue\":\"Kerusso\"}},{\"attributeHeader\":{\"labelValue\":\"Keste\",\"primaryLabelValue\":\"Keste\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kim and Scott's Gourmet Pretzels\",\"primaryLabelValue\":\"Kim and Scott's Gourmet Pretzels\"}},{\"attributeHeader\":{\"labelValue\":\"King & Spalding\",\"primaryLabelValue\":\"King & Spalding\"}},{\"attributeHeader\":{\"labelValue\":\"KleenMark\",\"primaryLabelValue\":\"KleenMark\"}},{\"attributeHeader\":{\"labelValue\":\"kmG Hauling\",\"primaryLabelValue\":\"kmG Hauling\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Technologies\",\"primaryLabelValue\":\"Knight Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Knock Knock\",\"primaryLabelValue\":\"Knock Knock\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Infusion\",\"primaryLabelValue\":\"Knowledge Infusion\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge United\",\"primaryLabelValue\":\"Knowledge United\"}},{\"attributeHeader\":{\"labelValue\":\"Kobie Marketing\",\"primaryLabelValue\":\"Kobie Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kraus Commercial Roofing\",\"primaryLabelValue\":\"Kraus Commercial Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Kum & Go\",\"primaryLabelValue\":\"Kum & Go\"}},{\"attributeHeader\":{\"labelValue\":\"LabConnect\",\"primaryLabelValue\":\"LabConnect\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert Vet Supply\",\"primaryLabelValue\":\"Lambert Vet Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Lambert, Edwards & Associates\",\"primaryLabelValue\":\"Lambert, Edwards & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Language Line Services\",\"primaryLabelValue\":\"Language Line Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laritech\",\"primaryLabelValue\":\"Laritech\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Spine Institute\",\"primaryLabelValue\":\"Laser Spine Institute\"}},{\"attributeHeader\":{\"labelValue\":\"LaserGifts\",\"primaryLabelValue\":\"LaserGifts\"}},{\"attributeHeader\":{\"labelValue\":\"LasX Industries\",\"primaryLabelValue\":\"LasX Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Latisys\",\"primaryLabelValue\":\"Latisys\"}},{\"attributeHeader\":{\"labelValue\":\"Latshaw Drilling & Exploration\",\"primaryLabelValue\":\"Latshaw Drilling & Exploration\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"Lawyer Trane\",\"primaryLabelValue\":\"Lawyer Trane\"}},{\"attributeHeader\":{\"labelValue\":\"Layla Grayce\",\"primaryLabelValue\":\"Layla Grayce\"}},{\"attributeHeader\":{\"labelValue\":\"LeadDog Marketing Group\",\"primaryLabelValue\":\"LeadDog Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Leader Bank\",\"primaryLabelValue\":\"Leader Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Interactive\",\"primaryLabelValue\":\"LeapFrog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Learning Evolution\",\"primaryLabelValue\":\"Learning Evolution\"}},{\"attributeHeader\":{\"labelValue\":\"LearningRx\",\"primaryLabelValue\":\"LearningRx\"}},{\"attributeHeader\":{\"labelValue\":\"LearnSomething\",\"primaryLabelValue\":\"LearnSomething\"}},{\"attributeHeader\":{\"labelValue\":\"LetterLogic\",\"primaryLabelValue\":\"LetterLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Tree Service\",\"primaryLabelValue\":\"Lewis Tree Service\"}},{\"attributeHeader\":{\"labelValue\":\"Lexco Cable\",\"primaryLabelValue\":\"Lexco Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Lexington Design + Fabrication\",\"primaryLabelValue\":\"Lexington Design + Fabrication\"}},{\"attributeHeader\":{\"labelValue\":\"LibreDigital\",\"primaryLabelValue\":\"LibreDigital\"}},{\"attributeHeader\":{\"labelValue\":\"Libsys\",\"primaryLabelValue\":\"Libsys\"}},{\"attributeHeader\":{\"labelValue\":\"LifeScript\",\"primaryLabelValue\":\"LifeScript\"}},{\"attributeHeader\":{\"labelValue\":\"LightEdge Solutions\",\"primaryLabelValue\":\"LightEdge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lightspeed Systems\",\"primaryLabelValue\":\"Lightspeed Systems\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidAgents Healthcare\",\"primaryLabelValue\":\"LiquidAgents Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidHub\",\"primaryLabelValue\":\"LiquidHub\"}},{\"attributeHeader\":{\"labelValue\":\"LiquidSpoke\",\"primaryLabelValue\":\"LiquidSpoke\"}},{\"attributeHeader\":{\"labelValue\":\"Littler Mendelson\",\"primaryLabelValue\":\"Littler Mendelson\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"LMR Solutions\",\"primaryLabelValue\":\"LMR Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Locke Lord Bissell & Liddell\",\"primaryLabelValue\":\"Locke Lord Bissell & Liddell\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"Lokion\",\"primaryLabelValue\":\"Lokion\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Glass Technologies\",\"primaryLabelValue\":\"M3 Glass Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magazines.com\",\"primaryLabelValue\":\"Magazines.com\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"MAIC\",\"primaryLabelValue\":\"MAIC\"}},{\"attributeHeader\":{\"labelValue\":\"Management Solutions\",\"primaryLabelValue\":\"Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Manatt, Phelps & Phillips\",\"primaryLabelValue\":\"Manatt, Phelps & Phillips\"}},{\"attributeHeader\":{\"labelValue\":\"Manifest Digital\",\"primaryLabelValue\":\"Manifest Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Man-Machine Systems Assessment\",\"primaryLabelValue\":\"Man-Machine Systems Assessment\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Maple Systems\",\"primaryLabelValue\":\"Maple Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Maritime International\",\"primaryLabelValue\":\"Maritime International\"}},{\"attributeHeader\":{\"labelValue\":\"Market Force Information\",\"primaryLabelValue\":\"Market Force Information\"}},{\"attributeHeader\":{\"labelValue\":\"Market Probe\",\"primaryLabelValue\":\"Market Probe\"}},{\"attributeHeader\":{\"labelValue\":\"MarketLeverage Interactive Advertising\",\"primaryLabelValue\":\"MarketLeverage Interactive Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Marstel-Day\",\"primaryLabelValue\":\"Marstel-Day\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Dawes Analytics\",\"primaryLabelValue\":\"Martin Dawes Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MAS Medical Staffing\",\"primaryLabelValue\":\"MAS Medical Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Masterfit Medical Supply\",\"primaryLabelValue\":\"Masterfit Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"MaxEmail\",\"primaryLabelValue\":\"MaxEmail\"}},{\"attributeHeader\":{\"labelValue\":\"MaxVision\",\"primaryLabelValue\":\"MaxVision\"}},{\"attributeHeader\":{\"labelValue\":\"Mazzone Management Group\",\"primaryLabelValue\":\"Mazzone Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"MC Sign\",\"primaryLabelValue\":\"MC Sign\"}},{\"attributeHeader\":{\"labelValue\":\"MCAD Technologies\",\"primaryLabelValue\":\"MCAD Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"McElvain Oil & Gas Properties\",\"primaryLabelValue\":\"McElvain Oil & Gas Properties\"}},{\"attributeHeader\":{\"labelValue\":\"McGovern Physical Therapy Associates\",\"primaryLabelValue\":\"McGovern Physical Therapy Associates\"}},{\"attributeHeader\":{\"labelValue\":\"McGuireWoods\",\"primaryLabelValue\":\"McGuireWoods\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Group\",\"primaryLabelValue\":\"McKinley Group\"}},{\"attributeHeader\":{\"labelValue\":\"McMurry\",\"primaryLabelValue\":\"McMurry\"}},{\"attributeHeader\":{\"labelValue\":\"MCR\",\"primaryLabelValue\":\"MCR\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MED3000\",\"primaryLabelValue\":\"MED3000\"}},{\"attributeHeader\":{\"labelValue\":\"MedExpress Pharmacy\",\"primaryLabelValue\":\"MedExpress Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"MediaMind\",\"primaryLabelValue\":\"MediaMind\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Packaging\",\"primaryLabelValue\":\"Medical Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Present Value\",\"primaryLabelValue\":\"Medical Present Value\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"Medrec\",\"primaryLabelValue\":\"Medrec\"}},{\"attributeHeader\":{\"labelValue\":\"MedThink Communications\",\"primaryLabelValue\":\"MedThink Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Meeting Alliance\",\"primaryLabelValue\":\"Meeting Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Mellace Family Brands\",\"primaryLabelValue\":\"Mellace Family Brands\"}},{\"attributeHeader\":{\"labelValue\":\"Member Solutions\",\"primaryLabelValue\":\"Member Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Menlo Innovations\",\"primaryLabelValue\":\"Menlo Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Imaging Solutions\",\"primaryLabelValue\":\"Meridian Imaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"meridianEMR\",\"primaryLabelValue\":\"meridianEMR\"}},{\"attributeHeader\":{\"labelValue\":\"Metastorm\",\"primaryLabelValue\":\"Metastorm\"}},{\"attributeHeader\":{\"labelValue\":\"MetroStar Systems\",\"primaryLabelValue\":\"MetroStar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Microcom Technologies\",\"primaryLabelValue\":\"Microcom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIG\",\"primaryLabelValue\":\"MIG\"}},{\"attributeHeader\":{\"labelValue\":\"Miles-McClellan Construction\",\"primaryLabelValue\":\"Miles-McClellan Construction\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"mindSHIFT Technologies\",\"primaryLabelValue\":\"mindSHIFT Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner Houston\",\"primaryLabelValue\":\"Miner Houston\"}},{\"attributeHeader\":{\"labelValue\":\"Miron Construction\",\"primaryLabelValue\":\"Miron Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Monin\",\"primaryLabelValue\":\"Monin\"}},{\"attributeHeader\":{\"labelValue\":\"Moochie\",\"primaryLabelValue\":\"Moochie\"}},{\"attributeHeader\":{\"labelValue\":\"Moody Nolan\",\"primaryLabelValue\":\"Moody Nolan\"}},{\"attributeHeader\":{\"labelValue\":\"Moore & Van Allen\",\"primaryLabelValue\":\"Moore & Van Allen\"}},{\"attributeHeader\":{\"labelValue\":\"MoreVisibility\",\"primaryLabelValue\":\"MoreVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Mosaica Education\",\"primaryLabelValue\":\"Mosaica Education\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MResult\",\"primaryLabelValue\":\"MResult\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"MTCI\",\"primaryLabelValue\":\"MTCI\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Namaste Solar Electric\",\"primaryLabelValue\":\"Namaste Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Narragansett Brewing\",\"primaryLabelValue\":\"Narragansett Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"National Asset Recovery Services\",\"primaryLabelValue\":\"National Asset Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"National Electronic Attachment\",\"primaryLabelValue\":\"National Electronic Attachment\"}},{\"attributeHeader\":{\"labelValue\":\"National Energy Control\",\"primaryLabelValue\":\"National Energy Control\"}},{\"attributeHeader\":{\"labelValue\":\"National Link\",\"primaryLabelValue\":\"National Link\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Nationwide Payment Solutions\",\"primaryLabelValue\":\"Nationwide Payment Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Natural Way Lawn and Tree\",\"primaryLabelValue\":\"Natural Way Lawn and Tree\"}},{\"attributeHeader\":{\"labelValue\":\"Navarro Research and Engineering\",\"primaryLabelValue\":\"Navarro Research and Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Navicus\",\"primaryLabelValue\":\"Navicus\"}},{\"attributeHeader\":{\"labelValue\":\"nCircle\",\"primaryLabelValue\":\"nCircle\"}},{\"attributeHeader\":{\"labelValue\":\"Neibauer Dental\",\"primaryLabelValue\":\"Neibauer Dental\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Mullins Riley & Scarborough\",\"primaryLabelValue\":\"Nelson Mullins Riley & Scarborough\"}},{\"attributeHeader\":{\"labelValue\":\"Net Optics\",\"primaryLabelValue\":\"Net Optics\"}},{\"attributeHeader\":{\"labelValue\":\"NET Systems\",\"primaryLabelValue\":\"NET Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"NETE\",\"primaryLabelValue\":\"NETE\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetPlanner Systems\",\"primaryLabelValue\":\"NetPlanner Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NetSpend\",\"primaryLabelValue\":\"NetSpend\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NetVision Resources\",\"primaryLabelValue\":\"NetVision Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Network Infrastructure Technologies\",\"primaryLabelValue\":\"Network Infrastructure Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Networking for Future\",\"primaryLabelValue\":\"Networking for Future\"}},{\"attributeHeader\":{\"labelValue\":\"Neudesic\",\"primaryLabelValue\":\"Neudesic\"}},{\"attributeHeader\":{\"labelValue\":\"Neumann Systems Group\",\"primaryLabelValue\":\"Neumann Systems Group\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Belgium Brewing\",\"primaryLabelValue\":\"New Belgium Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New England Medical Transcription\",\"primaryLabelValue\":\"New England Medical Transcription\"}},{\"attributeHeader\":{\"labelValue\":\"New England Natural Bakers\",\"primaryLabelValue\":\"New England Natural Bakers\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Gateway\",\"primaryLabelValue\":\"New Media Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"NewAgeSys\",\"primaryLabelValue\":\"NewAgeSys\"}},{\"attributeHeader\":{\"labelValue\":\"NewsGator\",\"primaryLabelValue\":\"NewsGator\"}},{\"attributeHeader\":{\"labelValue\":\"Newsways Services\",\"primaryLabelValue\":\"Newsways Services\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nexcess.net\",\"primaryLabelValue\":\"Nexcess.net\"}},{\"attributeHeader\":{\"labelValue\":\"NikSoft Systems\",\"primaryLabelValue\":\"NikSoft Systems\"}},{\"attributeHeader\":{\"labelValue\":\"NimbleUser\",\"primaryLabelValue\":\"NimbleUser\"}},{\"attributeHeader\":{\"labelValue\":\"Niner Bikes\",\"primaryLabelValue\":\"Niner Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"nLight\",\"primaryLabelValue\":\"nLight\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NMR Consulting\",\"primaryLabelValue\":\"NMR Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Non-Public Educational Services\",\"primaryLabelValue\":\"Non-Public Educational Services\"}},{\"attributeHeader\":{\"labelValue\":\"Norman's Gift Shops\",\"primaryLabelValue\":\"Norman's Gift Shops\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"North Wind\",\"primaryLabelValue\":\"North Wind\"}},{\"attributeHeader\":{\"labelValue\":\"Northern Building Products\",\"primaryLabelValue\":\"Northern Building Products\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Logistics\",\"primaryLabelValue\":\"Northwest Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"NouvEON\",\"primaryLabelValue\":\"NouvEON\"}},{\"attributeHeader\":{\"labelValue\":\"Nova USA Wood Products\",\"primaryLabelValue\":\"Nova USA Wood Products\"}},{\"attributeHeader\":{\"labelValue\":\"NPI Solutions\",\"primaryLabelValue\":\"NPI Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NSK\",\"primaryLabelValue\":\"NSK\"}},{\"attributeHeader\":{\"labelValue\":\"NSTAR Global Services\",\"primaryLabelValue\":\"NSTAR Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutiva\",\"primaryLabelValue\":\"Nutiva\"}},{\"attributeHeader\":{\"labelValue\":\"NWN\",\"primaryLabelValue\":\"NWN\"}},{\"attributeHeader\":{\"labelValue\":\"O2 Fitness Clubs\",\"primaryLabelValue\":\"O2 Fitness Clubs\"}},{\"attributeHeader\":{\"labelValue\":\"Obtiva\",\"primaryLabelValue\":\"Obtiva\"}},{\"attributeHeader\":{\"labelValue\":\"Octagon Research Solutions\",\"primaryLabelValue\":\"Octagon Research Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Beacon\",\"primaryLabelValue\":\"Office Beacon\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"OFS Solutions\",\"primaryLabelValue\":\"OFS Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"OMG National\",\"primaryLabelValue\":\"OMG National\"}},{\"attributeHeader\":{\"labelValue\":\"One Source Talent\",\"primaryLabelValue\":\"One Source Talent\"}},{\"attributeHeader\":{\"labelValue\":\"O'Neil & Associates\",\"primaryLabelValue\":\"O'Neil & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"ONLC Training Centers\",\"primaryLabelValue\":\"ONLC Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems Technologies\",\"primaryLabelValue\":\"Open Systems Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Synthesis\",\"primaryLabelValue\":\"Optimal Synthesis\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMech\",\"primaryLabelValue\":\"OptiMech\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OSAM Document Solutions\",\"primaryLabelValue\":\"OSAM Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outdoor Motor Sports\",\"primaryLabelValue\":\"Outdoor Motor Sports\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Ovations Food Services\",\"primaryLabelValue\":\"Ovations Food Services\"}},{\"attributeHeader\":{\"labelValue\":\"Overture Partners\",\"primaryLabelValue\":\"Overture Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pace Computer Solutions\",\"primaryLabelValue\":\"Pace Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Software Publishing\",\"primaryLabelValue\":\"Pacific Software Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Padilla Construction Services\",\"primaryLabelValue\":\"Padilla Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pallet Central Enterprises\",\"primaryLabelValue\":\"Pallet Central Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Palm Beach Tan\",\"primaryLabelValue\":\"Palm Beach Tan\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Corporate Housing\",\"primaryLabelValue\":\"Paragon Corporate Housing\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paramount Technologies\",\"primaryLabelValue\":\"Paramount Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health\",\"primaryLabelValue\":\"Passport Health\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Patel Consultants\",\"primaryLabelValue\":\"Patel Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Pathmark Transportation\",\"primaryLabelValue\":\"Pathmark Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"PatioShoppers.com\",\"primaryLabelValue\":\"PatioShoppers.com\"}},{\"attributeHeader\":{\"labelValue\":\"Patrick Henry Creative Promotions\",\"primaryLabelValue\":\"Patrick Henry Creative Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Patterson Belknap Webb & Tyler\",\"primaryLabelValue\":\"Patterson Belknap Webb & Tyler\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Hastings, Janofsky & Walker\",\"primaryLabelValue\":\"Paul, Hastings, Janofsky & Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\",\"primaryLabelValue\":\"Paul, Weiss, Rifkind, Wharton & Garrison\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"Paylocity\",\"primaryLabelValue\":\"Paylocity\"}},{\"attributeHeader\":{\"labelValue\":\"PCD Group\",\"primaryLabelValue\":\"PCD Group\"}},{\"attributeHeader\":{\"labelValue\":\"PCN Network\",\"primaryLabelValue\":\"PCN Network\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Auto Racing Supplies\",\"primaryLabelValue\":\"Pegasus Auto Racing Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"Pelican Products\",\"primaryLabelValue\":\"Pelican Products\"}},{\"attributeHeader\":{\"labelValue\":\"Peloton Advantage\",\"primaryLabelValue\":\"Peloton Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Pensco Trust\",\"primaryLabelValue\":\"Pensco Trust\"}},{\"attributeHeader\":{\"labelValue\":\"Pentec Health\",\"primaryLabelValue\":\"Pentec Health\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleAdmin\",\"primaryLabelValue\":\"PeopleAdmin\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleTec\",\"primaryLabelValue\":\"PeopleTec\"}},{\"attributeHeader\":{\"labelValue\":\"PepperDash Technology\",\"primaryLabelValue\":\"PepperDash Technology\"}},{\"attributeHeader\":{\"labelValue\":\"PERI\",\"primaryLabelValue\":\"PERI\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter E-Security\",\"primaryLabelValue\":\"Perimeter E-Security\"}},{\"attributeHeader\":{\"labelValue\":\"Perimeter Technology\",\"primaryLabelValue\":\"Perimeter Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Peritus\",\"primaryLabelValue\":\"Peritus\"}},{\"attributeHeader\":{\"labelValue\":\"Petrus Brands\",\"primaryLabelValue\":\"Petrus Brands\"}},{\"attributeHeader\":{\"labelValue\":\"PetSafe\",\"primaryLabelValue\":\"PetSafe\"}},{\"attributeHeader\":{\"labelValue\":\"Pfister Energy\",\"primaryLabelValue\":\"Pfister Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Phillips Painting\",\"primaryLabelValue\":\"Phillips Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Integration\",\"primaryLabelValue\":\"Phoenix Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Photon Infotech\",\"primaryLabelValue\":\"Photon Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Picis\",\"primaryLabelValue\":\"Picis\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Technical Resources\",\"primaryLabelValue\":\"Pinnacle Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Piston Group\",\"primaryLabelValue\":\"Piston Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Technologies\",\"primaryLabelValue\":\"Plan B Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Plano-Coudon\",\"primaryLabelValue\":\"Plano-Coudon\"}},{\"attributeHeader\":{\"labelValue\":\"PLCs Plus International\",\"primaryLabelValue\":\"PLCs Plus International\"}},{\"attributeHeader\":{\"labelValue\":\"Plenus Group\",\"primaryLabelValue\":\"Plenus Group\"}},{\"attributeHeader\":{\"labelValue\":\"Plus One Health Management\",\"primaryLabelValue\":\"Plus One Health Management\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Direct\",\"primaryLabelValue\":\"Polaris Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Portable Church Industries\",\"primaryLabelValue\":\"Portable Church Industries\"}},{\"attributeHeader\":{\"labelValue\":\"PostcardMania\",\"primaryLabelValue\":\"PostcardMania\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Power Equipment Direct\",\"primaryLabelValue\":\"Power Equipment Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Power Home Technologies\",\"primaryLabelValue\":\"Power Home Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PowerON Services\",\"primaryLabelValue\":\"PowerON Services\"}},{\"attributeHeader\":{\"labelValue\":\"Practical Computer Applications\",\"primaryLabelValue\":\"Practical Computer Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Practice Management Center\",\"primaryLabelValue\":\"Practice Management Center\"}},{\"attributeHeader\":{\"labelValue\":\"PreCash\",\"primaryLabelValue\":\"PreCash\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Flow Technologies\",\"primaryLabelValue\":\"Precision Flow Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Solutions\",\"primaryLabelValue\":\"Preferred Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preludesys\",\"primaryLabelValue\":\"Preludesys\"}},{\"attributeHeader\":{\"labelValue\":\"Premier BPO\",\"primaryLabelValue\":\"Premier BPO\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"PrintFlex Graphics\",\"primaryLabelValue\":\"PrintFlex Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prisma Graphic\",\"primaryLabelValue\":\"Prisma Graphic\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Processes Unlimited International\",\"primaryLabelValue\":\"Processes Unlimited International\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Builders Supply\",\"primaryLabelValue\":\"Professional Builders Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Contractors Services\",\"primaryLabelValue\":\"Professional Contractors Services\"}},{\"attributeHeader\":{\"labelValue\":\"Project Development Services\",\"primaryLabelValue\":\"Project Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Projility\",\"primaryLabelValue\":\"Projility\"}},{\"attributeHeader\":{\"labelValue\":\"Prometheus Laboratories\",\"primaryLabelValue\":\"Prometheus Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"ProSites\",\"primaryLabelValue\":\"ProSites\"}},{\"attributeHeader\":{\"labelValue\":\"Proto Labs\",\"primaryLabelValue\":\"Proto Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Providea Conferencing\",\"primaryLabelValue\":\"Providea Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"PSP & Digital\",\"primaryLabelValue\":\"PSP & Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Purchasing Power\",\"primaryLabelValue\":\"Purchasing Power\"}},{\"attributeHeader\":{\"labelValue\":\"PureSafety\",\"primaryLabelValue\":\"PureSafety\"}},{\"attributeHeader\":{\"labelValue\":\"Puritan Products\",\"primaryLabelValue\":\"Puritan Products\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Consulting\",\"primaryLabelValue\":\"Pyramid Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramid Services\",\"primaryLabelValue\":\"Pyramid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramyd Air\",\"primaryLabelValue\":\"Pyramyd Air\"}},{\"attributeHeader\":{\"labelValue\":\"QED National\",\"primaryLabelValue\":\"QED National\"}},{\"attributeHeader\":{\"labelValue\":\"Qortex\",\"primaryLabelValue\":\"Qortex\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Qualys\",\"primaryLabelValue\":\"Qualys\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quarles & Brady\",\"primaryLabelValue\":\"Quarles & Brady\"}},{\"attributeHeader\":{\"labelValue\":\"Quickcomm Software Solutions\",\"primaryLabelValue\":\"Quickcomm Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R Square\",\"primaryLabelValue\":\"R Square\"}},{\"attributeHeader\":{\"labelValue\":\"R.W. Garcia\",\"primaryLabelValue\":\"R.W. Garcia\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"RailComm\",\"primaryLabelValue\":\"RailComm\"}},{\"attributeHeader\":{\"labelValue\":\"Raising Cane's Chicken Fingers\",\"primaryLabelValue\":\"Raising Cane's Chicken Fingers\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Product Development Group\",\"primaryLabelValue\":\"Rapid Product Development Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"RDG Planning & Design\",\"primaryLabelValue\":\"RDG Planning & Design\"}},{\"attributeHeader\":{\"labelValue\":\"RDK Engineers\",\"primaryLabelValue\":\"RDK Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"Red Book Solutions\",\"primaryLabelValue\":\"Red Book Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Redemption Plus\",\"primaryLabelValue\":\"Redemption Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Redpepper\",\"primaryLabelValue\":\"Redpepper\"}},{\"attributeHeader\":{\"labelValue\":\"Regenesis Biomedical\",\"primaryLabelValue\":\"Regenesis Biomedical\"}},{\"attributeHeader\":{\"labelValue\":\"RehabAbilities\",\"primaryLabelValue\":\"RehabAbilities\"}},{\"attributeHeader\":{\"labelValue\":\"Reichard Staffing\",\"primaryLabelValue\":\"Reichard Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Comfort\",\"primaryLabelValue\":\"Reliable Comfort\"}},{\"attributeHeader\":{\"labelValue\":\"Relocation.com\",\"primaryLabelValue\":\"Relocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Renters Warehouse\",\"primaryLabelValue\":\"Renters Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (FL)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (MS)\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Return Path\",\"primaryLabelValue\":\"Return Path\"}},{\"attributeHeader\":{\"labelValue\":\"RevereIT\",\"primaryLabelValue\":\"RevereIT\"}},{\"attributeHeader\":{\"labelValue\":\"Revolution Prep\",\"primaryLabelValue\":\"Revolution Prep\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RHG Group\",\"primaryLabelValue\":\"RHG Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rhythmlink International\",\"primaryLabelValue\":\"Rhythmlink International\"}},{\"attributeHeader\":{\"labelValue\":\"RightStar\",\"primaryLabelValue\":\"RightStar\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"RigPower\",\"primaryLabelValue\":\"RigPower\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun Farms\",\"primaryLabelValue\":\"Rising Sun Farms\"}},{\"attributeHeader\":{\"labelValue\":\"RMI\",\"primaryLabelValue\":\"RMI\"}},{\"attributeHeader\":{\"labelValue\":\"Robanda International\",\"primaryLabelValue\":\"Robanda International\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"RockCorps\",\"primaryLabelValue\":\"RockCorps\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rockhouse Bar\",\"primaryLabelValue\":\"Rockhouse Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Rocky Mountain Sanitation\",\"primaryLabelValue\":\"Rocky Mountain Sanitation\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ropes & Gray\",\"primaryLabelValue\":\"Ropes & Gray\"}},{\"attributeHeader\":{\"labelValue\":\"Ross Mortgage\",\"primaryLabelValue\":\"Ross Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"Rowpar Pharmaceuticals\",\"primaryLabelValue\":\"Rowpar Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Electric\",\"primaryLabelValue\":\"Rumsey Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Rumsey Engineers\",\"primaryLabelValue\":\"Rumsey Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"S and Y Industries\",\"primaryLabelValue\":\"S and Y Industries\"}},{\"attributeHeader\":{\"labelValue\":\"S3\",\"primaryLabelValue\":\"S3\"}},{\"attributeHeader\":{\"labelValue\":\"Safeguard Properties\",\"primaryLabelValue\":\"Safeguard Properties\"}},{\"attributeHeader\":{\"labelValue\":\"SafeNet\",\"primaryLabelValue\":\"SafeNet\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Technology International\",\"primaryLabelValue\":\"Safety Technology International\"}},{\"attributeHeader\":{\"labelValue\":\"Sanger & Eby\",\"primaryLabelValue\":\"Sanger & Eby\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Savannah Bee\",\"primaryLabelValue\":\"Savannah Bee\"}},{\"attributeHeader\":{\"labelValue\":\"SB&B Foods\",\"primaryLabelValue\":\"SB&B Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SC&H Group\",\"primaryLabelValue\":\"SC&H Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schermer Kuehl\",\"primaryLabelValue\":\"Schermer Kuehl\"}},{\"attributeHeader\":{\"labelValue\":\"Schiff Hardin\",\"primaryLabelValue\":\"Schiff Hardin\"}},{\"attributeHeader\":{\"labelValue\":\"Schipul\",\"primaryLabelValue\":\"Schipul\"}},{\"attributeHeader\":{\"labelValue\":\"Schultz and Summers Engineering\",\"primaryLabelValue\":\"Schultz and Summers Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ScripNet\",\"primaryLabelValue\":\"ScripNet\"}},{\"attributeHeader\":{\"labelValue\":\"SDLC Partners\",\"primaryLabelValue\":\"SDLC Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeaSpine\",\"primaryLabelValue\":\"SeaSpine\"}},{\"attributeHeader\":{\"labelValue\":\"Seaway Printing\",\"primaryLabelValue\":\"Seaway Printing\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security Card Services\",\"primaryLabelValue\":\"Security Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Security Management Consulting\",\"primaryLabelValue\":\"Security Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Sedgwick, Detert, Moran & Arnold\",\"primaryLabelValue\":\"Sedgwick, Detert, Moran & Arnold\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"SEI Boston\",\"primaryLabelValue\":\"SEI Boston\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Selerant\",\"primaryLabelValue\":\"Selerant\"}},{\"attributeHeader\":{\"labelValue\":\"Semper Home Loans\",\"primaryLabelValue\":\"Semper Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Senn Dunn Insurance\",\"primaryLabelValue\":\"Senn Dunn Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Senovva\",\"primaryLabelValue\":\"Senovva\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"Serpa Packaging Solutions\",\"primaryLabelValue\":\"Serpa Packaging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Service Express\",\"primaryLabelValue\":\"Service Express\"}},{\"attributeHeader\":{\"labelValue\":\"ServiceForce\",\"primaryLabelValue\":\"ServiceForce\"}},{\"attributeHeader\":{\"labelValue\":\"Servigistics\",\"primaryLabelValue\":\"Servigistics\"}},{\"attributeHeader\":{\"labelValue\":\"SES Advisors\",\"primaryLabelValue\":\"SES Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Sewell Direct\",\"primaryLabelValue\":\"Sewell Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Seyfarth Shaw\",\"primaryLabelValue\":\"Seyfarth Shaw\"}},{\"attributeHeader\":{\"labelValue\":\"SGA Group\",\"primaryLabelValue\":\"SGA Group\"}},{\"attributeHeader\":{\"labelValue\":\"SGIS\",\"primaryLabelValue\":\"SGIS\"}},{\"attributeHeader\":{\"labelValue\":\"Shannon & Wilson\",\"primaryLabelValue\":\"Shannon & Wilson\"}},{\"attributeHeader\":{\"labelValue\":\"Sharper Impressions Painting\",\"primaryLabelValue\":\"Sharper Impressions Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Sheppard, Mullin, Richter & Hampton\",\"primaryLabelValue\":\"Sheppard, Mullin, Richter & Hampton\"}},{\"attributeHeader\":{\"labelValue\":\"Shoptech Industrial Software\",\"primaryLabelValue\":\"Shoptech Industrial Software\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"ShuBee\",\"primaryLabelValue\":\"ShuBee\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Nevada\",\"primaryLabelValue\":\"Sierra Nevada\"}},{\"attributeHeader\":{\"labelValue\":\"Silicon Forest Electronics\",\"primaryLabelValue\":\"Silicon Forest Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SilverTech\",\"primaryLabelValue\":\"SilverTech\"}},{\"attributeHeader\":{\"labelValue\":\"simpleview\",\"primaryLabelValue\":\"simpleview\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Siren Interactive\",\"primaryLabelValue\":\"Siren Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Sitewire\",\"primaryLabelValue\":\"Sitewire\"}},{\"attributeHeader\":{\"labelValue\":\"Skadden, Arps, Slate, Meagher & Flom\",\"primaryLabelValue\":\"Skadden, Arps, Slate, Meagher & Flom\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"SLM - Facility Solutions Nationwide\",\"primaryLabelValue\":\"SLM - Facility Solutions Nationwide\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Destinations\",\"primaryLabelValue\":\"Smart Destinations\"}},{\"attributeHeader\":{\"labelValue\":\"Smart IMS\",\"primaryLabelValue\":\"Smart IMS\"}},{\"attributeHeader\":{\"labelValue\":\"Smarter Security Systems\",\"primaryLabelValue\":\"Smarter Security Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Brands Group\",\"primaryLabelValue\":\"Smile Brands Group\"}},{\"attributeHeader\":{\"labelValue\":\"Smith-Dahmer Associates\",\"primaryLabelValue\":\"Smith-Dahmer Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Smith's Machine\",\"primaryLabelValue\":\"Smith's Machine\"}},{\"attributeHeader\":{\"labelValue\":\"Snack Factory\",\"primaryLabelValue\":\"Snack Factory\"}},{\"attributeHeader\":{\"labelValue\":\"Snapcab By Bostock\",\"primaryLabelValue\":\"Snapcab By Bostock\"}},{\"attributeHeader\":{\"labelValue\":\"SNL Financial\",\"primaryLabelValue\":\"SNL Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Software Transformations\",\"primaryLabelValue\":\"Software Transformations\"}},{\"attributeHeader\":{\"labelValue\":\"SoftWriters\",\"primaryLabelValue\":\"SoftWriters\"}},{\"attributeHeader\":{\"labelValue\":\"Sole Supports\",\"primaryLabelValue\":\"Sole Supports\"}},{\"attributeHeader\":{\"labelValue\":\"Solid Earth\",\"primaryLabelValue\":\"Solid Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Solution Design Group\",\"primaryLabelValue\":\"Solution Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Southeast Media\",\"primaryLabelValue\":\"Southeast Media\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Prestige Industries\",\"primaryLabelValue\":\"Southern Prestige Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spark Public Relations\",\"primaryLabelValue\":\"Spark Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"SpectorSoft\",\"primaryLabelValue\":\"SpectorSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Human Resource Systems\",\"primaryLabelValue\":\"Spectrum Human Resource Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SpeechCycle\",\"primaryLabelValue\":\"SpeechCycle\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Sphere of Influence\",\"primaryLabelValue\":\"Sphere of Influence\"}},{\"attributeHeader\":{\"labelValue\":\"Spillman Technologies\",\"primaryLabelValue\":\"Spillman Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Splice Communications\",\"primaryLabelValue\":\"Splice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"SRSsoft\",\"primaryLabelValue\":\"SRSsoft\"}},{\"attributeHeader\":{\"labelValue\":\"SS&C Technologies Holdings\",\"primaryLabelValue\":\"SS&C Technologies Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"SSD Technology Partners\",\"primaryLabelValue\":\"SSD Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"SSi Furnishings\",\"primaryLabelValue\":\"SSi Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Staffing Plus\",\"primaryLabelValue\":\"Staffing Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Standing Dog Interactive\",\"primaryLabelValue\":\"Standing Dog Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Stanek Holdco\",\"primaryLabelValue\":\"Stanek Holdco\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"SteelCell of North America\",\"primaryLabelValue\":\"SteelCell of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Stellar Solutions\",\"primaryLabelValue\":\"Stellar Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"STG International\",\"primaryLabelValue\":\"STG International\"}},{\"attributeHeader\":{\"labelValue\":\"Stoltenberg Consulting\",\"primaryLabelValue\":\"Stoltenberg Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Stone Brewing\",\"primaryLabelValue\":\"Stone Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Storreytime\",\"primaryLabelValue\":\"Storreytime\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Staffing Solutions (Detroit, MI)\",\"primaryLabelValue\":\"Strategic Staffing Solutions (Detroit, MI)\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Structured Communication Systems\",\"primaryLabelValue\":\"Structured Communication Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Technology\",\"primaryLabelValue\":\"Summit Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Sunbelt Software\",\"primaryLabelValue\":\"Sunbelt Software\"}},{\"attributeHeader\":{\"labelValue\":\"Sundance Vacations\",\"primaryLabelValue\":\"Sundance Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Sundt Construction\",\"primaryLabelValue\":\"Sundt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Minting\",\"primaryLabelValue\":\"Sunshine Minting\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Press\",\"primaryLabelValue\":\"Superior Press\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Support Resources\",\"primaryLabelValue\":\"Superior Support Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sustainable Harvest Coffee Importers\",\"primaryLabelValue\":\"Sustainable Harvest Coffee Importers\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Swiger Coil Systems\",\"primaryLabelValue\":\"Swiger Coil Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Swiss Watch International\",\"primaryLabelValue\":\"Swiss Watch International\"}},{\"attributeHeader\":{\"labelValue\":\"Sygnetics\",\"primaryLabelValue\":\"Sygnetics\"}},{\"attributeHeader\":{\"labelValue\":\"SymbolArts\",\"primaryLabelValue\":\"SymbolArts\"}},{\"attributeHeader\":{\"labelValue\":\"Symetra Financial\",\"primaryLabelValue\":\"Symetra Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Synacor\",\"primaryLabelValue\":\"Synacor\"}},{\"attributeHeader\":{\"labelValue\":\"Synch-Solutions\",\"primaryLabelValue\":\"Synch-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&T Solutions\",\"primaryLabelValue\":\"T&T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T.B. Penick & Sons\",\"primaryLabelValue\":\"T.B. Penick & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"T2 Systems\",\"primaryLabelValue\":\"T2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TAJ Technologies\",\"primaryLabelValue\":\"TAJ Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Talyst\",\"primaryLabelValue\":\"Talyst\"}},{\"attributeHeader\":{\"labelValue\":\"TargetCast tcm\",\"primaryLabelValue\":\"TargetCast tcm\"}},{\"attributeHeader\":{\"labelValue\":\"Tastefully Simple\",\"primaryLabelValue\":\"Tastefully Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Tasty Catering\",\"primaryLabelValue\":\"Tasty Catering\"}},{\"attributeHeader\":{\"labelValue\":\"Tax Resolution Services\",\"primaryLabelValue\":\"Tax Resolution Services\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"Techead\",\"primaryLabelValue\":\"Techead\"}},{\"attributeHeader\":{\"labelValue\":\"Technatomy\",\"primaryLabelValue\":\"Technatomy\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Resource Group\",\"primaryLabelValue\":\"Technical Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Technosoft\",\"primaryLabelValue\":\"Technosoft\"}},{\"attributeHeader\":{\"labelValue\":\"TechSmith\",\"primaryLabelValue\":\"TechSmith\"}},{\"attributeHeader\":{\"labelValue\":\"TechSource\",\"primaryLabelValue\":\"TechSource\"}},{\"attributeHeader\":{\"labelValue\":\"TEK Microsystems\",\"primaryLabelValue\":\"TEK Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"Teksavers\",\"primaryLabelValue\":\"Teksavers\"}},{\"attributeHeader\":{\"labelValue\":\"Temporary Housing Directory\",\"primaryLabelValue\":\"Temporary Housing Directory\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Texsun Pools\",\"primaryLabelValue\":\"Texsun Pools\"}},{\"attributeHeader\":{\"labelValue\":\"That's Good HR\",\"primaryLabelValue\":\"That's Good HR\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Alternative Board\",\"primaryLabelValue\":\"The Alternative Board\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Coffee Bean & Tea Leaf\",\"primaryLabelValue\":\"The Coffee Bean & Tea Leaf\"}},{\"attributeHeader\":{\"labelValue\":\"The EMMES Corporation\",\"primaryLabelValue\":\"The EMMES Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Experts\",\"primaryLabelValue\":\"The Experts\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Market\",\"primaryLabelValue\":\"The Fresh Market\"}},{\"attributeHeader\":{\"labelValue\":\"The Glenture Group\",\"primaryLabelValue\":\"The Glenture Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Inspection Group\",\"primaryLabelValue\":\"The Inspection Group\"}},{\"attributeHeader\":{\"labelValue\":\"The James Group\",\"primaryLabelValue\":\"The James Group\"}},{\"attributeHeader\":{\"labelValue\":\"The LaSalle Network\",\"primaryLabelValue\":\"The LaSalle Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Lavidge Company\",\"primaryLabelValue\":\"The Lavidge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Leads Network\",\"primaryLabelValue\":\"The Leads Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Legacy Network\",\"primaryLabelValue\":\"The Legacy Network\"}},{\"attributeHeader\":{\"labelValue\":\"The List\",\"primaryLabelValue\":\"The List\"}},{\"attributeHeader\":{\"labelValue\":\"The Logic Group\",\"primaryLabelValue\":\"The Logic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Logistics Company\",\"primaryLabelValue\":\"The Logistics Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Macomb Group\",\"primaryLabelValue\":\"The Macomb Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Maslow Media Group\",\"primaryLabelValue\":\"The Maslow Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Matrix Companies\",\"primaryLabelValue\":\"The Matrix Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Maven Group\",\"primaryLabelValue\":\"The Maven Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Millennium Group\",\"primaryLabelValue\":\"The Millennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Newtron Group\",\"primaryLabelValue\":\"The Newtron Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Presidio Group\",\"primaryLabelValue\":\"The Presidio Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PTR Group\",\"primaryLabelValue\":\"The PTR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Royalty Network\",\"primaryLabelValue\":\"The Royalty Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Saxon Group\",\"primaryLabelValue\":\"The Saxon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Shams Group\",\"primaryLabelValue\":\"The Shams Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Wentwood Companies\",\"primaryLabelValue\":\"The Wentwood Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Tier 1 Performance Solutions\",\"primaryLabelValue\":\"Tier 1 Performance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Timbercon\",\"primaryLabelValue\":\"Timbercon\"}},{\"attributeHeader\":{\"labelValue\":\"Timeshare Relief\",\"primaryLabelValue\":\"Timeshare Relief\"}},{\"attributeHeader\":{\"labelValue\":\"Tire Group International\",\"primaryLabelValue\":\"Tire Group International\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"TitleVest\",\"primaryLabelValue\":\"TitleVest\"}},{\"attributeHeader\":{\"labelValue\":\"tmg-e*media\",\"primaryLabelValue\":\"tmg-e*media\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"TMW Systems\",\"primaryLabelValue\":\"TMW Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TOD\",\"primaryLabelValue\":\"TOD\"}},{\"attributeHeader\":{\"labelValue\":\"Today's Business Solutions\",\"primaryLabelValue\":\"Today's Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Tolunay-Wong Engineers\",\"primaryLabelValue\":\"Tolunay-Wong Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Topaz Systems\",\"primaryLabelValue\":\"Topaz Systems\"}},{\"attributeHeader\":{\"labelValue\":\"TopSpot Internet Marketing\",\"primaryLabelValue\":\"TopSpot Internet Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Total Medical Solutions\",\"primaryLabelValue\":\"Total Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Total Quality Logistics\",\"primaryLabelValue\":\"Total Quality Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Totally Tickets\",\"primaryLabelValue\":\"Totally Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"TransExpress\",\"primaryLabelValue\":\"TransExpress\"}},{\"attributeHeader\":{\"labelValue\":\"Transfinder\",\"primaryLabelValue\":\"Transfinder\"}},{\"attributeHeader\":{\"labelValue\":\"TransPerfect\",\"primaryLabelValue\":\"TransPerfect\"}},{\"attributeHeader\":{\"labelValue\":\"Transportation Insight\",\"primaryLabelValue\":\"Transportation Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Transtyle\",\"primaryLabelValue\":\"Transtyle\"}},{\"attributeHeader\":{\"labelValue\":\"Tree of Life Bookstores\",\"primaryLabelValue\":\"Tree of Life Bookstores\"}},{\"attributeHeader\":{\"labelValue\":\"Treo Solutions\",\"primaryLabelValue\":\"Treo Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Resources\",\"primaryLabelValue\":\"Triad Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Contract Management\",\"primaryLabelValue\":\"Trident Contract Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trilibis\",\"primaryLabelValue\":\"Trilibis\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Creek\",\"primaryLabelValue\":\"Triple Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Tristar Products\",\"primaryLabelValue\":\"Tristar Products\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TruPay\",\"primaryLabelValue\":\"TruPay\"}},{\"attributeHeader\":{\"labelValue\":\"Trusant Technologies\",\"primaryLabelValue\":\"Trusant Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tully Rinckey\",\"primaryLabelValue\":\"Tully Rinckey\"}},{\"attributeHeader\":{\"labelValue\":\"Turbocam\",\"primaryLabelValue\":\"Turbocam\"}},{\"attributeHeader\":{\"labelValue\":\"Turner Industries\",\"primaryLabelValue\":\"Turner Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Turning Technologies\",\"primaryLabelValue\":\"Turning Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Island Foods\",\"primaryLabelValue\":\"Turtle Island Foods\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Tax Advantage\",\"primaryLabelValue\":\"U.S. Tax Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Unidine\",\"primaryLabelValue\":\"Unidine\"}},{\"attributeHeader\":{\"labelValue\":\"United Data Technologies\",\"primaryLabelValue\":\"United Data Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"US Tech Solutions\",\"primaryLabelValue\":\"US Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US21\",\"primaryLabelValue\":\"US21\"}},{\"attributeHeader\":{\"labelValue\":\"USA Mortgage\",\"primaryLabelValue\":\"USA Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"User Insight\",\"primaryLabelValue\":\"User Insight\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Valir Health\",\"primaryLabelValue\":\"Valir Health\"}},{\"attributeHeader\":{\"labelValue\":\"VanderHouwen\",\"primaryLabelValue\":\"VanderHouwen\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"Vedicsoft\",\"primaryLabelValue\":\"Vedicsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Venable\",\"primaryLabelValue\":\"Venable\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vera Bradley\",\"primaryLabelValue\":\"Vera Bradley\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Engineering\",\"primaryLabelValue\":\"Veracity Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"VeriStor Systems\",\"primaryLabelValue\":\"VeriStor Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Verndale\",\"primaryLabelValue\":\"Verndale\"}},{\"attributeHeader\":{\"labelValue\":\"Verst Group\",\"primaryLabelValue\":\"Verst Group\"}},{\"attributeHeader\":{\"labelValue\":\"Verti-Crete\",\"primaryLabelValue\":\"Verti-Crete\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilan\",\"primaryLabelValue\":\"Vigilan\"}},{\"attributeHeader\":{\"labelValue\":\"Villa Fresh Italian Kitchen\",\"primaryLabelValue\":\"Villa Fresh Italian Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Graffiti\",\"primaryLabelValue\":\"Virtual Graffiti\"}},{\"attributeHeader\":{\"labelValue\":\"Visionet Systems\",\"primaryLabelValue\":\"Visionet Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Visp.net\",\"primaryLabelValue\":\"Visp.net\"}},{\"attributeHeader\":{\"labelValue\":\"Vista Window\",\"primaryLabelValue\":\"Vista Window\"}},{\"attributeHeader\":{\"labelValue\":\"VitaDigest.com\",\"primaryLabelValue\":\"VitaDigest.com\"}},{\"attributeHeader\":{\"labelValue\":\"Vitalize Consulting Solutions\",\"primaryLabelValue\":\"Vitalize Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Vladimir Jones\",\"primaryLabelValue\":\"Vladimir Jones\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Vosges Haut Chocolat\",\"primaryLabelValue\":\"Vosges Haut Chocolat\"}},{\"attributeHeader\":{\"labelValue\":\"Vozzcom\",\"primaryLabelValue\":\"Vozzcom\"}},{\"attributeHeader\":{\"labelValue\":\"VSoft\",\"primaryLabelValue\":\"VSoft\"}},{\"attributeHeader\":{\"labelValue\":\"VST Consulting\",\"primaryLabelValue\":\"VST Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"VXI Global Solutions\",\"primaryLabelValue\":\"VXI Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"WahlcoMetroflex\",\"primaryLabelValue\":\"WahlcoMetroflex\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wallace\",\"primaryLabelValue\":\"Wallace\"}},{\"attributeHeader\":{\"labelValue\":\"Wasatch Software\",\"primaryLabelValue\":\"Wasatch Software\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Direct\",\"primaryLabelValue\":\"Wave Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Wave Form Systems\",\"primaryLabelValue\":\"Wave Form Systems\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"Weather Decision Technologies\",\"primaryLabelValue\":\"Weather Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WebsiteBiz\",\"primaryLabelValue\":\"WebsiteBiz\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"West\",\"primaryLabelValue\":\"West\"}},{\"attributeHeader\":{\"labelValue\":\"Western Dovetail\",\"primaryLabelValue\":\"Western Dovetail\"}},{\"attributeHeader\":{\"labelValue\":\"Western Petroleum\",\"primaryLabelValue\":\"Western Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"WFN Strategies\",\"primaryLabelValue\":\"WFN Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"WhatSheBuys\",\"primaryLabelValue\":\"WhatSheBuys\"}},{\"attributeHeader\":{\"labelValue\":\"White & Case\",\"primaryLabelValue\":\"White & Case\"}},{\"attributeHeader\":{\"labelValue\":\"White Horse\",\"primaryLabelValue\":\"White Horse\"}},{\"attributeHeader\":{\"labelValue\":\"Whiteriver Construction\",\"primaryLabelValue\":\"Whiteriver Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Williams & Connolly\",\"primaryLabelValue\":\"Williams & Connolly\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Distribution\",\"primaryLabelValue\":\"Windy City Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless City\",\"primaryLabelValue\":\"Wireless City\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wiss, Janney, Elstner Associates\",\"primaryLabelValue\":\"Wiss, Janney, Elstner Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wittenberg Weiner Consulting\",\"primaryLabelValue\":\"Wittenberg Weiner Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WolfePak\",\"primaryLabelValue\":\"WolfePak\"}},{\"attributeHeader\":{\"labelValue\":\"Wonderland Enchanted Bakery\",\"primaryLabelValue\":\"Wonderland Enchanted Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"WorkSmart\",\"primaryLabelValue\":\"WorkSmart\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Travel Staffing\",\"primaryLabelValue\":\"Worldwide Travel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Wpromote\",\"primaryLabelValue\":\"Wpromote\"}},{\"attributeHeader\":{\"labelValue\":\"XCEND Group\",\"primaryLabelValue\":\"XCEND Group\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"XPO\",\"primaryLabelValue\":\"XPO\"}},{\"attributeHeader\":{\"labelValue\":\"Yellow Cab Company of Dallas Fort Worth\",\"primaryLabelValue\":\"Yellow Cab Company of Dallas Fort Worth\"}},{\"attributeHeader\":{\"labelValue\":\"Yerba Buena Engineering & Construction\",\"primaryLabelValue\":\"Yerba Buena Engineering & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zekiah Technologies\",\"primaryLabelValue\":\"Zekiah Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zillion Technologies\",\"primaryLabelValue\":\"Zillion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Zooom Printing\",\"primaryLabelValue\":\"Zooom Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Zoup! Fresh Soup\",\"primaryLabelValue\":\"Zoup! Fresh Soup\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 Postcards\",\"primaryLabelValue\":\"1-800 Postcards\"}},{\"attributeHeader\":{\"labelValue\":\"2HB Software Designs\",\"primaryLabelValue\":\"2HB Software Designs\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"4th Source\",\"primaryLabelValue\":\"4th Source\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"90octane\",\"primaryLabelValue\":\"90octane\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"A Squared Group\",\"primaryLabelValue\":\"A Squared Group\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"ABBTech Staffing Services\",\"primaryLabelValue\":\"ABBTech Staffing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Able Patrol and Guard\",\"primaryLabelValue\":\"Able Patrol and Guard\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Absolute Concrete Construction\",\"primaryLabelValue\":\"Absolute Concrete Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accelera Solutions\",\"primaryLabelValue\":\"Accelera Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Display Group\",\"primaryLabelValue\":\"Access Display Group\"}},{\"attributeHeader\":{\"labelValue\":\"Action Envelope\",\"primaryLabelValue\":\"Action Envelope\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Materials\",\"primaryLabelValue\":\"Adaptive Materials\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage PressurePro\",\"primaryLabelValue\":\"Advantage PressurePro\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advocate Radiology Billing\",\"primaryLabelValue\":\"Advocate Radiology Billing\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aeneas Internet and Telephone\",\"primaryLabelValue\":\"Aeneas Internet and Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Air Serv\",\"primaryLabelValue\":\"Air Serv\"}},{\"attributeHeader\":{\"labelValue\":\"Airnet Group\",\"primaryLabelValue\":\"Airnet Group\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"Akerman Senterfitt\",\"primaryLabelValue\":\"Akerman Senterfitt\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Alcorn McBride\",\"primaryLabelValue\":\"Alcorn McBride\"}},{\"attributeHeader\":{\"labelValue\":\"Alexander Open Systems\",\"primaryLabelValue\":\"Alexander Open Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Copy Products\",\"primaryLabelValue\":\"All Copy Products\"}},{\"attributeHeader\":{\"labelValue\":\"All4\",\"primaryLabelValue\":\"All4\"}},{\"attributeHeader\":{\"labelValue\":\"Allconnect\",\"primaryLabelValue\":\"Allconnect\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Technologies\",\"primaryLabelValue\":\"Alliance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Allied 100\",\"primaryLabelValue\":\"Allied 100\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Source\",\"primaryLabelValue\":\"Alpha Source\"}},{\"attributeHeader\":{\"labelValue\":\"Alston & Bird\",\"primaryLabelValue\":\"Alston & Bird\"}},{\"attributeHeader\":{\"labelValue\":\"altE\",\"primaryLabelValue\":\"altE\"}},{\"attributeHeader\":{\"labelValue\":\"Altec Solutions Group\",\"primaryLabelValue\":\"Altec Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Always Best Care Senior Services\",\"primaryLabelValue\":\"Always Best Care Senior Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"American Broadband\",\"primaryLabelValue\":\"American Broadband\"}},{\"attributeHeader\":{\"labelValue\":\"American Business Solutions\",\"primaryLabelValue\":\"American Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Home Companions\",\"primaryLabelValue\":\"American Home Companions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"American Swiss Products\",\"primaryLabelValue\":\"American Swiss Products\"}},{\"attributeHeader\":{\"labelValue\":\"AmeriQuest Transportation Services\",\"primaryLabelValue\":\"AmeriQuest Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Amherst Partners\",\"primaryLabelValue\":\"Amherst Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Amotec\",\"primaryLabelValue\":\"Amotec\"}},{\"attributeHeader\":{\"labelValue\":\"Amyx\",\"primaryLabelValue\":\"Amyx\"}},{\"attributeHeader\":{\"labelValue\":\"Anadarko Industries\",\"primaryLabelValue\":\"Anadarko Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Andera\",\"primaryLabelValue\":\"Andera\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews Kurth\",\"primaryLabelValue\":\"Andrews Kurth\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"AngelVision\",\"primaryLabelValue\":\"AngelVision\"}},{\"attributeHeader\":{\"labelValue\":\"Anthem Media Group\",\"primaryLabelValue\":\"Anthem Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"AnythingIT\",\"primaryLabelValue\":\"AnythingIT\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"AnytimeCostumes.com\",\"primaryLabelValue\":\"AnytimeCostumes.com\"}},{\"attributeHeader\":{\"labelValue\":\"AOD Software\",\"primaryLabelValue\":\"AOD Software\"}},{\"attributeHeader\":{\"labelValue\":\"APCO Worldwide\",\"primaryLabelValue\":\"APCO Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Print Technologies\",\"primaryLabelValue\":\"Apex Print Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Technology Group\",\"primaryLabelValue\":\"Apex Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Apple-Metro\",\"primaryLabelValue\":\"Apple-Metro\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Data\",\"primaryLabelValue\":\"Applied Data\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Scientific Instrumentation\",\"primaryLabelValue\":\"Applied Scientific Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"APT Research\",\"primaryLabelValue\":\"APT Research\"}},{\"attributeHeader\":{\"labelValue\":\"Aqua Superstore\",\"primaryLabelValue\":\"Aqua Superstore\"}},{\"attributeHeader\":{\"labelValue\":\"Aquifer Solutions\",\"primaryLabelValue\":\"Aquifer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Arizon Companies\",\"primaryLabelValue\":\"Arizon Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Arizona Blinds\",\"primaryLabelValue\":\"Arizona Blinds\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Arketi Group\",\"primaryLabelValue\":\"Arketi Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Partnership\",\"primaryLabelValue\":\"Arrow Partnership\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Arrowhead Advertising\",\"primaryLabelValue\":\"Arrowhead Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Artech Information Systems\",\"primaryLabelValue\":\"Artech Information Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascend One\",\"primaryLabelValue\":\"Ascend One\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ASE Technology\",\"primaryLabelValue\":\"ASE Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ashland Technologies\",\"primaryLabelValue\":\"Ashland Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen Transportation\",\"primaryLabelValue\":\"Aspen Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Aspire Systems\",\"primaryLabelValue\":\"Aspire Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Asset Protection and Security Services\",\"primaryLabelValue\":\"Asset Protection and Security Services\"}},{\"attributeHeader\":{\"labelValue\":\"Astir IT Solutions\",\"primaryLabelValue\":\"Astir IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A-T Solutions\",\"primaryLabelValue\":\"A-T Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Oil Company\",\"primaryLabelValue\":\"Atlas Oil Company\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"Auction Systems Auctioneers & Appraisers\",\"primaryLabelValue\":\"Auction Systems Auctioneers & Appraisers\"}},{\"attributeHeader\":{\"labelValue\":\"Autohaus Arizona\",\"primaryLabelValue\":\"Autohaus Arizona\"}},{\"attributeHeader\":{\"labelValue\":\"Automated Voice & Data Solutions\",\"primaryLabelValue\":\"Automated Voice & Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalon Global Solutions\",\"primaryLabelValue\":\"Avalon Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Avenue You Beauty Store\",\"primaryLabelValue\":\"Avenue You Beauty Store\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"AVID Ink\",\"primaryLabelValue\":\"AVID Ink\"}},{\"attributeHeader\":{\"labelValue\":\"Avisena\",\"primaryLabelValue\":\"Avisena\"}},{\"attributeHeader\":{\"labelValue\":\"Avondale Partners\",\"primaryLabelValue\":\"Avondale Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Aware Web Solutions\",\"primaryLabelValue\":\"Aware Web Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AWSI\",\"primaryLabelValue\":\"AWSI\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Aztec Systems\",\"primaryLabelValue\":\"Aztec Systems\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"BackgroundChecks.com\",\"primaryLabelValue\":\"BackgroundChecks.com\"}},{\"attributeHeader\":{\"labelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\",\"primaryLabelValue\":\"Baker, Donelson, Bearman, Caldwell & Berkowitz\"}},{\"attributeHeader\":{\"labelValue\":\"BankServ\",\"primaryLabelValue\":\"BankServ\"}},{\"attributeHeader\":{\"labelValue\":\"Barhorst Insurance Group\",\"primaryLabelValue\":\"Barhorst Insurance Group\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"Battle Resource Management\",\"primaryLabelValue\":\"Battle Resource Management\"}},{\"attributeHeader\":{\"labelValue\":\"Batzner Pest Management\",\"primaryLabelValue\":\"Batzner Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"BBE\",\"primaryLabelValue\":\"BBE\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Belmont Labs\",\"primaryLabelValue\":\"Belmont Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Benjamin Franklin Plumbing\",\"primaryLabelValue\":\"Benjamin Franklin Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Best Upon Request\",\"primaryLabelValue\":\"Best Upon Request\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"Bevilacqua Research Corporation\",\"primaryLabelValue\":\"Bevilacqua Research Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"BI Consulting Group\",\"primaryLabelValue\":\"BI Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Big Red Fasteners\",\"primaryLabelValue\":\"Big Red Fasteners\"}},{\"attributeHeader\":{\"labelValue\":\"BioPharm Systems\",\"primaryLabelValue\":\"BioPharm Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blair Companies\",\"primaryLabelValue\":\"Blair Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Blinc\",\"primaryLabelValue\":\"Blinc\"}},{\"attributeHeader\":{\"labelValue\":\"Blitz\",\"primaryLabelValue\":\"Blitz\"}},{\"attributeHeader\":{\"labelValue\":\"Blount Fine Foods\",\"primaryLabelValue\":\"Blount Fine Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Baker\",\"primaryLabelValue\":\"Blue Baker\"}},{\"attributeHeader\":{\"labelValue\":\"Blue C Advertising\",\"primaryLabelValue\":\"Blue C Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Moon Works\",\"primaryLabelValue\":\"Blue Moon Works\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Star Partners\",\"primaryLabelValue\":\"Blue Star Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"Bodybuilding.com\",\"primaryLabelValue\":\"Bodybuilding.com\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Brand Up\",\"primaryLabelValue\":\"Brand Up\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"Business Network Consulting\",\"primaryLabelValue\":\"Business Network Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"BusinesSuites\",\"primaryLabelValue\":\"BusinesSuites\"}},{\"attributeHeader\":{\"labelValue\":\"BuyATimeshare.com\",\"primaryLabelValue\":\"BuyATimeshare.com\"}},{\"attributeHeader\":{\"labelValue\":\"Byrum Heating & A/C\",\"primaryLabelValue\":\"Byrum Heating & A/C\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"CableOrganizer.com\",\"primaryLabelValue\":\"CableOrganizer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Rio\",\"primaryLabelValue\":\"Cafe Rio\"}},{\"attributeHeader\":{\"labelValue\":\"Calhoun International\",\"primaryLabelValue\":\"Calhoun International\"}},{\"attributeHeader\":{\"labelValue\":\"Call Experts\",\"primaryLabelValue\":\"Call Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"CalPOP.com\",\"primaryLabelValue\":\"CalPOP.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cambria Solutions\",\"primaryLabelValue\":\"Cambria Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campfire Interactive\",\"primaryLabelValue\":\"Campfire Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Capital Investment Advisors\",\"primaryLabelValue\":\"Capital Investment Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Capital TechSearch\",\"primaryLabelValue\":\"Capital TechSearch\"}},{\"attributeHeader\":{\"labelValue\":\"CapRock Communications\",\"primaryLabelValue\":\"CapRock Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"CapTech Ventures\",\"primaryLabelValue\":\"CapTech Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Culinary Services\",\"primaryLabelValue\":\"Cardinal Culinary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carolina Tree Care\",\"primaryLabelValue\":\"Carolina Tree Care\"}},{\"attributeHeader\":{\"labelValue\":\"Carter Brothers\",\"primaryLabelValue\":\"Carter Brothers\"}},{\"attributeHeader\":{\"labelValue\":\"Cascades Technologies\",\"primaryLabelValue\":\"Cascades Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cases By Source\",\"primaryLabelValue\":\"Cases By Source\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Cassaday & Company\",\"primaryLabelValue\":\"Cassaday & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cat5 Commerce\",\"primaryLabelValue\":\"Cat5 Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"Catacel\",\"primaryLabelValue\":\"Catacel\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst\",\"primaryLabelValue\":\"Catalyst\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Repository Systems\",\"primaryLabelValue\":\"Catalyst Repository Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Technology\",\"primaryLabelValue\":\"Catapult Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Centare Group\",\"primaryLabelValue\":\"Centare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Central Welding Supply\",\"primaryLabelValue\":\"Central Welding Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Centrinex\",\"primaryLabelValue\":\"Centrinex\"}},{\"attributeHeader\":{\"labelValue\":\"Centro\",\"primaryLabelValue\":\"Centro\"}},{\"attributeHeader\":{\"labelValue\":\"Century Service Affiliates\",\"primaryLabelValue\":\"Century Service Affiliates\"}},{\"attributeHeader\":{\"labelValue\":\"CH Mack\",\"primaryLabelValue\":\"CH Mack\"}},{\"attributeHeader\":{\"labelValue\":\"Chacon Autos\",\"primaryLabelValue\":\"Chacon Autos\"}},{\"attributeHeader\":{\"labelValue\":\"Chansen Publishing\",\"primaryLabelValue\":\"Chansen Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Chapman and Cutler\",\"primaryLabelValue\":\"Chapman and Cutler\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Cherry Optical\",\"primaryLabelValue\":\"Cherry Optical\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Choctaw Professional Resources Enterprise\",\"primaryLabelValue\":\"Choctaw Professional Resources Enterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Circle Computer Resources\",\"primaryLabelValue\":\"Circle Computer Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CityTwist\",\"primaryLabelValue\":\"CityTwist\"}},{\"attributeHeader\":{\"labelValue\":\"CK Environmental\",\"primaryLabelValue\":\"CK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Clarity Consulting\",\"primaryLabelValue\":\"Clarity Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clary Business Machines\",\"primaryLabelValue\":\"Clary Business Machines\"}},{\"attributeHeader\":{\"labelValue\":\"ClassBook.com\",\"primaryLabelValue\":\"ClassBook.com\"}},{\"attributeHeader\":{\"labelValue\":\"Classic Instruments\",\"primaryLabelValue\":\"Classic Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Cleary Gottlieb Steen & Hamilton\",\"primaryLabelValue\":\"Cleary Gottlieb Steen & Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"clevermethod\",\"primaryLabelValue\":\"clevermethod\"}},{\"attributeHeader\":{\"labelValue\":\"Clickstop\",\"primaryLabelValue\":\"Clickstop\"}},{\"attributeHeader\":{\"labelValue\":\"Clockwork Home Services\",\"primaryLabelValue\":\"Clockwork Home Services\"}},{\"attributeHeader\":{\"labelValue\":\"CloseOutStore.net\",\"primaryLabelValue\":\"CloseOutStore.net\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"CMA Consulting Services\",\"primaryLabelValue\":\"CMA Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CMI\",\"primaryLabelValue\":\"CMI\"}},{\"attributeHeader\":{\"labelValue\":\"CMIT Solutions\",\"primaryLabelValue\":\"CMIT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Logistics Group\",\"primaryLabelValue\":\"Coastal Logistics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobb Pediatric Therapy Services\",\"primaryLabelValue\":\"Cobb Pediatric Therapy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cobble Hill Trailer Sales\",\"primaryLabelValue\":\"Cobble Hill Trailer Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Code Shred\",\"primaryLabelValue\":\"Code Shred\"}},{\"attributeHeader\":{\"labelValue\":\"Codeworks\",\"primaryLabelValue\":\"Codeworks\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Solutions\",\"primaryLabelValue\":\"Cogent Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ColdCypress\",\"primaryLabelValue\":\"ColdCypress\"}},{\"attributeHeader\":{\"labelValue\":\"Colo4Dallas\",\"primaryLabelValue\":\"Colo4Dallas\"}},{\"attributeHeader\":{\"labelValue\":\"Color-Ad\",\"primaryLabelValue\":\"Color-Ad\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Comm3\",\"primaryLabelValue\":\"Comm3\"}},{\"attributeHeader\":{\"labelValue\":\"Comp Consults\",\"primaryLabelValue\":\"Comp Consults\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Healthcare Communications\",\"primaryLabelValue\":\"Compass Healthcare Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Compendium\",\"primaryLabelValue\":\"Compendium\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Payroll Processing\",\"primaryLabelValue\":\"Complete Payroll Processing\"}},{\"attributeHeader\":{\"labelValue\":\"CompNation\",\"primaryLabelValue\":\"CompNation\"}},{\"attributeHeader\":{\"labelValue\":\"Compusoft Integrated Solutions\",\"primaryLabelValue\":\"Compusoft Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Computer Solutions and Software International\",\"primaryLabelValue\":\"Computer Solutions and Software International\"}},{\"attributeHeader\":{\"labelValue\":\"Computerized Facility Integration\",\"primaryLabelValue\":\"Computerized Facility Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Concentric Healthcare Solutions\",\"primaryLabelValue\":\"Concentric Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Concord Professional Services\",\"primaryLabelValue\":\"Concord Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Cable Solutions\",\"primaryLabelValue\":\"Consolidated Cable Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Consultedge\",\"primaryLabelValue\":\"Consultedge\"}},{\"attributeHeader\":{\"labelValue\":\"Consumer Sales Solutions\",\"primaryLabelValue\":\"Consumer Sales Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contemporary Staffing Solutions\",\"primaryLabelValue\":\"Contemporary Staffing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Data Services\",\"primaryLabelValue\":\"Convention Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Convention Models & Talent\",\"primaryLabelValue\":\"Convention Models & Talent\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Cooley Godward Kronish\",\"primaryLabelValue\":\"Cooley Godward Kronish\"}},{\"attributeHeader\":{\"labelValue\":\"Corbin\",\"primaryLabelValue\":\"Corbin\"}},{\"attributeHeader\":{\"labelValue\":\"CoreMedical Group\",\"primaryLabelValue\":\"CoreMedical Group\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Allocation Services\",\"primaryLabelValue\":\"Corporate Allocation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Safe Specialists\",\"primaryLabelValue\":\"Corporate Safe Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Technologies\",\"primaryLabelValue\":\"Corporate Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate United\",\"primaryLabelValue\":\"Corporate United\"}},{\"attributeHeader\":{\"labelValue\":\"Cotter Consulting\",\"primaryLabelValue\":\"Cotter Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cottonwood Financial\",\"primaryLabelValue\":\"Cottonwood Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CRAssociates\",\"primaryLabelValue\":\"CRAssociates\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Lodging Solutions\",\"primaryLabelValue\":\"Creative Lodging Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Presentations\",\"primaryLabelValue\":\"Creative Presentations\"}},{\"attributeHeader\":{\"labelValue\":\"Creative Tent International\",\"primaryLabelValue\":\"Creative Tent International\"}},{\"attributeHeader\":{\"labelValue\":\"Crescent City Packaging\",\"primaryLabelValue\":\"Crescent City Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis\",\"primaryLabelValue\":\"Crowe Paradis\"}},{\"attributeHeader\":{\"labelValue\":\"Crowell & Moring\",\"primaryLabelValue\":\"Crowell & Moring\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Finishing Systems\",\"primaryLabelValue\":\"Crystal Finishing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\",\"primaryLabelValue\":\"Curtis, Mallet-Prevost, Colt & Mosle\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Effective Solutions\",\"primaryLabelValue\":\"Customer Effective Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Cutter & Company\",\"primaryLabelValue\":\"Cutter & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Cvision Technologies\",\"primaryLabelValue\":\"Cvision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CyDex Pharmaceuticals\",\"primaryLabelValue\":\"CyDex Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Cyquent\",\"primaryLabelValue\":\"Cyquent\"}},{\"attributeHeader\":{\"labelValue\":\"D&K Engineering\",\"primaryLabelValue\":\"D&K Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Dagher Engineering\",\"primaryLabelValue\":\"Dagher Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Data Center Resources\",\"primaryLabelValue\":\"Data Center Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Data Processing Services\",\"primaryLabelValue\":\"Data Processing Services\"}},{\"attributeHeader\":{\"labelValue\":\"DataCert\",\"primaryLabelValue\":\"DataCert\"}},{\"attributeHeader\":{\"labelValue\":\"DataDirect Networks\",\"primaryLabelValue\":\"DataDirect Networks\"}},{\"attributeHeader\":{\"labelValue\":\"DataMart Direct\",\"primaryLabelValue\":\"DataMart Direct\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datotel\",\"primaryLabelValue\":\"Datotel\"}},{\"attributeHeader\":{\"labelValue\":\"Davis Wright Tremaine\",\"primaryLabelValue\":\"Davis Wright Tremaine\"}},{\"attributeHeader\":{\"labelValue\":\"Dawson Logistics\",\"primaryLabelValue\":\"Dawson Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Daymark Solutions\",\"primaryLabelValue\":\"Daymark Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Dayspring Restoration\",\"primaryLabelValue\":\"Dayspring Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Evans & Associates\",\"primaryLabelValue\":\"Dean Evans & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dean's Professional Service\",\"primaryLabelValue\":\"Dean's Professional Service\"}},{\"attributeHeader\":{\"labelValue\":\"deciBel Research\",\"primaryLabelValue\":\"deciBel Research\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Resources, Inc.\",\"primaryLabelValue\":\"Decision Resources, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Technologies\",\"primaryLabelValue\":\"Decision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Defran Systems\",\"primaryLabelValue\":\"Defran Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Del Sol\",\"primaryLabelValue\":\"Del Sol\"}},{\"attributeHeader\":{\"labelValue\":\"Delta T Equipment\",\"primaryLabelValue\":\"Delta T Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Dexclusive.com\",\"primaryLabelValue\":\"Dexclusive.com\"}},{\"attributeHeader\":{\"labelValue\":\"DGE\",\"primaryLabelValue\":\"DGE\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Pharmacy Services\",\"primaryLabelValue\":\"Diamond Pharmacy Services\"}},{\"attributeHeader\":{\"labelValue\":\"DiaTri\",\"primaryLabelValue\":\"DiaTri\"}},{\"attributeHeader\":{\"labelValue\":\"DICE\",\"primaryLabelValue\":\"DICE\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Prospectors\",\"primaryLabelValue\":\"Digital Prospectors\"}},{\"attributeHeader\":{\"labelValue\":\"Digitek Computer Products\",\"primaryLabelValue\":\"Digitek Computer Products\"}},{\"attributeHeader\":{\"labelValue\":\"Dinsmore & Shohl\",\"primaryLabelValue\":\"Dinsmore & Shohl\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomaframe.com\",\"primaryLabelValue\":\"Diplomaframe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Dimensions\",\"primaryLabelValue\":\"Direct Dimensions\"}},{\"attributeHeader\":{\"labelValue\":\"directFX Solutions\",\"primaryLabelValue\":\"directFX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Discount Ramps.com\",\"primaryLabelValue\":\"Discount Ramps.com\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Lynx\",\"primaryLabelValue\":\"Diverse Lynx\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Marketing Group\",\"primaryLabelValue\":\"Diversified Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"DKI Services\",\"primaryLabelValue\":\"DKI Services\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DLT Solutions\",\"primaryLabelValue\":\"DLT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DMG Federal\",\"primaryLabelValue\":\"DMG Federal\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Document Solutions\",\"primaryLabelValue\":\"Document Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Doherty Enterprises\",\"primaryLabelValue\":\"Doherty Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Dougherty & Associates\",\"primaryLabelValue\":\"Dougherty & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DRE\",\"primaryLabelValue\":\"DRE\"}},{\"attributeHeader\":{\"labelValue\":\"Drinker Biddle & Reath\",\"primaryLabelValue\":\"Drinker Biddle & Reath\"}},{\"attributeHeader\":{\"labelValue\":\"DSCI\",\"primaryLabelValue\":\"DSCI\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Dutch Valley Auto Works\",\"primaryLabelValue\":\"Dutch Valley Auto Works\"}},{\"attributeHeader\":{\"labelValue\":\"DyKnow\",\"primaryLabelValue\":\"DyKnow\"}},{\"attributeHeader\":{\"labelValue\":\"DynaFire\",\"primaryLabelValue\":\"DynaFire\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Language Center\",\"primaryLabelValue\":\"Dynamic Language Center\"}},{\"attributeHeader\":{\"labelValue\":\"DynaVox\",\"primaryLabelValue\":\"DynaVox\"}},{\"attributeHeader\":{\"labelValue\":\"E & B Natural Resources Management\",\"primaryLabelValue\":\"E & B Natural Resources Management\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Eagan Insurance Agency\",\"primaryLabelValue\":\"Eagan Insurance Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Armored Services\",\"primaryLabelValue\":\"Eastern Armored Services\"}},{\"attributeHeader\":{\"labelValue\":\"Easy-Turf\",\"primaryLabelValue\":\"Easy-Turf\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eckenhoff Saunders Architects\",\"primaryLabelValue\":\"Eckenhoff Saunders Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Chic Consignments\",\"primaryLabelValue\":\"Eco-Chic Consignments\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Edifecs\",\"primaryLabelValue\":\"Edifecs\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Data Systems\",\"primaryLabelValue\":\"Educational Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Efficient Lighting\",\"primaryLabelValue\":\"Efficient Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"eFulfillment Service\",\"primaryLabelValue\":\"eFulfillment Service\"}},{\"attributeHeader\":{\"labelValue\":\"eGlobalTech\",\"primaryLabelValue\":\"eGlobalTech\"}},{\"attributeHeader\":{\"labelValue\":\"El Clasificado\",\"primaryLabelValue\":\"El Clasificado\"}},{\"attributeHeader\":{\"labelValue\":\"El Paseo Limousine\",\"primaryLabelValue\":\"El Paseo Limousine\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Data Payment Systems\",\"primaryLabelValue\":\"Electronic Data Payment Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Elite SEM\",\"primaryLabelValue\":\"Elite SEM\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Storage Solutions\",\"primaryLabelValue\":\"Elite Storage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Management\",\"primaryLabelValue\":\"e-Management\"}},{\"attributeHeader\":{\"labelValue\":\"eMazzanti Technologies\",\"primaryLabelValue\":\"eMazzanti Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"EMC Advertising\",\"primaryLabelValue\":\"EMC Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Emergtech Business Solutions\",\"primaryLabelValue\":\"Emergtech Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emkat\",\"primaryLabelValue\":\"Emkat\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eMortgage Logic\",\"primaryLabelValue\":\"eMortgage Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Emplicity\",\"primaryLabelValue\":\"Emplicity\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Plus\",\"primaryLabelValue\":\"Employment Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Employment Screening Services\",\"primaryLabelValue\":\"Employment Screening Services\"}},{\"attributeHeader\":{\"labelValue\":\"EMS\",\"primaryLabelValue\":\"EMS\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Endsight\",\"primaryLabelValue\":\"Endsight\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Kitchen\",\"primaryLabelValue\":\"Energy Kitchen\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyFirst\",\"primaryLabelValue\":\"EnergyFirst\"}},{\"attributeHeader\":{\"labelValue\":\"EnerNex\",\"primaryLabelValue\":\"EnerNex\"}},{\"attributeHeader\":{\"labelValue\":\"Enmon Enterprises\",\"primaryLabelValue\":\"Enmon Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Enovate\",\"primaryLabelValue\":\"Enovate\"}},{\"attributeHeader\":{\"labelValue\":\"Entrance Software\",\"primaryLabelValue\":\"Entrance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Envestnet\",\"primaryLabelValue\":\"Envestnet\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro Clean Services\",\"primaryLabelValue\":\"Enviro Clean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Enviro-Safe Consulting\",\"primaryLabelValue\":\"Enviro-Safe Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Equus Software\",\"primaryLabelValue\":\"Equus Software\"}},{\"attributeHeader\":{\"labelValue\":\"eROI\",\"primaryLabelValue\":\"eROI\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"eScreen\",\"primaryLabelValue\":\"eScreen\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSilo\",\"primaryLabelValue\":\"eSilo\"}},{\"attributeHeader\":{\"labelValue\":\"ESP Technologies\",\"primaryLabelValue\":\"ESP Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"E-Technologies Group\",\"primaryLabelValue\":\"E-Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Eureka Holdings\",\"primaryLabelValue\":\"Eureka Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Euro-Pro\",\"primaryLabelValue\":\"Euro-Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Evergreen Lumber & Truss\",\"primaryLabelValue\":\"Evergreen Lumber & Truss\"}},{\"attributeHeader\":{\"labelValue\":\"Everon Technology Services\",\"primaryLabelValue\":\"Everon Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"EverySport.net\",\"primaryLabelValue\":\"EverySport.net\"}},{\"attributeHeader\":{\"labelValue\":\"eVestment Alliance\",\"primaryLabelValue\":\"eVestment Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Evolv Solutions\",\"primaryLabelValue\":\"Evolv Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"eWinWin\",\"primaryLabelValue\":\"eWinWin\"}},{\"attributeHeader\":{\"labelValue\":\"Exclusive Concepts\",\"primaryLabelValue\":\"Exclusive Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"ExecuTeam Staffing\",\"primaryLabelValue\":\"ExecuTeam Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Executive Clothiers\",\"primaryLabelValue\":\"Executive Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"Exploring.com\",\"primaryLabelValue\":\"Exploring.com\"}},{\"attributeHeader\":{\"labelValue\":\"Express Air Freight Unlimited\",\"primaryLabelValue\":\"Express Air Freight Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Extrakare\",\"primaryLabelValue\":\"Extrakare\"}},{\"attributeHeader\":{\"labelValue\":\"Exxel Outdoors\",\"primaryLabelValue\":\"Exxel Outdoors\"}},{\"attributeHeader\":{\"labelValue\":\"Fabrique\",\"primaryLabelValue\":\"Fabrique\"}},{\"attributeHeader\":{\"labelValue\":\"FairCode Associates\",\"primaryLabelValue\":\"FairCode Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Containers\",\"primaryLabelValue\":\"Falcon Containers\"}},{\"attributeHeader\":{\"labelValue\":\"Family Heritage Life Insurance Company of America\",\"primaryLabelValue\":\"Family Heritage Life Insurance Company of America\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fantastic Sams Hair Salons\",\"primaryLabelValue\":\"Fantastic Sams Hair Salons\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Trac Transportation\",\"primaryLabelValue\":\"Fast Trac Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"FastMac\",\"primaryLabelValue\":\"FastMac\"}},{\"attributeHeader\":{\"labelValue\":\"Fathom SEO\",\"primaryLabelValue\":\"Fathom SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Federated Wholesale\",\"primaryLabelValue\":\"Federated Wholesale\"}},{\"attributeHeader\":{\"labelValue\":\"Fellowship Technologies\",\"primaryLabelValue\":\"Fellowship Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"FGM Architects\",\"primaryLabelValue\":\"FGM Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Designs\",\"primaryLabelValue\":\"Fine Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Promotions\",\"primaryLabelValue\":\"Fine Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\",\"primaryLabelValue\":\"Finnegan, Henderson, Farabow, Garrett & Dunner\"}},{\"attributeHeader\":{\"labelValue\":\"Fire & Flavor\",\"primaryLabelValue\":\"Fire & Flavor\"}},{\"attributeHeader\":{\"labelValue\":\"FireStream WorldWide\",\"primaryLabelValue\":\"FireStream WorldWide\"}},{\"attributeHeader\":{\"labelValue\":\"First Dental Health\",\"primaryLabelValue\":\"First Dental Health\"}},{\"attributeHeader\":{\"labelValue\":\"First Hospitality Group\",\"primaryLabelValue\":\"First Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fish & Richardson\",\"primaryLabelValue\":\"Fish & Richardson\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Five Star Restoration & Construction\",\"primaryLabelValue\":\"Five Star Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Fleet Management Solutions\",\"primaryLabelValue\":\"Fleet Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FleetCor Technologies\",\"primaryLabelValue\":\"FleetCor Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fluent Language Solutions\",\"primaryLabelValue\":\"Fluent Language Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Forensics Consulting Solutions\",\"primaryLabelValue\":\"Forensics Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Riders\",\"primaryLabelValue\":\"Fortis Riders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Title\",\"primaryLabelValue\":\"Foundation Title\"}},{\"attributeHeader\":{\"labelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\",\"primaryLabelValue\":\"Fragomen, Del Rey, Bernsen & Loewy\"}},{\"attributeHeader\":{\"labelValue\":\"Fraser Communications\",\"primaryLabelValue\":\"Fraser Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Fredon\",\"primaryLabelValue\":\"Fredon\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Consulting Group\",\"primaryLabelValue\":\"Freedom Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Healthcare Staffing\",\"primaryLabelValue\":\"Freedom Healthcare Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Metals\",\"primaryLabelValue\":\"Freedom Metals\"}},{\"attributeHeader\":{\"labelValue\":\"FreightCenter\",\"primaryLabelValue\":\"FreightCenter\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"Front Gate Tickets\",\"primaryLabelValue\":\"Front Gate Tickets\"}},{\"attributeHeader\":{\"labelValue\":\"Fuellgraf Electric\",\"primaryLabelValue\":\"Fuellgraf Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum IT Services\",\"primaryLabelValue\":\"Fulcrum IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"Fulfillment Strategies International\",\"primaryLabelValue\":\"Fulfillment Strategies International\"}},{\"attributeHeader\":{\"labelValue\":\"Full Circle Wireless\",\"primaryLabelValue\":\"Full Circle Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Fullhouse\",\"primaryLabelValue\":\"Fullhouse\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"Future Media Concepts\",\"primaryLabelValue\":\"Future Media Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"G&A Partners\",\"primaryLabelValue\":\"G&A Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Gafcon\",\"primaryLabelValue\":\"Gafcon\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Galaxy Desserts\",\"primaryLabelValue\":\"Galaxy Desserts\"}},{\"attributeHeader\":{\"labelValue\":\"Gallaher & Associates\",\"primaryLabelValue\":\"Gallaher & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"GAME - Great American Merchandise & Events\",\"primaryLabelValue\":\"GAME - Great American Merchandise & Events\"}},{\"attributeHeader\":{\"labelValue\":\"Game Quest & Game Quest International\",\"primaryLabelValue\":\"Game Quest & Game Quest International\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Garcia Research\",\"primaryLabelValue\":\"Garcia Research\"}},{\"attributeHeader\":{\"labelValue\":\"Gardere Wynne Sewell\",\"primaryLabelValue\":\"Gardere Wynne Sewell\"}},{\"attributeHeader\":{\"labelValue\":\"Garland Industries\",\"primaryLabelValue\":\"Garland Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Garvey's Office Products\",\"primaryLabelValue\":\"Garvey's Office Products\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GBCblue\",\"primaryLabelValue\":\"GBCblue\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genica\",\"primaryLabelValue\":\"Genica\"}},{\"attributeHeader\":{\"labelValue\":\"GEO Consultants\",\"primaryLabelValue\":\"GEO Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Gerimedix\",\"primaryLabelValue\":\"Gerimedix\"}},{\"attributeHeader\":{\"labelValue\":\"Gersh Academy\",\"primaryLabelValue\":\"Gersh Academy\"}},{\"attributeHeader\":{\"labelValue\":\"GetWellNetwork\",\"primaryLabelValue\":\"GetWellNetwork\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Gibraltar Construction\",\"primaryLabelValue\":\"Gibraltar Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Gilero\",\"primaryLabelValue\":\"Gilero\"}},{\"attributeHeader\":{\"labelValue\":\"GlassHouse Technologies\",\"primaryLabelValue\":\"GlassHouse Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Aviation Holdings\",\"primaryLabelValue\":\"Global Aviation Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Global Futures & Forex\",\"primaryLabelValue\":\"Global Futures & Forex\"}},{\"attributeHeader\":{\"labelValue\":\"Global Medical Imaging\",\"primaryLabelValue\":\"Global Medical Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Globoforce\",\"primaryLabelValue\":\"Globoforce\"}},{\"attributeHeader\":{\"labelValue\":\"Glory Days Grill\",\"primaryLabelValue\":\"Glory Days Grill\"}},{\"attributeHeader\":{\"labelValue\":\"Glow Networks\",\"primaryLabelValue\":\"Glow Networks\"}},{\"attributeHeader\":{\"labelValue\":\"GMI\",\"primaryLabelValue\":\"GMI\"}},{\"attributeHeader\":{\"labelValue\":\"GNet Group\",\"primaryLabelValue\":\"GNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goddard Systems\",\"primaryLabelValue\":\"Goddard Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gongos Research\",\"primaryLabelValue\":\"Gongos Research\"}},{\"attributeHeader\":{\"labelValue\":\"goodmortgage.com\",\"primaryLabelValue\":\"goodmortgage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Gotham Technology Group\",\"primaryLabelValue\":\"Gotham Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Goulston & Storrs\",\"primaryLabelValue\":\"Goulston & Storrs\"}},{\"attributeHeader\":{\"labelValue\":\"Gramercy Insurance\",\"primaryLabelValue\":\"Gramercy Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Greenleaf Environmental Group\",\"primaryLabelValue\":\"Greenleaf Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Greenwood Industries\",\"primaryLabelValue\":\"Greenwood Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Group Insurance Solutions\",\"primaryLabelValue\":\"Group Insurance Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Gruskin Group\",\"primaryLabelValue\":\"Gruskin Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gryphon Technologies\",\"primaryLabelValue\":\"Gryphon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Guzov Ofsink\",\"primaryLabelValue\":\"Guzov Ofsink\"}},{\"attributeHeader\":{\"labelValue\":\"H&H Gun Range Shooting Sports Outlet\",\"primaryLabelValue\":\"H&H Gun Range Shooting Sports Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Halperns' Purveyors of Steak & Seafood\",\"primaryLabelValue\":\"Halperns' Purveyors of Steak & Seafood\"}},{\"attributeHeader\":{\"labelValue\":\"Handi-Ramp\",\"primaryLabelValue\":\"Handi-Ramp\"}},{\"attributeHeader\":{\"labelValue\":\"Hanover Fire & Casualty Insurance\",\"primaryLabelValue\":\"Hanover Fire & Casualty Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Hargrove Engineers + Constructors\",\"primaryLabelValue\":\"Hargrove Engineers + Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Hawk Consultants\",\"primaryLabelValue\":\"Hawk Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Hayes Management Consulting\",\"primaryLabelValue\":\"Hayes Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"Health Integrated\",\"primaryLabelValue\":\"Health Integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Health Market Science\",\"primaryLabelValue\":\"Health Market Science\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Strategy Group\",\"primaryLabelValue\":\"Healthcare Strategy Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCareSeeker.com\",\"primaryLabelValue\":\"HealthCareSeeker.com\"}},{\"attributeHeader\":{\"labelValue\":\"Healthwise\",\"primaryLabelValue\":\"Healthwise\"}},{\"attributeHeader\":{\"labelValue\":\"Heartland Business Systems\",\"primaryLabelValue\":\"Heartland Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heartline Fitness Systems\",\"primaryLabelValue\":\"Heartline Fitness Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Heath Ceramics\",\"primaryLabelValue\":\"Heath Ceramics\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hendrick Construction\",\"primaryLabelValue\":\"Hendrick Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Herbspro.com\",\"primaryLabelValue\":\"Herbspro.com\"}},{\"attributeHeader\":{\"labelValue\":\"Heschong Mahone Group\",\"primaryLabelValue\":\"Heschong Mahone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hewett-Kier Construction\",\"primaryLabelValue\":\"Hewett-Kier Construction\"}},{\"attributeHeader\":{\"labelValue\":\"HGA Architects and Engineers\",\"primaryLabelValue\":\"HGA Architects and Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Highland Products Group\",\"primaryLabelValue\":\"Highland Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"Hiller Plumbing, Heating & Cooling\",\"primaryLabelValue\":\"Hiller Plumbing, Heating & Cooling\"}},{\"attributeHeader\":{\"labelValue\":\"Hinda\",\"primaryLabelValue\":\"Hinda\"}},{\"attributeHeader\":{\"labelValue\":\"Hire Methods\",\"primaryLabelValue\":\"Hire Methods\"}},{\"attributeHeader\":{\"labelValue\":\"Hirease\",\"primaryLabelValue\":\"Hirease\"}},{\"attributeHeader\":{\"labelValue\":\"Hi-Speed\",\"primaryLabelValue\":\"Hi-Speed\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Hoffman Media\",\"primaryLabelValue\":\"Hoffman Media\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"Holland & Hart\",\"primaryLabelValue\":\"Holland & Hart\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (AL)\",\"primaryLabelValue\":\"Home Instead Senior Care (AL)\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Technology\",\"primaryLabelValue\":\"Horizon Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Horsemen Investigations\",\"primaryLabelValue\":\"Horsemen Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"Hosted Solutions Acquisitions\",\"primaryLabelValue\":\"Hosted Solutions Acquisitions\"}},{\"attributeHeader\":{\"labelValue\":\"House of Antique Hardware\",\"primaryLabelValue\":\"House of Antique Hardware\"}},{\"attributeHeader\":{\"labelValue\":\"HSP Direct\",\"primaryLabelValue\":\"HSP Direct\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Hudson Baylor\",\"primaryLabelValue\":\"Hudson Baylor\"}},{\"attributeHeader\":{\"labelValue\":\"Human Technologies\",\"primaryLabelValue\":\"Human Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Humble Abode\",\"primaryLabelValue\":\"Humble Abode\"}},{\"attributeHeader\":{\"labelValue\":\"Hunt & Sons\",\"primaryLabelValue\":\"Hunt & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Hunton & Williams\",\"primaryLabelValue\":\"Hunton & Williams\"}},{\"attributeHeader\":{\"labelValue\":\"HVR Advanced Power Components\",\"primaryLabelValue\":\"HVR Advanced Power Components\"}},{\"attributeHeader\":{\"labelValue\":\"I&I Software\",\"primaryLabelValue\":\"I&I Software\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"Iatric Systems\",\"primaryLabelValue\":\"Iatric Systems\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Holdings\",\"primaryLabelValue\":\"IBT Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"ICE Technologies\",\"primaryLabelValue\":\"ICE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"ICON Information Consultants\",\"primaryLabelValue\":\"ICON Information Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"iCore Networks\",\"primaryLabelValue\":\"iCore Networks\"}},{\"attributeHeader\":{\"labelValue\":\"iCruise.com\",\"primaryLabelValue\":\"iCruise.com\"}},{\"attributeHeader\":{\"labelValue\":\"ICS Marketing Support Services\",\"primaryLabelValue\":\"ICS Marketing Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"IDC Technologies\",\"primaryLabelValue\":\"IDC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Innovations\",\"primaryLabelValue\":\"Ideal Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"iFreedom Direct\",\"primaryLabelValue\":\"iFreedom Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ikaria\",\"primaryLabelValue\":\"Ikaria\"}},{\"attributeHeader\":{\"labelValue\":\"iLink Systems\",\"primaryLabelValue\":\"iLink Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Image One\",\"primaryLabelValue\":\"Image One\"}},{\"attributeHeader\":{\"labelValue\":\"ImageFIRST Healthcare Laundry Specialists\",\"primaryLabelValue\":\"ImageFIRST Healthcare Laundry Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"ImageSoft\",\"primaryLabelValue\":\"ImageSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging On Call\",\"primaryLabelValue\":\"Imaging On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Networking\",\"primaryLabelValue\":\"Impact Networking\"}},{\"attributeHeader\":{\"labelValue\":\"Impact Technologies\",\"primaryLabelValue\":\"Impact Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Impressions In Print\",\"primaryLabelValue\":\"Impressions In Print\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"InCircuit Development\",\"primaryLabelValue\":\"InCircuit Development\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"InfiniEdge Software\",\"primaryLabelValue\":\"InfiniEdge Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Network Solutions\",\"primaryLabelValue\":\"Infinity Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Info Directions\",\"primaryLabelValue\":\"Info Directions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Access Systems\",\"primaryLabelValue\":\"Information Access Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Inno Pak\",\"primaryLabelValue\":\"Inno Pak\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Analytics\",\"primaryLabelValue\":\"Innovative Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Integration\",\"primaryLabelValue\":\"Innovative Integration\"}},{\"attributeHeader\":{\"labelValue\":\"InsightsNow\",\"primaryLabelValue\":\"InsightsNow\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Office of America\",\"primaryLabelValue\":\"Insurance Office of America\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Revolution\",\"primaryLabelValue\":\"Insurance Revolution\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Enclosures\",\"primaryLabelValue\":\"Integra Enclosures\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Technologies\",\"primaryLabelValue\":\"Integration Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligrated\",\"primaryLabelValue\":\"Intelligrated\"}},{\"attributeHeader\":{\"labelValue\":\"IntePros Federal\",\"primaryLabelValue\":\"IntePros Federal\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterMed Biomedical Services\",\"primaryLabelValue\":\"InterMed Biomedical Services\"}},{\"attributeHeader\":{\"labelValue\":\"International Medical Resources\",\"primaryLabelValue\":\"International Medical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"International Sourcing\",\"primaryLabelValue\":\"International Sourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"IntraLinks Holdings\",\"primaryLabelValue\":\"IntraLinks Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"InVue Security Products\",\"primaryLabelValue\":\"InVue Security Products\"}},{\"attributeHeader\":{\"labelValue\":\"iPay Technologies\",\"primaryLabelValue\":\"iPay Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IPiphany\",\"primaryLabelValue\":\"IPiphany\"}},{\"attributeHeader\":{\"labelValue\":\"IPLogic\",\"primaryLabelValue\":\"IPLogic\"}},{\"attributeHeader\":{\"labelValue\":\"iQor\",\"primaryLabelValue\":\"iQor\"}},{\"attributeHeader\":{\"labelValue\":\"IronTraffic\",\"primaryLabelValue\":\"IronTraffic\"}},{\"attributeHeader\":{\"labelValue\":\"Isagenix International\",\"primaryLabelValue\":\"Isagenix International\"}},{\"attributeHeader\":{\"labelValue\":\"iSi Environmental Services\",\"primaryLabelValue\":\"iSi Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"ISITE Design\",\"primaryLabelValue\":\"ISITE Design\"}},{\"attributeHeader\":{\"labelValue\":\"Isokinetics\",\"primaryLabelValue\":\"Isokinetics\"}},{\"attributeHeader\":{\"labelValue\":\"iSpace\",\"primaryLabelValue\":\"iSpace\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"IT Partners\",\"primaryLabelValue\":\"IT Partners\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"ITS\",\"primaryLabelValue\":\"ITS\"}},{\"attributeHeader\":{\"labelValue\":\"IVCi\",\"primaryLabelValue\":\"IVCi\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"ivgStores\",\"primaryLabelValue\":\"ivgStores\"}},{\"attributeHeader\":{\"labelValue\":\"Jack and Adam's Bicycles\",\"primaryLabelValue\":\"Jack and Adam's Bicycles\"}},{\"attributeHeader\":{\"labelValue\":\"Jack's Small Engine & Generator Service\",\"primaryLabelValue\":\"Jack's Small Engine & Generator Service\"}},{\"attributeHeader\":{\"labelValue\":\"Jacksonville Beach Pediatric Care Center\",\"primaryLabelValue\":\"Jacksonville Beach Pediatric Care Center\"}},{\"attributeHeader\":{\"labelValue\":\"Jacobs Agency\",\"primaryLabelValue\":\"Jacobs Agency\"}},{\"attributeHeader\":{\"labelValue\":\"James Engle Custom Homes\",\"primaryLabelValue\":\"James Engle Custom Homes\"}},{\"attributeHeader\":{\"labelValue\":\"JAT Software\",\"primaryLabelValue\":\"JAT Software\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Jazzercise\",\"primaryLabelValue\":\"Jazzercise\"}},{\"attributeHeader\":{\"labelValue\":\"JB Management\",\"primaryLabelValue\":\"JB Management\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"Jeffer, Mangels, Butler & Marmaro\",\"primaryLabelValue\":\"Jeffer, Mangels, Butler & Marmaro\"}},{\"attributeHeader\":{\"labelValue\":\"Jelec USA\",\"primaryLabelValue\":\"Jelec USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jenkins Security Consultants\",\"primaryLabelValue\":\"Jenkins Security Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Jimmy Beans Wool\",\"primaryLabelValue\":\"Jimmy Beans Wool\"}},{\"attributeHeader\":{\"labelValue\":\"Jordan Health Services\",\"primaryLabelValue\":\"Jordan Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"JPL\",\"primaryLabelValue\":\"JPL\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"KaMedData\",\"primaryLabelValue\":\"KaMedData\"}},{\"attributeHeader\":{\"labelValue\":\"Kasowitz, Benson, Torres & Friedman\",\"primaryLabelValue\":\"Kasowitz, Benson, Torres & Friedman\"}},{\"attributeHeader\":{\"labelValue\":\"KaTom Restaurant Supply\",\"primaryLabelValue\":\"KaTom Restaurant Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Kazoo & Company Toys\",\"primaryLabelValue\":\"Kazoo & Company Toys\"}},{\"attributeHeader\":{\"labelValue\":\"KBW Financial Staffing & Recruiting\",\"primaryLabelValue\":\"KBW Financial Staffing & Recruiting\"}},{\"attributeHeader\":{\"labelValue\":\"Kee Safety\",\"primaryLabelValue\":\"Kee Safety\"}},{\"attributeHeader\":{\"labelValue\":\"Keeprs\",\"primaryLabelValue\":\"Keeprs\"}},{\"attributeHeader\":{\"labelValue\":\"Keller Williams Advantage\",\"primaryLabelValue\":\"Keller Williams Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"KeySource Medical\",\"primaryLabelValue\":\"KeySource Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Kimpton Hotels and Restaurants\",\"primaryLabelValue\":\"Kimpton Hotels and Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Knobbe, Martens, Olson & Bear\",\"primaryLabelValue\":\"Knobbe, Martens, Olson & Bear\"}},{\"attributeHeader\":{\"labelValue\":\"Kramer Levin Naftalis & Frankel\",\"primaryLabelValue\":\"Kramer Levin Naftalis & Frankel\"}},{\"attributeHeader\":{\"labelValue\":\"Kutak Rock\",\"primaryLabelValue\":\"Kutak Rock\"}},{\"attributeHeader\":{\"labelValue\":\"Kutir\",\"primaryLabelValue\":\"Kutir\"}},{\"attributeHeader\":{\"labelValue\":\"L & S Retail Ventures\",\"primaryLabelValue\":\"L & S Retail Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"L.A. Burdick Chocolate\",\"primaryLabelValue\":\"L.A. Burdick Chocolate\"}},{\"attributeHeader\":{\"labelValue\":\"LAgraphico\",\"primaryLabelValue\":\"LAgraphico\"}},{\"attributeHeader\":{\"labelValue\":\"LAI International\",\"primaryLabelValue\":\"LAI International\"}},{\"attributeHeader\":{\"labelValue\":\"Lakeshore Engineering Services\",\"primaryLabelValue\":\"Lakeshore Engineering Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lapre Scali & Company Insurance Services\",\"primaryLabelValue\":\"Lapre Scali & Company Insurance Services\"}},{\"attributeHeader\":{\"labelValue\":\"Laptec\",\"primaryLabelValue\":\"Laptec\"}},{\"attributeHeader\":{\"labelValue\":\"Lasertec\",\"primaryLabelValue\":\"Lasertec\"}},{\"attributeHeader\":{\"labelValue\":\"Late July Organic Snacks\",\"primaryLabelValue\":\"Late July Organic Snacks\"}},{\"attributeHeader\":{\"labelValue\":\"Latham & Watkins\",\"primaryLabelValue\":\"Latham & Watkins\"}},{\"attributeHeader\":{\"labelValue\":\"Latitude Software\",\"primaryLabelValue\":\"Latitude Software\"}},{\"attributeHeader\":{\"labelValue\":\"LawLogix Group\",\"primaryLabelValue\":\"LawLogix Group\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Le Chaperone Rouge Schools\",\"primaryLabelValue\":\"Le Chaperone Rouge Schools\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"LeapFrog Solutions\",\"primaryLabelValue\":\"LeapFrog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Lebakkens of Wisconsin\",\"primaryLabelValue\":\"Lebakkens of Wisconsin\"}},{\"attributeHeader\":{\"labelValue\":\"Lectrus\",\"primaryLabelValue\":\"Lectrus\"}},{\"attributeHeader\":{\"labelValue\":\"Lee Mathews Equipment\",\"primaryLabelValue\":\"Lee Mathews Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"LeGacy Resource\",\"primaryLabelValue\":\"LeGacy Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Lewellyn Technology\",\"primaryLabelValue\":\"Lewellyn Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Pumps\",\"primaryLabelValue\":\"Liberty Pumps\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tax Service\",\"primaryLabelValue\":\"Liberty Tax Service\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeCare Medical Services\",\"primaryLabelValue\":\"LifeCare Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"LimoRes.net\",\"primaryLabelValue\":\"LimoRes.net\"}},{\"attributeHeader\":{\"labelValue\":\"Link Construction Group\",\"primaryLabelValue\":\"Link Construction Group\"}},{\"attributeHeader\":{\"labelValue\":\"Linx\",\"primaryLabelValue\":\"Linx\"}},{\"attributeHeader\":{\"labelValue\":\"Lionfish Creative\",\"primaryLabelValue\":\"Lionfish Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"List Innovative Solutions\",\"primaryLabelValue\":\"List Innovative Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Litigation Services\",\"primaryLabelValue\":\"Litigation Services\"}},{\"attributeHeader\":{\"labelValue\":\"liveBooks\",\"primaryLabelValue\":\"liveBooks\"}},{\"attributeHeader\":{\"labelValue\":\"LiveOffice\",\"primaryLabelValue\":\"LiveOffice\"}},{\"attributeHeader\":{\"labelValue\":\"LivHOME\",\"primaryLabelValue\":\"LivHOME\"}},{\"attributeHeader\":{\"labelValue\":\"LoadSpring Solutions\",\"primaryLabelValue\":\"LoadSpring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Loeb & Loeb\",\"primaryLabelValue\":\"Loeb & Loeb\"}},{\"attributeHeader\":{\"labelValue\":\"Loeffler Randall\",\"primaryLabelValue\":\"Loeffler Randall\"}},{\"attributeHeader\":{\"labelValue\":\"Logan's Roadhouse\",\"primaryLabelValue\":\"Logan's Roadhouse\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"Look's Gourmet Food\",\"primaryLabelValue\":\"Look's Gourmet Food\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lowe Engineers\",\"primaryLabelValue\":\"Lowe Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"LPL Investment Holdings\",\"primaryLabelValue\":\"LPL Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"LTC Financial Partners\",\"primaryLabelValue\":\"LTC Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Lumenate\",\"primaryLabelValue\":\"Lumenate\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Luminit\",\"primaryLabelValue\":\"Luminit\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lyon Roofing\",\"primaryLabelValue\":\"Lyon Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"M S International\",\"primaryLabelValue\":\"M S International\"}},{\"attributeHeader\":{\"labelValue\":\"M Space Holdings\",\"primaryLabelValue\":\"M Space Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"M2M Communications\",\"primaryLabelValue\":\"M2M Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mailings Unlimited\",\"primaryLabelValue\":\"Mailings Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Makovsky + Company\",\"primaryLabelValue\":\"Makovsky + Company\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Management Services Northwest\",\"primaryLabelValue\":\"Management Services Northwest\"}},{\"attributeHeader\":{\"labelValue\":\"Mankin Media Systems\",\"primaryLabelValue\":\"Mankin Media Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Maranda Enterprises\",\"primaryLabelValue\":\"Maranda Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Marco's Franchising\",\"primaryLabelValue\":\"Marco's Franchising\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"Market America\",\"primaryLabelValue\":\"Market America\"}},{\"attributeHeader\":{\"labelValue\":\"Market Street Solutions\",\"primaryLabelValue\":\"Market Street Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MarketCounsel\",\"primaryLabelValue\":\"MarketCounsel\"}},{\"attributeHeader\":{\"labelValue\":\"MarketSphere Consulting\",\"primaryLabelValue\":\"MarketSphere Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MarketWave\",\"primaryLabelValue\":\"MarketWave\"}},{\"attributeHeader\":{\"labelValue\":\"Marlin Network\",\"primaryLabelValue\":\"Marlin Network\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Massage Envy\",\"primaryLabelValue\":\"Massage Envy\"}},{\"attributeHeader\":{\"labelValue\":\"MasterGardening.com\",\"primaryLabelValue\":\"MasterGardening.com\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Communications\",\"primaryLabelValue\":\"Maverick Communications\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaximumASP\",\"primaryLabelValue\":\"MaximumASP\"}},{\"attributeHeader\":{\"labelValue\":\"maxIT Healthcare\",\"primaryLabelValue\":\"maxIT Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Mayday Industries\",\"primaryLabelValue\":\"Mayday Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Mayer Brown\",\"primaryLabelValue\":\"Mayer Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Mayorga Coffee\",\"primaryLabelValue\":\"Mayorga Coffee\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCFA\",\"primaryLabelValue\":\"MCFA\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Wentworth\",\"primaryLabelValue\":\"McGraw Wentworth\"}},{\"attributeHeader\":{\"labelValue\":\"McMahon Associates\",\"primaryLabelValue\":\"McMahon Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MedAllocators\",\"primaryLabelValue\":\"MedAllocators\"}},{\"attributeHeader\":{\"labelValue\":\"Media Brokers International\",\"primaryLabelValue\":\"Media Brokers International\"}},{\"attributeHeader\":{\"labelValue\":\"MediConnect Global\",\"primaryLabelValue\":\"MediConnect Global\"}},{\"attributeHeader\":{\"labelValue\":\"MediGain\",\"primaryLabelValue\":\"MediGain\"}},{\"attributeHeader\":{\"labelValue\":\"Medistar\",\"primaryLabelValue\":\"Medistar\"}},{\"attributeHeader\":{\"labelValue\":\"MedNet Solutions\",\"primaryLabelValue\":\"MedNet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"MedRisk\",\"primaryLabelValue\":\"MedRisk\"}},{\"attributeHeader\":{\"labelValue\":\"MedSeek\",\"primaryLabelValue\":\"MedSeek\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"Medwing.com\",\"primaryLabelValue\":\"Medwing.com\"}},{\"attributeHeader\":{\"labelValue\":\"MegaPath\",\"primaryLabelValue\":\"MegaPath\"}},{\"attributeHeader\":{\"labelValue\":\"Meier Architecture - Engineering\",\"primaryLabelValue\":\"Meier Architecture - Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"MemoryTen\",\"primaryLabelValue\":\"MemoryTen\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Merz Apothecary\",\"primaryLabelValue\":\"Merz Apothecary\"}},{\"attributeHeader\":{\"labelValue\":\"Metal Resource Solutions\",\"primaryLabelValue\":\"Metal Resource Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Metrofuser\",\"primaryLabelValue\":\"Metrofuser\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Michigan Custom Machines\",\"primaryLabelValue\":\"Michigan Custom Machines\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microfluidic Systems\",\"primaryLabelValue\":\"Microfluidic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Micromedics\",\"primaryLabelValue\":\"Micromedics\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTrain Technologies\",\"primaryLabelValue\":\"MicroTrain Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Underground Technology\",\"primaryLabelValue\":\"Midwest Underground Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Systems\",\"primaryLabelValue\":\"Milestone Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Military Products Group\",\"primaryLabelValue\":\"Military Products Group\"}},{\"attributeHeader\":{\"labelValue\":\"MilitaryByOwner Advertising\",\"primaryLabelValue\":\"MilitaryByOwner Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Milsoft Utility Solutions\",\"primaryLabelValue\":\"Milsoft Utility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MindLeaf Technologies\",\"primaryLabelValue\":\"MindLeaf Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miner El Paso\",\"primaryLabelValue\":\"Miner El Paso\"}},{\"attributeHeader\":{\"labelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\",\"primaryLabelValue\":\"Mintz, Levin, Cohn, Ferris, Glovsky and Popeo\"}},{\"attributeHeader\":{\"labelValue\":\"MIPRO Consulting\",\"primaryLabelValue\":\"MIPRO Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MiresBall\",\"primaryLabelValue\":\"MiresBall\"}},{\"attributeHeader\":{\"labelValue\":\"Mirion Technologies\",\"primaryLabelValue\":\"Mirion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Miro Consulting\",\"primaryLabelValue\":\"Miro Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"MISource\",\"primaryLabelValue\":\"MISource\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Support\",\"primaryLabelValue\":\"Mission Support\"}},{\"attributeHeader\":{\"labelValue\":\"Modern Technology Solutions\",\"primaryLabelValue\":\"Modern Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Modo\",\"primaryLabelValue\":\"Modo\"}},{\"attributeHeader\":{\"labelValue\":\"Monitoring Solutions\",\"primaryLabelValue\":\"Monitoring Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Monitronics International\",\"primaryLabelValue\":\"Monitronics International\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan, Lewis & Bockius\",\"primaryLabelValue\":\"Morgan, Lewis & Bockius\"}},{\"attributeHeader\":{\"labelValue\":\"Morpheus Media\",\"primaryLabelValue\":\"Morpheus Media\"}},{\"attributeHeader\":{\"labelValue\":\"Mortgagebot\",\"primaryLabelValue\":\"Mortgagebot\"}},{\"attributeHeader\":{\"labelValue\":\"MOSAK Advertising & Insights\",\"primaryLabelValue\":\"MOSAK Advertising & Insights\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"Motive Interactive\",\"primaryLabelValue\":\"Motive Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mountainside Fitness Centers\",\"primaryLabelValue\":\"Mountainside Fitness Centers\"}},{\"attributeHeader\":{\"labelValue\":\"MPAY\",\"primaryLabelValue\":\"MPAY\"}},{\"attributeHeader\":{\"labelValue\":\"mPower Software Services\",\"primaryLabelValue\":\"mPower Software Services\"}},{\"attributeHeader\":{\"labelValue\":\"MRM Construction Services\",\"primaryLabelValue\":\"MRM Construction Services\"}},{\"attributeHeader\":{\"labelValue\":\"MTCSC\",\"primaryLabelValue\":\"MTCSC\"}},{\"attributeHeader\":{\"labelValue\":\"Multi Business Systems\",\"primaryLabelValue\":\"Multi Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Bank Services\",\"primaryLabelValue\":\"Multi-Bank Services\"}},{\"attributeHeader\":{\"labelValue\":\"Multi-Media Masters\",\"primaryLabelValue\":\"Multi-Media Masters\"}},{\"attributeHeader\":{\"labelValue\":\"Munger, Tolles & Olson\",\"primaryLabelValue\":\"Munger, Tolles & Olson\"}},{\"attributeHeader\":{\"labelValue\":\"Murdoch Security & Investigations\",\"primaryLabelValue\":\"Murdoch Security & Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"Mutex Systems\",\"primaryLabelValue\":\"Mutex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MVS\",\"primaryLabelValue\":\"MVS\"}},{\"attributeHeader\":{\"labelValue\":\"Myriad Supply\",\"primaryLabelValue\":\"Myriad Supply\"}},{\"attributeHeader\":{\"labelValue\":\"N.P. Construction of North Florida\",\"primaryLabelValue\":\"N.P. Construction of North Florida\"}},{\"attributeHeader\":{\"labelValue\":\"Naplia\",\"primaryLabelValue\":\"Naplia\"}},{\"attributeHeader\":{\"labelValue\":\"Nascent Systems\",\"primaryLabelValue\":\"Nascent Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Food Group\",\"primaryLabelValue\":\"National Food Group\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National Recovery Agency\",\"primaryLabelValue\":\"National Recovery Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Navicure\",\"primaryLabelValue\":\"Navicure\"}},{\"attributeHeader\":{\"labelValue\":\"NavigationArts\",\"primaryLabelValue\":\"NavigationArts\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Near Infinity\",\"primaryLabelValue\":\"Near Infinity\"}},{\"attributeHeader\":{\"labelValue\":\"NeoCom Solutions\",\"primaryLabelValue\":\"NeoCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NeoSystems\",\"primaryLabelValue\":\"NeoSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Nerds On Call\",\"primaryLabelValue\":\"Nerds On Call\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net Transcripts\",\"primaryLabelValue\":\"Net Transcripts\"}},{\"attributeHeader\":{\"labelValue\":\"Net@Work\",\"primaryLabelValue\":\"Net@Work\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"Neteon Technologies\",\"primaryLabelValue\":\"Neteon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NetGain\",\"primaryLabelValue\":\"NetGain\"}},{\"attributeHeader\":{\"labelValue\":\"NETtime Solutions\",\"primaryLabelValue\":\"NETtime Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Network International\",\"primaryLabelValue\":\"Network International\"}},{\"attributeHeader\":{\"labelValue\":\"Network9\",\"primaryLabelValue\":\"Network9\"}},{\"attributeHeader\":{\"labelValue\":\"Nevada State Corporate Network\",\"primaryLabelValue\":\"Nevada State Corporate Network\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New Flight Charters\",\"primaryLabelValue\":\"New Flight Charters\"}},{\"attributeHeader\":{\"labelValue\":\"New Holland Brewing\",\"primaryLabelValue\":\"New Holland Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"New Media Learning\",\"primaryLabelValue\":\"New Media Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Newegg\",\"primaryLabelValue\":\"Newegg\"}},{\"attributeHeader\":{\"labelValue\":\"Newgen Technologies\",\"primaryLabelValue\":\"Newgen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NEXT Financial Holdings\",\"primaryLabelValue\":\"NEXT Financial Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Nextrials\",\"primaryLabelValue\":\"Nextrials\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"Nital Trading\",\"primaryLabelValue\":\"Nital Trading\"}},{\"attributeHeader\":{\"labelValue\":\"No Limit Motorsport\",\"primaryLabelValue\":\"No Limit Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Moving\",\"primaryLabelValue\":\"NorthStar Moving\"}},{\"attributeHeader\":{\"labelValue\":\"NovaCopy\",\"primaryLabelValue\":\"NovaCopy\"}},{\"attributeHeader\":{\"labelValue\":\"NOVO 1\",\"primaryLabelValue\":\"NOVO 1\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelicor\",\"primaryLabelValue\":\"Ntelicor\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Safety Associates\",\"primaryLabelValue\":\"Nuclear Safety Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"NuView Systems\",\"primaryLabelValue\":\"NuView Systems\"}},{\"attributeHeader\":{\"labelValue\":\"O2B Kids\",\"primaryLabelValue\":\"O2B Kids\"}},{\"attributeHeader\":{\"labelValue\":\"Oak Grove Technologies\",\"primaryLabelValue\":\"Oak Grove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Systems\",\"primaryLabelValue\":\"Oasis Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Object Technology Solutions\",\"primaryLabelValue\":\"Object Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ObjectNet Technologies\",\"primaryLabelValue\":\"ObjectNet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OmniVue\",\"primaryLabelValue\":\"OmniVue\"}},{\"attributeHeader\":{\"labelValue\":\"OnDemand Resources\",\"primaryLabelValue\":\"OnDemand Resources\"}},{\"attributeHeader\":{\"labelValue\":\"One Call Now\",\"primaryLabelValue\":\"One Call Now\"}},{\"attributeHeader\":{\"labelValue\":\"One Source\",\"primaryLabelValue\":\"One Source\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Environmental\",\"primaryLabelValue\":\"One Stop Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"OneMD\",\"primaryLabelValue\":\"OneMD\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"OpenLink Financial\",\"primaryLabelValue\":\"OpenLink Financial\"}},{\"attributeHeader\":{\"labelValue\":\"OpenSpirit\",\"primaryLabelValue\":\"OpenSpirit\"}},{\"attributeHeader\":{\"labelValue\":\"Operative\",\"primaryLabelValue\":\"Operative\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OptiMA\",\"primaryLabelValue\":\"OptiMA\"}},{\"attributeHeader\":{\"labelValue\":\"Optimum Technology Solutions\",\"primaryLabelValue\":\"Optimum Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Oracle Diagnostic Laboratories\",\"primaryLabelValue\":\"Oracle Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Logic\",\"primaryLabelValue\":\"Orbit Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Organize.com\",\"primaryLabelValue\":\"Organize.com\"}},{\"attributeHeader\":{\"labelValue\":\"OriGene Technologies\",\"primaryLabelValue\":\"OriGene Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Orrick, Herrington & Sutcliffe\",\"primaryLabelValue\":\"Orrick, Herrington & Sutcliffe\"}},{\"attributeHeader\":{\"labelValue\":\"Otto Environmental Systems\",\"primaryLabelValue\":\"Otto Environmental Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outreach Telecom and Energy\",\"primaryLabelValue\":\"Outreach Telecom and Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Outsource Partners International\",\"primaryLabelValue\":\"Outsource Partners International\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Payroll\",\"primaryLabelValue\":\"Ovation Payroll\"}},{\"attributeHeader\":{\"labelValue\":\"overstockArt.com\",\"primaryLabelValue\":\"overstockArt.com\"}},{\"attributeHeader\":{\"labelValue\":\"P.W. Grosser Consulting\",\"primaryLabelValue\":\"P.W. Grosser Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Market International\",\"primaryLabelValue\":\"Pacific Market International\"}},{\"attributeHeader\":{\"labelValue\":\"Para-Plus Translations\",\"primaryLabelValue\":\"Para-Plus Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Park\",\"primaryLabelValue\":\"Park\"}},{\"attributeHeader\":{\"labelValue\":\"Parks Associates\",\"primaryLabelValue\":\"Parks Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partners + Napier\",\"primaryLabelValue\":\"Partners + Napier\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Electrical Services\",\"primaryLabelValue\":\"Partners Electrical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Parts Town\",\"primaryLabelValue\":\"Parts Town\"}},{\"attributeHeader\":{\"labelValue\":\"Partsearch Technologies\",\"primaryLabelValue\":\"Partsearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PayLock\",\"primaryLabelValue\":\"PayLock\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Processing\",\"primaryLabelValue\":\"Payment Processing\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"PC Parts\",\"primaryLabelValue\":\"PC Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Peach New Media\",\"primaryLabelValue\":\"Peach New Media\"}},{\"attributeHeader\":{\"labelValue\":\"Peak Health Solutions\",\"primaryLabelValue\":\"Peak Health Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pediatric Therapeutic Services\",\"primaryLabelValue\":\"Pediatric Therapeutic Services\"}},{\"attributeHeader\":{\"labelValue\":\"PEI\",\"primaryLabelValue\":\"PEI\"}},{\"attributeHeader\":{\"labelValue\":\"Pennoni Associates\",\"primaryLabelValue\":\"Pennoni Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Pentagroup Financial\",\"primaryLabelValue\":\"Pentagroup Financial\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleFinders.com\",\"primaryLabelValue\":\"PeopleFinders.com\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"Peppercom\",\"primaryLabelValue\":\"Peppercom\"}},{\"attributeHeader\":{\"labelValue\":\"PerfectPower\",\"primaryLabelValue\":\"PerfectPower\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Results\",\"primaryLabelValue\":\"Performance Results\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Software\",\"primaryLabelValue\":\"Performance Software\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins+Will\",\"primaryLabelValue\":\"Perkins+Will\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Doctors of America\",\"primaryLabelValue\":\"Pet Doctors of America\"}},{\"attributeHeader\":{\"labelValue\":\"Petersen\",\"primaryLabelValue\":\"Petersen\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharma-Care\",\"primaryLabelValue\":\"Pharma-Care\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaSmart\",\"primaryLabelValue\":\"PharmaSmart\"}},{\"attributeHeader\":{\"labelValue\":\"PharmaStrat\",\"primaryLabelValue\":\"PharmaStrat\"}},{\"attributeHeader\":{\"labelValue\":\"Photo Science\",\"primaryLabelValue\":\"Photo Science\"}},{\"attributeHeader\":{\"labelValue\":\"Phydeaux\",\"primaryLabelValue\":\"Phydeaux\"}},{\"attributeHeader\":{\"labelValue\":\"PicScout\",\"primaryLabelValue\":\"PicScout\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Publishing Group\",\"primaryLabelValue\":\"Pinnacle Publishing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Pita Pit USA\",\"primaryLabelValue\":\"Pita Pit USA\"}},{\"attributeHeader\":{\"labelValue\":\"PJA Advertising + Marketing\",\"primaryLabelValue\":\"PJA Advertising + Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"PlainsCapital\",\"primaryLabelValue\":\"PlainsCapital\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Fitness\",\"primaryLabelValue\":\"Planet Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Plant Fantasies\",\"primaryLabelValue\":\"Plant Fantasies\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"PLS Financial Services\",\"primaryLabelValue\":\"PLS Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"PMOLink\",\"primaryLabelValue\":\"PMOLink\"}},{\"attributeHeader\":{\"labelValue\":\"PolicyTech\",\"primaryLabelValue\":\"PolicyTech\"}},{\"attributeHeader\":{\"labelValue\":\"PolySource\",\"primaryLabelValue\":\"PolySource\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portal Solutions\",\"primaryLabelValue\":\"Portal Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Power Pro-Tech Services\",\"primaryLabelValue\":\"Power Pro-Tech Services\"}},{\"attributeHeader\":{\"labelValue\":\"PowerDirect Marketing\",\"primaryLabelValue\":\"PowerDirect Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Laser Services\",\"primaryLabelValue\":\"Precision Laser Services\"}},{\"attributeHeader\":{\"labelValue\":\"Predictive Service\",\"primaryLabelValue\":\"Predictive Service\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Medical Marketing\",\"primaryLabelValue\":\"Preferred Medical Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Graphics\",\"primaryLabelValue\":\"Premier Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Prestige Employee Administrators\",\"primaryLabelValue\":\"Prestige Employee Administrators\"}},{\"attributeHeader\":{\"labelValue\":\"Preval\",\"primaryLabelValue\":\"Preval\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PrintRunner\",\"primaryLabelValue\":\"PrintRunner\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pro-Air Services\",\"primaryLabelValue\":\"Pro-Air Services\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Promotion Consultants\",\"primaryLabelValue\":\"Proforma Promotion Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Spectrum Print Graphics\",\"primaryLabelValue\":\"Proforma Spectrum Print Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Progressive Medical\",\"primaryLabelValue\":\"Progressive Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Project Leadership Associates\",\"primaryLabelValue\":\"Project Leadership Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Projections\",\"primaryLabelValue\":\"Projections\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Promedica\",\"primaryLabelValue\":\"Promedica\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prosoft Technology Group\",\"primaryLabelValue\":\"Prosoft Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"ProtoType Industries\",\"primaryLabelValue\":\"ProtoType Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Providus\",\"primaryLabelValue\":\"Providus\"}},{\"attributeHeader\":{\"labelValue\":\"PSS-Product Support Solutions\",\"primaryLabelValue\":\"PSS-Product Support Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Puente Construction Enterprises\",\"primaryLabelValue\":\"Puente Construction Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse 360\",\"primaryLabelValue\":\"Pulse 360\"}},{\"attributeHeader\":{\"labelValue\":\"Pulse Systems\",\"primaryLabelValue\":\"Pulse Systems\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Qosina\",\"primaryLabelValue\":\"Qosina\"}},{\"attributeHeader\":{\"labelValue\":\"Quagga\",\"primaryLabelValue\":\"Quagga\"}},{\"attributeHeader\":{\"labelValue\":\"Quaker Steak & Lube\",\"primaryLabelValue\":\"Quaker Steak & Lube\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Wine & Spirits\",\"primaryLabelValue\":\"Quality Wine & Spirits\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Research International\",\"primaryLabelValue\":\"Quantum Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"QueBIT\",\"primaryLabelValue\":\"QueBIT\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quorum Business Solutions\",\"primaryLabelValue\":\"Quorum Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"R2C Group\",\"primaryLabelValue\":\"R2C Group\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radical Support\",\"primaryLabelValue\":\"Radical Support\"}},{\"attributeHeader\":{\"labelValue\":\"Radio Flyer\",\"primaryLabelValue\":\"Radio Flyer\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"Radius Financial Group\",\"primaryLabelValue\":\"Radius Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"RAM Technologies\",\"primaryLabelValue\":\"RAM Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Learning Deployment\",\"primaryLabelValue\":\"Rapid Learning Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Raven Rock Workwear\",\"primaryLabelValue\":\"Raven Rock Workwear\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reality Check Network\",\"primaryLabelValue\":\"Reality Check Network\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recurrent Technologies\",\"primaryLabelValue\":\"Recurrent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Red Arrow Logistics\",\"primaryLabelValue\":\"Red Arrow Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Red Cloud Promotions\",\"primaryLabelValue\":\"Red Cloud Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Red Restaurant Group\",\"primaryLabelValue\":\"Red Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"Reliant Transportation\",\"primaryLabelValue\":\"Reliant Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Renewal Design-Build\",\"primaryLabelValue\":\"Renewal Design-Build\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (AR)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (IN)\"}},{\"attributeHeader\":{\"labelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\",\"primaryLabelValue\":\"Rent-n-Roll Custom Wheels and Tires (SC)\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"Rescue Social Change Group\",\"primaryLabelValue\":\"Rescue Social Change Group\"}},{\"attributeHeader\":{\"labelValue\":\"Respira Medical\",\"primaryLabelValue\":\"Respira Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Responsys\",\"primaryLabelValue\":\"Responsys\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Maintenance Service\",\"primaryLabelValue\":\"Retail Maintenance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"RevenueMed\",\"primaryLabelValue\":\"RevenueMed\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Richland\",\"primaryLabelValue\":\"Richland\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RightAnswers\",\"primaryLabelValue\":\"RightAnswers\"}},{\"attributeHeader\":{\"labelValue\":\"RightStaff\",\"primaryLabelValue\":\"RightStaff\"}},{\"attributeHeader\":{\"labelValue\":\"Rinkya\",\"primaryLabelValue\":\"Rinkya\"}},{\"attributeHeader\":{\"labelValue\":\"Road Ranger\",\"primaryLabelValue\":\"Road Ranger\"}},{\"attributeHeader\":{\"labelValue\":\"Roadrunner Transportation Services\",\"primaryLabelValue\":\"Roadrunner Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Rocket Direct Communications\",\"primaryLabelValue\":\"Rocket Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Rokkan\",\"primaryLabelValue\":\"Rokkan\"}},{\"attributeHeader\":{\"labelValue\":\"Rothstein Kass\",\"primaryLabelValue\":\"Rothstein Kass\"}},{\"attributeHeader\":{\"labelValue\":\"Roy Englebrecht Promotions\",\"primaryLabelValue\":\"Roy Englebrecht Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"RPA Engineering\",\"primaryLabelValue\":\"RPA Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"RPI\",\"primaryLabelValue\":\"RPI\"}},{\"attributeHeader\":{\"labelValue\":\"Rumors Salon and Spa\",\"primaryLabelValue\":\"Rumors Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Rustic Crust\",\"primaryLabelValue\":\"Rustic Crust\"}},{\"attributeHeader\":{\"labelValue\":\"RW Armstrong\",\"primaryLabelValue\":\"RW Armstrong\"}},{\"attributeHeader\":{\"labelValue\":\"S&A Cherokee\",\"primaryLabelValue\":\"S&A Cherokee\"}},{\"attributeHeader\":{\"labelValue\":\"S.A. Technology\",\"primaryLabelValue\":\"S.A. Technology\"}},{\"attributeHeader\":{\"labelValue\":\"S4\",\"primaryLabelValue\":\"S4\"}},{\"attributeHeader\":{\"labelValue\":\"Saddleback Plumbing\",\"primaryLabelValue\":\"Saddleback Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"Safe Systems\",\"primaryLabelValue\":\"Safe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Safespan Platform Systems\",\"primaryLabelValue\":\"Safespan Platform Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Environmental Consulting\",\"primaryLabelValue\":\"Sage Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Saladworks\",\"primaryLabelValue\":\"Saladworks\"}},{\"attributeHeader\":{\"labelValue\":\"Sales Partnerships\",\"primaryLabelValue\":\"Sales Partnerships\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Sansay\",\"primaryLabelValue\":\"Sansay\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Saratoga Technologies\",\"primaryLabelValue\":\"Saratoga Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Schill Landscaping and Lawn Care Services\",\"primaryLabelValue\":\"Schill Landscaping and Lawn Care Services\"}},{\"attributeHeader\":{\"labelValue\":\"School House Learning Communities\",\"primaryLabelValue\":\"School House Learning Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Schoolwires\",\"primaryLabelValue\":\"Schoolwires\"}},{\"attributeHeader\":{\"labelValue\":\"Schulte Roth & Zabel\",\"primaryLabelValue\":\"Schulte Roth & Zabel\"}},{\"attributeHeader\":{\"labelValue\":\"Schumacher Group\",\"primaryLabelValue\":\"Schumacher Group\"}},{\"attributeHeader\":{\"labelValue\":\"Schweitzer Engineering Laboratories\",\"primaryLabelValue\":\"Schweitzer Engineering Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Your Trip\",\"primaryLabelValue\":\"Scrap Your Trip\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"SDG\",\"primaryLabelValue\":\"SDG\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Second Wind\",\"primaryLabelValue\":\"Second Wind\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Securicon\",\"primaryLabelValue\":\"Securicon\"}},{\"attributeHeader\":{\"labelValue\":\"Select Communications\",\"primaryLabelValue\":\"Select Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Select Transportation\",\"primaryLabelValue\":\"Select Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Whole Health\",\"primaryLabelValue\":\"Senior Whole Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sense Corp\",\"primaryLabelValue\":\"Sense Corp\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Sentient\",\"primaryLabelValue\":\"Sentient\"}},{\"attributeHeader\":{\"labelValue\":\"Sentry Communications & Security\",\"primaryLabelValue\":\"Sentry Communications & Security\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SeriousShops.com\",\"primaryLabelValue\":\"SeriousShops.com\"}},{\"attributeHeader\":{\"labelValue\":\"ServerCentral\",\"primaryLabelValue\":\"ServerCentral\"}},{\"attributeHeader\":{\"labelValue\":\"Service By Medallion\",\"primaryLabelValue\":\"Service By Medallion\"}},{\"attributeHeader\":{\"labelValue\":\"Servi-Tek\",\"primaryLabelValue\":\"Servi-Tek\"}},{\"attributeHeader\":{\"labelValue\":\"SetFocus\",\"primaryLabelValue\":\"SetFocus\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"Shook, Hardy & Bacon\",\"primaryLabelValue\":\"Shook, Hardy & Bacon\"}},{\"attributeHeader\":{\"labelValue\":\"Showdown Displays\",\"primaryLabelValue\":\"Showdown Displays\"}},{\"attributeHeader\":{\"labelValue\":\"SIA Group\",\"primaryLabelValue\":\"SIA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sideman & Bancroft\",\"primaryLabelValue\":\"Sideman & Bancroft\"}},{\"attributeHeader\":{\"labelValue\":\"Sidley Austin\",\"primaryLabelValue\":\"Sidley Austin\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Fencing & Flooring Systems\",\"primaryLabelValue\":\"Signature Fencing & Flooring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Gumpertz & Heger\",\"primaryLabelValue\":\"Simpson Gumpertz & Heger\"}},{\"attributeHeader\":{\"labelValue\":\"SkillStorm\",\"primaryLabelValue\":\"SkillStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skoda Minotti\",\"primaryLabelValue\":\"Skoda Minotti\"}},{\"attributeHeader\":{\"labelValue\":\"SkyBitz\",\"primaryLabelValue\":\"SkyBitz\"}},{\"attributeHeader\":{\"labelValue\":\"SmartCEO Media\",\"primaryLabelValue\":\"SmartCEO Media\"}},{\"attributeHeader\":{\"labelValue\":\"SmartLinx Solutions\",\"primaryLabelValue\":\"SmartLinx Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPak Equine\",\"primaryLabelValue\":\"SmartPak Equine\"}},{\"attributeHeader\":{\"labelValue\":\"SmartRevenue\",\"primaryLabelValue\":\"SmartRevenue\"}},{\"attributeHeader\":{\"labelValue\":\"Smartronix\",\"primaryLabelValue\":\"Smartronix\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SofterWare\",\"primaryLabelValue\":\"SofterWare\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorg Architects\",\"primaryLabelValue\":\"Sorg Architects\"}},{\"attributeHeader\":{\"labelValue\":\"SoundSense\",\"primaryLabelValue\":\"SoundSense\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diagnostic Laboratories\",\"primaryLabelValue\":\"Southern Diagnostic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Diversified Technologies\",\"primaryLabelValue\":\"Southern Diversified Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Southwest Solutions Group\",\"primaryLabelValue\":\"Southwest Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sovereign Consulting\",\"primaryLabelValue\":\"Sovereign Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"space150\",\"primaryLabelValue\":\"space150\"}},{\"attributeHeader\":{\"labelValue\":\"SpaceBound\",\"primaryLabelValue\":\"SpaceBound\"}},{\"attributeHeader\":{\"labelValue\":\"SPADAC\",\"primaryLabelValue\":\"SPADAC\"}},{\"attributeHeader\":{\"labelValue\":\"SPEAR Physical Therapy\",\"primaryLabelValue\":\"SPEAR Physical Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"SpectraSensors\",\"primaryLabelValue\":\"SpectraSensors\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Controls\",\"primaryLabelValue\":\"Spectrum Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Industries\",\"primaryLabelValue\":\"Spectrum Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Technologies\",\"primaryLabelValue\":\"Spectrum Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Squire, Sanders & Dempsey\",\"primaryLabelValue\":\"Squire, Sanders & Dempsey\"}},{\"attributeHeader\":{\"labelValue\":\"SRI Telecom\",\"primaryLabelValue\":\"SRI Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stafflogix\",\"primaryLabelValue\":\"Stafflogix\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Stalwart\",\"primaryLabelValue\":\"Stalwart\"}},{\"attributeHeader\":{\"labelValue\":\"StarTech.com\",\"primaryLabelValue\":\"StarTech.com\"}},{\"attributeHeader\":{\"labelValue\":\"Stefan Sydor Optics\",\"primaryLabelValue\":\"Stefan Sydor Optics\"}},{\"attributeHeader\":{\"labelValue\":\"STI Electronics\",\"primaryLabelValue\":\"STI Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Stinson Morrison Hecker\",\"primaryLabelValue\":\"Stinson Morrison Hecker\"}},{\"attributeHeader\":{\"labelValue\":\"Stoel Rives\",\"primaryLabelValue\":\"Stoel Rives\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Fundraising\",\"primaryLabelValue\":\"Strategic Fundraising\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Strike Construction\",\"primaryLabelValue\":\"Strike Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Struxture Architects\",\"primaryLabelValue\":\"Struxture Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Studio 921 Salon & Day Spa\",\"primaryLabelValue\":\"Studio 921 Salon & Day Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sun Light & Power\",\"primaryLabelValue\":\"Sun Light & Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunrise Hitek\",\"primaryLabelValue\":\"Sunrise Hitek\"}},{\"attributeHeader\":{\"labelValue\":\"Sunshine Kids Juvenile Products\",\"primaryLabelValue\":\"Sunshine Kids Juvenile Products\"}},{\"attributeHeader\":{\"labelValue\":\"SunStar\",\"primaryLabelValue\":\"SunStar\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Linen Service\",\"primaryLabelValue\":\"Superior Linen Service\"}},{\"attributeHeader\":{\"labelValue\":\"Superior Petroleum\",\"primaryLabelValue\":\"Superior Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Supermarket Source\",\"primaryLabelValue\":\"Supermarket Source\"}},{\"attributeHeader\":{\"labelValue\":\"SuperTech\",\"primaryLabelValue\":\"SuperTech\"}},{\"attributeHeader\":{\"labelValue\":\"Supremesoft\",\"primaryLabelValue\":\"Supremesoft\"}},{\"attributeHeader\":{\"labelValue\":\"SureScore\",\"primaryLabelValue\":\"SureScore\"}},{\"attributeHeader\":{\"labelValue\":\"Surf Cowboy\",\"primaryLabelValue\":\"Surf Cowboy\"}},{\"attributeHeader\":{\"labelValue\":\"Surmotech\",\"primaryLabelValue\":\"Surmotech\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Asbill & Brennan\",\"primaryLabelValue\":\"Sutherland Asbill & Brennan\"}},{\"attributeHeader\":{\"labelValue\":\"Sutherland Global Services\",\"primaryLabelValue\":\"Sutherland Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Suzannes Specialties\",\"primaryLabelValue\":\"Suzannes Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"SWS Re-Distribution\",\"primaryLabelValue\":\"SWS Re-Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Syncroness\",\"primaryLabelValue\":\"Syncroness\"}},{\"attributeHeader\":{\"labelValue\":\"Synergy Solutions\",\"primaryLabelValue\":\"Synergy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"T&W Operations\",\"primaryLabelValue\":\"T&W Operations\"}},{\"attributeHeader\":{\"labelValue\":\"Tabar\",\"primaryLabelValue\":\"Tabar\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Tailored Label Products\",\"primaryLabelValue\":\"Tailored Label Products\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Talon Professional Services\",\"primaryLabelValue\":\"Talon Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"Talon/LPE\",\"primaryLabelValue\":\"Talon/LPE\"}},{\"attributeHeader\":{\"labelValue\":\"Tanager\",\"primaryLabelValue\":\"Tanager\"}},{\"attributeHeader\":{\"labelValue\":\"Tandem HR\",\"primaryLabelValue\":\"Tandem HR\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"Taphandles\",\"primaryLabelValue\":\"Taphandles\"}},{\"attributeHeader\":{\"labelValue\":\"Taras Techniques\",\"primaryLabelValue\":\"Taras Techniques\"}},{\"attributeHeader\":{\"labelValue\":\"TargetX\",\"primaryLabelValue\":\"TargetX\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"TC3 Telecom\",\"primaryLabelValue\":\"TC3 Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"TCG\",\"primaryLabelValue\":\"TCG\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"TDK Technologies\",\"primaryLabelValue\":\"TDK Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Manufacturing\",\"primaryLabelValue\":\"Tech Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Techbarn.com\",\"primaryLabelValue\":\"Techbarn.com\"}},{\"attributeHeader\":{\"labelValue\":\"TechniPak\",\"primaryLabelValue\":\"TechniPak\"}},{\"attributeHeader\":{\"labelValue\":\"TechnoDyne\",\"primaryLabelValue\":\"TechnoDyne\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Tekpros\",\"primaryLabelValue\":\"Tekpros\"}},{\"attributeHeader\":{\"labelValue\":\"TeleProviders\",\"primaryLabelValue\":\"TeleProviders\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TGA Solutions\",\"primaryLabelValue\":\"TGA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"TharpeRobbins\",\"primaryLabelValue\":\"TharpeRobbins\"}},{\"attributeHeader\":{\"labelValue\":\"The Allied Power Group\",\"primaryLabelValue\":\"The Allied Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Aspen Brands Company\",\"primaryLabelValue\":\"The Aspen Brands Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Barbour Group\",\"primaryLabelValue\":\"The Barbour Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Benecon Group\",\"primaryLabelValue\":\"The Benecon Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Design People\",\"primaryLabelValue\":\"The Design People\"}},{\"attributeHeader\":{\"labelValue\":\"The Exit Light Company\",\"primaryLabelValue\":\"The Exit Light Company\"}},{\"attributeHeader\":{\"labelValue\":\"The FruitGuys\",\"primaryLabelValue\":\"The FruitGuys\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Go Daddy Group\",\"primaryLabelValue\":\"The Go Daddy Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Hamister Group\",\"primaryLabelValue\":\"The Hamister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Intermarket Group\",\"primaryLabelValue\":\"The Intermarket Group\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Linc Group\",\"primaryLabelValue\":\"The Linc Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Lobster Place\",\"primaryLabelValue\":\"The Lobster Place\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Online 401(k)\",\"primaryLabelValue\":\"The Online 401(k)\"}},{\"attributeHeader\":{\"labelValue\":\"The Onyx Group\",\"primaryLabelValue\":\"The Onyx Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Phia Group\",\"primaryLabelValue\":\"The Phia Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Planet\",\"primaryLabelValue\":\"The Planet\"}},{\"attributeHeader\":{\"labelValue\":\"The Portaro Group\",\"primaryLabelValue\":\"The Portaro Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PSP Group\",\"primaryLabelValue\":\"The PSP Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Tellennium Group\",\"primaryLabelValue\":\"The Tellennium Group\"}},{\"attributeHeader\":{\"labelValue\":\"The TM Group\",\"primaryLabelValue\":\"The TM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Transtec Group\",\"primaryLabelValue\":\"The Transtec Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Velez Corporation\",\"primaryLabelValue\":\"The Velez Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Thinkwell Group\",\"primaryLabelValue\":\"Thinkwell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Third Sun Solar & Wind Power\",\"primaryLabelValue\":\"Third Sun Solar & Wind Power\"}},{\"attributeHeader\":{\"labelValue\":\"Third Wave Systems\",\"primaryLabelValue\":\"Third Wave Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ThomasArts\",\"primaryLabelValue\":\"ThomasArts\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson & Knight\",\"primaryLabelValue\":\"Thompson & Knight\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Creek\",\"primaryLabelValue\":\"Thompson Creek\"}},{\"attributeHeader\":{\"labelValue\":\"Ticket Alternative\",\"primaryLabelValue\":\"Ticket Alternative\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TIG Global\",\"primaryLabelValue\":\"TIG Global\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Claw\",\"primaryLabelValue\":\"Tiger Claw\"}},{\"attributeHeader\":{\"labelValue\":\"Tiger Commissary Services\",\"primaryLabelValue\":\"Tiger Commissary Services\"}},{\"attributeHeader\":{\"labelValue\":\"Time Timer\",\"primaryLabelValue\":\"Time Timer\"}},{\"attributeHeader\":{\"labelValue\":\"TIPS Consulting\",\"primaryLabelValue\":\"TIPS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"TireMax of North America\",\"primaryLabelValue\":\"TireMax of North America\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Total Beverage Solution\",\"primaryLabelValue\":\"Total Beverage Solution\"}},{\"attributeHeader\":{\"labelValue\":\"Touchtown\",\"primaryLabelValue\":\"Touchtown\"}},{\"attributeHeader\":{\"labelValue\":\"Town Money Saver\",\"primaryLabelValue\":\"Town Money Saver\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Trade the Markets\",\"primaryLabelValue\":\"Trade the Markets\"}},{\"attributeHeader\":{\"labelValue\":\"Traf-Tex\",\"primaryLabelValue\":\"Traf-Tex\"}},{\"attributeHeader\":{\"labelValue\":\"Trans Atlantic Systems\",\"primaryLabelValue\":\"Trans Atlantic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Traube Tent\",\"primaryLabelValue\":\"Traube Tent\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Digital Media\",\"primaryLabelValue\":\"Triad Digital Media\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Tribeca Technology Solutons\",\"primaryLabelValue\":\"Tribeca Technology Solutons\"}},{\"attributeHeader\":{\"labelValue\":\"Trideum\",\"primaryLabelValue\":\"Trideum\"}},{\"attributeHeader\":{\"labelValue\":\"Trinet Internet Solutions\",\"primaryLabelValue\":\"Trinet Internet Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Trisonics\",\"primaryLabelValue\":\"Trisonics\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"Tri-Win Digital Print and Mail Services\",\"primaryLabelValue\":\"Tri-Win Digital Print and Mail Services\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TrollAndToad.com\",\"primaryLabelValue\":\"TrollAndToad.com\"}},{\"attributeHeader\":{\"labelValue\":\"Tropical Smoothie Cafe\",\"primaryLabelValue\":\"Tropical Smoothie Cafe\"}},{\"attributeHeader\":{\"labelValue\":\"TrueNorth\",\"primaryLabelValue\":\"TrueNorth\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"T-Scan\",\"primaryLabelValue\":\"T-Scan\"}},{\"attributeHeader\":{\"labelValue\":\"TTS\",\"primaryLabelValue\":\"TTS\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Tundra Specialties\",\"primaryLabelValue\":\"Tundra Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"Two West\",\"primaryLabelValue\":\"Two West\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"U-GRO Learning Centres\",\"primaryLabelValue\":\"U-GRO Learning Centres\"}},{\"attributeHeader\":{\"labelValue\":\"Ultimate Nursing Services\",\"primaryLabelValue\":\"Ultimate Nursing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Unishippers\",\"primaryLabelValue\":\"Unishippers\"}},{\"attributeHeader\":{\"labelValue\":\"United Bank of El Paso del Norte\",\"primaryLabelValue\":\"United Bank of El Paso del Norte\"}},{\"attributeHeader\":{\"labelValue\":\"United Global Logistics\",\"primaryLabelValue\":\"United Global Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"United Source One\",\"primaryLabelValue\":\"United Source One\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Univar\",\"primaryLabelValue\":\"Univar\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Accounting Center\",\"primaryLabelValue\":\"Universal Accounting Center\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Services of America\",\"primaryLabelValue\":\"Universal Services of America\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uno Alla Volta\",\"primaryLabelValue\":\"Uno Alla Volta\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Pharmacy\",\"primaryLabelValue\":\"Upstate Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"US LED\",\"primaryLabelValue\":\"US LED\"}},{\"attributeHeader\":{\"labelValue\":\"US Markerboard\",\"primaryLabelValue\":\"US Markerboard\"}},{\"attributeHeader\":{\"labelValue\":\"USGC\",\"primaryLabelValue\":\"USGC\"}},{\"attributeHeader\":{\"labelValue\":\"V12 Group\",\"primaryLabelValue\":\"V12 Group\"}},{\"attributeHeader\":{\"labelValue\":\"Valador\",\"primaryLabelValue\":\"Valador\"}},{\"attributeHeader\":{\"labelValue\":\"Validity Screening Solutions\",\"primaryLabelValue\":\"Validity Screening Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Valley Recycling\",\"primaryLabelValue\":\"Valley Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"VarData\",\"primaryLabelValue\":\"VarData\"}},{\"attributeHeader\":{\"labelValue\":\"VarsityPlaza\",\"primaryLabelValue\":\"VarsityPlaza\"}},{\"attributeHeader\":{\"labelValue\":\"Venda\",\"primaryLabelValue\":\"Venda\"}},{\"attributeHeader\":{\"labelValue\":\"VentureNet\",\"primaryLabelValue\":\"VentureNet\"}},{\"attributeHeader\":{\"labelValue\":\"Venturity Financial Partners\",\"primaryLabelValue\":\"Venturity Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Veritis Group\",\"primaryLabelValue\":\"Veritis Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vernier Software & Technology\",\"primaryLabelValue\":\"Vernier Software & Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Vertafore\",\"primaryLabelValue\":\"Vertafore\"}},{\"attributeHeader\":{\"labelValue\":\"Vertical Marketing Network\",\"primaryLabelValue\":\"Vertical Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"VerticalResponse\",\"primaryLabelValue\":\"VerticalResponse\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vindicia\",\"primaryLabelValue\":\"Vindicia\"}},{\"attributeHeader\":{\"labelValue\":\"Vinson & Elkins\",\"primaryLabelValue\":\"Vinson & Elkins\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual\",\"primaryLabelValue\":\"Virtual\"}},{\"attributeHeader\":{\"labelValue\":\"Virtual Hold Technology\",\"primaryLabelValue\":\"Virtual Hold Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Virtustream\",\"primaryLabelValue\":\"Virtustream\"}},{\"attributeHeader\":{\"labelValue\":\"VisionOne\",\"primaryLabelValue\":\"VisionOne\"}},{\"attributeHeader\":{\"labelValue\":\"Visual Concepts\",\"primaryLabelValue\":\"Visual Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Vizio\",\"primaryLabelValue\":\"Vizio\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vocera Communications\",\"primaryLabelValue\":\"Vocera Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Vocon\",\"primaryLabelValue\":\"Vocon\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Vormittag Associates\",\"primaryLabelValue\":\"Vormittag Associates\"}},{\"attributeHeader\":{\"labelValue\":\"V-Soft Consulting Group\",\"primaryLabelValue\":\"V-Soft Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"WAGIC\",\"primaryLabelValue\":\"WAGIC\"}},{\"attributeHeader\":{\"labelValue\":\"Walling Data\",\"primaryLabelValue\":\"Walling Data\"}},{\"attributeHeader\":{\"labelValue\":\"Water Associates\",\"primaryLabelValue\":\"Water Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Watermark\",\"primaryLabelValue\":\"Watermark\"}},{\"attributeHeader\":{\"labelValue\":\"WCS Lending\",\"primaryLabelValue\":\"WCS Lending\"}},{\"attributeHeader\":{\"labelValue\":\"WebVisible\",\"primaryLabelValue\":\"WebVisible\"}},{\"attributeHeader\":{\"labelValue\":\"Weed Man\",\"primaryLabelValue\":\"Weed Man\"}},{\"attributeHeader\":{\"labelValue\":\"Weil, Gotshal & Manges\",\"primaryLabelValue\":\"Weil, Gotshal & Manges\"}},{\"attributeHeader\":{\"labelValue\":\"Welocalize\",\"primaryLabelValue\":\"Welocalize\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Western International Securities\",\"primaryLabelValue\":\"Western International Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wheat Systems Integration\",\"primaryLabelValue\":\"Wheat Systems Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Machine & Tool\",\"primaryLabelValue\":\"Whelan Machine & Tool\"}},{\"attributeHeader\":{\"labelValue\":\"White Glove Technologies\",\"primaryLabelValue\":\"White Glove Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"WideOrbit\",\"primaryLabelValue\":\"WideOrbit\"}},{\"attributeHeader\":{\"labelValue\":\"Wier & Associates\",\"primaryLabelValue\":\"Wier & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Wildtree\",\"primaryLabelValue\":\"Wildtree\"}},{\"attributeHeader\":{\"labelValue\":\"Wilshire Connection\",\"primaryLabelValue\":\"Wilshire Connection\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\",\"primaryLabelValue\":\"Wilson Elser Moskowitz Edelman & Dicker\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Sonsini Goodrich & Rosati\",\"primaryLabelValue\":\"Wilson Sonsini Goodrich & Rosati\"}},{\"attributeHeader\":{\"labelValue\":\"Wimmer Solutions\",\"primaryLabelValue\":\"Wimmer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Winder Farms\",\"primaryLabelValue\":\"Winder Farms\"}},{\"attributeHeader\":{\"labelValue\":\"WineCommune\",\"primaryLabelValue\":\"WineCommune\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Zone\",\"primaryLabelValue\":\"Wireless Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Wiser Company\",\"primaryLabelValue\":\"Wiser Company\"}},{\"attributeHeader\":{\"labelValue\":\"Wojan Window & Door\",\"primaryLabelValue\":\"Wojan Window & Door\"}},{\"attributeHeader\":{\"labelValue\":\"Woodward Design+Build\",\"primaryLabelValue\":\"Woodward Design+Build\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WorldLink\",\"primaryLabelValue\":\"WorldLink\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Supply\",\"primaryLabelValue\":\"Worldwide Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Wound Care Advantage\",\"primaryLabelValue\":\"Wound Care Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Xantrion\",\"primaryLabelValue\":\"Xantrion\"}},{\"attributeHeader\":{\"labelValue\":\"Xchange Telecom\",\"primaryLabelValue\":\"Xchange Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"XeteX\",\"primaryLabelValue\":\"XeteX\"}},{\"attributeHeader\":{\"labelValue\":\"XIFIN\",\"primaryLabelValue\":\"XIFIN\"}},{\"attributeHeader\":{\"labelValue\":\"Xplane\",\"primaryLabelValue\":\"Xplane\"}},{\"attributeHeader\":{\"labelValue\":\"Xterprise\",\"primaryLabelValue\":\"Xterprise\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ZGF Architects\",\"primaryLabelValue\":\"ZGF Architects\"}},{\"attributeHeader\":{\"labelValue\":\"ZirMed\",\"primaryLabelValue\":\"ZirMed\"}},{\"attributeHeader\":{\"labelValue\":\"Zobmondo!! Entertainment\",\"primaryLabelValue\":\"Zobmondo!! Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"123 Exteriors\",\"primaryLabelValue\":\"123 Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"1-888-OhioComp\",\"primaryLabelValue\":\"1-888-OhioComp\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"3E\",\"primaryLabelValue\":\"3E\"}},{\"attributeHeader\":{\"labelValue\":\"4Wall Entertainment\",\"primaryLabelValue\":\"4Wall Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"5LINX Enterprises\",\"primaryLabelValue\":\"5LINX Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"7 Simple Machines\",\"primaryLabelValue\":\"7 Simple Machines\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"A&R Tarpaulins\",\"primaryLabelValue\":\"A&R Tarpaulins\"}},{\"attributeHeader\":{\"labelValue\":\"A. Pomerantz & Co.\",\"primaryLabelValue\":\"A. Pomerantz & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Tutor U\",\"primaryLabelValue\":\"A+ Tutor U\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Plumbing\",\"primaryLabelValue\":\"Abacus Plumbing\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"ABCOMRents.com\",\"primaryLabelValue\":\"ABCOMRents.com\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"ACAI Associates\",\"primaryLabelValue\":\"ACAI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access Worldwide\",\"primaryLabelValue\":\"Access Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"Acclaim Technical Services\",\"primaryLabelValue\":\"Acclaim Technical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Account Control Technology\",\"primaryLabelValue\":\"Account Control Technology\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Achieve3000\",\"primaryLabelValue\":\"Achieve3000\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Acquity Group\",\"primaryLabelValue\":\"Acquity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"Actio\",\"primaryLabelValue\":\"Actio\"}},{\"attributeHeader\":{\"labelValue\":\"Action Target\",\"primaryLabelValue\":\"Action Target\"}},{\"attributeHeader\":{\"labelValue\":\"Acxius Strategic Consulting\",\"primaryLabelValue\":\"Acxius Strategic Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Facial Plastic Surgery Center\",\"primaryLabelValue\":\"Advanced Facial Plastic Surgery Center\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Network Solutions\",\"primaryLabelValue\":\"Advanced Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technical Solutions\",\"primaryLabelValue\":\"Advanced Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Vision Research\",\"primaryLabelValue\":\"Advanced Vision Research\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AdvertiseDoorToDoor.com\",\"primaryLabelValue\":\"AdvertiseDoorToDoor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Aerodyn Engineering\",\"primaryLabelValue\":\"Aerodyn Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Affinion Group Holdings\",\"primaryLabelValue\":\"Affinion Group Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"AGM Container Controls\",\"primaryLabelValue\":\"AGM Container Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Agosto\",\"primaryLabelValue\":\"Agosto\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"AIReS\",\"primaryLabelValue\":\"AIReS\"}},{\"attributeHeader\":{\"labelValue\":\"AIRSIS\",\"primaryLabelValue\":\"AIRSIS\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"AKA Media\",\"primaryLabelValue\":\"AKA Media\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Albrecht & Co.\",\"primaryLabelValue\":\"Albrecht & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Phase Security\",\"primaryLabelValue\":\"All Phase Security\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Sensors Corporation\",\"primaryLabelValue\":\"All Sensors Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"Allen Corporation of America\",\"primaryLabelValue\":\"Allen Corporation of America\"}},{\"attributeHeader\":{\"labelValue\":\"Alliance Solutions Group\",\"primaryLabelValue\":\"Alliance Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Allied Industries\",\"primaryLabelValue\":\"Allied Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Alltrust Insurance\",\"primaryLabelValue\":\"Alltrust Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Access\",\"primaryLabelValue\":\"Alpine Access\"}},{\"attributeHeader\":{\"labelValue\":\"Alpine Waste & Recycling\",\"primaryLabelValue\":\"Alpine Waste & Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Alps Controls\",\"primaryLabelValue\":\"Alps Controls\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Amadeus Consulting\",\"primaryLabelValue\":\"Amadeus Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amelia's\",\"primaryLabelValue\":\"Amelia's\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American Exteriors\",\"primaryLabelValue\":\"American Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"American Paper Optics\",\"primaryLabelValue\":\"American Paper Optics\"}},{\"attributeHeader\":{\"labelValue\":\"American Portfolios Financial Services\",\"primaryLabelValue\":\"American Portfolios Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"American Specialty Health\",\"primaryLabelValue\":\"American Specialty Health\"}},{\"attributeHeader\":{\"labelValue\":\"AmericaRx.com\",\"primaryLabelValue\":\"AmericaRx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Americollect\",\"primaryLabelValue\":\"Americollect\"}},{\"attributeHeader\":{\"labelValue\":\"Ameri-Kleen\",\"primaryLabelValue\":\"Ameri-Kleen\"}},{\"attributeHeader\":{\"labelValue\":\"Amtek Consulting\",\"primaryLabelValue\":\"Amtek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Andrews & Company\",\"primaryLabelValue\":\"Andrews & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annapolis Micro Systems\",\"primaryLabelValue\":\"Annapolis Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Annese & Associates\",\"primaryLabelValue\":\"Annese & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AnthroTronix\",\"primaryLabelValue\":\"AnthroTronix\"}},{\"attributeHeader\":{\"labelValue\":\"Apex Systems\",\"primaryLabelValue\":\"Apex Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"Aprimo\",\"primaryLabelValue\":\"Aprimo\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptela\",\"primaryLabelValue\":\"Aptela\"}},{\"attributeHeader\":{\"labelValue\":\"Aquire\",\"primaryLabelValue\":\"Aquire\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Marketing Services\",\"primaryLabelValue\":\"Archway Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Arcus\",\"primaryLabelValue\":\"Arcus\"}},{\"attributeHeader\":{\"labelValue\":\"Area51-ESG\",\"primaryLabelValue\":\"Area51-ESG\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadium\",\"primaryLabelValue\":\"Arkadium\"}},{\"attributeHeader\":{\"labelValue\":\"Armedia\",\"primaryLabelValue\":\"Armedia\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"Arora Engineers\",\"primaryLabelValue\":\"Arora Engineers\"}},{\"attributeHeader\":{\"labelValue\":\"Arroyo Process Equipment\",\"primaryLabelValue\":\"Arroyo Process Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASD\",\"primaryLabelValue\":\"ASD\"}},{\"attributeHeader\":{\"labelValue\":\"ASK Staffing\",\"primaryLabelValue\":\"ASK Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"Astek Wallcovering\",\"primaryLabelValue\":\"Astek Wallcovering\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT Conference\",\"primaryLabelValue\":\"AT Conference\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Business Technologies\",\"primaryLabelValue\":\"Atlantic Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Atlas Travel International\",\"primaryLabelValue\":\"Atlas Travel International\"}},{\"attributeHeader\":{\"labelValue\":\"AtNetPlus\",\"primaryLabelValue\":\"AtNetPlus\"}},{\"attributeHeader\":{\"labelValue\":\"Atomic Tattoos\",\"primaryLabelValue\":\"Atomic Tattoos\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"Austin Ribbon & Computer\",\"primaryLabelValue\":\"Austin Ribbon & Computer\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Events\",\"primaryLabelValue\":\"Automotive Events\"}},{\"attributeHeader\":{\"labelValue\":\"Automotive Product Consultants\",\"primaryLabelValue\":\"Automotive Product Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"AutoTec\",\"primaryLabelValue\":\"AutoTec\"}},{\"attributeHeader\":{\"labelValue\":\"Avalanche Creative Services\",\"primaryLabelValue\":\"Avalanche Creative Services\"}},{\"attributeHeader\":{\"labelValue\":\"Avalex Technologies Corporation\",\"primaryLabelValue\":\"Avalex Technologies Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Avidian Technologies\",\"primaryLabelValue\":\"Avidian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Avineon\",\"primaryLabelValue\":\"Avineon\"}},{\"attributeHeader\":{\"labelValue\":\"AVT Simulation\",\"primaryLabelValue\":\"AVT Simulation\"}},{\"attributeHeader\":{\"labelValue\":\"Axeda\",\"primaryLabelValue\":\"Axeda\"}},{\"attributeHeader\":{\"labelValue\":\"Axis Teknologies\",\"primaryLabelValue\":\"Axis Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axispoint\",\"primaryLabelValue\":\"Axispoint\"}},{\"attributeHeader\":{\"labelValue\":\"Azavea\",\"primaryLabelValue\":\"Azavea\"}},{\"attributeHeader\":{\"labelValue\":\"B Resource\",\"primaryLabelValue\":\"B Resource\"}},{\"attributeHeader\":{\"labelValue\":\"Bailey Kennedy\",\"primaryLabelValue\":\"Bailey Kennedy\"}},{\"attributeHeader\":{\"labelValue\":\"Ballard Spahr Andrews & Ingersoll\",\"primaryLabelValue\":\"Ballard Spahr Andrews & Ingersoll\"}},{\"attributeHeader\":{\"labelValue\":\"Bamko\",\"primaryLabelValue\":\"Bamko\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Barrack's Cater Inn\",\"primaryLabelValue\":\"Barrack's Cater Inn\"}},{\"attributeHeader\":{\"labelValue\":\"Barrister Global Services Network\",\"primaryLabelValue\":\"Barrister Global Services Network\"}},{\"attributeHeader\":{\"labelValue\":\"Basic\",\"primaryLabelValue\":\"Basic\"}},{\"attributeHeader\":{\"labelValue\":\"Basic Commerce and Industries\",\"primaryLabelValue\":\"Basic Commerce and Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Batteries Plus\",\"primaryLabelValue\":\"Batteries Plus\"}},{\"attributeHeader\":{\"labelValue\":\"Baxa\",\"primaryLabelValue\":\"Baxa\"}},{\"attributeHeader\":{\"labelValue\":\"Bay State Computers\",\"primaryLabelValue\":\"Bay State Computers\"}},{\"attributeHeader\":{\"labelValue\":\"Beacon Partners\",\"primaryLabelValue\":\"Beacon Partners\"}},{\"attributeHeader\":{\"labelValue\":\"BEAR Data Systems\",\"primaryLabelValue\":\"BEAR Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Bearse Manufacturing\",\"primaryLabelValue\":\"Bearse Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Beauty Supply Warehouse\",\"primaryLabelValue\":\"Beauty Supply Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Benchworks\",\"primaryLabelValue\":\"Benchworks\"}},{\"attributeHeader\":{\"labelValue\":\"Benefit Strategies\",\"primaryLabelValue\":\"Benefit Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Best Items International\",\"primaryLabelValue\":\"Best Items International\"}},{\"attributeHeader\":{\"labelValue\":\"BG Medicine\",\"primaryLabelValue\":\"BG Medicine\"}},{\"attributeHeader\":{\"labelValue\":\"BHI Advanced Internet\",\"primaryLabelValue\":\"BHI Advanced Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Big Ass Fan Company\",\"primaryLabelValue\":\"Big Ass Fan Company\"}},{\"attributeHeader\":{\"labelValue\":\"BIGresearch\",\"primaryLabelValue\":\"BIGresearch\"}},{\"attributeHeader\":{\"labelValue\":\"Bingham McCutchen\",\"primaryLabelValue\":\"Bingham McCutchen\"}},{\"attributeHeader\":{\"labelValue\":\"BioHorizons\",\"primaryLabelValue\":\"BioHorizons\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birch Communications\",\"primaryLabelValue\":\"Birch Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Bit-Wizards Custom Software Solutions\",\"primaryLabelValue\":\"Bit-Wizards Custom Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"BizXchange\",\"primaryLabelValue\":\"BizXchange\"}},{\"attributeHeader\":{\"labelValue\":\"Blacklist\",\"primaryLabelValue\":\"Blacklist\"}},{\"attributeHeader\":{\"labelValue\":\"Blink Consulting\",\"primaryLabelValue\":\"Blink Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Gecko\",\"primaryLabelValue\":\"Blue Gecko\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Bluefish Wireless Management\",\"primaryLabelValue\":\"Bluefish Wireless Management\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"Booz Allen Hamilton\",\"primaryLabelValue\":\"Booz Allen Hamilton\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"BrakeQuip\",\"primaryLabelValue\":\"BrakeQuip\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Breaking Ground Contracting\",\"primaryLabelValue\":\"Breaking Ground Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Burt Hill\",\"primaryLabelValue\":\"Burt Hill\"}},{\"attributeHeader\":{\"labelValue\":\"Butler/Till Media Services\",\"primaryLabelValue\":\"Butler/Till Media Services\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"Cables Plus\",\"primaryLabelValue\":\"Cables Plus\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Calix Networks\",\"primaryLabelValue\":\"Calix Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Call One\",\"primaryLabelValue\":\"Call One\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"CAM Services\",\"primaryLabelValue\":\"CAM Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge Home Health Care\",\"primaryLabelValue\":\"Cambridge Home Health Care\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"CandyRific\",\"primaryLabelValue\":\"CandyRific\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cape Medical Supply\",\"primaryLabelValue\":\"Cape Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Capinc\",\"primaryLabelValue\":\"Capinc\"}},{\"attributeHeader\":{\"labelValue\":\"Capitol Concierge\",\"primaryLabelValue\":\"Capitol Concierge\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Captiva Marketing\",\"primaryLabelValue\":\"Captiva Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Carbon Resources\",\"primaryLabelValue\":\"Carbon Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Cardenas Marketing Network\",\"primaryLabelValue\":\"Cardenas Marketing Network\"}},{\"attributeHeader\":{\"labelValue\":\"Career Step\",\"primaryLabelValue\":\"Career Step\"}},{\"attributeHeader\":{\"labelValue\":\"Cargo Transportation Services\",\"primaryLabelValue\":\"Cargo Transportation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Carlisle Staffing\",\"primaryLabelValue\":\"Carlisle Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Carlton Fields\",\"primaryLabelValue\":\"Carlton Fields\"}},{\"attributeHeader\":{\"labelValue\":\"Cascade Asset Management\",\"primaryLabelValue\":\"Cascade Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Casco Contractors\",\"primaryLabelValue\":\"Casco Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"Casey Research\",\"primaryLabelValue\":\"Casey Research\"}},{\"attributeHeader\":{\"labelValue\":\"Castle Rock Innovations\",\"primaryLabelValue\":\"Castle Rock Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Catalyst Search\",\"primaryLabelValue\":\"Catalyst Search\"}},{\"attributeHeader\":{\"labelValue\":\"Catch the Moment\",\"primaryLabelValue\":\"Catch the Moment\"}},{\"attributeHeader\":{\"labelValue\":\"CBOE Holdings\",\"primaryLabelValue\":\"CBOE Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Marketing Solutions\",\"primaryLabelValue\":\"CCG Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cell Business Equipment\",\"primaryLabelValue\":\"Cell Business Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Centerstance\",\"primaryLabelValue\":\"Centerstance\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Century Bankcard Services\",\"primaryLabelValue\":\"Century Bankcard Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ceteris\",\"primaryLabelValue\":\"Ceteris\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chadbourne & Parke\",\"primaryLabelValue\":\"Chadbourne & Parke\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Charley's Grilled Subs\",\"primaryLabelValue\":\"Charley's Grilled Subs\"}},{\"attributeHeader\":{\"labelValue\":\"Chemco Products\",\"primaryLabelValue\":\"Chemco Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Child Enterprises\",\"primaryLabelValue\":\"Child Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Chop't Creative Salad\",\"primaryLabelValue\":\"Chop't Creative Salad\"}},{\"attributeHeader\":{\"labelValue\":\"ChristianCinema.com\",\"primaryLabelValue\":\"ChristianCinema.com\"}},{\"attributeHeader\":{\"labelValue\":\"Chroma Technology\",\"primaryLabelValue\":\"Chroma Technology\"}},{\"attributeHeader\":{\"labelValue\":\"CiCi's Pizza\",\"primaryLabelValue\":\"CiCi's Pizza\"}},{\"attributeHeader\":{\"labelValue\":\"CJ Pony Parts\",\"primaryLabelValue\":\"CJ Pony Parts\"}},{\"attributeHeader\":{\"labelValue\":\"CJP Communications\",\"primaryLabelValue\":\"CJP Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Clinix Medical Information Services\",\"primaryLabelValue\":\"Clinix Medical Information Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"CNSI\",\"primaryLabelValue\":\"CNSI\"}},{\"attributeHeader\":{\"labelValue\":\"Coastal Environmental Group\",\"primaryLabelValue\":\"Coastal Environmental Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cobalt\",\"primaryLabelValue\":\"Cobalt\"}},{\"attributeHeader\":{\"labelValue\":\"Cohen, Eric and Associates\",\"primaryLabelValue\":\"Cohen, Eric and Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coins For Anything\",\"primaryLabelValue\":\"Coins For Anything\"}},{\"attributeHeader\":{\"labelValue\":\"Coin-Tainer\",\"primaryLabelValue\":\"Coin-Tainer\"}},{\"attributeHeader\":{\"labelValue\":\"Coler & Colantonio\",\"primaryLabelValue\":\"Coler & Colantonio\"}},{\"attributeHeader\":{\"labelValue\":\"Collabera\",\"primaryLabelValue\":\"Collabera\"}},{\"attributeHeader\":{\"labelValue\":\"CollaborateMD\",\"primaryLabelValue\":\"CollaborateMD\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ColorInc\",\"primaryLabelValue\":\"ColorInc\"}},{\"attributeHeader\":{\"labelValue\":\"Combined Public Communications\",\"primaryLabelValue\":\"Combined Public Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Command Decisions Systems & Solutions\",\"primaryLabelValue\":\"Command Decisions Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Commcare Pharmacy\",\"primaryLabelValue\":\"Commcare Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Common Sense Office Furniture\",\"primaryLabelValue\":\"Common Sense Office Furniture\"}},{\"attributeHeader\":{\"labelValue\":\"Commonground\",\"primaryLabelValue\":\"Commonground\"}},{\"attributeHeader\":{\"labelValue\":\"Communique Conferencing\",\"primaryLabelValue\":\"Communique Conferencing\"}},{\"attributeHeader\":{\"labelValue\":\"Community Care College\",\"primaryLabelValue\":\"Community Care College\"}},{\"attributeHeader\":{\"labelValue\":\"Company 20\",\"primaryLabelValue\":\"Company 20\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Nutrition\",\"primaryLabelValue\":\"Complete Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Pharmacy Care\",\"primaryLabelValue\":\"Complete Pharmacy Care\"}},{\"attributeHeader\":{\"labelValue\":\"CompleteRx\",\"primaryLabelValue\":\"CompleteRx\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Computer System Designers\",\"primaryLabelValue\":\"Computer System Designers\"}},{\"attributeHeader\":{\"labelValue\":\"ComRent International\",\"primaryLabelValue\":\"ComRent International\"}},{\"attributeHeader\":{\"labelValue\":\"Concerro\",\"primaryLabelValue\":\"Concerro\"}},{\"attributeHeader\":{\"labelValue\":\"ConEst Software Systems\",\"primaryLabelValue\":\"ConEst Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Connectria\",\"primaryLabelValue\":\"Connectria\"}},{\"attributeHeader\":{\"labelValue\":\"Control Cable\",\"primaryLabelValue\":\"Control Cable\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Convergence Technology Consulting\",\"primaryLabelValue\":\"Convergence Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Cooking Enthusiast\",\"primaryLabelValue\":\"Cooking Enthusiast\"}},{\"attributeHeader\":{\"labelValue\":\"Copier Fax Business Technologies\",\"primaryLabelValue\":\"Copier Fax Business Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CorePartners\",\"primaryLabelValue\":\"CorePartners\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone Research Group\",\"primaryLabelValue\":\"Cornerstone Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"CornerStone Telephone\",\"primaryLabelValue\":\"CornerStone Telephone\"}},{\"attributeHeader\":{\"labelValue\":\"CorpComm\",\"primaryLabelValue\":\"CorpComm\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Family Network\",\"primaryLabelValue\":\"Corporate Family Network\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Floors\",\"primaryLabelValue\":\"Corporate Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Office Centers\",\"primaryLabelValue\":\"Corporate Office Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Research International\",\"primaryLabelValue\":\"Corporate Research International\"}},{\"attributeHeader\":{\"labelValue\":\"Cortech Solutions\",\"primaryLabelValue\":\"Cortech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Costume Craze\",\"primaryLabelValue\":\"Costume Craze\"}},{\"attributeHeader\":{\"labelValue\":\"Coverall Mountain & Pacific\",\"primaryLabelValue\":\"Coverall Mountain & Pacific\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CraigMichaels\",\"primaryLabelValue\":\"CraigMichaels\"}},{\"attributeHeader\":{\"labelValue\":\"Cravath, Swaine & Moore\",\"primaryLabelValue\":\"Cravath, Swaine & Moore\"}},{\"attributeHeader\":{\"labelValue\":\"Credico\",\"primaryLabelValue\":\"Credico\"}},{\"attributeHeader\":{\"labelValue\":\"Crimson Consulting Group\",\"primaryLabelValue\":\"Crimson Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"CriticalTool\",\"primaryLabelValue\":\"CriticalTool\"}},{\"attributeHeader\":{\"labelValue\":\"Crown Partners\",\"primaryLabelValue\":\"Crown Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"CTL Engineering\",\"primaryLabelValue\":\"CTL Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cue Data Services\",\"primaryLabelValue\":\"Cue Data Services\"}},{\"attributeHeader\":{\"labelValue\":\"Cumberland Consulting Group\",\"primaryLabelValue\":\"Cumberland Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"CurrentMarketing\",\"primaryLabelValue\":\"CurrentMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"Curry's Auto Service\",\"primaryLabelValue\":\"Curry's Auto Service\"}},{\"attributeHeader\":{\"labelValue\":\"CustomInk\",\"primaryLabelValue\":\"CustomInk\"}},{\"attributeHeader\":{\"labelValue\":\"Cybera\",\"primaryLabelValue\":\"Cybera\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"CyraCom International\",\"primaryLabelValue\":\"CyraCom International\"}},{\"attributeHeader\":{\"labelValue\":\"Daddies Board Shop\",\"primaryLabelValue\":\"Daddies Board Shop\"}},{\"attributeHeader\":{\"labelValue\":\"Data Systems Analysts\",\"primaryLabelValue\":\"Data Systems Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Dataprise\",\"primaryLabelValue\":\"Dataprise\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"DCO Distribution\",\"primaryLabelValue\":\"DCO Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"DDS Companies\",\"primaryLabelValue\":\"DDS Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debevoise & Plimpton\",\"primaryLabelValue\":\"Debevoise & Plimpton\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Solutions & Strategies\",\"primaryLabelValue\":\"Delta Solutions & Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denihan Hospitality Group\",\"primaryLabelValue\":\"Denihan Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"Denim Group\",\"primaryLabelValue\":\"Denim Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Derstine's Foodservice Distributor\",\"primaryLabelValue\":\"Derstine's Foodservice Distributor\"}},{\"attributeHeader\":{\"labelValue\":\"Diaspark\",\"primaryLabelValue\":\"Diaspark\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Financial Group\",\"primaryLabelValue\":\"Digital Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Gateway\",\"primaryLabelValue\":\"Digital Gateway\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Insurance\",\"primaryLabelValue\":\"Digital Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"Discovery Outsourcing\",\"primaryLabelValue\":\"Discovery Outsourcing\"}},{\"attributeHeader\":{\"labelValue\":\"Dish One Satellite\",\"primaryLabelValue\":\"Dish One Satellite\"}},{\"attributeHeader\":{\"labelValue\":\"Diversant\",\"primaryLabelValue\":\"Diversant\"}},{\"attributeHeader\":{\"labelValue\":\"Diversified Computer Supplies\",\"primaryLabelValue\":\"Diversified Computer Supplies\"}},{\"attributeHeader\":{\"labelValue\":\"DNT Environmental Services\",\"primaryLabelValue\":\"DNT Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"Document Technologies\",\"primaryLabelValue\":\"Document Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Docusource Print Management\",\"primaryLabelValue\":\"Docusource Print Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dogtopia\",\"primaryLabelValue\":\"Dogtopia\"}},{\"attributeHeader\":{\"labelValue\":\"Doig Corporation\",\"primaryLabelValue\":\"Doig Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dorsey & Whitney\",\"primaryLabelValue\":\"Dorsey & Whitney\"}},{\"attributeHeader\":{\"labelValue\":\"Douglas Dynamics\",\"primaryLabelValue\":\"Douglas Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Dr. Fresh\",\"primaryLabelValue\":\"Dr. Fresh\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"DSP Clinical Research\",\"primaryLabelValue\":\"DSP Clinical Research\"}},{\"attributeHeader\":{\"labelValue\":\"DSR Management\",\"primaryLabelValue\":\"DSR Management\"}},{\"attributeHeader\":{\"labelValue\":\"Duane Morris\",\"primaryLabelValue\":\"Duane Morris\"}},{\"attributeHeader\":{\"labelValue\":\"Ductz\",\"primaryLabelValue\":\"Ductz\"}},{\"attributeHeader\":{\"labelValue\":\"Duffey Petrosky\",\"primaryLabelValue\":\"Duffey Petrosky\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"Dykema Gossett\",\"primaryLabelValue\":\"Dykema Gossett\"}},{\"attributeHeader\":{\"labelValue\":\"Dymax\",\"primaryLabelValue\":\"Dymax\"}},{\"attributeHeader\":{\"labelValue\":\"Dynamic Systems\",\"primaryLabelValue\":\"Dynamic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Exhibits\",\"primaryLabelValue\":\"E&E Exhibits\"}},{\"attributeHeader\":{\"labelValue\":\"EAC Product Development Solutions\",\"primaryLabelValue\":\"EAC Product Development Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Productivity Solutions\",\"primaryLabelValue\":\"Eagle Productivity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eagle Promotions\",\"primaryLabelValue\":\"Eagle Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Earl & Brown\",\"primaryLabelValue\":\"Earl & Brown\"}},{\"attributeHeader\":{\"labelValue\":\"Earth Supplied Products\",\"primaryLabelValue\":\"Earth Supplied Products\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"Eastern Land Management\",\"primaryLabelValue\":\"Eastern Land Management\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"e-brilliance\",\"primaryLabelValue\":\"e-brilliance\"}},{\"attributeHeader\":{\"labelValue\":\"ECI\",\"primaryLabelValue\":\"ECI\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Eclaro International\",\"primaryLabelValue\":\"Eclaro International\"}},{\"attributeHeader\":{\"labelValue\":\"ECSI\",\"primaryLabelValue\":\"ECSI\"}},{\"attributeHeader\":{\"labelValue\":\"EDI\",\"primaryLabelValue\":\"EDI\"}},{\"attributeHeader\":{\"labelValue\":\"Edible Arrangements International\",\"primaryLabelValue\":\"Edible Arrangements International\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Options\",\"primaryLabelValue\":\"Educational Options\"}},{\"attributeHeader\":{\"labelValue\":\"Educational Tools\",\"primaryLabelValue\":\"Educational Tools\"}},{\"attributeHeader\":{\"labelValue\":\"EFI Polymers\",\"primaryLabelValue\":\"EFI Polymers\"}},{\"attributeHeader\":{\"labelValue\":\"Eliassen Group\",\"primaryLabelValue\":\"Eliassen Group\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Food Company\",\"primaryLabelValue\":\"Elite Food Company\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"EM-Assist\",\"primaryLabelValue\":\"EM-Assist\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Embrace Home Loans\",\"primaryLabelValue\":\"Embrace Home Loans\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empirix\",\"primaryLabelValue\":\"Empirix\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Curtailment Specialists\",\"primaryLabelValue\":\"Energy Curtailment Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Enginuity\",\"primaryLabelValue\":\"Enginuity\"}},{\"attributeHeader\":{\"labelValue\":\"English + Associates Architects\",\"primaryLabelValue\":\"English + Associates Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Enjoy the City\",\"primaryLabelValue\":\"Enjoy the City\"}},{\"attributeHeader\":{\"labelValue\":\"Enlighten\",\"primaryLabelValue\":\"Enlighten\"}},{\"attributeHeader\":{\"labelValue\":\"Enrich IT\",\"primaryLabelValue\":\"Enrich IT\"}},{\"attributeHeader\":{\"labelValue\":\"Enseo\",\"primaryLabelValue\":\"Enseo\"}},{\"attributeHeader\":{\"labelValue\":\"Entaire\",\"primaryLabelValue\":\"Entaire\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Entertainment Earth\",\"primaryLabelValue\":\"Entertainment Earth\"}},{\"attributeHeader\":{\"labelValue\":\"Entisys Solutions\",\"primaryLabelValue\":\"Entisys Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EnTitle Insurance\",\"primaryLabelValue\":\"EnTitle Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Envirocon Technologies\",\"primaryLabelValue\":\"Envirocon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"EPE\",\"primaryLabelValue\":\"EPE\"}},{\"attributeHeader\":{\"labelValue\":\"EPIC Insurance Brokers\",\"primaryLabelValue\":\"EPIC Insurance Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"Epocrates\",\"primaryLabelValue\":\"Epocrates\"}},{\"attributeHeader\":{\"labelValue\":\"ePrize\",\"primaryLabelValue\":\"ePrize\"}},{\"attributeHeader\":{\"labelValue\":\"Equator Estate Coffees & Teas\",\"primaryLabelValue\":\"Equator Estate Coffees & Teas\"}},{\"attributeHeader\":{\"labelValue\":\"ERC\",\"primaryLabelValue\":\"ERC\"}},{\"attributeHeader\":{\"labelValue\":\"e-Rewards Market Research\",\"primaryLabelValue\":\"e-Rewards Market Research\"}},{\"attributeHeader\":{\"labelValue\":\"Ergotron\",\"primaryLabelValue\":\"Ergotron\"}},{\"attributeHeader\":{\"labelValue\":\"Eriksen Translations\",\"primaryLabelValue\":\"Eriksen Translations\"}},{\"attributeHeader\":{\"labelValue\":\"Errand Solutions\",\"primaryLabelValue\":\"Errand Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Escalate Media\",\"primaryLabelValue\":\"Escalate Media\"}},{\"attributeHeader\":{\"labelValue\":\"ESi Acquisition\",\"primaryLabelValue\":\"ESi Acquisition\"}},{\"attributeHeader\":{\"labelValue\":\"ESN\",\"primaryLabelValue\":\"ESN\"}},{\"attributeHeader\":{\"labelValue\":\"Essai\",\"primaryLabelValue\":\"Essai\"}},{\"attributeHeader\":{\"labelValue\":\"e-Storm International\",\"primaryLabelValue\":\"e-Storm International\"}},{\"attributeHeader\":{\"labelValue\":\"ESW Partners\",\"primaryLabelValue\":\"ESW Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ETC Institute\",\"primaryLabelValue\":\"ETC Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Europa Sports Products\",\"primaryLabelValue\":\"Europa Sports Products\"}},{\"attributeHeader\":{\"labelValue\":\"EventPro Strategies\",\"primaryLabelValue\":\"EventPro Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Eview 360\",\"primaryLabelValue\":\"Eview 360\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve Media\",\"primaryLabelValue\":\"Evolve Media\"}},{\"attributeHeader\":{\"labelValue\":\"ExactTarget\",\"primaryLabelValue\":\"ExactTarget\"}},{\"attributeHeader\":{\"labelValue\":\"Excalibur Integrated Systems\",\"primaryLabelValue\":\"Excalibur Integrated Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Excella Consulting\",\"primaryLabelValue\":\"Excella Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Exhibit Edge\",\"primaryLabelValue\":\"Exhibit Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Expedited Logistics and Freight Services\",\"primaryLabelValue\":\"Expedited Logistics and Freight Services\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Expesite\",\"primaryLabelValue\":\"Expesite\"}},{\"attributeHeader\":{\"labelValue\":\"Explore Consulting\",\"primaryLabelValue\":\"Explore Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"ExtensionEngine\",\"primaryLabelValue\":\"ExtensionEngine\"}},{\"attributeHeader\":{\"labelValue\":\"eZanga.com\",\"primaryLabelValue\":\"eZanga.com\"}},{\"attributeHeader\":{\"labelValue\":\"F1 Computer Solutions\",\"primaryLabelValue\":\"F1 Computer Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Facility Wizard Software\",\"primaryLabelValue\":\"Facility Wizard Software\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon International Bank\",\"primaryLabelValue\":\"Falcon International Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Farylrobin\",\"primaryLabelValue\":\"Farylrobin\"}},{\"attributeHeader\":{\"labelValue\":\"Fast Switch\",\"primaryLabelValue\":\"Fast Switch\"}},{\"attributeHeader\":{\"labelValue\":\"Fast-Fix Jewelry\",\"primaryLabelValue\":\"Fast-Fix Jewelry\"}},{\"attributeHeader\":{\"labelValue\":\"FasTracKids International\",\"primaryLabelValue\":\"FasTracKids International\"}},{\"attributeHeader\":{\"labelValue\":\"FeatureTel\",\"primaryLabelValue\":\"FeatureTel\"}},{\"attributeHeader\":{\"labelValue\":\"FedConcepts\",\"primaryLabelValue\":\"FedConcepts\"}},{\"attributeHeader\":{\"labelValue\":\"Fetch Technologies\",\"primaryLabelValue\":\"Fetch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiberall\",\"primaryLabelValue\":\"Fiberall\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertech Networks\",\"primaryLabelValue\":\"Fibertech Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fieldtex Products\",\"primaryLabelValue\":\"Fieldtex Products\"}},{\"attributeHeader\":{\"labelValue\":\"Filmtools\",\"primaryLabelValue\":\"Filmtools\"}},{\"attributeHeader\":{\"labelValue\":\"Finale Desserterie & Bakery\",\"primaryLabelValue\":\"Finale Desserterie & Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Financial Engines\",\"primaryLabelValue\":\"Financial Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fire-Dex\",\"primaryLabelValue\":\"Fire-Dex\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"First American Equipment Finance\",\"primaryLabelValue\":\"First American Equipment Finance\"}},{\"attributeHeader\":{\"labelValue\":\"FirsTrust Mortgage\",\"primaryLabelValue\":\"FirsTrust Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Fish Window Cleaning Services\",\"primaryLabelValue\":\"Fish Window Cleaning Services\"}},{\"attributeHeader\":{\"labelValue\":\"FishNet Security\",\"primaryLabelValue\":\"FishNet Security\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzgerald Analytics\",\"primaryLabelValue\":\"Fitzgerald Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"Fitzpatrick, Cella, Harper & Scinto\",\"primaryLabelValue\":\"Fitzpatrick, Cella, Harper & Scinto\"}},{\"attributeHeader\":{\"labelValue\":\"Five9\",\"primaryLabelValue\":\"Five9\"}},{\"attributeHeader\":{\"labelValue\":\"Flatirons Solutions\",\"primaryLabelValue\":\"Flatirons Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"Flying Pie Pizzaria\",\"primaryLabelValue\":\"Flying Pie Pizzaria\"}},{\"attributeHeader\":{\"labelValue\":\"Foley Hoag\",\"primaryLabelValue\":\"Foley Hoag\"}},{\"attributeHeader\":{\"labelValue\":\"FONA International\",\"primaryLabelValue\":\"FONA International\"}},{\"attributeHeader\":{\"labelValue\":\"Foot Petals\",\"primaryLabelValue\":\"Foot Petals\"}},{\"attributeHeader\":{\"labelValue\":\"Force Marketing\",\"primaryLabelValue\":\"Force Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forman Motorsport\",\"primaryLabelValue\":\"Forman Motorsport\"}},{\"attributeHeader\":{\"labelValue\":\"Fortis Construction\",\"primaryLabelValue\":\"Fortis Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Fortune-Johnson\",\"primaryLabelValue\":\"Fortune-Johnson\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Fuel Belt\",\"primaryLabelValue\":\"Fuel Belt\"}},{\"attributeHeader\":{\"labelValue\":\"Fulbright & Jaworski\",\"primaryLabelValue\":\"Fulbright & Jaworski\"}},{\"attributeHeader\":{\"labelValue\":\"Fuse\",\"primaryLabelValue\":\"Fuse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Solutions\",\"primaryLabelValue\":\"Fusion Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fusion Systems\",\"primaryLabelValue\":\"Fusion Systems\"}},{\"attributeHeader\":{\"labelValue\":\"FusionStorm\",\"primaryLabelValue\":\"FusionStorm\"}},{\"attributeHeader\":{\"labelValue\":\"Futura Builders Group\",\"primaryLabelValue\":\"Futura Builders Group\"}},{\"attributeHeader\":{\"labelValue\":\"Future Force Personnel\",\"primaryLabelValue\":\"Future Force Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Future Research\",\"primaryLabelValue\":\"Future Research\"}},{\"attributeHeader\":{\"labelValue\":\"FXCM\",\"primaryLabelValue\":\"FXCM\"}},{\"attributeHeader\":{\"labelValue\":\"GaN Corporation\",\"primaryLabelValue\":\"GaN Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Gateway Ticketing Systems\",\"primaryLabelValue\":\"Gateway Ticketing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Gateworks\",\"primaryLabelValue\":\"Gateworks\"}},{\"attributeHeader\":{\"labelValue\":\"GB Collects\",\"primaryLabelValue\":\"GB Collects\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"generationE Technologies\",\"primaryLabelValue\":\"generationE Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Geocent\",\"primaryLabelValue\":\"Geocent\"}},{\"attributeHeader\":{\"labelValue\":\"geographIT\",\"primaryLabelValue\":\"geographIT\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Logical\",\"primaryLabelValue\":\"Geo-Logical\"}},{\"attributeHeader\":{\"labelValue\":\"GeoStructures\",\"primaryLabelValue\":\"GeoStructures\"}},{\"attributeHeader\":{\"labelValue\":\"Gila\",\"primaryLabelValue\":\"Gila\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Giovanni Food\",\"primaryLabelValue\":\"Giovanni Food\"}},{\"attributeHeader\":{\"labelValue\":\"Giroux Glass\",\"primaryLabelValue\":\"Giroux Glass\"}},{\"attributeHeader\":{\"labelValue\":\"GIS Planning\",\"primaryLabelValue\":\"GIS Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Technology Resources\",\"primaryLabelValue\":\"Global Technology Resources\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalLogic\",\"primaryLabelValue\":\"GlobalLogic\"}},{\"attributeHeader\":{\"labelValue\":\"GNS\",\"primaryLabelValue\":\"GNS\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Goble & Associates\",\"primaryLabelValue\":\"Goble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Gold Star Mortgage Financial Group\",\"primaryLabelValue\":\"Gold Star Mortgage Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Golfballs.com\",\"primaryLabelValue\":\"Golfballs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Goodwives Hors d'oeuvres\",\"primaryLabelValue\":\"Goodwives Hors d'oeuvres\"}},{\"attributeHeader\":{\"labelValue\":\"Gordmans Stores\",\"primaryLabelValue\":\"Gordmans Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GRA\",\"primaryLabelValue\":\"GRA\"}},{\"attributeHeader\":{\"labelValue\":\"Grandstream Networks\",\"primaryLabelValue\":\"Grandstream Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Granicus\",\"primaryLabelValue\":\"Granicus\"}},{\"attributeHeader\":{\"labelValue\":\"Granite Telecommunications\",\"primaryLabelValue\":\"Granite Telecommunications\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GreenSoft Solutions\",\"primaryLabelValue\":\"GreenSoft Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Greentarget Global Group\",\"primaryLabelValue\":\"Greentarget Global Group\"}},{\"attributeHeader\":{\"labelValue\":\"Griswold International\",\"primaryLabelValue\":\"Griswold International\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"Group O\",\"primaryLabelValue\":\"Group O\"}},{\"attributeHeader\":{\"labelValue\":\"Groupware Technology\",\"primaryLabelValue\":\"Groupware Technology\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Payroll Services\",\"primaryLabelValue\":\"GTM Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guardian Power Protection Services\",\"primaryLabelValue\":\"Guardian Power Protection Services\"}},{\"attributeHeader\":{\"labelValue\":\"Guident Technologies\",\"primaryLabelValue\":\"Guident Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"HaloSource\",\"primaryLabelValue\":\"HaloSource\"}},{\"attributeHeader\":{\"labelValue\":\"Hanson Communications\",\"primaryLabelValue\":\"Hanson Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Harbinger Partners\",\"primaryLabelValue\":\"Harbinger Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Harbor Financial Services\",\"primaryLabelValue\":\"Harbor Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Hardy Diagnostics\",\"primaryLabelValue\":\"Hardy Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"Harmonia\",\"primaryLabelValue\":\"Harmonia\"}},{\"attributeHeader\":{\"labelValue\":\"Haynes and Boone\",\"primaryLabelValue\":\"Haynes and Boone\"}},{\"attributeHeader\":{\"labelValue\":\"HDR\",\"primaryLabelValue\":\"HDR\"}},{\"attributeHeader\":{\"labelValue\":\"Health Designs\",\"primaryLabelValue\":\"Health Designs\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Communications Group\",\"primaryLabelValue\":\"Healthcare Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"HealthHelp\",\"primaryLabelValue\":\"HealthHelp\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Healthx\",\"primaryLabelValue\":\"Healthx\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"High Performance Technologies\",\"primaryLabelValue\":\"High Performance Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"High Tech Innovations\",\"primaryLabelValue\":\"High Tech Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"Hired Hands\",\"primaryLabelValue\":\"Hired Hands\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"Hissho Sushi\",\"primaryLabelValue\":\"Hissho Sushi\"}},{\"attributeHeader\":{\"labelValue\":\"HMC Architects\",\"primaryLabelValue\":\"HMC Architects\"}},{\"attributeHeader\":{\"labelValue\":\"HMT Associates\",\"primaryLabelValue\":\"HMT Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Home Instead Senior Care (TX)\",\"primaryLabelValue\":\"Home Instead Senior Care (TX)\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Horizon Consulting\",\"primaryLabelValue\":\"Horizon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Hot Studio\",\"primaryLabelValue\":\"Hot Studio\"}},{\"attributeHeader\":{\"labelValue\":\"Howrey\",\"primaryLabelValue\":\"Howrey\"}},{\"attributeHeader\":{\"labelValue\":\"HSA Engineers & Scientists\",\"primaryLabelValue\":\"HSA Engineers & Scientists\"}},{\"attributeHeader\":{\"labelValue\":\"HTC Global Services\",\"primaryLabelValue\":\"HTC Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Hunter Technical Resources\",\"primaryLabelValue\":\"Hunter Technical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Hybrid Transit Systems\",\"primaryLabelValue\":\"Hybrid Transit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"I Play\",\"primaryLabelValue\":\"I Play\"}},{\"attributeHeader\":{\"labelValue\":\"i9 Sports\",\"primaryLabelValue\":\"i9 Sports\"}},{\"attributeHeader\":{\"labelValue\":\"IASIS Healthcare\",\"primaryLabelValue\":\"IASIS Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ice Miller\",\"primaryLabelValue\":\"Ice Miller\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"iFAX Solutions\",\"primaryLabelValue\":\"iFAX Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iFixit\",\"primaryLabelValue\":\"iFixit\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Image Locations\",\"primaryLabelValue\":\"Image Locations\"}},{\"attributeHeader\":{\"labelValue\":\"Imaging Alliance Group\",\"primaryLabelValue\":\"Imaging Alliance Group\"}},{\"attributeHeader\":{\"labelValue\":\"iMarc\",\"primaryLabelValue\":\"iMarc\"}},{\"attributeHeader\":{\"labelValue\":\"Impex Group\",\"primaryLabelValue\":\"Impex Group\"}},{\"attributeHeader\":{\"labelValue\":\"Incisive Surgical\",\"primaryLabelValue\":\"Incisive Surgical\"}},{\"attributeHeader\":{\"labelValue\":\"Independent Financial Group\",\"primaryLabelValue\":\"Independent Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Industrial Solutions\",\"primaryLabelValue\":\"Industrial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iNET Interactive\",\"primaryLabelValue\":\"iNET Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Infinit Technology Solutions\",\"primaryLabelValue\":\"Infinit Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Consulting Solutions\",\"primaryLabelValue\":\"Infinity Consulting Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Systems Engineering\",\"primaryLabelValue\":\"Infinity Systems Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Info Retail\",\"primaryLabelValue\":\"Info Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Information Innovators\",\"primaryLabelValue\":\"Information Innovators\"}},{\"attributeHeader\":{\"labelValue\":\"Information Systems Solutions\",\"primaryLabelValue\":\"Information Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Infoyogi\",\"primaryLabelValue\":\"Infoyogi\"}},{\"attributeHeader\":{\"labelValue\":\"Inkgrabber.com\",\"primaryLabelValue\":\"Inkgrabber.com\"}},{\"attributeHeader\":{\"labelValue\":\"Inland Pipe Rehabilitation\",\"primaryLabelValue\":\"Inland Pipe Rehabilitation\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Computing Systems\",\"primaryLabelValue\":\"Innovative Computing Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Office Solutions\",\"primaryLabelValue\":\"Innovative Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Innovative Staffing\",\"primaryLabelValue\":\"Innovative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Global\",\"primaryLabelValue\":\"Insight Global\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Sourcing Group\",\"primaryLabelValue\":\"Insight Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Biotechnical\",\"primaryLabelValue\":\"Integra Biotechnical\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Realty Resources\",\"primaryLabelValue\":\"Integra Realty Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integral Senior Living\",\"primaryLabelValue\":\"Integral Senior Living\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Control\",\"primaryLabelValue\":\"Integrated Control\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design\",\"primaryLabelValue\":\"Integrated Design\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Design Group\",\"primaryLabelValue\":\"Integrated Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Resources\",\"primaryLabelValue\":\"Integrated Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Integration Partners\",\"primaryLabelValue\":\"Integration Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Applications\",\"primaryLabelValue\":\"Integrity Applications\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"Intelius\",\"primaryLabelValue\":\"Intelius\"}},{\"attributeHeader\":{\"labelValue\":\"Intelligent Software Solutions\",\"primaryLabelValue\":\"Intelligent Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (TN)\",\"primaryLabelValue\":\"Interactive Solutions (TN)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Foods\",\"primaryLabelValue\":\"Intermark Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Intermarkets\",\"primaryLabelValue\":\"Intermarkets\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"International Software Systems\",\"primaryLabelValue\":\"International Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate International\",\"primaryLabelValue\":\"Interstate International\"}},{\"attributeHeader\":{\"labelValue\":\"Interstate Transport\",\"primaryLabelValue\":\"Interstate Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Intetics\",\"primaryLabelValue\":\"Intetics\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"Irell & Manella\",\"primaryLabelValue\":\"Irell & Manella\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Isis Parenting\",\"primaryLabelValue\":\"Isis Parenting\"}},{\"attributeHeader\":{\"labelValue\":\"Island\",\"primaryLabelValue\":\"Island\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Laboratories\",\"primaryLabelValue\":\"Isotech Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"Issue Media Group\",\"primaryLabelValue\":\"Issue Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"IST Management Services\",\"primaryLabelValue\":\"IST Management Services\"}},{\"attributeHeader\":{\"labelValue\":\"iStrategy Solutions\",\"primaryLabelValue\":\"iStrategy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ISYS Technologies\",\"primaryLabelValue\":\"ISYS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"IT First Source\",\"primaryLabelValue\":\"IT First Source\"}},{\"attributeHeader\":{\"labelValue\":\"IT Solutions Consulting\",\"primaryLabelValue\":\"IT Solutions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"iTech US\",\"primaryLabelValue\":\"iTech US\"}},{\"attributeHeader\":{\"labelValue\":\"IT-Lifeline\",\"primaryLabelValue\":\"IT-Lifeline\"}},{\"attributeHeader\":{\"labelValue\":\"iVenture Solutions\",\"primaryLabelValue\":\"iVenture Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Clancy\",\"primaryLabelValue\":\"J.R. Clancy\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Jackson Walker\",\"primaryLabelValue\":\"Jackson Walker\"}},{\"attributeHeader\":{\"labelValue\":\"Jenner & Block\",\"primaryLabelValue\":\"Jenner & Block\"}},{\"attributeHeader\":{\"labelValue\":\"JG Black Book of Travel\",\"primaryLabelValue\":\"JG Black Book of Travel\"}},{\"attributeHeader\":{\"labelValue\":\"JGear\",\"primaryLabelValue\":\"JGear\"}},{\"attributeHeader\":{\"labelValue\":\"JHE Production Group\",\"primaryLabelValue\":\"JHE Production Group\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"JMC Holdings\",\"primaryLabelValue\":\"JMC Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Johnny Cupcakes\",\"primaryLabelValue\":\"Johnny Cupcakes\"}},{\"attributeHeader\":{\"labelValue\":\"Jo-Kell\",\"primaryLabelValue\":\"Jo-Kell\"}},{\"attributeHeader\":{\"labelValue\":\"JSMN International\",\"primaryLabelValue\":\"JSMN International\"}},{\"attributeHeader\":{\"labelValue\":\"Junk my Car\",\"primaryLabelValue\":\"Junk my Car\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Kahler Automation\",\"primaryLabelValue\":\"Kahler Automation\"}},{\"attributeHeader\":{\"labelValue\":\"Kaizen Technologies\",\"primaryLabelValue\":\"Kaizen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kaye Scholer\",\"primaryLabelValue\":\"Kaye Scholer\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Healthcare\",\"primaryLabelValue\":\"Keen Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Kelly's Industrial Services\",\"primaryLabelValue\":\"Kelly's Industrial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Kelton Research\",\"primaryLabelValue\":\"Kelton Research\"}},{\"attributeHeader\":{\"labelValue\":\"KeyLogic Systems\",\"primaryLabelValue\":\"KeyLogic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kickball.com\",\"primaryLabelValue\":\"Kickball.com\"}},{\"attributeHeader\":{\"labelValue\":\"Kids II\",\"primaryLabelValue\":\"Kids II\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Kinetek Consulting\",\"primaryLabelValue\":\"Kinetek Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"King Enterprise Group\",\"primaryLabelValue\":\"King Enterprise Group\"}},{\"attributeHeader\":{\"labelValue\":\"Kingfisher Systems\",\"primaryLabelValue\":\"Kingfisher Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Kingston Technology\",\"primaryLabelValue\":\"Kingston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"KIRA\",\"primaryLabelValue\":\"KIRA\"}},{\"attributeHeader\":{\"labelValue\":\"Kirkland & Ellis\",\"primaryLabelValue\":\"Kirkland & Ellis\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"KJ Technology Consulting\",\"primaryLabelValue\":\"KJ Technology Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Klein Buendel\",\"primaryLabelValue\":\"Klein Buendel\"}},{\"attributeHeader\":{\"labelValue\":\"KMRD Partners\",\"primaryLabelValue\":\"KMRD Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Knichel Logistics\",\"primaryLabelValue\":\"Knichel Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Marketing\",\"primaryLabelValue\":\"Knowledge Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Knowledge Mosaic\",\"primaryLabelValue\":\"Knowledge Mosaic\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeCentrix\",\"primaryLabelValue\":\"KnowledgeCentrix\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Krupp Kommunications\",\"primaryLabelValue\":\"Krupp Kommunications\"}},{\"attributeHeader\":{\"labelValue\":\"KTI\",\"primaryLabelValue\":\"KTI\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"Labor Law Center\",\"primaryLabelValue\":\"Labor Law Center\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Laser Technologies\",\"primaryLabelValue\":\"Laser Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lastar\",\"primaryLabelValue\":\"Lastar\"}},{\"attributeHeader\":{\"labelValue\":\"Lathrop & Gage\",\"primaryLabelValue\":\"Lathrop & Gage\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Launch\",\"primaryLabelValue\":\"Launch\"}},{\"attributeHeader\":{\"labelValue\":\"Laurus Technologies\",\"primaryLabelValue\":\"Laurus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lazorpoint\",\"primaryLabelValue\":\"Lazorpoint\"}},{\"attributeHeader\":{\"labelValue\":\"LeadCreations.com\",\"primaryLabelValue\":\"LeadCreations.com\"}},{\"attributeHeader\":{\"labelValue\":\"LeadPile\",\"primaryLabelValue\":\"LeadPile\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lease A Sales Rep\",\"primaryLabelValue\":\"Lease A Sales Rep\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Financial Advisors\",\"primaryLabelValue\":\"Legend Financial Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"Legend Healthcare\",\"primaryLabelValue\":\"Legend Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Levick Strategic Communications\",\"primaryLabelValue\":\"Levick Strategic Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lewis Brisbois Bisgaard & Smith\",\"primaryLabelValue\":\"Lewis Brisbois Bisgaard & Smith\"}},{\"attributeHeader\":{\"labelValue\":\"LFA Group\",\"primaryLabelValue\":\"LFA Group\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lifematters\",\"primaryLabelValue\":\"Lifematters\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Lighthouse Placement Services\",\"primaryLabelValue\":\"Lighthouse Placement Services\"}},{\"attributeHeader\":{\"labelValue\":\"LightWorks Optics\",\"primaryLabelValue\":\"LightWorks Optics\"}},{\"attributeHeader\":{\"labelValue\":\"Lime Brokerage\",\"primaryLabelValue\":\"Lime Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Lindy Paving\",\"primaryLabelValue\":\"Lindy Paving\"}},{\"attributeHeader\":{\"labelValue\":\"Line 6\",\"primaryLabelValue\":\"Line 6\"}},{\"attributeHeader\":{\"labelValue\":\"LiqueColor InkJet Group\",\"primaryLabelValue\":\"LiqueColor InkJet Group\"}},{\"attributeHeader\":{\"labelValue\":\"Litle & Co.\",\"primaryLabelValue\":\"Litle & Co.\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Living Direct\",\"primaryLabelValue\":\"Living Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location3 Media\",\"primaryLabelValue\":\"Location3 Media\"}},{\"attributeHeader\":{\"labelValue\":\"Loffler Companies\",\"primaryLabelValue\":\"Loffler Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Planet\",\"primaryLabelValue\":\"Logic Planet\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Supply\",\"primaryLabelValue\":\"Logic Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Logic Trends\",\"primaryLabelValue\":\"Logic Trends\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Choice Technologies\",\"primaryLabelValue\":\"Logical Choice Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Management Solutions\",\"primaryLabelValue\":\"Logistics Management Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LogoSportswear.com\",\"primaryLabelValue\":\"LogoSportswear.com\"}},{\"attributeHeader\":{\"labelValue\":\"Long Term Solutions\",\"primaryLabelValue\":\"Long Term Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lopez Negrete Communications\",\"primaryLabelValue\":\"Lopez Negrete Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Lowenstein Sandler\",\"primaryLabelValue\":\"Lowenstein Sandler\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"Lynx Network Group\",\"primaryLabelValue\":\"Lynx Network Group\"}},{\"attributeHeader\":{\"labelValue\":\"Lyons Consulting Group\",\"primaryLabelValue\":\"Lyons Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"M/E Engineering\",\"primaryLabelValue\":\"M/E Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mabbett & Associates\",\"primaryLabelValue\":\"Mabbett & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"MacFarlane Pheasants\",\"primaryLabelValue\":\"MacFarlane Pheasants\"}},{\"attributeHeader\":{\"labelValue\":\"Magnani Caruso Dutton\",\"primaryLabelValue\":\"Magnani Caruso Dutton\"}},{\"attributeHeader\":{\"labelValue\":\"Magnetic\",\"primaryLabelValue\":\"Magnetic\"}},{\"attributeHeader\":{\"labelValue\":\"Malcap Mortgage\",\"primaryLabelValue\":\"Malcap Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Maldonado Nursery & Landscaping\",\"primaryLabelValue\":\"Maldonado Nursery & Landscaping\"}},{\"attributeHeader\":{\"labelValue\":\"Malone AirCharter\",\"primaryLabelValue\":\"Malone AirCharter\"}},{\"attributeHeader\":{\"labelValue\":\"Managed Business Solutions\",\"primaryLabelValue\":\"Managed Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mansell Group\",\"primaryLabelValue\":\"Mansell Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield Oil\",\"primaryLabelValue\":\"Mansfield Oil\"}},{\"attributeHeader\":{\"labelValue\":\"Mantz Automation\",\"primaryLabelValue\":\"Mantz Automation\"}},{\"attributeHeader\":{\"labelValue\":\"MAQ Software\",\"primaryLabelValue\":\"MAQ Software\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Direct\",\"primaryLabelValue\":\"Marketing Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"MarketResearch.com\",\"primaryLabelValue\":\"MarketResearch.com\"}},{\"attributeHeader\":{\"labelValue\":\"MarkMaster\",\"primaryLabelValue\":\"MarkMaster\"}},{\"attributeHeader\":{\"labelValue\":\"Marlabs\",\"primaryLabelValue\":\"Marlabs\"}},{\"attributeHeader\":{\"labelValue\":\"Mathnasium Learning Centers\",\"primaryLabelValue\":\"Mathnasium Learning Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Networks\",\"primaryLabelValue\":\"Maverick Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Max Borges Agency\",\"primaryLabelValue\":\"Max Borges Agency\"}},{\"attributeHeader\":{\"labelValue\":\"MBS Dev\",\"primaryLabelValue\":\"MBS Dev\"}},{\"attributeHeader\":{\"labelValue\":\"McCarter & English\",\"primaryLabelValue\":\"McCarter & English\"}},{\"attributeHeader\":{\"labelValue\":\"McGrath Systems\",\"primaryLabelValue\":\"McGrath Systems\"}},{\"attributeHeader\":{\"labelValue\":\"McGraw Communications\",\"primaryLabelValue\":\"McGraw Communications\"}},{\"attributeHeader\":{\"labelValue\":\"McKenna Long & Aldridge\",\"primaryLabelValue\":\"McKenna Long & Aldridge\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Meadows Urquhart Acree & Cook\",\"primaryLabelValue\":\"Meadows Urquhart Acree & Cook\"}},{\"attributeHeader\":{\"labelValue\":\"Mechanical Reps\",\"primaryLabelValue\":\"Mechanical Reps\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MEDEX Global Solutions\",\"primaryLabelValue\":\"MEDEX Global Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"Medica HealthCare Plans\",\"primaryLabelValue\":\"Medica HealthCare Plans\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Emergency Professionals\",\"primaryLabelValue\":\"Medical Emergency Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Management Options\",\"primaryLabelValue\":\"Medical Management Options\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Solutions\",\"primaryLabelValue\":\"Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Medical Transaction Billing\",\"primaryLabelValue\":\"Medical Transaction Billing\"}},{\"attributeHeader\":{\"labelValue\":\"MedSource\",\"primaryLabelValue\":\"MedSource\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"MEI Technologies\",\"primaryLabelValue\":\"MEI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Melink\",\"primaryLabelValue\":\"Melink\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Mentoring Minds\",\"primaryLabelValue\":\"Mentoring Minds\"}},{\"attributeHeader\":{\"labelValue\":\"Meras Engineering\",\"primaryLabelValue\":\"Meras Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Merced Systems\",\"primaryLabelValue\":\"Merced Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Services\",\"primaryLabelValue\":\"Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Home Mortgage\",\"primaryLabelValue\":\"Meridian Home Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Technologies\",\"primaryLabelValue\":\"Meridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Merrick Systems\",\"primaryLabelValue\":\"Merrick Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Merrimak Capital\",\"primaryLabelValue\":\"Merrimak Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Merritt Group\",\"primaryLabelValue\":\"Merritt Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Meta Pharmaceutical Services\",\"primaryLabelValue\":\"Meta Pharmaceutical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Metrokane\",\"primaryLabelValue\":\"Metrokane\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Microwize Technology\",\"primaryLabelValue\":\"Microwize Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Midwest Industrial Supply\",\"primaryLabelValue\":\"Midwest Industrial Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Milbank, Tweed, Hadley & McCloy\",\"primaryLabelValue\":\"Milbank, Tweed, Hadley & McCloy\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Communications Group\",\"primaryLabelValue\":\"Millennium Communications Group\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Miller & Associates\",\"primaryLabelValue\":\"Miller & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Million Dollar Baby\",\"primaryLabelValue\":\"Million Dollar Baby\"}},{\"attributeHeader\":{\"labelValue\":\"Mimeo.com\",\"primaryLabelValue\":\"Mimeo.com\"}},{\"attributeHeader\":{\"labelValue\":\"MindLance\",\"primaryLabelValue\":\"MindLance\"}},{\"attributeHeader\":{\"labelValue\":\"Mindshare Technologies\",\"primaryLabelValue\":\"Mindshare Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"Mitratech\",\"primaryLabelValue\":\"Mitratech\"}},{\"attributeHeader\":{\"labelValue\":\"MNJ Technologies Direct\",\"primaryLabelValue\":\"MNJ Technologies Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Mobile One Courier & Logistics\",\"primaryLabelValue\":\"Mobile One Courier & Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"MobilityWorks\",\"primaryLabelValue\":\"MobilityWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Molly Maid of Greater Austin Texas\",\"primaryLabelValue\":\"Molly Maid of Greater Austin Texas\"}},{\"attributeHeader\":{\"labelValue\":\"Momentum\",\"primaryLabelValue\":\"Momentum\"}},{\"attributeHeader\":{\"labelValue\":\"Mone't\",\"primaryLabelValue\":\"Mone't\"}},{\"attributeHeader\":{\"labelValue\":\"Money Clip Magazine\",\"primaryLabelValue\":\"Money Clip Magazine\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Montbleau & Associates\",\"primaryLabelValue\":\"Montbleau & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Moore Freight Service\",\"primaryLabelValue\":\"Moore Freight Service\"}},{\"attributeHeader\":{\"labelValue\":\"Morrison & Foerster\",\"primaryLabelValue\":\"Morrison & Foerster\"}},{\"attributeHeader\":{\"labelValue\":\"MotherNature.com\",\"primaryLabelValue\":\"MotherNature.com\"}},{\"attributeHeader\":{\"labelValue\":\"M-Pak\",\"primaryLabelValue\":\"M-Pak\"}},{\"attributeHeader\":{\"labelValue\":\"MRE Consulting\",\"primaryLabelValue\":\"MRE Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Multivision\",\"primaryLabelValue\":\"Multivision\"}},{\"attributeHeader\":{\"labelValue\":\"Murthy Law Firm\",\"primaryLabelValue\":\"Murthy Law Firm\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"MxSecure\",\"primaryLabelValue\":\"MxSecure\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Namifiers\",\"primaryLabelValue\":\"Namifiers\"}},{\"attributeHeader\":{\"labelValue\":\"Namtra Business Solutions\",\"primaryLabelValue\":\"Namtra Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"National Bankers Trust\",\"primaryLabelValue\":\"National Bankers Trust\"}},{\"attributeHeader\":{\"labelValue\":\"National Collegiate Scouting Association\",\"primaryLabelValue\":\"National Collegiate Scouting Association\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Ultrasound\",\"primaryLabelValue\":\"National Ultrasound\"}},{\"attributeHeader\":{\"labelValue\":\"NationLink Wireless\",\"primaryLabelValue\":\"NationLink Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Native Land Design\",\"primaryLabelValue\":\"Native Land Design\"}},{\"attributeHeader\":{\"labelValue\":\"NaturaLawn of America\",\"primaryLabelValue\":\"NaturaLawn of America\"}},{\"attributeHeader\":{\"labelValue\":\"Nautilus Environmental\",\"primaryLabelValue\":\"Nautilus Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Neace Lukens\",\"primaryLabelValue\":\"Neace Lukens\"}},{\"attributeHeader\":{\"labelValue\":\"Nelson Gamble & Associates\",\"primaryLabelValue\":\"Nelson Gamble & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"NeoPhotonics\",\"primaryLabelValue\":\"NeoPhotonics\"}},{\"attributeHeader\":{\"labelValue\":\"Netchex\",\"primaryLabelValue\":\"Netchex\"}},{\"attributeHeader\":{\"labelValue\":\"NetConn Solutions\",\"primaryLabelValue\":\"NetConn Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"Network Hardware Resale\",\"primaryLabelValue\":\"Network Hardware Resale\"}},{\"attributeHeader\":{\"labelValue\":\"Network Outsource\",\"primaryLabelValue\":\"Network Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"NetworkIP\",\"primaryLabelValue\":\"NetworkIP\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"New Creature\",\"primaryLabelValue\":\"New Creature\"}},{\"attributeHeader\":{\"labelValue\":\"New Editions Consulting\",\"primaryLabelValue\":\"New Editions Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"New Glarus Brewing\",\"primaryLabelValue\":\"New Glarus Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"NewBath\",\"primaryLabelValue\":\"NewBath\"}},{\"attributeHeader\":{\"labelValue\":\"Newmans Valves\",\"primaryLabelValue\":\"Newmans Valves\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexLevel Information Technology\",\"primaryLabelValue\":\"NexLevel Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Next Generation Wireless\",\"primaryLabelValue\":\"Next Generation Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Next Marketing\",\"primaryLabelValue\":\"Next Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Next Step Learning\",\"primaryLabelValue\":\"Next Step Learning\"}},{\"attributeHeader\":{\"labelValue\":\"Nexum\",\"primaryLabelValue\":\"Nexum\"}},{\"attributeHeader\":{\"labelValue\":\"Nexus IS\",\"primaryLabelValue\":\"Nexus IS\"}},{\"attributeHeader\":{\"labelValue\":\"NGP Software\",\"primaryLabelValue\":\"NGP Software\"}},{\"attributeHeader\":{\"labelValue\":\"Nielsen-Kellerman\",\"primaryLabelValue\":\"Nielsen-Kellerman\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nixon Peabody\",\"primaryLabelValue\":\"Nixon Peabody\"}},{\"attributeHeader\":{\"labelValue\":\"n-Link\",\"primaryLabelValue\":\"n-Link\"}},{\"attributeHeader\":{\"labelValue\":\"NogginLabs\",\"primaryLabelValue\":\"NogginLabs\"}},{\"attributeHeader\":{\"labelValue\":\"Noodles & Company\",\"primaryLabelValue\":\"Noodles & Company\"}},{\"attributeHeader\":{\"labelValue\":\"North Shore Pediatric Therapy\",\"primaryLabelValue\":\"North Shore Pediatric Therapy\"}},{\"attributeHeader\":{\"labelValue\":\"Northridge Systems\",\"primaryLabelValue\":\"Northridge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Northwest Crane Service\",\"primaryLabelValue\":\"Northwest Crane Service\"}},{\"attributeHeader\":{\"labelValue\":\"Nova Datacom\",\"primaryLabelValue\":\"Nova Datacom\"}},{\"attributeHeader\":{\"labelValue\":\"Novae\",\"primaryLabelValue\":\"Novae\"}},{\"attributeHeader\":{\"labelValue\":\"NovaVision\",\"primaryLabelValue\":\"NovaVision\"}},{\"attributeHeader\":{\"labelValue\":\"Novus Biologicals\",\"primaryLabelValue\":\"Novus Biologicals\"}},{\"attributeHeader\":{\"labelValue\":\"NRS\",\"primaryLabelValue\":\"NRS\"}},{\"attributeHeader\":{\"labelValue\":\"NT Concepts\",\"primaryLabelValue\":\"NT Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Nutrition S'Mart\",\"primaryLabelValue\":\"Nutrition S'Mart\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Nyhus Communications\",\"primaryLabelValue\":\"Nyhus Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OakTree Solutions\",\"primaryLabelValue\":\"OakTree Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Object CTalk\",\"primaryLabelValue\":\"Object CTalk\"}},{\"attributeHeader\":{\"labelValue\":\"Observant\",\"primaryLabelValue\":\"Observant\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Oddcast\",\"primaryLabelValue\":\"Oddcast\"}},{\"attributeHeader\":{\"labelValue\":\"OfficePro\",\"primaryLabelValue\":\"OfficePro\"}},{\"attributeHeader\":{\"labelValue\":\"OfficeSource\",\"primaryLabelValue\":\"OfficeSource\"}},{\"attributeHeader\":{\"labelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\",\"primaryLabelValue\":\"Ogletree, Deakins, Nash, Smoak & Stewart\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Ohio Power Tool\",\"primaryLabelValue\":\"Ohio Power Tool\"}},{\"attributeHeader\":{\"labelValue\":\"OmegaBlue\",\"primaryLabelValue\":\"OmegaBlue\"}},{\"attributeHeader\":{\"labelValue\":\"Omni Systems\",\"primaryLabelValue\":\"Omni Systems\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"One Stop Systems\",\"primaryLabelValue\":\"One Stop Systems\"}},{\"attributeHeader\":{\"labelValue\":\"One to One Interactive\",\"primaryLabelValue\":\"One to One Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"OneCommand\",\"primaryLabelValue\":\"OneCommand\"}},{\"attributeHeader\":{\"labelValue\":\"OneNeck IT Services\",\"primaryLabelValue\":\"OneNeck IT Services\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Online Stores\",\"primaryLabelValue\":\"Online Stores\"}},{\"attributeHeader\":{\"labelValue\":\"Open Systems International\",\"primaryLabelValue\":\"Open Systems International\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Orbit Systems\",\"primaryLabelValue\":\"Orbit Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Organic Laboratories\",\"primaryLabelValue\":\"Organic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"OrthoBanc\",\"primaryLabelValue\":\"OrthoBanc\"}},{\"attributeHeader\":{\"labelValue\":\"Oscor\",\"primaryLabelValue\":\"Oscor\"}},{\"attributeHeader\":{\"labelValue\":\"OSi\",\"primaryLabelValue\":\"OSi\"}},{\"attributeHeader\":{\"labelValue\":\"OstermanCron\",\"primaryLabelValue\":\"OstermanCron\"}},{\"attributeHeader\":{\"labelValue\":\"Other World Computing\",\"primaryLabelValue\":\"Other World Computing\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Ovation Travel Group\",\"primaryLabelValue\":\"Ovation Travel Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Pacific Dental Services\",\"primaryLabelValue\":\"Pacific Dental Services\"}},{\"attributeHeader\":{\"labelValue\":\"Page Southerland Page\",\"primaryLabelValue\":\"Page Southerland Page\"}},{\"attributeHeader\":{\"labelValue\":\"PainReliever.com\",\"primaryLabelValue\":\"PainReliever.com\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Papa Murphy's International\",\"primaryLabelValue\":\"Papa Murphy's International\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Paramore-Redd Online Marketing\",\"primaryLabelValue\":\"Paramore-Redd Online Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Parature\",\"primaryLabelValue\":\"Parature\"}},{\"attributeHeader\":{\"labelValue\":\"Parrish Services\",\"primaryLabelValue\":\"Parrish Services\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Partners Consulting Services\",\"primaryLabelValue\":\"Partners Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Patton Boggs\",\"primaryLabelValue\":\"Patton Boggs\"}},{\"attributeHeader\":{\"labelValue\":\"PayChoice\",\"primaryLabelValue\":\"PayChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"Payment Alliance International\",\"primaryLabelValue\":\"Payment Alliance International\"}},{\"attributeHeader\":{\"labelValue\":\"PayReel\",\"primaryLabelValue\":\"PayReel\"}},{\"attributeHeader\":{\"labelValue\":\"Peaksware\",\"primaryLabelValue\":\"Peaksware\"}},{\"attributeHeader\":{\"labelValue\":\"Peek Packaging\",\"primaryLabelValue\":\"Peek Packaging\"}},{\"attributeHeader\":{\"labelValue\":\"Pegasus Alliance\",\"primaryLabelValue\":\"Pegasus Alliance\"}},{\"attributeHeader\":{\"labelValue\":\"Pentadyne Power\",\"primaryLabelValue\":\"Pentadyne Power\"}},{\"attributeHeader\":{\"labelValue\":\"Perceptis\",\"primaryLabelValue\":\"Perceptis\"}},{\"attributeHeader\":{\"labelValue\":\"PercipEnz Technologies\",\"primaryLabelValue\":\"PercipEnz Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Performance Media Group\",\"primaryLabelValue\":\"Performance Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Perkins Coie\",\"primaryLabelValue\":\"Perkins Coie\"}},{\"attributeHeader\":{\"labelValue\":\"Personal Computer Systems\",\"primaryLabelValue\":\"Personal Computer Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Law\",\"primaryLabelValue\":\"Phoenix Law\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Manufacturing\",\"primaryLabelValue\":\"Phoenix Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Phoenix Marketing International\",\"primaryLabelValue\":\"Phoenix Marketing International\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Pilgrim Software\",\"primaryLabelValue\":\"Pilgrim Software\"}},{\"attributeHeader\":{\"labelValue\":\"Pinckney Hugo Group\",\"primaryLabelValue\":\"Pinckney Hugo Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Services\",\"primaryLabelValue\":\"Pinnacle Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Planet Shoes\",\"primaryLabelValue\":\"Planet Shoes\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pleasant Hill Grain\",\"primaryLabelValue\":\"Pleasant Hill Grain\"}},{\"attributeHeader\":{\"labelValue\":\"PNT Marketing Services\",\"primaryLabelValue\":\"PNT Marketing Services\"}},{\"attributeHeader\":{\"labelValue\":\"Point Lighting\",\"primaryLabelValue\":\"Point Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"Polaris Laboratories\",\"primaryLabelValue\":\"Polaris Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Popcorn Palace\",\"primaryLabelValue\":\"Popcorn Palace\"}},{\"attributeHeader\":{\"labelValue\":\"Portfolio Creative Staffing\",\"primaryLabelValue\":\"Portfolio Creative Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Posh Boutique\",\"primaryLabelValue\":\"Posh Boutique\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Distribution\",\"primaryLabelValue\":\"Power Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Power Group\",\"primaryLabelValue\":\"Power Group\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Powertek\",\"primaryLabelValue\":\"Powertek\"}},{\"attributeHeader\":{\"labelValue\":\"Praetorian Group\",\"primaryLabelValue\":\"Praetorian Group\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie Quest Consulting\",\"primaryLabelValue\":\"Prairie Quest Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Development Services\",\"primaryLabelValue\":\"Precision Development Services\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Precision Pipeline Solutions\",\"primaryLabelValue\":\"Precision Pipeline Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Care Partners\",\"primaryLabelValue\":\"Preferred Care Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Freezer Services\",\"primaryLabelValue\":\"Preferred Freezer Services\"}},{\"attributeHeader\":{\"labelValue\":\"Preferred Systems Solutions\",\"primaryLabelValue\":\"Preferred Systems Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Healthcare Exchange\",\"primaryLabelValue\":\"Premier Healthcare Exchange\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Placement Media\",\"primaryLabelValue\":\"Premier Placement Media\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Presort Solutions\",\"primaryLabelValue\":\"Presort Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Primatics Financial\",\"primaryLabelValue\":\"Primatics Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Graphics\",\"primaryLabelValue\":\"Prime Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintGlobe\",\"primaryLabelValue\":\"PrintGlobe\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"PriveCo\",\"primaryLabelValue\":\"PriveCo\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Food Systems\",\"primaryLabelValue\":\"Pro Food Systems\"}},{\"attributeHeader\":{\"labelValue\":\"ProCPR\",\"primaryLabelValue\":\"ProCPR\"}},{\"attributeHeader\":{\"labelValue\":\"Product Partners\",\"primaryLabelValue\":\"Product Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Production Robotics\",\"primaryLabelValue\":\"Production Robotics\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitFuel\",\"primaryLabelValue\":\"ProfitFuel\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Brand Proformance\",\"primaryLabelValue\":\"Proforma Brand Proformance\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma InPrint\",\"primaryLabelValue\":\"Proforma InPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Proforma Printed Images\",\"primaryLabelValue\":\"Proforma Printed Images\"}},{\"attributeHeader\":{\"labelValue\":\"Program Productions\",\"primaryLabelValue\":\"Program Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"ProKarma\",\"primaryLabelValue\":\"ProKarma\"}},{\"attributeHeader\":{\"labelValue\":\"ProMed Molded Products\",\"primaryLabelValue\":\"ProMed Molded Products\"}},{\"attributeHeader\":{\"labelValue\":\"ProPay\",\"primaryLabelValue\":\"ProPay\"}},{\"attributeHeader\":{\"labelValue\":\"Proskauer Rose\",\"primaryLabelValue\":\"Proskauer Rose\"}},{\"attributeHeader\":{\"labelValue\":\"ProSync\",\"primaryLabelValue\":\"ProSync\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"ProTranslating\",\"primaryLabelValue\":\"ProTranslating\"}},{\"attributeHeader\":{\"labelValue\":\"PsiNapse Staffing\",\"primaryLabelValue\":\"PsiNapse Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Psyop\",\"primaryLabelValue\":\"Psyop\"}},{\"attributeHeader\":{\"labelValue\":\"Purple Wave Auction\",\"primaryLabelValue\":\"Purple Wave Auction\"}},{\"attributeHeader\":{\"labelValue\":\"PWR\",\"primaryLabelValue\":\"PWR\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSR Steel\",\"primaryLabelValue\":\"QSR Steel\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Health\",\"primaryLabelValue\":\"Quantum Health\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"QuinStreet\",\"primaryLabelValue\":\"QuinStreet\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rackmount Solutions\",\"primaryLabelValue\":\"Rackmount Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RagingWire Enterprise Solutions\",\"primaryLabelValue\":\"RagingWire Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Rainbow Station\",\"primaryLabelValue\":\"Rainbow Station\"}},{\"attributeHeader\":{\"labelValue\":\"Raining Rose\",\"primaryLabelValue\":\"Raining Rose\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid Refill\",\"primaryLabelValue\":\"Rapid Refill\"}},{\"attributeHeader\":{\"labelValue\":\"Rauxa Direct\",\"primaryLabelValue\":\"Rauxa Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Ravi's Import Warehouse\",\"primaryLabelValue\":\"Ravi's Import Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Razorleaf\",\"primaryLabelValue\":\"Razorleaf\"}},{\"attributeHeader\":{\"labelValue\":\"rbb Public Relations\",\"primaryLabelValue\":\"rbb Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Reaction Audio Visual\",\"primaryLabelValue\":\"Reaction Audio Visual\"}},{\"attributeHeader\":{\"labelValue\":\"Realty ONE Group\",\"primaryLabelValue\":\"Realty ONE Group\"}},{\"attributeHeader\":{\"labelValue\":\"Red F Marketing\",\"primaryLabelValue\":\"Red F Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Reed Smith\",\"primaryLabelValue\":\"Reed Smith\"}},{\"attributeHeader\":{\"labelValue\":\"Regent Bank\",\"primaryLabelValue\":\"Regent Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Regional Contracting Services\",\"primaryLabelValue\":\"Regional Contracting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Relay Express\",\"primaryLabelValue\":\"Relay Express\"}},{\"attributeHeader\":{\"labelValue\":\"Relectric\",\"primaryLabelValue\":\"Relectric\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Jet Maintenance\",\"primaryLabelValue\":\"Reliable Jet Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Respiratory\",\"primaryLabelValue\":\"Reliable Respiratory\"}},{\"attributeHeader\":{\"labelValue\":\"Reliable Software Resources\",\"primaryLabelValue\":\"Reliable Software Resources\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Rensselaer Honda\",\"primaryLabelValue\":\"Rensselaer Honda\"}},{\"attributeHeader\":{\"labelValue\":\"Rent a Coder\",\"primaryLabelValue\":\"Rent a Coder\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reply!\",\"primaryLabelValue\":\"Reply!\"}},{\"attributeHeader\":{\"labelValue\":\"Residential Finance\",\"primaryLabelValue\":\"Residential Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Re-Source Partners Asset Management\",\"primaryLabelValue\":\"Re-Source Partners Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Resourcesoft\",\"primaryLabelValue\":\"Resourcesoft\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"ReStockIt.com\",\"primaryLabelValue\":\"ReStockIt.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Media\",\"primaryLabelValue\":\"Restoration Media\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"rEvolution\",\"primaryLabelValue\":\"rEvolution\"}},{\"attributeHeader\":{\"labelValue\":\"Rey's Cleaners\",\"primaryLabelValue\":\"Rey's Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RideSafely.com\",\"primaryLabelValue\":\"RideSafely.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Medical Solutions\",\"primaryLabelValue\":\"Rising Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"River Road Asset Management\",\"primaryLabelValue\":\"River Road Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Riverside Manufacturing\",\"primaryLabelValue\":\"Riverside Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"RKA Petroleum Companies\",\"primaryLabelValue\":\"RKA Petroleum Companies\"}},{\"attributeHeader\":{\"labelValue\":\"RMCN Credit Services\",\"primaryLabelValue\":\"RMCN Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"RNB Technologies\",\"primaryLabelValue\":\"RNB Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Roamware\",\"primaryLabelValue\":\"Roamware\"}},{\"attributeHeader\":{\"labelValue\":\"RockBottomGolf.com\",\"primaryLabelValue\":\"RockBottomGolf.com\"}},{\"attributeHeader\":{\"labelValue\":\"Roman Fountains\",\"primaryLabelValue\":\"Roman Fountains\"}},{\"attributeHeader\":{\"labelValue\":\"Root Design\",\"primaryLabelValue\":\"Root Design\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Rosetta\",\"primaryLabelValue\":\"Rosetta\"}},{\"attributeHeader\":{\"labelValue\":\"Roxbury Technology\",\"primaryLabelValue\":\"Roxbury Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Document Destruction\",\"primaryLabelValue\":\"Royal Document Destruction\"}},{\"attributeHeader\":{\"labelValue\":\"RuffaloCODY\",\"primaryLabelValue\":\"RuffaloCODY\"}},{\"attributeHeader\":{\"labelValue\":\"Ryonet\",\"primaryLabelValue\":\"Ryonet\"}},{\"attributeHeader\":{\"labelValue\":\"Sabot Technologies\",\"primaryLabelValue\":\"Sabot Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sabre Industries\",\"primaryLabelValue\":\"Sabre Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Sacred Power\",\"primaryLabelValue\":\"Sacred Power\"}},{\"attributeHeader\":{\"labelValue\":\"SADA Systems\",\"primaryLabelValue\":\"SADA Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SafeMart\",\"primaryLabelValue\":\"SafeMart\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sagient Research Systems\",\"primaryLabelValue\":\"Sagient Research Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Salem Printing\",\"primaryLabelValue\":\"Salem Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Salesify\",\"primaryLabelValue\":\"Salesify\"}},{\"attributeHeader\":{\"labelValue\":\"SAM Medical Products\",\"primaryLabelValue\":\"SAM Medical Products\"}},{\"attributeHeader\":{\"labelValue\":\"SamsonBrands\",\"primaryLabelValue\":\"SamsonBrands\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Satcom Resources\",\"primaryLabelValue\":\"Satcom Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Satuit Technologies\",\"primaryLabelValue\":\"Satuit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Saveology.com\",\"primaryLabelValue\":\"Saveology.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savi Technologies\",\"primaryLabelValue\":\"Savi Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Sawgrass Asset Management\",\"primaryLabelValue\":\"Sawgrass Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Schaeffer Manufacturing\",\"primaryLabelValue\":\"Schaeffer Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Schneider Associates\",\"primaryLabelValue\":\"Schneider Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Schwartz Benefit Services\",\"primaryLabelValue\":\"Schwartz Benefit Services\"}},{\"attributeHeader\":{\"labelValue\":\"SciQuest\",\"primaryLabelValue\":\"SciQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Scivantage\",\"primaryLabelValue\":\"Scivantage\"}},{\"attributeHeader\":{\"labelValue\":\"Scrap Metal Services\",\"primaryLabelValue\":\"Scrap Metal Services\"}},{\"attributeHeader\":{\"labelValue\":\"ScriptSave\",\"primaryLabelValue\":\"ScriptSave\"}},{\"attributeHeader\":{\"labelValue\":\"SEA Corp\",\"primaryLabelValue\":\"SEA Corp\"}},{\"attributeHeader\":{\"labelValue\":\"SeatAdvisor\",\"primaryLabelValue\":\"SeatAdvisor\"}},{\"attributeHeader\":{\"labelValue\":\"See Jane Run\",\"primaryLabelValue\":\"See Jane Run\"}},{\"attributeHeader\":{\"labelValue\":\"See Kai Run\",\"primaryLabelValue\":\"See Kai Run\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Sena Cases\",\"primaryLabelValue\":\"Sena Cases\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Sensatronics\",\"primaryLabelValue\":\"Sensatronics\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sentinel Fence\",\"primaryLabelValue\":\"Sentinel Fence\"}},{\"attributeHeader\":{\"labelValue\":\"SentriLock\",\"primaryLabelValue\":\"SentriLock\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"Sew What?\",\"primaryLabelValue\":\"Sew What?\"}},{\"attributeHeader\":{\"labelValue\":\"Shearer & Associates\",\"primaryLabelValue\":\"Shearer & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Sherri May & Company\",\"primaryLabelValue\":\"Sherri May & Company\"}},{\"attributeHeader\":{\"labelValue\":\"Shift Global\",\"primaryLabelValue\":\"Shift Global\"}},{\"attributeHeader\":{\"labelValue\":\"ShoppersChoice.com\",\"primaryLabelValue\":\"ShoppersChoice.com\"}},{\"attributeHeader\":{\"labelValue\":\"SHW Group\",\"primaryLabelValue\":\"SHW Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Sign-A-Rama Greensboro\",\"primaryLabelValue\":\"Sign-A-Rama Greensboro\"}},{\"attributeHeader\":{\"labelValue\":\"Signature HealthCARE\",\"primaryLabelValue\":\"Signature HealthCARE\"}},{\"attributeHeader\":{\"labelValue\":\"Silverado\",\"primaryLabelValue\":\"Silverado\"}},{\"attributeHeader\":{\"labelValue\":\"Simplion Technologies\",\"primaryLabelValue\":\"Simplion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"Simpson Thacher & Bartlett\",\"primaryLabelValue\":\"Simpson Thacher & Bartlett\"}},{\"attributeHeader\":{\"labelValue\":\"Siteworx\",\"primaryLabelValue\":\"Siteworx\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skyline DFW Exhibits & Graphics\",\"primaryLabelValue\":\"Skyline DFW Exhibits & Graphics\"}},{\"attributeHeader\":{\"labelValue\":\"SLR Contracting & Service\",\"primaryLabelValue\":\"SLR Contracting & Service\"}},{\"attributeHeader\":{\"labelValue\":\"Smart Lines\",\"primaryLabelValue\":\"Smart Lines\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SMSi\",\"primaryLabelValue\":\"SMSi\"}},{\"attributeHeader\":{\"labelValue\":\"Smuka Trading\",\"primaryLabelValue\":\"Smuka Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Snell & Wilmer\",\"primaryLabelValue\":\"Snell & Wilmer\"}},{\"attributeHeader\":{\"labelValue\":\"SNtial Technologies\",\"primaryLabelValue\":\"SNtial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SOAProjects\",\"primaryLabelValue\":\"SOAProjects\"}},{\"attributeHeader\":{\"labelValue\":\"SofTec Solutions\",\"primaryLabelValue\":\"SofTec Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SolidSignal.com\",\"primaryLabelValue\":\"SolidSignal.com\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonnenschein Nath & Rosenthal\",\"primaryLabelValue\":\"Sonnenschein Nath & Rosenthal\"}},{\"attributeHeader\":{\"labelValue\":\"Souplantation / Sweet Tomatoes\",\"primaryLabelValue\":\"Souplantation / Sweet Tomatoes\"}},{\"attributeHeader\":{\"labelValue\":\"South Miami Pharmacy\",\"primaryLabelValue\":\"South Miami Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"SouthData\",\"primaryLabelValue\":\"SouthData\"}},{\"attributeHeader\":{\"labelValue\":\"Southern Light\",\"primaryLabelValue\":\"Southern Light\"}},{\"attributeHeader\":{\"labelValue\":\"Southland Technology\",\"primaryLabelValue\":\"Southland Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Special T's\",\"primaryLabelValue\":\"Special T's\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Direct\",\"primaryLabelValue\":\"Spectrum Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spiech Farms\",\"primaryLabelValue\":\"Spiech Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Spohn Ranch\",\"primaryLabelValue\":\"Spohn Ranch\"}},{\"attributeHeader\":{\"labelValue\":\"SQA Services\",\"primaryLabelValue\":\"SQA Services\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Squeaky Wheel Media\",\"primaryLabelValue\":\"Squeaky Wheel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stafford Associates Computer Specialists\",\"primaryLabelValue\":\"Stafford Associates Computer Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"StarchTech\",\"primaryLabelValue\":\"StarchTech\"}},{\"attributeHeader\":{\"labelValue\":\"Stark Excavating\",\"primaryLabelValue\":\"Stark Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Starlite Productions\",\"primaryLabelValue\":\"Starlite Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Starmount Life Insurance\",\"primaryLabelValue\":\"Starmount Life Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StemCyte\",\"primaryLabelValue\":\"StemCyte\"}},{\"attributeHeader\":{\"labelValue\":\"STEMTech International\",\"primaryLabelValue\":\"STEMTech International\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Commerce Group\",\"primaryLabelValue\":\"Sterling Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sterling Communications\",\"primaryLabelValue\":\"Sterling Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Stinger Ghaffarian Technologies\",\"primaryLabelValue\":\"Stinger Ghaffarian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Stop Aging Now\",\"primaryLabelValue\":\"Stop Aging Now\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Stream\",\"primaryLabelValue\":\"Stream\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"StudyPoint\",\"primaryLabelValue\":\"StudyPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan & Cromwell\",\"primaryLabelValue\":\"Sullivan & Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SVTronics\",\"primaryLabelValue\":\"SVTronics\"}},{\"attributeHeader\":{\"labelValue\":\"SweeDee\",\"primaryLabelValue\":\"SweeDee\"}},{\"attributeHeader\":{\"labelValue\":\"SwipeClock\",\"primaryLabelValue\":\"SwipeClock\"}},{\"attributeHeader\":{\"labelValue\":\"Sword & Shield Enterprise Security\",\"primaryLabelValue\":\"Sword & Shield Enterprise Security\"}},{\"attributeHeader\":{\"labelValue\":\"Sydor Instruments\",\"primaryLabelValue\":\"Sydor Instruments\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Synergistix\",\"primaryLabelValue\":\"Synergistix\"}},{\"attributeHeader\":{\"labelValue\":\"Synoptek\",\"primaryLabelValue\":\"Synoptek\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Integration & Development\",\"primaryLabelValue\":\"Systems Integration & Development\"}},{\"attributeHeader\":{\"labelValue\":\"T2 International\",\"primaryLabelValue\":\"T2 International\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Taradel\",\"primaryLabelValue\":\"Taradel\"}},{\"attributeHeader\":{\"labelValue\":\"Tarte\",\"primaryLabelValue\":\"Tarte\"}},{\"attributeHeader\":{\"labelValue\":\"TBJ\",\"primaryLabelValue\":\"TBJ\"}},{\"attributeHeader\":{\"labelValue\":\"Team Clean\",\"primaryLabelValue\":\"Team Clean\"}},{\"attributeHeader\":{\"labelValue\":\"Tech Resouces\",\"primaryLabelValue\":\"Tech Resouces\"}},{\"attributeHeader\":{\"labelValue\":\"TechFlow\",\"primaryLabelValue\":\"TechFlow\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Communities\",\"primaryLabelValue\":\"Technical Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Resource Center of America\",\"primaryLabelValue\":\"Technology Resource Center of America\"}},{\"attributeHeader\":{\"labelValue\":\"Technology Support\",\"primaryLabelValue\":\"Technology Support\"}},{\"attributeHeader\":{\"labelValue\":\"Techno-Sciences\",\"primaryLabelValue\":\"Techno-Sciences\"}},{\"attributeHeader\":{\"labelValue\":\"Teddy's Transportation System\",\"primaryLabelValue\":\"Teddy's Transportation System\"}},{\"attributeHeader\":{\"labelValue\":\"TeleContact Resource Services\",\"primaryLabelValue\":\"TeleContact Resource Services\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"TelePacific Communications\",\"primaryLabelValue\":\"TelePacific Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Telescope\",\"primaryLabelValue\":\"Telescope\"}},{\"attributeHeader\":{\"labelValue\":\"TeleTracking Technologies\",\"primaryLabelValue\":\"TeleTracking Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tenacity Solutions\",\"primaryLabelValue\":\"Tenacity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TengoInternet\",\"primaryLabelValue\":\"TengoInternet\"}},{\"attributeHeader\":{\"labelValue\":\"Tenmast Software\",\"primaryLabelValue\":\"Tenmast Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tenrox\",\"primaryLabelValue\":\"Tenrox\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Terralever\",\"primaryLabelValue\":\"Terralever\"}},{\"attributeHeader\":{\"labelValue\":\"The Analysis Group\",\"primaryLabelValue\":\"The Analysis Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Beryl Companies\",\"primaryLabelValue\":\"The Beryl Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Booksource\",\"primaryLabelValue\":\"The Booksource\"}},{\"attributeHeader\":{\"labelValue\":\"The Brookeside Group\",\"primaryLabelValue\":\"The Brookeside Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Buckner Company\",\"primaryLabelValue\":\"The Buckner Company\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Cellular Connection\",\"primaryLabelValue\":\"The Cellular Connection\"}},{\"attributeHeader\":{\"labelValue\":\"The Computer Company\",\"primaryLabelValue\":\"The Computer Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Dentist's Choice\",\"primaryLabelValue\":\"The Dentist's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"The Ellison Nursing Group\",\"primaryLabelValue\":\"The Ellison Nursing Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Express Design Group\",\"primaryLabelValue\":\"The Express Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Hub Meeting and Event Centers\",\"primaryLabelValue\":\"The Hub Meeting and Event Centers\"}},{\"attributeHeader\":{\"labelValue\":\"The Human Resource Consulting Group\",\"primaryLabelValue\":\"The Human Resource Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"The I.T. Pros\",\"primaryLabelValue\":\"The I.T. Pros\"}},{\"attributeHeader\":{\"labelValue\":\"The Judge Group\",\"primaryLabelValue\":\"The Judge Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Launch Pad\",\"primaryLabelValue\":\"The Launch Pad\"}},{\"attributeHeader\":{\"labelValue\":\"The Learning House\",\"primaryLabelValue\":\"The Learning House\"}},{\"attributeHeader\":{\"labelValue\":\"The LiRo Group\",\"primaryLabelValue\":\"The LiRo Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Macaluso Group\",\"primaryLabelValue\":\"The Macaluso Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mortgage Group\",\"primaryLabelValue\":\"The Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Mosaic Company\",\"primaryLabelValue\":\"The Mosaic Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Mutual Fund Store\",\"primaryLabelValue\":\"The Mutual Fund Store\"}},{\"attributeHeader\":{\"labelValue\":\"The Plaza Group\",\"primaryLabelValue\":\"The Plaza Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pond Guy\",\"primaryLabelValue\":\"The Pond Guy\"}},{\"attributeHeader\":{\"labelValue\":\"The Queensboro Shirt Company\",\"primaryLabelValue\":\"The Queensboro Shirt Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Refuge-A Healing Place\",\"primaryLabelValue\":\"The Refuge-A Healing Place\"}},{\"attributeHeader\":{\"labelValue\":\"The Squires Group\",\"primaryLabelValue\":\"The Squires Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Truland Group\",\"primaryLabelValue\":\"The Truland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Twister Group\",\"primaryLabelValue\":\"The Twister Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Watchery\",\"primaryLabelValue\":\"The Watchery\"}},{\"attributeHeader\":{\"labelValue\":\"Think Finance\",\"primaryLabelValue\":\"Think Finance\"}},{\"attributeHeader\":{\"labelValue\":\"Thomas G. Gallagher\",\"primaryLabelValue\":\"Thomas G. Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Coburn\",\"primaryLabelValue\":\"Thompson Coburn\"}},{\"attributeHeader\":{\"labelValue\":\"Thompson Hine\",\"primaryLabelValue\":\"Thompson Hine\"}},{\"attributeHeader\":{\"labelValue\":\"Thoroughbred Research Group\",\"primaryLabelValue\":\"Thoroughbred Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TMC Orthopedic\",\"primaryLabelValue\":\"TMC Orthopedic\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"Toolmex\",\"primaryLabelValue\":\"Toolmex\"}},{\"attributeHeader\":{\"labelValue\":\"TOPCON\",\"primaryLabelValue\":\"TOPCON\"}},{\"attributeHeader\":{\"labelValue\":\"Topline Products\",\"primaryLabelValue\":\"Topline Products\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tortuga Rum Cake\",\"primaryLabelValue\":\"Tortuga Rum Cake\"}},{\"attributeHeader\":{\"labelValue\":\"Total Mortgage Services\",\"primaryLabelValue\":\"Total Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"Touchstone Wireless\",\"primaryLabelValue\":\"Touchstone Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Toys\\\"R\",\"primaryLabelValue\":\"Toys\\\"R\"}},{\"attributeHeader\":{\"labelValue\":\"Traction\",\"primaryLabelValue\":\"Traction\"}},{\"attributeHeader\":{\"labelValue\":\"Traffic and Parking Control\",\"primaryLabelValue\":\"Traffic and Parking Control\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Transnational Foods\",\"primaryLabelValue\":\"Transnational Foods\"}},{\"attributeHeader\":{\"labelValue\":\"TravelClick\",\"primaryLabelValue\":\"TravelClick\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"TreadmillDoctor.com\",\"primaryLabelValue\":\"TreadmillDoctor.com\"}},{\"attributeHeader\":{\"labelValue\":\"Trend Personnel Services\",\"primaryLabelValue\":\"Trend Personnel Services\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"Trident Marketing\",\"primaryLabelValue\":\"Trident Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Trims Unlimited\",\"primaryLabelValue\":\"Trims Unlimited\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Sterile\",\"primaryLabelValue\":\"Trinity Sterile\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TriTech Software Systems\",\"primaryLabelValue\":\"TriTech Software Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Triton Pacific Capital Partners\",\"primaryLabelValue\":\"Triton Pacific Capital Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Troutman Sanders\",\"primaryLabelValue\":\"Troutman Sanders\"}},{\"attributeHeader\":{\"labelValue\":\"Truck Lease Services\",\"primaryLabelValue\":\"Truck Lease Services\"}},{\"attributeHeader\":{\"labelValue\":\"True Fabrications\",\"primaryLabelValue\":\"True Fabrications\"}},{\"attributeHeader\":{\"labelValue\":\"Truevance Management\",\"primaryLabelValue\":\"Truevance Management\"}},{\"attributeHeader\":{\"labelValue\":\"TRUSTe\",\"primaryLabelValue\":\"TRUSTe\"}},{\"attributeHeader\":{\"labelValue\":\"TSL Staff Leasing\",\"primaryLabelValue\":\"TSL Staff Leasing\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"TWR Lighting\",\"primaryLabelValue\":\"TWR Lighting\"}},{\"attributeHeader\":{\"labelValue\":\"TyrrellTech\",\"primaryLabelValue\":\"TyrrellTech\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Energy Services\",\"primaryLabelValue\":\"U.S. Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"UberPrints.com\",\"primaryLabelValue\":\"UberPrints.com\"}},{\"attributeHeader\":{\"labelValue\":\"Uckele Health & Nutrition\",\"primaryLabelValue\":\"Uckele Health & Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underground Printing\",\"primaryLabelValue\":\"Underground Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Understand.com\",\"primaryLabelValue\":\"Understand.com\"}},{\"attributeHeader\":{\"labelValue\":\"Unicon International\",\"primaryLabelValue\":\"Unicon International\"}},{\"attributeHeader\":{\"labelValue\":\"Uniflex Church Furnishings\",\"primaryLabelValue\":\"Uniflex Church Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United National Consumer Suppliers\",\"primaryLabelValue\":\"United National Consumer Suppliers\"}},{\"attributeHeader\":{\"labelValue\":\"United States Homeland Investigations\",\"primaryLabelValue\":\"United States Homeland Investigations\"}},{\"attributeHeader\":{\"labelValue\":\"United Technology Group\",\"primaryLabelValue\":\"United Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Environmental Consulting\",\"primaryLabelValue\":\"Universal Environmental Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Wiring\",\"primaryLabelValue\":\"Universal Wiring\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"Unlimited Furniture Group\",\"primaryLabelValue\":\"Unlimited Furniture Group\"}},{\"attributeHeader\":{\"labelValue\":\"Upstate Shredding\",\"primaryLabelValue\":\"Upstate Shredding\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Science\",\"primaryLabelValue\":\"Urban Science\"}},{\"attributeHeader\":{\"labelValue\":\"UrsaNav\",\"primaryLabelValue\":\"UrsaNav\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"User Centric\",\"primaryLabelValue\":\"User Centric\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"V.L.S Systems\",\"primaryLabelValue\":\"V.L.S Systems\"}},{\"attributeHeader\":{\"labelValue\":\"V2 Systems\",\"primaryLabelValue\":\"V2 Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaco\",\"primaryLabelValue\":\"Vaco\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ValueCentric Marketing Group\",\"primaryLabelValue\":\"ValueCentric Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vantage Hospitality Group\",\"primaryLabelValue\":\"Vantage Hospitality Group\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Vedder, Price, Kaufman & Kammholz\",\"primaryLabelValue\":\"Vedder, Price, Kaufman & Kammholz\"}},{\"attributeHeader\":{\"labelValue\":\"Venator Holdings\",\"primaryLabelValue\":\"Venator Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Venn Strategies\",\"primaryLabelValue\":\"Venn Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Versacom\",\"primaryLabelValue\":\"Versacom\"}},{\"attributeHeader\":{\"labelValue\":\"Verteks Consulting\",\"primaryLabelValue\":\"Verteks Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"VideoLink\",\"primaryLabelValue\":\"VideoLink\"}},{\"attributeHeader\":{\"labelValue\":\"VIPdesk\",\"primaryLabelValue\":\"VIPdesk\"}},{\"attributeHeader\":{\"labelValue\":\"Virtue Group\",\"primaryLabelValue\":\"Virtue Group\"}},{\"attributeHeader\":{\"labelValue\":\"Vision Technologies\",\"primaryLabelValue\":\"Vision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Painting Services\",\"primaryLabelValue\":\"Visionary Painting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visiting Angels\",\"primaryLabelValue\":\"Visiting Angels\"}},{\"attributeHeader\":{\"labelValue\":\"Visix\",\"primaryLabelValue\":\"Visix\"}},{\"attributeHeader\":{\"labelValue\":\"VitalSmarts\",\"primaryLabelValue\":\"VitalSmarts\"}},{\"attributeHeader\":{\"labelValue\":\"VLS Recovery Services\",\"primaryLabelValue\":\"VLS Recovery Services\"}},{\"attributeHeader\":{\"labelValue\":\"Voce Communications\",\"primaryLabelValue\":\"Voce Communications\"}},{\"attributeHeader\":{\"labelValue\":\"VoIP Logic\",\"primaryLabelValue\":\"VoIP Logic\"}},{\"attributeHeader\":{\"labelValue\":\"W.L. French Excavating\",\"primaryLabelValue\":\"W.L. French Excavating\"}},{\"attributeHeader\":{\"labelValue\":\"Wachtell, Lipton, Rosen & Katz\",\"primaryLabelValue\":\"Wachtell, Lipton, Rosen & Katz\"}},{\"attributeHeader\":{\"labelValue\":\"WageWorks\",\"primaryLabelValue\":\"WageWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Warren & Baerg Manufacturing\",\"primaryLabelValue\":\"Warren & Baerg Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"We R Memory Keepers\",\"primaryLabelValue\":\"We R Memory Keepers\"}},{\"attributeHeader\":{\"labelValue\":\"WebCollage\",\"primaryLabelValue\":\"WebCollage\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"Wellington Technologies\",\"primaryLabelValue\":\"Wellington Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Wellpartner\",\"primaryLabelValue\":\"Wellpartner\"}},{\"attributeHeader\":{\"labelValue\":\"Wendoh Media\",\"primaryLabelValue\":\"Wendoh Media\"}},{\"attributeHeader\":{\"labelValue\":\"Western Wats\",\"primaryLabelValue\":\"Western Wats\"}},{\"attributeHeader\":{\"labelValue\":\"Whelan Security\",\"primaryLabelValue\":\"Whelan Security\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Wholesale Food Equipment\",\"primaryLabelValue\":\"Wholesale Food Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Williams Mullen\",\"primaryLabelValue\":\"Williams Mullen\"}},{\"attributeHeader\":{\"labelValue\":\"Willkie Farr Gallagher\",\"primaryLabelValue\":\"Willkie Farr Gallagher\"}},{\"attributeHeader\":{\"labelValue\":\"Wilmer Cutler Pickering Hale and Dorr\",\"primaryLabelValue\":\"Wilmer Cutler Pickering Hale and Dorr\"}},{\"attributeHeader\":{\"labelValue\":\"Wilson Associates\",\"primaryLabelValue\":\"Wilson Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Winco\",\"primaryLabelValue\":\"Winco\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Wire\",\"primaryLabelValue\":\"Windy City Wire\"}},{\"attributeHeader\":{\"labelValue\":\"Winning Strategies ITS\",\"primaryLabelValue\":\"Winning Strategies ITS\"}},{\"attributeHeader\":{\"labelValue\":\"Winston & Strawn\",\"primaryLabelValue\":\"Winston & Strawn\"}},{\"attributeHeader\":{\"labelValue\":\"Wongdoody\",\"primaryLabelValue\":\"Wongdoody\"}},{\"attributeHeader\":{\"labelValue\":\"WorkForce Software\",\"primaryLabelValue\":\"WorkForce Software\"}},{\"attributeHeader\":{\"labelValue\":\"World Pac Paper\",\"primaryLabelValue\":\"World Pac Paper\"}},{\"attributeHeader\":{\"labelValue\":\"WorldVentures\",\"primaryLabelValue\":\"WorldVentures\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Xcentric\",\"primaryLabelValue\":\"Xcentric\"}},{\"attributeHeader\":{\"labelValue\":\"Xelleration\",\"primaryLabelValue\":\"Xelleration\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"XT Global\",\"primaryLabelValue\":\"XT Global\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YOR Health\",\"primaryLabelValue\":\"YOR Health\"}},{\"attributeHeader\":{\"labelValue\":\"York Telecom\",\"primaryLabelValue\":\"York Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Youngsoft\",\"primaryLabelValue\":\"Youngsoft\"}},{\"attributeHeader\":{\"labelValue\":\"YU & Associates\",\"primaryLabelValue\":\"YU & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Zahava Group\",\"primaryLabelValue\":\"Zahava Group\"}},{\"attributeHeader\":{\"labelValue\":\"ZapTel\",\"primaryLabelValue\":\"ZapTel\"}},{\"attributeHeader\":{\"labelValue\":\"ZeroChaos\",\"primaryLabelValue\":\"ZeroChaos\"}},{\"attributeHeader\":{\"labelValue\":\"Zia Engineering & Environmental Consultants\",\"primaryLabelValue\":\"Zia Engineering & Environmental Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Zipcar\",\"primaryLabelValue\":\"Zipcar\"}},{\"attributeHeader\":{\"labelValue\":\"Zther Interactive\",\"primaryLabelValue\":\"Zther Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"3dCart Shopping Cart Software\",\"primaryLabelValue\":\"3dCart Shopping Cart Software\"}},{\"attributeHeader\":{\"labelValue\":\"614 Media Group\",\"primaryLabelValue\":\"614 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"A Main Hobbies\",\"primaryLabelValue\":\"A Main Hobbies\"}},{\"attributeHeader\":{\"labelValue\":\"AcademixDirect\",\"primaryLabelValue\":\"AcademixDirect\"}},{\"attributeHeader\":{\"labelValue\":\"Accelerated Financial Solutions\",\"primaryLabelValue\":\"Accelerated Financial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Access America Transport\",\"primaryLabelValue\":\"Access America Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Access Insurance Holdings\",\"primaryLabelValue\":\"Access Insurance Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Access Technology Solutions\",\"primaryLabelValue\":\"Access Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Accordent\",\"primaryLabelValue\":\"Accordent\"}},{\"attributeHeader\":{\"labelValue\":\"Adaptive Planning\",\"primaryLabelValue\":\"Adaptive Planning\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Asset Management\",\"primaryLabelValue\":\"Advisors Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Aerospace & Commercial Technologies\",\"primaryLabelValue\":\"Aerospace & Commercial Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"AirSplat\",\"primaryLabelValue\":\"AirSplat\"}},{\"attributeHeader\":{\"labelValue\":\"AIT Laboratories\",\"primaryLabelValue\":\"AIT Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"AK Environmental\",\"primaryLabelValue\":\"AK Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Alarm Team\",\"primaryLabelValue\":\"Alarm Team\"}},{\"attributeHeader\":{\"labelValue\":\"Algonquin Advisors\",\"primaryLabelValue\":\"Algonquin Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"All Star Directories\",\"primaryLabelValue\":\"All Star Directories\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}},{\"attributeHeader\":{\"labelValue\":\"AmazingCharts\",\"primaryLabelValue\":\"AmazingCharts\"}},{\"attributeHeader\":{\"labelValue\":\"Ambit Energy\",\"primaryLabelValue\":\"Ambit Energy\"}},{\"attributeHeader\":{\"labelValue\":\"American Ear Hearing & Audiology\",\"primaryLabelValue\":\"American Ear Hearing & Audiology\"}},{\"attributeHeader\":{\"labelValue\":\"American IT Solutions\",\"primaryLabelValue\":\"American IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"American Radiologist Network\",\"primaryLabelValue\":\"American Radiologist Network\"}},{\"attributeHeader\":{\"labelValue\":\"American Security Programs\",\"primaryLabelValue\":\"American Security Programs\"}},{\"attributeHeader\":{\"labelValue\":\"Ampcus\",\"primaryLabelValue\":\"Ampcus\"}},{\"attributeHeader\":{\"labelValue\":\"Andromeda Systems\",\"primaryLabelValue\":\"Andromeda Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Animax Entertainment\",\"primaryLabelValue\":\"Animax Entertainment\"}},{\"attributeHeader\":{\"labelValue\":\"Anulex Technologies\",\"primaryLabelValue\":\"Anulex Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"APEXteriors\",\"primaryLabelValue\":\"APEXteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Appletree Answering Service\",\"primaryLabelValue\":\"Appletree Answering Service\"}},{\"attributeHeader\":{\"labelValue\":\"ArcaMax Publishing\",\"primaryLabelValue\":\"ArcaMax Publishing\"}},{\"attributeHeader\":{\"labelValue\":\"Arch-Con\",\"primaryLabelValue\":\"Arch-Con\"}},{\"attributeHeader\":{\"labelValue\":\"Array Information Technology\",\"primaryLabelValue\":\"Array Information Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Strategies\",\"primaryLabelValue\":\"Arrow Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Ascentium\",\"primaryLabelValue\":\"Ascentium\"}},{\"attributeHeader\":{\"labelValue\":\"ASP Pool and Spa\",\"primaryLabelValue\":\"ASP Pool and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Astyra\",\"primaryLabelValue\":\"Astyra\"}},{\"attributeHeader\":{\"labelValue\":\"Austin GeoModeling\",\"primaryLabelValue\":\"Austin GeoModeling\"}},{\"attributeHeader\":{\"labelValue\":\"AutoRevo\",\"primaryLabelValue\":\"AutoRevo\"}},{\"attributeHeader\":{\"labelValue\":\"Avail-TVN\",\"primaryLabelValue\":\"Avail-TVN\"}},{\"attributeHeader\":{\"labelValue\":\"Avalara\",\"primaryLabelValue\":\"Avalara\"}},{\"attributeHeader\":{\"labelValue\":\"AvantLink.com\",\"primaryLabelValue\":\"AvantLink.com\"}},{\"attributeHeader\":{\"labelValue\":\"AVEO Pharmaceuticals\",\"primaryLabelValue\":\"AVEO Pharmaceuticals\"}},{\"attributeHeader\":{\"labelValue\":\"Avian Engineering\",\"primaryLabelValue\":\"Avian Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Axom Technologies\",\"primaryLabelValue\":\"Axom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Axyon Consulting\",\"primaryLabelValue\":\"Axyon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"B&S Electric Supply\",\"primaryLabelValue\":\"B&S Electric Supply\"}},{\"attributeHeader\":{\"labelValue\":\"B2B CFO\",\"primaryLabelValue\":\"B2B CFO\"}},{\"attributeHeader\":{\"labelValue\":\"Best Practice Systems\",\"primaryLabelValue\":\"Best Practice Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BigMachines\",\"primaryLabelValue\":\"BigMachines\"}},{\"attributeHeader\":{\"labelValue\":\"Bill Bartmann Enterprises\",\"primaryLabelValue\":\"Bill Bartmann Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Biosearch Technologies\",\"primaryLabelValue\":\"Biosearch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Birds Barbershop\",\"primaryLabelValue\":\"Birds Barbershop\"}},{\"attributeHeader\":{\"labelValue\":\"Blow\",\"primaryLabelValue\":\"Blow\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Cod Technologies\",\"primaryLabelValue\":\"Blue Cod Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bluemile\",\"primaryLabelValue\":\"Bluemile\"}},{\"attributeHeader\":{\"labelValue\":\"Bonnie Marcus Collection\",\"primaryLabelValue\":\"Bonnie Marcus Collection\"}},{\"attributeHeader\":{\"labelValue\":\"BOSH Global Services\",\"primaryLabelValue\":\"BOSH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boundless Network\",\"primaryLabelValue\":\"Boundless Network\"}},{\"attributeHeader\":{\"labelValue\":\"BridgePoint Technologies\",\"primaryLabelValue\":\"BridgePoint Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Bridges Consulting\",\"primaryLabelValue\":\"Bridges Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Brilliant Environmental Services\",\"primaryLabelValue\":\"Brilliant Environmental Services\"}},{\"attributeHeader\":{\"labelValue\":\"BriMar Wood Innovations\",\"primaryLabelValue\":\"BriMar Wood Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Brindley Beach Vacations\",\"primaryLabelValue\":\"Brindley Beach Vacations\"}},{\"attributeHeader\":{\"labelValue\":\"Built NY\",\"primaryLabelValue\":\"Built NY\"}},{\"attributeHeader\":{\"labelValue\":\"Bulk TV & Internet\",\"primaryLabelValue\":\"Bulk TV & Internet\"}},{\"attributeHeader\":{\"labelValue\":\"Burry Foodservice\",\"primaryLabelValue\":\"Burry Foodservice\"}},{\"attributeHeader\":{\"labelValue\":\"C2 Education\",\"primaryLabelValue\":\"C2 Education\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Crest Communities\",\"primaryLabelValue\":\"Campus Crest Communities\"}},{\"attributeHeader\":{\"labelValue\":\"Canon Recruiting Group\",\"primaryLabelValue\":\"Canon Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Capstone\",\"primaryLabelValue\":\"Capstone\"}},{\"attributeHeader\":{\"labelValue\":\"Carahsoft Technology\",\"primaryLabelValue\":\"Carahsoft Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Carbonite\",\"primaryLabelValue\":\"Carbonite\"}},{\"attributeHeader\":{\"labelValue\":\"Cardinal Resources\",\"primaryLabelValue\":\"Cardinal Resources\"}},{\"attributeHeader\":{\"labelValue\":\"CareNet\",\"primaryLabelValue\":\"CareNet\"}},{\"attributeHeader\":{\"labelValue\":\"Catapult Consultants\",\"primaryLabelValue\":\"Catapult Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"CB Transportation\",\"primaryLabelValue\":\"CB Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"CCS Global Tech\",\"primaryLabelValue\":\"CCS Global Tech\"}},{\"attributeHeader\":{\"labelValue\":\"Celestar\",\"primaryLabelValue\":\"Celestar\"}},{\"attributeHeader\":{\"labelValue\":\"Cenergy\",\"primaryLabelValue\":\"Cenergy\"}},{\"attributeHeader\":{\"labelValue\":\"CFN Services\",\"primaryLabelValue\":\"CFN Services\"}},{\"attributeHeader\":{\"labelValue\":\"Change Management Consulting\",\"primaryLabelValue\":\"Change Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Choice\",\"primaryLabelValue\":\"Children's Choice\"}},{\"attributeHeader\":{\"labelValue\":\"Children's Progress\",\"primaryLabelValue\":\"Children's Progress\"}},{\"attributeHeader\":{\"labelValue\":\"ChiroNET\",\"primaryLabelValue\":\"ChiroNET\"}},{\"attributeHeader\":{\"labelValue\":\"Chit Chat Baby\",\"primaryLabelValue\":\"Chit Chat Baby\"}},{\"attributeHeader\":{\"labelValue\":\"CHMB Solutions\",\"primaryLabelValue\":\"CHMB Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ciplex\",\"primaryLabelValue\":\"Ciplex\"}},{\"attributeHeader\":{\"labelValue\":\"CleanFish\",\"primaryLabelValue\":\"CleanFish\"}},{\"attributeHeader\":{\"labelValue\":\"CleanScapes\",\"primaryLabelValue\":\"CleanScapes\"}},{\"attributeHeader\":{\"labelValue\":\"clearAvenue\",\"primaryLabelValue\":\"clearAvenue\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud Creek Systems\",\"primaryLabelValue\":\"Cloud Creek Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Colorado Roofing & Exteriors\",\"primaryLabelValue\":\"Colorado Roofing & Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"Column5 Consulting\",\"primaryLabelValue\":\"Column5 Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Ties of America\",\"primaryLabelValue\":\"Community Ties of America\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Transportation\",\"primaryLabelValue\":\"Complete Transportation\"}},{\"attributeHeader\":{\"labelValue\":\"ComplianceSigns\",\"primaryLabelValue\":\"ComplianceSigns\"}},{\"attributeHeader\":{\"labelValue\":\"Construction and Service Solutions\",\"primaryLabelValue\":\"Construction and Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Contour\",\"primaryLabelValue\":\"Contour\"}},{\"attributeHeader\":{\"labelValue\":\"CoreSys Consulting Services\",\"primaryLabelValue\":\"CoreSys Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"CPASiteSolutions\",\"primaryLabelValue\":\"CPASiteSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPO Commerce\",\"primaryLabelValue\":\"CPO Commerce\"}},{\"attributeHeader\":{\"labelValue\":\"CPower\",\"primaryLabelValue\":\"CPower\"}},{\"attributeHeader\":{\"labelValue\":\"CrankyApe.com\",\"primaryLabelValue\":\"CrankyApe.com\"}},{\"attributeHeader\":{\"labelValue\":\"Crowe Paradis Services\",\"primaryLabelValue\":\"Crowe Paradis Services\"}},{\"attributeHeader\":{\"labelValue\":\"CSS Distribution Group\",\"primaryLabelValue\":\"CSS Distribution Group\"}},{\"attributeHeader\":{\"labelValue\":\"Cube 3 Studio\",\"primaryLabelValue\":\"Cube 3 Studio\"}},{\"attributeHeader\":{\"labelValue\":\"DataMetrix\",\"primaryLabelValue\":\"DataMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"Datawiz\",\"primaryLabelValue\":\"Datawiz\"}},{\"attributeHeader\":{\"labelValue\":\"Dealer.com\",\"primaryLabelValue\":\"Dealer.com\"}},{\"attributeHeader\":{\"labelValue\":\"Debt Free Associates\",\"primaryLabelValue\":\"Debt Free Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Deep Water Point\",\"primaryLabelValue\":\"Deep Water Point\"}},{\"attributeHeader\":{\"labelValue\":\"Defender Direct\",\"primaryLabelValue\":\"Defender Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Delta Disaster Services\",\"primaryLabelValue\":\"Delta Disaster Services\"}},{\"attributeHeader\":{\"labelValue\":\"Deluxe Marketing\",\"primaryLabelValue\":\"Deluxe Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Demandforce\",\"primaryLabelValue\":\"Demandforce\"}},{\"attributeHeader\":{\"labelValue\":\"DestinationWeddings.com\",\"primaryLabelValue\":\"DestinationWeddings.com\"}},{\"attributeHeader\":{\"labelValue\":\"DeviceAnywhere\",\"primaryLabelValue\":\"DeviceAnywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Dialogue Marketing\",\"primaryLabelValue\":\"Dialogue Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Diamond Mind\",\"primaryLabelValue\":\"Diamond Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Digispace Solutions\",\"primaryLabelValue\":\"Digispace Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Advertising\",\"primaryLabelValue\":\"Digital Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Digitaria\",\"primaryLabelValue\":\"Digitaria\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Communications\",\"primaryLabelValue\":\"Direct Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Exteriors\",\"primaryLabelValue\":\"Direct Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountOfficeItems.com\",\"primaryLabelValue\":\"DiscountOfficeItems.com\"}},{\"attributeHeader\":{\"labelValue\":\"DJO\",\"primaryLabelValue\":\"DJO\"}},{\"attributeHeader\":{\"labelValue\":\"Dominion Payroll Services\",\"primaryLabelValue\":\"Dominion Payroll Services\"}},{\"attributeHeader\":{\"labelValue\":\"Double Play Media\",\"primaryLabelValue\":\"Double Play Media\"}},{\"attributeHeader\":{\"labelValue\":\"Drake\",\"primaryLabelValue\":\"Drake\"}},{\"attributeHeader\":{\"labelValue\":\"DrillSpot.com\",\"primaryLabelValue\":\"DrillSpot.com\"}},{\"attributeHeader\":{\"labelValue\":\"Earhart Roofing\",\"primaryLabelValue\":\"Earhart Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"EasySeat\",\"primaryLabelValue\":\"EasySeat\"}},{\"attributeHeader\":{\"labelValue\":\"EDC Consulting\",\"primaryLabelValue\":\"EDC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"EffectiveUI\",\"primaryLabelValue\":\"EffectiveUI\"}},{\"attributeHeader\":{\"labelValue\":\"EGB Systems & Solutions\",\"primaryLabelValue\":\"EGB Systems & Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eImagine Technology Group\",\"primaryLabelValue\":\"eImagine Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Electrical Systems and Instrumentation\",\"primaryLabelValue\":\"Electrical Systems and Instrumentation\"}},{\"attributeHeader\":{\"labelValue\":\"Elgia\",\"primaryLabelValue\":\"Elgia\"}},{\"attributeHeader\":{\"labelValue\":\"Embassy International\",\"primaryLabelValue\":\"Embassy International\"}},{\"attributeHeader\":{\"labelValue\":\"Emma\",\"primaryLabelValue\":\"Emma\"}},{\"attributeHeader\":{\"labelValue\":\"EMO Energy Solutions\",\"primaryLabelValue\":\"EMO Energy Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EmoryDay\",\"primaryLabelValue\":\"EmoryDay\"}},{\"attributeHeader\":{\"labelValue\":\"Empathy Lab\",\"primaryLabelValue\":\"Empathy Lab\"}},{\"attributeHeader\":{\"labelValue\":\"Empire Investment Holdings\",\"primaryLabelValue\":\"Empire Investment Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Empyrean Services\",\"primaryLabelValue\":\"Empyrean Services\"}},{\"attributeHeader\":{\"labelValue\":\"Engineer's Associates\",\"primaryLabelValue\":\"Engineer's Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Ensurity Group\",\"primaryLabelValue\":\"Ensurity Group\"}},{\"attributeHeader\":{\"labelValue\":\"Entap\",\"primaryLabelValue\":\"Entap\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Software Deployment\",\"primaryLabelValue\":\"Enterprise Software Deployment\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions\",\"primaryLabelValue\":\"Enterprise Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"EO Products\",\"primaryLabelValue\":\"EO Products\"}},{\"attributeHeader\":{\"labelValue\":\"ESET\",\"primaryLabelValue\":\"ESET\"}},{\"attributeHeader\":{\"labelValue\":\"eSolution Architects\",\"primaryLabelValue\":\"eSolution Architects\"}},{\"attributeHeader\":{\"labelValue\":\"eVisibility\",\"primaryLabelValue\":\"eVisibility\"}},{\"attributeHeader\":{\"labelValue\":\"EVO2\",\"primaryLabelValue\":\"EVO2\"}},{\"attributeHeader\":{\"labelValue\":\"Exceptional Risk Advisors\",\"primaryLabelValue\":\"Exceptional Risk Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"ExpertPlan\",\"primaryLabelValue\":\"ExpertPlan\"}},{\"attributeHeader\":{\"labelValue\":\"Fandotech\",\"primaryLabelValue\":\"Fandotech\"}},{\"attributeHeader\":{\"labelValue\":\"Fearon Financial\",\"primaryLabelValue\":\"Fearon Financial\"}},{\"attributeHeader\":{\"labelValue\":\"FiberLight\",\"primaryLabelValue\":\"FiberLight\"}},{\"attributeHeader\":{\"labelValue\":\"Fig Leaf Software\",\"primaryLabelValue\":\"Fig Leaf Software\"}},{\"attributeHeader\":{\"labelValue\":\"Fine Solutions\",\"primaryLabelValue\":\"Fine Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"FireFold\",\"primaryLabelValue\":\"FireFold\"}},{\"attributeHeader\":{\"labelValue\":\"FitnessRepairParts.com\",\"primaryLabelValue\":\"FitnessRepairParts.com\"}},{\"attributeHeader\":{\"labelValue\":\"FlexPrint\",\"primaryLabelValue\":\"FlexPrint\"}},{\"attributeHeader\":{\"labelValue\":\"Florence Electric/Kaydon IT\",\"primaryLabelValue\":\"Florence Electric/Kaydon IT\"}},{\"attributeHeader\":{\"labelValue\":\"FM Facility Maintenance\",\"primaryLabelValue\":\"FM Facility Maintenance\"}},{\"attributeHeader\":{\"labelValue\":\"FortuneBuilders\",\"primaryLabelValue\":\"FortuneBuilders\"}},{\"attributeHeader\":{\"labelValue\":\"Foundation Source\",\"primaryLabelValue\":\"Foundation Source\"}},{\"attributeHeader\":{\"labelValue\":\"Freeborders\",\"primaryLabelValue\":\"Freeborders\"}},{\"attributeHeader\":{\"labelValue\":\"FriendFinder Networks\",\"primaryLabelValue\":\"FriendFinder Networks\"}},{\"attributeHeader\":{\"labelValue\":\"From You Flowers\",\"primaryLabelValue\":\"From You Flowers\"}},{\"attributeHeader\":{\"labelValue\":\"FundingUniverse\",\"primaryLabelValue\":\"FundingUniverse\"}},{\"attributeHeader\":{\"labelValue\":\"Fusionapps\",\"primaryLabelValue\":\"Fusionapps\"}},{\"attributeHeader\":{\"labelValue\":\"Future Ads\",\"primaryLabelValue\":\"Future Ads\"}},{\"attributeHeader\":{\"labelValue\":\"FutureNet Group\",\"primaryLabelValue\":\"FutureNet Group\"}},{\"attributeHeader\":{\"labelValue\":\"GAIN Capital\",\"primaryLabelValue\":\"GAIN Capital\"}},{\"attributeHeader\":{\"labelValue\":\"General Informatics\",\"primaryLabelValue\":\"General Informatics\"}},{\"attributeHeader\":{\"labelValue\":\"Gimmal Group\",\"primaryLabelValue\":\"Gimmal Group\"}},{\"attributeHeader\":{\"labelValue\":\"Global Financial Aid Services\",\"primaryLabelValue\":\"Global Financial Aid Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Relief Technologies\",\"primaryLabelValue\":\"Global Relief Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Service Solutions\",\"primaryLabelValue\":\"Global Service Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalEnglish Corporation\",\"primaryLabelValue\":\"GlobalEnglish Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"GlobalTranz\",\"primaryLabelValue\":\"GlobalTranz\"}},{\"attributeHeader\":{\"labelValue\":\"GlowTouch Technologies\",\"primaryLabelValue\":\"GlowTouch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Go Wireless\",\"primaryLabelValue\":\"Go Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Gravity Payments\",\"primaryLabelValue\":\"Gravity Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Green Mountain Energy Company\",\"primaryLabelValue\":\"Green Mountain Energy Company\"}},{\"attributeHeader\":{\"labelValue\":\"Greenhill Air\",\"primaryLabelValue\":\"Greenhill Air\"}},{\"attributeHeader\":{\"labelValue\":\"GTM Sportswear\",\"primaryLabelValue\":\"GTM Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Guidance Technology\",\"primaryLabelValue\":\"Guidance Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Hardwire\",\"primaryLabelValue\":\"Hardwire\"}},{\"attributeHeader\":{\"labelValue\":\"Harkcon\",\"primaryLabelValue\":\"Harkcon\"}},{\"attributeHeader\":{\"labelValue\":\"Hassett Willis\",\"primaryLabelValue\":\"Hassett Willis\"}},{\"attributeHeader\":{\"labelValue\":\"Headspring Systems\",\"primaryLabelValue\":\"Headspring Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Healthcare Resource Network\",\"primaryLabelValue\":\"Healthcare Resource Network\"}},{\"attributeHeader\":{\"labelValue\":\"HealthE Goods\",\"primaryLabelValue\":\"HealthE Goods\"}},{\"attributeHeader\":{\"labelValue\":\"HealthSource Chiropractic\",\"primaryLabelValue\":\"HealthSource Chiropractic\"}},{\"attributeHeader\":{\"labelValue\":\"Hensley Kim & Holzer\",\"primaryLabelValue\":\"Hensley Kim & Holzer\"}},{\"attributeHeader\":{\"labelValue\":\"Herndon Products\",\"primaryLabelValue\":\"Herndon Products\"}},{\"attributeHeader\":{\"labelValue\":\"High Street Partners\",\"primaryLabelValue\":\"High Street Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Higher One Holdings\",\"primaryLabelValue\":\"Higher One Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Historical Emporium\",\"primaryLabelValue\":\"Historical Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"HMS\",\"primaryLabelValue\":\"HMS\"}},{\"attributeHeader\":{\"labelValue\":\"Homeland HealthCare\",\"primaryLabelValue\":\"Homeland HealthCare\"}},{\"attributeHeader\":{\"labelValue\":\"Horizontal Integration\",\"primaryLabelValue\":\"Horizontal Integration\"}},{\"attributeHeader\":{\"labelValue\":\"IBT Group\",\"primaryLabelValue\":\"IBT Group\"}},{\"attributeHeader\":{\"labelValue\":\"iCrossing\",\"primaryLabelValue\":\"iCrossing\"}},{\"attributeHeader\":{\"labelValue\":\"ICS\",\"primaryLabelValue\":\"ICS\"}},{\"attributeHeader\":{\"labelValue\":\"IdentityMine\",\"primaryLabelValue\":\"IdentityMine\"}},{\"attributeHeader\":{\"labelValue\":\"Imagine Learning\",\"primaryLabelValue\":\"Imagine Learning\"}},{\"attributeHeader\":{\"labelValue\":\"IMS ExpertServices\",\"primaryLabelValue\":\"IMS ExpertServices\"}},{\"attributeHeader\":{\"labelValue\":\"IndiSoft\",\"primaryLabelValue\":\"IndiSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoscitex Corporation\",\"primaryLabelValue\":\"Infoscitex Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"InfoStretch\",\"primaryLabelValue\":\"InfoStretch\"}},{\"attributeHeader\":{\"labelValue\":\"InGenesis Diversified Healthcare Solutions\",\"primaryLabelValue\":\"InGenesis Diversified Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Ingrams Water and Air Equipment\",\"primaryLabelValue\":\"Ingrams Water and Air Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"InMage Systems\",\"primaryLabelValue\":\"InMage Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Innovar Group\",\"primaryLabelValue\":\"Innovar Group\"}},{\"attributeHeader\":{\"labelValue\":\"Innovim\",\"primaryLabelValue\":\"Innovim\"}},{\"attributeHeader\":{\"labelValue\":\"Inserso\",\"primaryLabelValue\":\"Inserso\"}},{\"attributeHeader\":{\"labelValue\":\"Insource Spend Management Group\",\"primaryLabelValue\":\"Insource Spend Management Group\"}},{\"attributeHeader\":{\"labelValue\":\"InsuranceAgents.com\",\"primaryLabelValue\":\"InsuranceAgents.com\"}},{\"attributeHeader\":{\"labelValue\":\"InTec\",\"primaryLabelValue\":\"InTec\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Data Storage\",\"primaryLabelValue\":\"Integrated Data Storage\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Medical Solutions\",\"primaryLabelValue\":\"Integrated Medical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Secure\",\"primaryLabelValue\":\"Integrated Secure\"}},{\"attributeHeader\":{\"labelValue\":\"IntelePeer\",\"primaryLabelValue\":\"IntelePeer\"}},{\"attributeHeader\":{\"labelValue\":\"InterGroup International\",\"primaryLabelValue\":\"InterGroup International\"}},{\"attributeHeader\":{\"labelValue\":\"Intermark Media\",\"primaryLabelValue\":\"Intermark Media\"}},{\"attributeHeader\":{\"labelValue\":\"InTouch Health\",\"primaryLabelValue\":\"InTouch Health\"}},{\"attributeHeader\":{\"labelValue\":\"Involta\",\"primaryLabelValue\":\"Involta\"}},{\"attributeHeader\":{\"labelValue\":\"ISNetworld\",\"primaryLabelValue\":\"ISNetworld\"}},{\"attributeHeader\":{\"labelValue\":\"ISR Group\",\"primaryLabelValue\":\"ISR Group\"}},{\"attributeHeader\":{\"labelValue\":\"iVision\",\"primaryLabelValue\":\"iVision\"}},{\"attributeHeader\":{\"labelValue\":\"Jacob Tyler Creative Group\",\"primaryLabelValue\":\"Jacob Tyler Creative Group\"}},{\"attributeHeader\":{\"labelValue\":\"Jenson USA\",\"primaryLabelValue\":\"Jenson USA\"}},{\"attributeHeader\":{\"labelValue\":\"Jet Stream International\",\"primaryLabelValue\":\"Jet Stream International\"}},{\"attributeHeader\":{\"labelValue\":\"JLab Audio\",\"primaryLabelValue\":\"JLab Audio\"}},{\"attributeHeader\":{\"labelValue\":\"Judicial Correction Services\",\"primaryLabelValue\":\"Judicial Correction Services\"}},{\"attributeHeader\":{\"labelValue\":\"Junxure\",\"primaryLabelValue\":\"Junxure\"}},{\"attributeHeader\":{\"labelValue\":\"JurInnov\",\"primaryLabelValue\":\"JurInnov\"}},{\"attributeHeader\":{\"labelValue\":\"JVista\",\"primaryLabelValue\":\"JVista\"}},{\"attributeHeader\":{\"labelValue\":\"Kidrobot\",\"primaryLabelValue\":\"Kidrobot\"}},{\"attributeHeader\":{\"labelValue\":\"Kinnser Software\",\"primaryLabelValue\":\"Kinnser Software\"}},{\"attributeHeader\":{\"labelValue\":\"Kitware\",\"primaryLabelValue\":\"Kitware\"}},{\"attributeHeader\":{\"labelValue\":\"Knight Point Systems\",\"primaryLabelValue\":\"Knight Point Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Language Services Associates\",\"primaryLabelValue\":\"Language Services Associates\"}},{\"attributeHeader\":{\"labelValue\":\"LaunchSquad\",\"primaryLabelValue\":\"LaunchSquad\"}},{\"attributeHeader\":{\"labelValue\":\"LeadQual\",\"primaryLabelValue\":\"LeadQual\"}},{\"attributeHeader\":{\"labelValue\":\"Levins & Associates\",\"primaryLabelValue\":\"Levins & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Liberty Tire Recycling\",\"primaryLabelValue\":\"Liberty Tire Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"Life Safety Services\",\"primaryLabelValue\":\"Life Safety Services\"}},{\"attributeHeader\":{\"labelValue\":\"LifeSpan Technology Recycling\",\"primaryLabelValue\":\"LifeSpan Technology Recycling\"}},{\"attributeHeader\":{\"labelValue\":\"LifeStreet Media\",\"primaryLabelValue\":\"LifeStreet Media\"}},{\"attributeHeader\":{\"labelValue\":\"Listen Up Espanol\",\"primaryLabelValue\":\"Listen Up Espanol\"}},{\"attributeHeader\":{\"labelValue\":\"LiveWire Electrical Supply\",\"primaryLabelValue\":\"LiveWire Electrical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Living Harvest Foods\",\"primaryLabelValue\":\"Living Harvest Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Location Labs\",\"primaryLabelValue\":\"Location Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Logical Solution Services\",\"primaryLabelValue\":\"Logical Solution Services\"}},{\"attributeHeader\":{\"labelValue\":\"Lonesource\",\"primaryLabelValue\":\"Lonesource\"}},{\"attributeHeader\":{\"labelValue\":\"LoyaltyExpress\",\"primaryLabelValue\":\"LoyaltyExpress\"}},{\"attributeHeader\":{\"labelValue\":\"LSFinteractive\",\"primaryLabelValue\":\"LSFinteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Lumension\",\"primaryLabelValue\":\"Lumension\"}},{\"attributeHeader\":{\"labelValue\":\"Lunarline\",\"primaryLabelValue\":\"Lunarline\"}},{\"attributeHeader\":{\"labelValue\":\"lynda.com\",\"primaryLabelValue\":\"lynda.com\"}},{\"attributeHeader\":{\"labelValue\":\"M & E Painting\",\"primaryLabelValue\":\"M & E Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Magic Logix\",\"primaryLabelValue\":\"Magic Logix\"}},{\"attributeHeader\":{\"labelValue\":\"Mansfield-King\",\"primaryLabelValue\":\"Mansfield-King\"}},{\"attributeHeader\":{\"labelValue\":\"Marathon Consulting\",\"primaryLabelValue\":\"Marathon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Marcel Media\",\"primaryLabelValue\":\"Marcel Media\"}},{\"attributeHeader\":{\"labelValue\":\"Marketecture\",\"primaryLabelValue\":\"Marketecture\"}},{\"attributeHeader\":{\"labelValue\":\"Marketing Werks\",\"primaryLabelValue\":\"Marketing Werks\"}},{\"attributeHeader\":{\"labelValue\":\"Mary's Gone Crackers\",\"primaryLabelValue\":\"Mary's Gone Crackers\"}},{\"attributeHeader\":{\"labelValue\":\"Massachusetts Technology\",\"primaryLabelValue\":\"Massachusetts Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Mastermedia\",\"primaryLabelValue\":\"Mastermedia\"}},{\"attributeHeader\":{\"labelValue\":\"MaxDelivery.com\",\"primaryLabelValue\":\"MaxDelivery.com\"}},{\"attributeHeader\":{\"labelValue\":\"MaxLinear\",\"primaryLabelValue\":\"MaxLinear\"}},{\"attributeHeader\":{\"labelValue\":\"McDonough Bolyard Peck\",\"primaryLabelValue\":\"McDonough Bolyard Peck\"}},{\"attributeHeader\":{\"labelValue\":\"MCG\",\"primaryLabelValue\":\"MCG\"}},{\"attributeHeader\":{\"labelValue\":\"McKean Defense Group\",\"primaryLabelValue\":\"McKean Defense Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mediachase\",\"primaryLabelValue\":\"Mediachase\"}},{\"attributeHeader\":{\"labelValue\":\"MEDVAL\",\"primaryLabelValue\":\"MEDVAL\"}},{\"attributeHeader\":{\"labelValue\":\"meltmedia\",\"primaryLabelValue\":\"meltmedia\"}},{\"attributeHeader\":{\"labelValue\":\"Meredith Digital\",\"primaryLabelValue\":\"Meredith Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Meridian Partners\",\"primaryLabelValue\":\"Meridian Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Midnight Oil Creative\",\"primaryLabelValue\":\"Midnight Oil Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Electric\",\"primaryLabelValue\":\"Milestone Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Engineering and Integration\",\"primaryLabelValue\":\"Millennium Engineering and Integration\"}},{\"attributeHeader\":{\"labelValue\":\"Mindbody\",\"primaryLabelValue\":\"Mindbody\"}},{\"attributeHeader\":{\"labelValue\":\"MIR3\",\"primaryLabelValue\":\"MIR3\"}},{\"attributeHeader\":{\"labelValue\":\"ModCloth\",\"primaryLabelValue\":\"ModCloth\"}},{\"attributeHeader\":{\"labelValue\":\"MonoPrice.com\",\"primaryLabelValue\":\"MonoPrice.com\"}},{\"attributeHeader\":{\"labelValue\":\"Morgan Borszcz Consulting\",\"primaryLabelValue\":\"Morgan Borszcz Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Morton Consulting\",\"primaryLabelValue\":\"Morton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Motricity\",\"primaryLabelValue\":\"Motricity\"}},{\"attributeHeader\":{\"labelValue\":\"Mpell Solutions\",\"primaryLabelValue\":\"Mpell Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Mpire\",\"primaryLabelValue\":\"Mpire\"}},{\"attributeHeader\":{\"labelValue\":\"MSDSonline\",\"primaryLabelValue\":\"MSDSonline\"}},{\"attributeHeader\":{\"labelValue\":\"My1Stop.com\",\"primaryLabelValue\":\"My1Stop.com\"}},{\"attributeHeader\":{\"labelValue\":\"Neogov\",\"primaryLabelValue\":\"Neogov\"}},{\"attributeHeader\":{\"labelValue\":\"NetSteps\",\"primaryLabelValue\":\"NetSteps\"}},{\"attributeHeader\":{\"labelValue\":\"Nett Solutions\",\"primaryLabelValue\":\"Nett Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Newton Consulting\",\"primaryLabelValue\":\"Newton Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Nex Solutions\",\"primaryLabelValue\":\"Nex Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"NexAge Technologies USA\",\"primaryLabelValue\":\"NexAge Technologies USA\"}},{\"attributeHeader\":{\"labelValue\":\"NextDocs\",\"primaryLabelValue\":\"NextDocs\"}},{\"attributeHeader\":{\"labelValue\":\"NIKA Technologies\",\"primaryLabelValue\":\"NIKA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"nLogic\",\"primaryLabelValue\":\"nLogic\"}},{\"attributeHeader\":{\"labelValue\":\"NorAm International Partners\",\"primaryLabelValue\":\"NorAm International Partners\"}},{\"attributeHeader\":{\"labelValue\":\"NorthStar Business and Property Brokers\",\"primaryLabelValue\":\"NorthStar Business and Property Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"NPE\",\"primaryLabelValue\":\"NPE\"}},{\"attributeHeader\":{\"labelValue\":\"Ntelx\",\"primaryLabelValue\":\"Ntelx\"}},{\"attributeHeader\":{\"labelValue\":\"Ntiva\",\"primaryLabelValue\":\"Ntiva\"}},{\"attributeHeader\":{\"labelValue\":\"Nukk-Freeman & Cerra\",\"primaryLabelValue\":\"Nukk-Freeman & Cerra\"}},{\"attributeHeader\":{\"labelValue\":\"Oasis Supply & Trade\",\"primaryLabelValue\":\"Oasis Supply & Trade\"}},{\"attributeHeader\":{\"labelValue\":\"Octo Consulting Group\",\"primaryLabelValue\":\"Octo Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"OncoMed\",\"primaryLabelValue\":\"OncoMed\"}},{\"attributeHeader\":{\"labelValue\":\"One on One Marketing\",\"primaryLabelValue\":\"One on One Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"OneVoice Communications\",\"primaryLabelValue\":\"OneVoice Communications\"}},{\"attributeHeader\":{\"labelValue\":\"OnForce Solar\",\"primaryLabelValue\":\"OnForce Solar\"}},{\"attributeHeader\":{\"labelValue\":\"Optimal Strategix\",\"primaryLabelValue\":\"Optimal Strategix\"}},{\"attributeHeader\":{\"labelValue\":\"OraMetrix\",\"primaryLabelValue\":\"OraMetrix\"}},{\"attributeHeader\":{\"labelValue\":\"OtterBox\",\"primaryLabelValue\":\"OtterBox\"}},{\"attributeHeader\":{\"labelValue\":\"P & C Construction\",\"primaryLabelValue\":\"P & C Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Pactimo\",\"primaryLabelValue\":\"Pactimo\"}},{\"attributeHeader\":{\"labelValue\":\"Pangea3\",\"primaryLabelValue\":\"Pangea3\"}},{\"attributeHeader\":{\"labelValue\":\"Parkside Lending\",\"primaryLabelValue\":\"Parkside Lending\"}},{\"attributeHeader\":{\"labelValue\":\"Partnership Capital Growth Advisors\",\"primaryLabelValue\":\"Partnership Capital Growth Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"PartsSource\",\"primaryLabelValue\":\"PartsSource\"}},{\"attributeHeader\":{\"labelValue\":\"PC Outlet\",\"primaryLabelValue\":\"PC Outlet\"}},{\"attributeHeader\":{\"labelValue\":\"People To My Site\",\"primaryLabelValue\":\"People To My Site\"}},{\"attributeHeader\":{\"labelValue\":\"People's Care\",\"primaryLabelValue\":\"People's Care\"}},{\"attributeHeader\":{\"labelValue\":\"Pet Butler\",\"primaryLabelValue\":\"Pet Butler\"}},{\"attributeHeader\":{\"labelValue\":\"PetPlace.com\",\"primaryLabelValue\":\"PetPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Phase One Consulting Group\",\"primaryLabelValue\":\"Phase One Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Physique 57\",\"primaryLabelValue\":\"Physique 57\"}},{\"attributeHeader\":{\"labelValue\":\"Picture Marketing\",\"primaryLabelValue\":\"Picture Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Pipal Research\",\"primaryLabelValue\":\"Pipal Research\"}},{\"attributeHeader\":{\"labelValue\":\"Pixeled Business Systems\",\"primaryLabelValue\":\"Pixeled Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Plan B Burger Bar\",\"primaryLabelValue\":\"Plan B Burger Bar\"}},{\"attributeHeader\":{\"labelValue\":\"PlumChoice\",\"primaryLabelValue\":\"PlumChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Portico Systems\",\"primaryLabelValue\":\"Portico Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Precision IT Group\",\"primaryLabelValue\":\"Precision IT Group\"}},{\"attributeHeader\":{\"labelValue\":\"Presidium\",\"primaryLabelValue\":\"Presidium\"}},{\"attributeHeader\":{\"labelValue\":\"Primo Water\",\"primaryLabelValue\":\"Primo Water\"}},{\"attributeHeader\":{\"labelValue\":\"PrintPlace.com\",\"primaryLabelValue\":\"PrintPlace.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Teck Services\",\"primaryLabelValue\":\"Pro Teck Services\"}},{\"attributeHeader\":{\"labelValue\":\"ProDPI\",\"primaryLabelValue\":\"ProDPI\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Capital Services\",\"primaryLabelValue\":\"Professional Capital Services\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Roofing and Exteriors\",\"primaryLabelValue\":\"Professional Roofing and Exteriors\"}},{\"attributeHeader\":{\"labelValue\":\"ProfitPoint\",\"primaryLabelValue\":\"ProfitPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Project Frog\",\"primaryLabelValue\":\"Project Frog\"}},{\"attributeHeader\":{\"labelValue\":\"Prospect Education\",\"primaryLabelValue\":\"Prospect Education\"}},{\"attributeHeader\":{\"labelValue\":\"Provideo Management\",\"primaryLabelValue\":\"Provideo Management\"}},{\"attributeHeader\":{\"labelValue\":\"Pukoa Scientific\",\"primaryLabelValue\":\"Pukoa Scientific\"}},{\"attributeHeader\":{\"labelValue\":\"QlikTech\",\"primaryLabelValue\":\"QlikTech\"}},{\"attributeHeader\":{\"labelValue\":\"QSS International\",\"primaryLabelValue\":\"QSS International\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Electrodynamics\",\"primaryLabelValue\":\"Quality Electrodynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Quantum Retail\",\"primaryLabelValue\":\"Quantum Retail\"}},{\"attributeHeader\":{\"labelValue\":\"Quest Products\",\"primaryLabelValue\":\"Quest Products\"}},{\"attributeHeader\":{\"labelValue\":\"Quick Quack Car Wash\",\"primaryLabelValue\":\"Quick Quack Car Wash\"}},{\"attributeHeader\":{\"labelValue\":\"Quidsi\",\"primaryLabelValue\":\"Quidsi\"}},{\"attributeHeader\":{\"labelValue\":\"R.K. Redding Construction\",\"primaryLabelValue\":\"R.K. Redding Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rabbit Air\",\"primaryLabelValue\":\"Rabbit Air\"}},{\"attributeHeader\":{\"labelValue\":\"Rapid7\",\"primaryLabelValue\":\"Rapid7\"}},{\"attributeHeader\":{\"labelValue\":\"Reach Sports Marketing Group\",\"primaryLabelValue\":\"Reach Sports Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReachLocal\",\"primaryLabelValue\":\"ReachLocal\"}},{\"attributeHeader\":{\"labelValue\":\"Real Property Management\",\"primaryLabelValue\":\"Real Property Management\"}},{\"attributeHeader\":{\"labelValue\":\"Recurve\",\"primaryLabelValue\":\"Recurve\"}},{\"attributeHeader\":{\"labelValue\":\"Red Door Interactive\",\"primaryLabelValue\":\"Red Door Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Reddwerks\",\"primaryLabelValue\":\"Reddwerks\"}},{\"attributeHeader\":{\"labelValue\":\"RemitData\",\"primaryLabelValue\":\"RemitData\"}},{\"attributeHeader\":{\"labelValue\":\"Renzulli Learning Systems\",\"primaryLabelValue\":\"Renzulli Learning Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Retail Solutions\",\"primaryLabelValue\":\"Retail Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Revel Consulting\",\"primaryLabelValue\":\"Revel Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"RewardsNOW\",\"primaryLabelValue\":\"RewardsNOW\"}},{\"attributeHeader\":{\"labelValue\":\"RFIP\",\"primaryLabelValue\":\"RFIP\"}},{\"attributeHeader\":{\"labelValue\":\"Roscoe Medical\",\"primaryLabelValue\":\"Roscoe Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Round2\",\"primaryLabelValue\":\"Round2\"}},{\"attributeHeader\":{\"labelValue\":\"RTL Networks\",\"primaryLabelValue\":\"RTL Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Sage Management\",\"primaryLabelValue\":\"Sage Management\"}},{\"attributeHeader\":{\"labelValue\":\"Sand Creek Post & Beam\",\"primaryLabelValue\":\"Sand Creek Post & Beam\"}},{\"attributeHeader\":{\"labelValue\":\"Sandia Office Supply\",\"primaryLabelValue\":\"Sandia Office Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Savvy Rest\",\"primaryLabelValue\":\"Savvy Rest\"}},{\"attributeHeader\":{\"labelValue\":\"Scientific Certification Systems\",\"primaryLabelValue\":\"Scientific Certification Systems\"}},{\"attributeHeader\":{\"labelValue\":\"SDV Solutions\",\"primaryLabelValue\":\"SDV Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SecondMarket\",\"primaryLabelValue\":\"SecondMarket\"}},{\"attributeHeader\":{\"labelValue\":\"SecurAmerica\",\"primaryLabelValue\":\"SecurAmerica\"}},{\"attributeHeader\":{\"labelValue\":\"SecureWorks\",\"primaryLabelValue\":\"SecureWorks\"}},{\"attributeHeader\":{\"labelValue\":\"Security Credit Services\",\"primaryLabelValue\":\"Security Credit Services\"}},{\"attributeHeader\":{\"labelValue\":\"Seeds of Genius\",\"primaryLabelValue\":\"Seeds of Genius\"}},{\"attributeHeader\":{\"labelValue\":\"Sentek Global\",\"primaryLabelValue\":\"Sentek Global\"}},{\"attributeHeader\":{\"labelValue\":\"Service Foods\",\"primaryLabelValue\":\"Service Foods\"}},{\"attributeHeader\":{\"labelValue\":\"Service-now.com\",\"primaryLabelValue\":\"Service-now.com\"}},{\"attributeHeader\":{\"labelValue\":\"Sevatec\",\"primaryLabelValue\":\"Sevatec\"}},{\"attributeHeader\":{\"labelValue\":\"SharePoint360\",\"primaryLabelValue\":\"SharePoint360\"}},{\"attributeHeader\":{\"labelValue\":\"ShelfGenie\",\"primaryLabelValue\":\"ShelfGenie\"}},{\"attributeHeader\":{\"labelValue\":\"ShopForBags.com\",\"primaryLabelValue\":\"ShopForBags.com\"}},{\"attributeHeader\":{\"labelValue\":\"Shorts Brewing\",\"primaryLabelValue\":\"Shorts Brewing\"}},{\"attributeHeader\":{\"labelValue\":\"Show Media\",\"primaryLabelValue\":\"Show Media\"}},{\"attributeHeader\":{\"labelValue\":\"Sierra Credit\",\"primaryLabelValue\":\"Sierra Credit\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Genomic Laboratories\",\"primaryLabelValue\":\"Signature Genomic Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"SimonComputing\",\"primaryLabelValue\":\"SimonComputing\"}},{\"attributeHeader\":{\"labelValue\":\"Simplex Healthcare\",\"primaryLabelValue\":\"Simplex Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Simply Mac\",\"primaryLabelValue\":\"Simply Mac\"}},{\"attributeHeader\":{\"labelValue\":\"SkinCareRx\",\"primaryLabelValue\":\"SkinCareRx\"}},{\"attributeHeader\":{\"labelValue\":\"Smarsh\",\"primaryLabelValue\":\"Smarsh\"}},{\"attributeHeader\":{\"labelValue\":\"SmartPrice Sales & Marketing\",\"primaryLabelValue\":\"SmartPrice Sales & Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Smiley Media\",\"primaryLabelValue\":\"Smiley Media\"}},{\"attributeHeader\":{\"labelValue\":\"Social Solutions\",\"primaryLabelValue\":\"Social Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Soft Tech Consulting\",\"primaryLabelValue\":\"Soft Tech Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Soul Construction\",\"primaryLabelValue\":\"Soul Construction\"}},{\"attributeHeader\":{\"labelValue\":\"South Cypress\",\"primaryLabelValue\":\"South Cypress\"}},{\"attributeHeader\":{\"labelValue\":\"Spectraforce Technologies\",\"primaryLabelValue\":\"Spectraforce Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum\",\"primaryLabelValue\":\"Spectrum\"}},{\"attributeHeader\":{\"labelValue\":\"Spectrum Merchant Services\",\"primaryLabelValue\":\"Spectrum Merchant Services\"}},{\"attributeHeader\":{\"labelValue\":\"SpeedFC\",\"primaryLabelValue\":\"SpeedFC\"}},{\"attributeHeader\":{\"labelValue\":\"Spellbinders Paper Arts\",\"primaryLabelValue\":\"Spellbinders Paper Arts\"}},{\"attributeHeader\":{\"labelValue\":\"Speridian Technologies\",\"primaryLabelValue\":\"Speridian Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Spirit Electronics\",\"primaryLabelValue\":\"Spirit Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"SproutLoud Media Networks\",\"primaryLabelValue\":\"SproutLoud Media Networks\"}},{\"attributeHeader\":{\"labelValue\":\"StealthCom Solutions\",\"primaryLabelValue\":\"StealthCom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stella & Dot\",\"primaryLabelValue\":\"Stella & Dot\"}},{\"attributeHeader\":{\"labelValue\":\"Stops Fast Track\",\"primaryLabelValue\":\"Stops Fast Track\"}},{\"attributeHeader\":{\"labelValue\":\"StoreBoard Media\",\"primaryLabelValue\":\"StoreBoard Media\"}},{\"attributeHeader\":{\"labelValue\":\"Stratus Building Solutions\",\"primaryLabelValue\":\"Stratus Building Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Stream Energy\",\"primaryLabelValue\":\"Stream Energy\"}},{\"attributeHeader\":{\"labelValue\":\"Stria\",\"primaryLabelValue\":\"Stria\"}},{\"attributeHeader\":{\"labelValue\":\"Stroll\",\"primaryLabelValue\":\"Stroll\"}},{\"attributeHeader\":{\"labelValue\":\"Structural Concrete Bonding & Restoration\",\"primaryLabelValue\":\"Structural Concrete Bonding & Restoration\"}},{\"attributeHeader\":{\"labelValue\":\"Sundia\",\"primaryLabelValue\":\"Sundia\"}},{\"attributeHeader\":{\"labelValue\":\"Suntiva Executive Consulting\",\"primaryLabelValue\":\"Suntiva Executive Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Surety Systems\",\"primaryLabelValue\":\"Surety Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Symphony Tables\",\"primaryLabelValue\":\"Symphony Tables\"}},{\"attributeHeader\":{\"labelValue\":\"SynergisticIT\",\"primaryLabelValue\":\"SynergisticIT\"}},{\"attributeHeader\":{\"labelValue\":\"Syscom Technologies\",\"primaryLabelValue\":\"Syscom Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tableau Software\",\"primaryLabelValue\":\"Tableau Software\"}},{\"attributeHeader\":{\"labelValue\":\"Tagged\",\"primaryLabelValue\":\"Tagged\"}},{\"attributeHeader\":{\"labelValue\":\"TechCFO\",\"primaryLabelValue\":\"TechCFO\"}},{\"attributeHeader\":{\"labelValue\":\"TechRadium\",\"primaryLabelValue\":\"TechRadium\"}},{\"attributeHeader\":{\"labelValue\":\"Tedia\",\"primaryLabelValue\":\"Tedia\"}},{\"attributeHeader\":{\"labelValue\":\"Telogis\",\"primaryLabelValue\":\"Telogis\"}},{\"attributeHeader\":{\"labelValue\":\"Telx Group\",\"primaryLabelValue\":\"Telx Group\"}},{\"attributeHeader\":{\"labelValue\":\"Teoco\",\"primaryLabelValue\":\"Teoco\"}},{\"attributeHeader\":{\"labelValue\":\"The Active Network\",\"primaryLabelValue\":\"The Active Network\"}},{\"attributeHeader\":{\"labelValue\":\"The ADAM Group\",\"primaryLabelValue\":\"The ADAM Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Fresh Diet\",\"primaryLabelValue\":\"The Fresh Diet\"}},{\"attributeHeader\":{\"labelValue\":\"The JAR Group\",\"primaryLabelValue\":\"The JAR Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Pursuant Group\",\"primaryLabelValue\":\"The Pursuant Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Research Associates\",\"primaryLabelValue\":\"The Research Associates\"}},{\"attributeHeader\":{\"labelValue\":\"The Whitestone Group\",\"primaryLabelValue\":\"The Whitestone Group\"}},{\"attributeHeader\":{\"labelValue\":\"Therapy Source\",\"primaryLabelValue\":\"Therapy Source\"}},{\"attributeHeader\":{\"labelValue\":\"Three Dog Logistics\",\"primaryLabelValue\":\"Three Dog Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Titan SEO\",\"primaryLabelValue\":\"Titan SEO\"}},{\"attributeHeader\":{\"labelValue\":\"Torrey Hills Technologies\",\"primaryLabelValue\":\"Torrey Hills Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TPW Management\",\"primaryLabelValue\":\"TPW Management\"}},{\"attributeHeader\":{\"labelValue\":\"Tri Star Engineering\",\"primaryLabelValue\":\"Tri Star Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Tribridge\",\"primaryLabelValue\":\"Tribridge\"}},{\"attributeHeader\":{\"labelValue\":\"TriNet\",\"primaryLabelValue\":\"TriNet\"}},{\"attributeHeader\":{\"labelValue\":\"Tris3ct\",\"primaryLabelValue\":\"Tris3ct\"}},{\"attributeHeader\":{\"labelValue\":\"TROI IT Solutions\",\"primaryLabelValue\":\"TROI IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"TSI Healthcare\",\"primaryLabelValue\":\"TSI Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Tuccini\",\"primaryLabelValue\":\"Tuccini\"}},{\"attributeHeader\":{\"labelValue\":\"Turtle Mountain\",\"primaryLabelValue\":\"Turtle Mountain\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Gas & Electric\",\"primaryLabelValue\":\"U.S. Gas & Electric\"}},{\"attributeHeader\":{\"labelValue\":\"UCS\",\"primaryLabelValue\":\"UCS\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Business Solutions\",\"primaryLabelValue\":\"Universal Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"University Furnishings\",\"primaryLabelValue\":\"University Furnishings\"}},{\"attributeHeader\":{\"labelValue\":\"UPrinting.com\",\"primaryLabelValue\":\"UPrinting.com\"}},{\"attributeHeader\":{\"labelValue\":\"Urban Lending Solutions\",\"primaryLabelValue\":\"Urban Lending Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"US Media Consulting\",\"primaryLabelValue\":\"US Media Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"USI Technologies\",\"primaryLabelValue\":\"USI Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Utilipath\",\"primaryLabelValue\":\"Utilipath\"}},{\"attributeHeader\":{\"labelValue\":\"Varay Systems\",\"primaryLabelValue\":\"Varay Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Vaspian\",\"primaryLabelValue\":\"Vaspian\"}},{\"attributeHeader\":{\"labelValue\":\"vAuto\",\"primaryLabelValue\":\"vAuto\"}},{\"attributeHeader\":{\"labelValue\":\"Veris Group\",\"primaryLabelValue\":\"Veris Group\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Home Care\",\"primaryLabelValue\":\"Veterans Home Care\"}},{\"attributeHeader\":{\"labelValue\":\"Vigilant\",\"primaryLabelValue\":\"Vigilant\"}},{\"attributeHeader\":{\"labelValue\":\"Virtualosity Solutions\",\"primaryLabelValue\":\"Virtualosity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Visionary Integration Professionals\",\"primaryLabelValue\":\"Visionary Integration Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Vital Networks\",\"primaryLabelValue\":\"Vital Networks\"}},{\"attributeHeader\":{\"labelValue\":\"VitalWear\",\"primaryLabelValue\":\"VitalWear\"}},{\"attributeHeader\":{\"labelValue\":\"Vivax Pro Painting\",\"primaryLabelValue\":\"Vivax Pro Painting\"}},{\"attributeHeader\":{\"labelValue\":\"Vocalocity\",\"primaryLabelValue\":\"Vocalocity\"}},{\"attributeHeader\":{\"labelValue\":\"Volusion\",\"primaryLabelValue\":\"Volusion\"}},{\"attributeHeader\":{\"labelValue\":\"Wall Street Access\",\"primaryLabelValue\":\"Wall Street Access\"}},{\"attributeHeader\":{\"labelValue\":\"Walz Group\",\"primaryLabelValue\":\"Walz Group\"}},{\"attributeHeader\":{\"labelValue\":\"WaterFilters.net\",\"primaryLabelValue\":\"WaterFilters.net\"}},{\"attributeHeader\":{\"labelValue\":\"WDFA Marketing\",\"primaryLabelValue\":\"WDFA Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Wellfount Pharmacy\",\"primaryLabelValue\":\"Wellfount Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Wellkeeper\",\"primaryLabelValue\":\"Wellkeeper\"}},{\"attributeHeader\":{\"labelValue\":\"Westermeyer Industries\",\"primaryLabelValue\":\"Westermeyer Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Winshuttle\",\"primaryLabelValue\":\"Winshuttle\"}},{\"attributeHeader\":{\"labelValue\":\"WorldAPP\",\"primaryLabelValue\":\"WorldAPP\"}},{\"attributeHeader\":{\"labelValue\":\"WTech\",\"primaryLabelValue\":\"WTech\"}},{\"attributeHeader\":{\"labelValue\":\"Wunderlich Securities\",\"primaryLabelValue\":\"Wunderlich Securities\"}},{\"attributeHeader\":{\"labelValue\":\"Wu's International Trade\",\"primaryLabelValue\":\"Wu's International Trade\"}},{\"attributeHeader\":{\"labelValue\":\"XL Associates\",\"primaryLabelValue\":\"XL Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Xtreme Consulting Group\",\"primaryLabelValue\":\"Xtreme Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"YouSendIt\",\"primaryLabelValue\":\"YouSendIt\"}},{\"attributeHeader\":{\"labelValue\":\"1000Bulbs.com\",\"primaryLabelValue\":\"1000Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"1Source International\",\"primaryLabelValue\":\"1Source International\"}},{\"attributeHeader\":{\"labelValue\":\"1st Choice Staffing & Consulting\",\"primaryLabelValue\":\"1st Choice Staffing & Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"919 Marketing\",\"primaryLabelValue\":\"919 Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Clinical Solutions\",\"primaryLabelValue\":\"A10 Clinical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"A10 Networks\",\"primaryLabelValue\":\"A10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales & Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales & Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Aasent Mortgage Corporation\",\"primaryLabelValue\":\"Aasent Mortgage Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Access Information Management\",\"primaryLabelValue\":\"Access Information Management\"}},{\"attributeHeader\":{\"labelValue\":\"Accretive Health\",\"primaryLabelValue\":\"Accretive Health\"}},{\"attributeHeader\":{\"labelValue\":\"Accuvant\",\"primaryLabelValue\":\"Accuvant\"}},{\"attributeHeader\":{\"labelValue\":\"Adayana\",\"primaryLabelValue\":\"Adayana\"}},{\"attributeHeader\":{\"labelValue\":\"Additech\",\"primaryLabelValue\":\"Additech\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Logistics\",\"primaryLabelValue\":\"Advanced Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"AdvenTech\",\"primaryLabelValue\":\"AdvenTech\"}},{\"attributeHeader\":{\"labelValue\":\"Advisors Mortgage Group\",\"primaryLabelValue\":\"Advisors Mortgage Group\"}},{\"attributeHeader\":{\"labelValue\":\"Ageatia Technology Consultancy Services\",\"primaryLabelValue\":\"Ageatia Technology Consultancy Services\"}},{\"attributeHeader\":{\"labelValue\":\"AgileThought\",\"primaryLabelValue\":\"AgileThought\"}},{\"attributeHeader\":{\"labelValue\":\"Alatec\",\"primaryLabelValue\":\"Alatec\"}},{\"attributeHeader\":{\"labelValue\":\"Alex and Ani\",\"primaryLabelValue\":\"Alex and Ani\"}},{\"attributeHeader\":{\"labelValue\":\"Ali International\",\"primaryLabelValue\":\"Ali International\"}},{\"attributeHeader\":{\"labelValue\":\"Allana Buick & Bers\",\"primaryLabelValue\":\"Allana Buick & Bers\"}},{\"attributeHeader\":{\"labelValue\":\"Allegiance\",\"primaryLabelValue\":\"Allegiance\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant National Title Insurance\",\"primaryLabelValue\":\"Alliant National Title Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Card Services\",\"primaryLabelValue\":\"Alpha Card Services\"}},{\"attributeHeader\":{\"labelValue\":\"Altum\",\"primaryLabelValue\":\"Altum\"}},{\"attributeHeader\":{\"labelValue\":\"Ambient Bamboo Floors\",\"primaryLabelValue\":\"Ambient Bamboo Floors\"}},{\"attributeHeader\":{\"labelValue\":\"Amcom Software\",\"primaryLabelValue\":\"Amcom Software\"}},{\"attributeHeader\":{\"labelValue\":\"Amensys\",\"primaryLabelValue\":\"Amensys\"}},{\"attributeHeader\":{\"labelValue\":\"An Amazing Organization\",\"primaryLabelValue\":\"An Amazing Organization\"}},{\"attributeHeader\":{\"labelValue\":\"Ansafone Contact Centers\",\"primaryLabelValue\":\"Ansafone Contact Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Antennas Direct\",\"primaryLabelValue\":\"Antennas Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Digital Solutions\",\"primaryLabelValue\":\"Applied Digital Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Archinoetics\",\"primaryLabelValue\":\"Archinoetics\"}},{\"attributeHeader\":{\"labelValue\":\"Archway Technology Partners\",\"primaryLabelValue\":\"Archway Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Arkadin\",\"primaryLabelValue\":\"Arkadin\"}},{\"attributeHeader\":{\"labelValue\":\"Arrow Glass & Mirror\",\"primaryLabelValue\":\"Arrow Glass & Mirror\"}},{\"attributeHeader\":{\"labelValue\":\"Arsalon Technologies\",\"primaryLabelValue\":\"Arsalon Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Aspen of DC\",\"primaryLabelValue\":\"Aspen of DC\"}},{\"attributeHeader\":{\"labelValue\":\"AutoAccessoriesGarage.com\",\"primaryLabelValue\":\"AutoAccessoriesGarage.com\"}},{\"attributeHeader\":{\"labelValue\":\"Avtec Homes\",\"primaryLabelValue\":\"Avtec Homes\"}},{\"attributeHeader\":{\"labelValue\":\"AXIA Consulting\",\"primaryLabelValue\":\"AXIA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ayuda Management\",\"primaryLabelValue\":\"Ayuda Management\"}},{\"attributeHeader\":{\"labelValue\":\"BackJoy Orthotics\",\"primaryLabelValue\":\"BackJoy Orthotics\"}},{\"attributeHeader\":{\"labelValue\":\"Balance Staffing\",\"primaryLabelValue\":\"Balance Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"BancVue\",\"primaryLabelValue\":\"BancVue\"}},{\"attributeHeader\":{\"labelValue\":\"Baseball Rampage\",\"primaryLabelValue\":\"Baseball Rampage\"}},{\"attributeHeader\":{\"labelValue\":\"BCT Consulting\",\"primaryLabelValue\":\"BCT Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Beardwood\",\"primaryLabelValue\":\"Beardwood\"}},{\"attributeHeader\":{\"labelValue\":\"Beceem Communications\",\"primaryLabelValue\":\"Beceem Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Benham Real Estate Group\",\"primaryLabelValue\":\"Benham Real Estate Group\"}},{\"attributeHeader\":{\"labelValue\":\"BeQuick Software\",\"primaryLabelValue\":\"BeQuick Software\"}},{\"attributeHeader\":{\"labelValue\":\"Best Rate Referrals\",\"primaryLabelValue\":\"Best Rate Referrals\"}},{\"attributeHeader\":{\"labelValue\":\"Better World Books\",\"primaryLabelValue\":\"Better World Books\"}},{\"attributeHeader\":{\"labelValue\":\"BidSync\",\"primaryLabelValue\":\"BidSync\"}},{\"attributeHeader\":{\"labelValue\":\"Bills.com\",\"primaryLabelValue\":\"Bills.com\"}},{\"attributeHeader\":{\"labelValue\":\"Bizzuka\",\"primaryLabelValue\":\"Bizzuka\"}},{\"attributeHeader\":{\"labelValue\":\"BlackLine Systems\",\"primaryLabelValue\":\"BlackLine Systems\"}},{\"attributeHeader\":{\"labelValue\":\"BLUE Microphones\",\"primaryLabelValue\":\"BLUE Microphones\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"BlueStar Energy Services\",\"primaryLabelValue\":\"BlueStar Energy Services\"}},{\"attributeHeader\":{\"labelValue\":\"BlueView Technologies\",\"primaryLabelValue\":\"BlueView Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"Boss Business Services\",\"primaryLabelValue\":\"Boss Business Services\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Interactive\",\"primaryLabelValue\":\"Boston Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"Brightway Insurance\",\"primaryLabelValue\":\"Brightway Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"BuildASign.com\",\"primaryLabelValue\":\"BuildASign.com\"}},{\"attributeHeader\":{\"labelValue\":\"C&I Engineering\",\"primaryLabelValue\":\"C&I Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"C.L. Carson\",\"primaryLabelValue\":\"C.L. Carson\"}},{\"attributeHeader\":{\"labelValue\":\"Cableready\",\"primaryLabelValue\":\"Cableready\"}},{\"attributeHeader\":{\"labelValue\":\"CablesAndKits.com\",\"primaryLabelValue\":\"CablesAndKits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cactus Custom Analog Design\",\"primaryLabelValue\":\"Cactus Custom Analog Design\"}},{\"attributeHeader\":{\"labelValue\":\"CallCopy\",\"primaryLabelValue\":\"CallCopy\"}},{\"attributeHeader\":{\"labelValue\":\"Callfinity\",\"primaryLabelValue\":\"Callfinity\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Advantage\",\"primaryLabelValue\":\"Campus Advantage\"}},{\"attributeHeader\":{\"labelValue\":\"Canis Minor\",\"primaryLabelValue\":\"Canis Minor\"}},{\"attributeHeader\":{\"labelValue\":\"Cantaloupe Systems\",\"primaryLabelValue\":\"Cantaloupe Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Capterra\",\"primaryLabelValue\":\"Capterra\"}},{\"attributeHeader\":{\"labelValue\":\"Carchex\",\"primaryLabelValue\":\"Carchex\"}},{\"attributeHeader\":{\"labelValue\":\"CareerLink\",\"primaryLabelValue\":\"CareerLink\"}},{\"attributeHeader\":{\"labelValue\":\"CDW Merchants\",\"primaryLabelValue\":\"CDW Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Cellit\",\"primaryLabelValue\":\"Cellit\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Sales of Knoxville\",\"primaryLabelValue\":\"Cellular Sales of Knoxville\"}},{\"attributeHeader\":{\"labelValue\":\"Cellular Specialties\",\"primaryLabelValue\":\"Cellular Specialties\"}},{\"attributeHeader\":{\"labelValue\":\"CenTauri Solutions\",\"primaryLabelValue\":\"CenTauri Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Centerre Healthcare\",\"primaryLabelValue\":\"Centerre Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"Centiv Services\",\"primaryLabelValue\":\"Centiv Services\"}},{\"attributeHeader\":{\"labelValue\":\"Central Coast Farms\",\"primaryLabelValue\":\"Central Coast Farms\"}},{\"attributeHeader\":{\"labelValue\":\"Central Desktop\",\"primaryLabelValue\":\"Central Desktop\"}},{\"attributeHeader\":{\"labelValue\":\"Central Payment\",\"primaryLabelValue\":\"Central Payment\"}},{\"attributeHeader\":{\"labelValue\":\"Centuria\",\"primaryLabelValue\":\"Centuria\"}},{\"attributeHeader\":{\"labelValue\":\"Century Payments\",\"primaryLabelValue\":\"Century Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Charles F. Day & Associates\",\"primaryLabelValue\":\"Charles F. Day & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"CheckOutStore\",\"primaryLabelValue\":\"CheckOutStore\"}},{\"attributeHeader\":{\"labelValue\":\"Cherokee Enterprises\",\"primaryLabelValue\":\"Cherokee Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Ci2i Services\",\"primaryLabelValue\":\"Ci2i Services\"}},{\"attributeHeader\":{\"labelValue\":\"Ciphent\",\"primaryLabelValue\":\"Ciphent\"}},{\"attributeHeader\":{\"labelValue\":\"Clarisonic\",\"primaryLabelValue\":\"Clarisonic\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Align\",\"primaryLabelValue\":\"Clear Align\"}},{\"attributeHeader\":{\"labelValue\":\"Clear Harbor\",\"primaryLabelValue\":\"Clear Harbor\"}},{\"attributeHeader\":{\"labelValue\":\"ClearAccess\",\"primaryLabelValue\":\"ClearAccess\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpath Solutions Group\",\"primaryLabelValue\":\"Clearpath Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Clearpointe\",\"primaryLabelValue\":\"Clearpointe\"}},{\"attributeHeader\":{\"labelValue\":\"Clickit Ventures\",\"primaryLabelValue\":\"Clickit Ventures\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Control Mechanical Services\",\"primaryLabelValue\":\"Climate Control Mechanical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Clinical Resources\",\"primaryLabelValue\":\"Clinical Resources\"}},{\"attributeHeader\":{\"labelValue\":\"Clinipace Worldwide\",\"primaryLabelValue\":\"Clinipace Worldwide\"}},{\"attributeHeader\":{\"labelValue\":\"CNE Direct\",\"primaryLabelValue\":\"CNE Direct\"}},{\"attributeHeader\":{\"labelValue\":\"CodeRyte\",\"primaryLabelValue\":\"CodeRyte\"}},{\"attributeHeader\":{\"labelValue\":\"Collective Intellect\",\"primaryLabelValue\":\"Collective Intellect\"}},{\"attributeHeader\":{\"labelValue\":\"College Hunks Hauling Junk\",\"primaryLabelValue\":\"College Hunks Hauling Junk\"}},{\"attributeHeader\":{\"labelValue\":\"Complete Landscaping Systems\",\"primaryLabelValue\":\"Complete Landscaping Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance 360\",\"primaryLabelValue\":\"Compliance 360\"}},{\"attributeHeader\":{\"labelValue\":\"Compliance Implementation Services\",\"primaryLabelValue\":\"Compliance Implementation Services\"}},{\"attributeHeader\":{\"labelValue\":\"Confirmation.com\",\"primaryLabelValue\":\"Confirmation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Contour Data Solutions\",\"primaryLabelValue\":\"Contour Data Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Control4\",\"primaryLabelValue\":\"Control4\"}},{\"attributeHeader\":{\"labelValue\":\"Cornerstone OnDemand\",\"primaryLabelValue\":\"Cornerstone OnDemand\"}},{\"attributeHeader\":{\"labelValue\":\"CotterWeb Enterprises\",\"primaryLabelValue\":\"CotterWeb Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Covario\",\"primaryLabelValue\":\"Covario\"}},{\"attributeHeader\":{\"labelValue\":\"Covenant Eyes\",\"primaryLabelValue\":\"Covenant Eyes\"}},{\"attributeHeader\":{\"labelValue\":\"Cowan & Associates\",\"primaryLabelValue\":\"Cowan & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Coyote Logistics\",\"primaryLabelValue\":\"Coyote Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"cPrime\",\"primaryLabelValue\":\"cPrime\"}},{\"attributeHeader\":{\"labelValue\":\"Crosslake Sales\",\"primaryLabelValue\":\"Crosslake Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Crumbs\",\"primaryLabelValue\":\"Crumbs\"}},{\"attributeHeader\":{\"labelValue\":\"CSI\",\"primaryLabelValue\":\"CSI\"}},{\"attributeHeader\":{\"labelValue\":\"CTI\",\"primaryLabelValue\":\"CTI\"}},{\"attributeHeader\":{\"labelValue\":\"Culbert Healthcare Solutions\",\"primaryLabelValue\":\"Culbert Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Custom HBC Corporation\",\"primaryLabelValue\":\"Custom HBC Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Customer Value Partners\",\"primaryLabelValue\":\"Customer Value Partners\"}},{\"attributeHeader\":{\"labelValue\":\"CyberData Technologies\",\"primaryLabelValue\":\"CyberData Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dan's Cement\",\"primaryLabelValue\":\"Dan's Cement\"}},{\"attributeHeader\":{\"labelValue\":\"Data Network Solutions\",\"primaryLabelValue\":\"Data Network Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"David Hale Associates\",\"primaryLabelValue\":\"David Hale Associates\"}},{\"attributeHeader\":{\"labelValue\":\"DCPRO Powercom\",\"primaryLabelValue\":\"DCPRO Powercom\"}},{\"attributeHeader\":{\"labelValue\":\"DealYard.com\",\"primaryLabelValue\":\"DealYard.com\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Distribution\",\"primaryLabelValue\":\"Decision Distribution\"}},{\"attributeHeader\":{\"labelValue\":\"Decision Lens\",\"primaryLabelValue\":\"Decision Lens\"}},{\"attributeHeader\":{\"labelValue\":\"Denali Group\",\"primaryLabelValue\":\"Denali Group\"}},{\"attributeHeader\":{\"labelValue\":\"Dental Salon\",\"primaryLabelValue\":\"Dental Salon\"}},{\"attributeHeader\":{\"labelValue\":\"Derek Construction\",\"primaryLabelValue\":\"Derek Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Digital Management\",\"primaryLabelValue\":\"Digital Management\"}},{\"attributeHeader\":{\"labelValue\":\"Dirt Pros EVS\",\"primaryLabelValue\":\"Dirt Pros EVS\"}},{\"attributeHeader\":{\"labelValue\":\"Disability Group\",\"primaryLabelValue\":\"Disability Group\"}},{\"attributeHeader\":{\"labelValue\":\"Diverse Facility Solutions\",\"primaryLabelValue\":\"Diverse Facility Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"DocuLynx\",\"primaryLabelValue\":\"DocuLynx\"}},{\"attributeHeader\":{\"labelValue\":\"DOMA Technologies\",\"primaryLabelValue\":\"DOMA Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"DoMyOwnPestControl.com\",\"primaryLabelValue\":\"DoMyOwnPestControl.com\"}},{\"attributeHeader\":{\"labelValue\":\"DOWL HKM\",\"primaryLabelValue\":\"DOWL HKM\"}},{\"attributeHeader\":{\"labelValue\":\"Drakontas\",\"primaryLabelValue\":\"Drakontas\"}},{\"attributeHeader\":{\"labelValue\":\"Droisys\",\"primaryLabelValue\":\"Droisys\"}},{\"attributeHeader\":{\"labelValue\":\"DRT Strategies\",\"primaryLabelValue\":\"DRT Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Dull Olson Weekes Architects\",\"primaryLabelValue\":\"Dull Olson Weekes Architects\"}},{\"attributeHeader\":{\"labelValue\":\"Duncan-Williams\",\"primaryLabelValue\":\"Duncan-Williams\"}},{\"attributeHeader\":{\"labelValue\":\"EASi\",\"primaryLabelValue\":\"EASi\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge\",\"primaryLabelValue\":\"eBridge\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge (KY)\",\"primaryLabelValue\":\"eBridge (KY)\"}},{\"attributeHeader\":{\"labelValue\":\"ECi Software Solutions\",\"primaryLabelValue\":\"ECi Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"e-Cycle\",\"primaryLabelValue\":\"e-Cycle\"}},{\"attributeHeader\":{\"labelValue\":\"Education Technology Partners\",\"primaryLabelValue\":\"Education Technology Partners\"}},{\"attributeHeader\":{\"labelValue\":\"eGumBall\",\"primaryLabelValue\":\"eGumBall\"}},{\"attributeHeader\":{\"labelValue\":\"eInstruction\",\"primaryLabelValue\":\"eInstruction\"}},{\"attributeHeader\":{\"labelValue\":\"Elauwit\",\"primaryLabelValue\":\"Elauwit\"}},{\"attributeHeader\":{\"labelValue\":\"Electronic Payments\",\"primaryLabelValue\":\"Electronic Payments\"}},{\"attributeHeader\":{\"labelValue\":\"Eleven\",\"primaryLabelValue\":\"Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"ELEVI Associates\",\"primaryLabelValue\":\"ELEVI Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Employer Flexible\",\"primaryLabelValue\":\"Employer Flexible\"}},{\"attributeHeader\":{\"labelValue\":\"EmPower Research\",\"primaryLabelValue\":\"EmPower Research\"}},{\"attributeHeader\":{\"labelValue\":\"EMSystems\",\"primaryLabelValue\":\"EMSystems\"}},{\"attributeHeader\":{\"labelValue\":\"Energy Ace\",\"primaryLabelValue\":\"Energy Ace\"}},{\"attributeHeader\":{\"labelValue\":\"EnergyCAP\",\"primaryLabelValue\":\"EnergyCAP\"}},{\"attributeHeader\":{\"labelValue\":\"Engage\",\"primaryLabelValue\":\"Engage\"}},{\"attributeHeader\":{\"labelValue\":\"Enterprise Solutions Realized\",\"primaryLabelValue\":\"Enterprise Solutions Realized\"}},{\"attributeHeader\":{\"labelValue\":\"Environmental Design & Construction\",\"primaryLabelValue\":\"Environmental Design & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Envisionit Media\",\"primaryLabelValue\":\"Envisionit Media\"}},{\"attributeHeader\":{\"labelValue\":\"Epic MedStaff Services\",\"primaryLabelValue\":\"Epic MedStaff Services\"}},{\"attributeHeader\":{\"labelValue\":\"ESC Select\",\"primaryLabelValue\":\"ESC Select\"}},{\"attributeHeader\":{\"labelValue\":\"EthicsPoint\",\"primaryLabelValue\":\"EthicsPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Etransmedia Technology\",\"primaryLabelValue\":\"Etransmedia Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Everyday Health\",\"primaryLabelValue\":\"Everyday Health\"}},{\"attributeHeader\":{\"labelValue\":\"Everything2go.com\",\"primaryLabelValue\":\"Everything2go.com\"}},{\"attributeHeader\":{\"labelValue\":\"Evolution Benefits\",\"primaryLabelValue\":\"Evolution Benefits\"}},{\"attributeHeader\":{\"labelValue\":\"Exacq Technologies\",\"primaryLabelValue\":\"Exacq Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Expedien\",\"primaryLabelValue\":\"Expedien\"}},{\"attributeHeader\":{\"labelValue\":\"Faast Pharmacy\",\"primaryLabelValue\":\"Faast Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"Fashionphile\",\"primaryLabelValue\":\"Fashionphile\"}},{\"attributeHeader\":{\"labelValue\":\"FastSpring\",\"primaryLabelValue\":\"FastSpring\"}},{\"attributeHeader\":{\"labelValue\":\"FedStore\",\"primaryLabelValue\":\"FedStore\"}},{\"attributeHeader\":{\"labelValue\":\"Fidelity Technologies\",\"primaryLabelValue\":\"Fidelity Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Fiesta Insurance Franchise\",\"primaryLabelValue\":\"Fiesta Insurance Franchise\"}},{\"attributeHeader\":{\"labelValue\":\"Fi-Med Management\",\"primaryLabelValue\":\"Fi-Med Management\"}},{\"attributeHeader\":{\"labelValue\":\"First Care Medical Services\",\"primaryLabelValue\":\"First Care Medical Services\"}},{\"attributeHeader\":{\"labelValue\":\"First Choice Emergency Rooms\",\"primaryLabelValue\":\"First Choice Emergency Rooms\"}},{\"attributeHeader\":{\"labelValue\":\"Fishbowl Inventory\",\"primaryLabelValue\":\"Fishbowl Inventory\"}},{\"attributeHeader\":{\"labelValue\":\"Flagship Financial Group\",\"primaryLabelValue\":\"Flagship Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"Focus Financial Partners\",\"primaryLabelValue\":\"Focus Financial Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Food Should Taste Good\",\"primaryLabelValue\":\"Food Should Taste Good\"}},{\"attributeHeader\":{\"labelValue\":\"Force10 Networks\",\"primaryLabelValue\":\"Force10 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Forex Club Financial\",\"primaryLabelValue\":\"Forex Club Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Forward Edge\",\"primaryLabelValue\":\"Forward Edge\"}},{\"attributeHeader\":{\"labelValue\":\"FTEN\",\"primaryLabelValue\":\"FTEN\"}},{\"attributeHeader\":{\"labelValue\":\"Fulcrum Microsystems\",\"primaryLabelValue\":\"Fulcrum Microsystems\"}},{\"attributeHeader\":{\"labelValue\":\"GalaxyVisions\",\"primaryLabelValue\":\"GalaxyVisions\"}},{\"attributeHeader\":{\"labelValue\":\"Gecko Hospitality\",\"primaryLabelValue\":\"Gecko Hospitality\"}},{\"attributeHeader\":{\"labelValue\":\"Geckotech\",\"primaryLabelValue\":\"Geckotech\"}},{\"attributeHeader\":{\"labelValue\":\"Genghis Grill Franchise Concepts\",\"primaryLabelValue\":\"Genghis Grill Franchise Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"Genius.com\",\"primaryLabelValue\":\"Genius.com\"}},{\"attributeHeader\":{\"labelValue\":\"GenQuest\",\"primaryLabelValue\":\"GenQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Genuine Interactive\",\"primaryLabelValue\":\"Genuine Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Geo-Solutions\",\"primaryLabelValue\":\"Geo-Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Engineering Solutions\",\"primaryLabelValue\":\"Global Engineering Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Global Geophysical Services\",\"primaryLabelValue\":\"Global Geophysical Services\"}},{\"attributeHeader\":{\"labelValue\":\"Global Strategies\",\"primaryLabelValue\":\"Global Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"Global Test Supply\",\"primaryLabelValue\":\"Global Test Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Global Wedge\",\"primaryLabelValue\":\"Global Wedge\"}},{\"attributeHeader\":{\"labelValue\":\"Go2 Communications\",\"primaryLabelValue\":\"Go2 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"GoGrid\",\"primaryLabelValue\":\"GoGrid\"}},{\"attributeHeader\":{\"labelValue\":\"Golden Key Group\",\"primaryLabelValue\":\"Golden Key Group\"}},{\"attributeHeader\":{\"labelValue\":\"Gorilla Capital\",\"primaryLabelValue\":\"Gorilla Capital\"}},{\"attributeHeader\":{\"labelValue\":\"GourmetGiftBaskets.com\",\"primaryLabelValue\":\"GourmetGiftBaskets.com\"}},{\"attributeHeader\":{\"labelValue\":\"Grant Victor\",\"primaryLabelValue\":\"Grant Victor\"}},{\"attributeHeader\":{\"labelValue\":\"Group Z\",\"primaryLabelValue\":\"Group Z\"}},{\"attributeHeader\":{\"labelValue\":\"GS5\",\"primaryLabelValue\":\"GS5\"}},{\"attributeHeader\":{\"labelValue\":\"GSG\",\"primaryLabelValue\":\"GSG\"}},{\"attributeHeader\":{\"labelValue\":\"GyanSys\",\"primaryLabelValue\":\"GyanSys\"}},{\"attributeHeader\":{\"labelValue\":\"Haller, Harlan & Taylor\",\"primaryLabelValue\":\"Haller, Harlan & Taylor\"}},{\"attributeHeader\":{\"labelValue\":\"Headcount Management\",\"primaryLabelValue\":\"Headcount Management\"}},{\"attributeHeader\":{\"labelValue\":\"Health Advocate\",\"primaryLabelValue\":\"Health Advocate\"}},{\"attributeHeader\":{\"labelValue\":\"HealthCare Partners\",\"primaryLabelValue\":\"HealthCare Partners\"}},{\"attributeHeader\":{\"labelValue\":\"HEBCO\",\"primaryLabelValue\":\"HEBCO\"}},{\"attributeHeader\":{\"labelValue\":\"HeiTech Services\",\"primaryLabelValue\":\"HeiTech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Herren Associates\",\"primaryLabelValue\":\"Herren Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Hiregy\",\"primaryLabelValue\":\"Hiregy\"}},{\"attributeHeader\":{\"labelValue\":\"HMS Technologies\",\"primaryLabelValue\":\"HMS Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Holiday Image\",\"primaryLabelValue\":\"Holiday Image\"}},{\"attributeHeader\":{\"labelValue\":\"HomeNet Automotive\",\"primaryLabelValue\":\"HomeNet Automotive\"}},{\"attributeHeader\":{\"labelValue\":\"Host.net\",\"primaryLabelValue\":\"Host.net\"}},{\"attributeHeader\":{\"labelValue\":\"HPC Development\",\"primaryLabelValue\":\"HPC Development\"}},{\"attributeHeader\":{\"labelValue\":\"HumanTouch\",\"primaryLabelValue\":\"HumanTouch\"}},{\"attributeHeader\":{\"labelValue\":\"iBuyOfficeSupply.com\",\"primaryLabelValue\":\"iBuyOfficeSupply.com\"}},{\"attributeHeader\":{\"labelValue\":\"iCIMS\",\"primaryLabelValue\":\"iCIMS\"}},{\"attributeHeader\":{\"labelValue\":\"iClick\",\"primaryLabelValue\":\"iClick\"}},{\"attributeHeader\":{\"labelValue\":\"ICONMA\",\"primaryLabelValue\":\"ICONMA\"}},{\"attributeHeader\":{\"labelValue\":\"ID Experts\",\"primaryLabelValue\":\"ID Experts\"}},{\"attributeHeader\":{\"labelValue\":\"IData\",\"primaryLabelValue\":\"IData\"}},{\"attributeHeader\":{\"labelValue\":\"Ideal Image Development\",\"primaryLabelValue\":\"Ideal Image Development\"}},{\"attributeHeader\":{\"labelValue\":\"iMarketing\",\"primaryLabelValue\":\"iMarketing\"}},{\"attributeHeader\":{\"labelValue\":\"IMCORP\",\"primaryLabelValue\":\"IMCORP\"}},{\"attributeHeader\":{\"labelValue\":\"Improving Enterprises\",\"primaryLabelValue\":\"Improving Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"Increase Visibility\",\"primaryLabelValue\":\"Increase Visibility\"}},{\"attributeHeader\":{\"labelValue\":\"IndSoft\",\"primaryLabelValue\":\"IndSoft\"}},{\"attributeHeader\":{\"labelValue\":\"Infoblox\",\"primaryLabelValue\":\"Infoblox\"}},{\"attributeHeader\":{\"labelValue\":\"Information Transport Solutions\",\"primaryLabelValue\":\"Information Transport Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"InfoSync Services\",\"primaryLabelValue\":\"InfoSync Services\"}},{\"attributeHeader\":{\"labelValue\":\"Inmod\",\"primaryLabelValue\":\"Inmod\"}},{\"attributeHeader\":{\"labelValue\":\"InsideSales.com\",\"primaryLabelValue\":\"InsideSales.com\"}},{\"attributeHeader\":{\"labelValue\":\"Insight Resource Group\",\"primaryLabelValue\":\"Insight Resource Group\"}},{\"attributeHeader\":{\"labelValue\":\"Integra Telecom\",\"primaryLabelValue\":\"Integra Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"IntegraCore\",\"primaryLabelValue\":\"IntegraCore\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Deicing Services\",\"primaryLabelValue\":\"Integrated Deicing Services\"}},{\"attributeHeader\":{\"labelValue\":\"IntegriChain\",\"primaryLabelValue\":\"IntegriChain\"}},{\"attributeHeader\":{\"labelValue\":\"Integrity Management Consulting\",\"primaryLabelValue\":\"Integrity Management Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Integware\",\"primaryLabelValue\":\"Integware\"}},{\"attributeHeader\":{\"labelValue\":\"Intergis\",\"primaryLabelValue\":\"Intergis\"}},{\"attributeHeader\":{\"labelValue\":\"Interim Solutions for Government\",\"primaryLabelValue\":\"Interim Solutions for Government\"}},{\"attributeHeader\":{\"labelValue\":\"International Checkout\",\"primaryLabelValue\":\"International Checkout\"}},{\"attributeHeader\":{\"labelValue\":\"InterRel Consulting Partners\",\"primaryLabelValue\":\"InterRel Consulting Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Intueor Consulting\",\"primaryLabelValue\":\"Intueor Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Intuitive Research and Technology\",\"primaryLabelValue\":\"Intuitive Research and Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Invertix\",\"primaryLabelValue\":\"Invertix\"}},{\"attributeHeader\":{\"labelValue\":\"IronPlanet\",\"primaryLabelValue\":\"IronPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"IT Prophets\",\"primaryLabelValue\":\"IT Prophets\"}},{\"attributeHeader\":{\"labelValue\":\"ITelagen\",\"primaryLabelValue\":\"ITelagen\"}},{\"attributeHeader\":{\"labelValue\":\"Iverify\",\"primaryLabelValue\":\"Iverify\"}},{\"attributeHeader\":{\"labelValue\":\"J2 Engineering\",\"primaryLabelValue\":\"J2 Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"JBCStyle\",\"primaryLabelValue\":\"JBCStyle\"}},{\"attributeHeader\":{\"labelValue\":\"JMark Business Solutions\",\"primaryLabelValue\":\"JMark Business Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Joby\",\"primaryLabelValue\":\"Joby\"}},{\"attributeHeader\":{\"labelValue\":\"Just Between Friends\",\"primaryLabelValue\":\"Just Between Friends\"}},{\"attributeHeader\":{\"labelValue\":\"Keystrokes Transcription Service\",\"primaryLabelValue\":\"Keystrokes Transcription Service\"}},{\"attributeHeader\":{\"labelValue\":\"Koncept Technologies\",\"primaryLabelValue\":\"Koncept Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Kore Federal\",\"primaryLabelValue\":\"Kore Federal\"}},{\"attributeHeader\":{\"labelValue\":\"KPaul\",\"primaryLabelValue\":\"KPaul\"}},{\"attributeHeader\":{\"labelValue\":\"Kurgo\",\"primaryLabelValue\":\"Kurgo\"}},{\"attributeHeader\":{\"labelValue\":\"Lasco Enterprises\",\"primaryLabelValue\":\"Lasco Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"LatinMedios.com\",\"primaryLabelValue\":\"LatinMedios.com\"}},{\"attributeHeader\":{\"labelValue\":\"Lattice Engines\",\"primaryLabelValue\":\"Lattice Engines\"}},{\"attributeHeader\":{\"labelValue\":\"Layered Technologies\",\"primaryLabelValue\":\"Layered Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"LDJ Productions\",\"primaryLabelValue\":\"LDJ Productions\"}},{\"attributeHeader\":{\"labelValue\":\"Leads Customers Growth\",\"primaryLabelValue\":\"Leads Customers Growth\"}},{\"attributeHeader\":{\"labelValue\":\"LearnLive Technologies\",\"primaryLabelValue\":\"LearnLive Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Lexicon Consulting\",\"primaryLabelValue\":\"Lexicon Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"LifeLock\",\"primaryLabelValue\":\"LifeLock\"}},{\"attributeHeader\":{\"labelValue\":\"LimitLess International\",\"primaryLabelValue\":\"LimitLess International\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Web\",\"primaryLabelValue\":\"Liquid Web\"}},{\"attributeHeader\":{\"labelValue\":\"LiveLogic\",\"primaryLabelValue\":\"LiveLogic\"}},{\"attributeHeader\":{\"labelValue\":\"Livin' Lite Recreational Vehicles\",\"primaryLabelValue\":\"Livin' Lite Recreational Vehicles\"}},{\"attributeHeader\":{\"labelValue\":\"Local Splash\",\"primaryLabelValue\":\"Local Splash\"}},{\"attributeHeader\":{\"labelValue\":\"Logistic Dynamics\",\"primaryLabelValue\":\"Logistic Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Logistics Support\",\"primaryLabelValue\":\"Logistics Support\"}},{\"attributeHeader\":{\"labelValue\":\"LogoNation\",\"primaryLabelValue\":\"LogoNation\"}},{\"attributeHeader\":{\"labelValue\":\"LongJump\",\"primaryLabelValue\":\"LongJump\"}},{\"attributeHeader\":{\"labelValue\":\"Lord & Co. Technologies\",\"primaryLabelValue\":\"Lord & Co. Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Loudoun Electric\",\"primaryLabelValue\":\"Loudoun Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Luke & Associates\",\"primaryLabelValue\":\"Luke & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Lusive Decor\",\"primaryLabelValue\":\"Lusive Decor\"}},{\"attributeHeader\":{\"labelValue\":\"M3 Technology\",\"primaryLabelValue\":\"M3 Technology\"}},{\"attributeHeader\":{\"labelValue\":\"M33 Integrated Solutions\",\"primaryLabelValue\":\"M33 Integrated Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"M5 Networks\",\"primaryLabelValue\":\"M5 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"M86 Security\",\"primaryLabelValue\":\"M86 Security\"}},{\"attributeHeader\":{\"labelValue\":\"Mackey & Tanner\",\"primaryLabelValue\":\"Mackey & Tanner\"}},{\"attributeHeader\":{\"labelValue\":\"Maher Restoration & Construction\",\"primaryLabelValue\":\"Maher Restoration & Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Mainstreet Property Group\",\"primaryLabelValue\":\"Mainstreet Property Group\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Altman & Associates\",\"primaryLabelValue\":\"Mark Altman & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Mark Patrick Media\",\"primaryLabelValue\":\"Mark Patrick Media\"}},{\"attributeHeader\":{\"labelValue\":\"McKinley Carter Wealth Services\",\"primaryLabelValue\":\"McKinley Carter Wealth Services\"}},{\"attributeHeader\":{\"labelValue\":\"McLane Advanced Technologies\",\"primaryLabelValue\":\"McLane Advanced Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"MD On-Line\",\"primaryLabelValue\":\"MD On-Line\"}},{\"attributeHeader\":{\"labelValue\":\"MD Orthopaedics\",\"primaryLabelValue\":\"MD Orthopaedics\"}},{\"attributeHeader\":{\"labelValue\":\"Mediatavern\",\"primaryLabelValue\":\"Mediatavern\"}},{\"attributeHeader\":{\"labelValue\":\"MediaTrust\",\"primaryLabelValue\":\"MediaTrust\"}},{\"attributeHeader\":{\"labelValue\":\"merchant one\",\"primaryLabelValue\":\"merchant one\"}},{\"attributeHeader\":{\"labelValue\":\"Mercury Solar Systems\",\"primaryLabelValue\":\"Mercury Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MetroSpec Technology\",\"primaryLabelValue\":\"MetroSpec Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Microconsult\",\"primaryLabelValue\":\"Microconsult\"}},{\"attributeHeader\":{\"labelValue\":\"Microdynamics Group\",\"primaryLabelValue\":\"Microdynamics Group\"}},{\"attributeHeader\":{\"labelValue\":\"Milestone Metals\",\"primaryLabelValue\":\"Milestone Metals\"}},{\"attributeHeader\":{\"labelValue\":\"milk + honey\",\"primaryLabelValue\":\"milk + honey\"}},{\"attributeHeader\":{\"labelValue\":\"Mission Essential Personnel\",\"primaryLabelValue\":\"Mission Essential Personnel\"}},{\"attributeHeader\":{\"labelValue\":\"Modea\",\"primaryLabelValue\":\"Modea\"}},{\"attributeHeader\":{\"labelValue\":\"Modern American Recycling Services\",\"primaryLabelValue\":\"Modern American Recycling Services\"}},{\"attributeHeader\":{\"labelValue\":\"Monogram Food Solutions\",\"primaryLabelValue\":\"Monogram Food Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Most Brand Development + Advertising\",\"primaryLabelValue\":\"Most Brand Development + Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Motionsoft\",\"primaryLabelValue\":\"Motionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Motivators\",\"primaryLabelValue\":\"Motivators\"}},{\"attributeHeader\":{\"labelValue\":\"MSpace\",\"primaryLabelValue\":\"MSpace\"}},{\"attributeHeader\":{\"labelValue\":\"MTC Transformers\",\"primaryLabelValue\":\"MTC Transformers\"}},{\"attributeHeader\":{\"labelValue\":\"Mustang Technology\",\"primaryLabelValue\":\"Mustang Technology\"}},{\"attributeHeader\":{\"labelValue\":\"My Wireless\",\"primaryLabelValue\":\"My Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"National Gift Card\",\"primaryLabelValue\":\"National Gift Card\"}},{\"attributeHeader\":{\"labelValue\":\"National MedTrans Network\",\"primaryLabelValue\":\"National MedTrans Network\"}},{\"attributeHeader\":{\"labelValue\":\"National Trade Supply\",\"primaryLabelValue\":\"National Trade Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Net Direct Merchants\",\"primaryLabelValue\":\"Net Direct Merchants\"}},{\"attributeHeader\":{\"labelValue\":\"Net2EZ\",\"primaryLabelValue\":\"Net2EZ\"}},{\"attributeHeader\":{\"labelValue\":\"Netarx\",\"primaryLabelValue\":\"Netarx\"}},{\"attributeHeader\":{\"labelValue\":\"NETexponent\",\"primaryLabelValue\":\"NETexponent\"}},{\"attributeHeader\":{\"labelValue\":\"NetMotion Wireless\",\"primaryLabelValue\":\"NetMotion Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"NetWitness\",\"primaryLabelValue\":\"NetWitness\"}},{\"attributeHeader\":{\"labelValue\":\"New Breed Logistics\",\"primaryLabelValue\":\"New Breed Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Night Agency\",\"primaryLabelValue\":\"Night Agency\"}},{\"attributeHeader\":{\"labelValue\":\"NitroSecurity\",\"primaryLabelValue\":\"NitroSecurity\"}},{\"attributeHeader\":{\"labelValue\":\"Nityo Infotech\",\"primaryLabelValue\":\"Nityo Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"North Jersey Community Bank\",\"primaryLabelValue\":\"North Jersey Community Bank\"}},{\"attributeHeader\":{\"labelValue\":\"Nutricap Labs\",\"primaryLabelValue\":\"Nutricap Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NVIS\",\"primaryLabelValue\":\"NVIS\"}},{\"attributeHeader\":{\"labelValue\":\"Officescape\",\"primaryLabelValue\":\"Officescape\"}},{\"attributeHeader\":{\"labelValue\":\"One Technologies\",\"primaryLabelValue\":\"One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Opes Advisors\",\"primaryLabelValue\":\"Opes Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"OpticsPlanet\",\"primaryLabelValue\":\"OpticsPlanet\"}},{\"attributeHeader\":{\"labelValue\":\"Options University\",\"primaryLabelValue\":\"Options University\"}},{\"attributeHeader\":{\"labelValue\":\"Oskar Blues Brewery\",\"primaryLabelValue\":\"Oskar Blues Brewery\"}},{\"attributeHeader\":{\"labelValue\":\"Outline Systems\",\"primaryLabelValue\":\"Outline Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Outskirts Press\",\"primaryLabelValue\":\"Outskirts Press\"}},{\"attributeHeader\":{\"labelValue\":\"Oxford Lending Group\",\"primaryLabelValue\":\"Oxford Lending Group\"}},{\"attributeHeader\":{\"labelValue\":\"P3I\",\"primaryLabelValue\":\"P3I\"}},{\"attributeHeader\":{\"labelValue\":\"Paciugo Italian Gelato\",\"primaryLabelValue\":\"Paciugo Italian Gelato\"}},{\"attributeHeader\":{\"labelValue\":\"Panthera Interactive\",\"primaryLabelValue\":\"Panthera Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Space Development\",\"primaryLabelValue\":\"Paragon Space Development\"}},{\"attributeHeader\":{\"labelValue\":\"Paragon Technology Group\",\"primaryLabelValue\":\"Paragon Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Pariveda Solutions\",\"primaryLabelValue\":\"Pariveda Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Paycom\",\"primaryLabelValue\":\"Paycom\"}},{\"attributeHeader\":{\"labelValue\":\"PayFlex Systems USA\",\"primaryLabelValue\":\"PayFlex Systems USA\"}},{\"attributeHeader\":{\"labelValue\":\"PaymentMax\",\"primaryLabelValue\":\"PaymentMax\"}},{\"attributeHeader\":{\"labelValue\":\"PeopleShare\",\"primaryLabelValue\":\"PeopleShare\"}},{\"attributeHeader\":{\"labelValue\":\"PersonalizationMall.com\",\"primaryLabelValue\":\"PersonalizationMall.com\"}},{\"attributeHeader\":{\"labelValue\":\"PetRays\",\"primaryLabelValue\":\"PetRays\"}},{\"attributeHeader\":{\"labelValue\":\"PetRelocation.com\",\"primaryLabelValue\":\"PetRelocation.com\"}},{\"attributeHeader\":{\"labelValue\":\"Pharmacy OneSource\",\"primaryLabelValue\":\"Pharmacy OneSource\"}},{\"attributeHeader\":{\"labelValue\":\"PharMethod\",\"primaryLabelValue\":\"PharMethod\"}},{\"attributeHeader\":{\"labelValue\":\"Pinnacle Security\",\"primaryLabelValue\":\"Pinnacle Security\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Realty\",\"primaryLabelValue\":\"Platinum Realty\"}},{\"attributeHeader\":{\"labelValue\":\"Polu Kai Services\",\"primaryLabelValue\":\"Polu Kai Services\"}},{\"attributeHeader\":{\"labelValue\":\"Pongo Resume\",\"primaryLabelValue\":\"Pongo Resume\"}},{\"attributeHeader\":{\"labelValue\":\"Pop Labs\",\"primaryLabelValue\":\"Pop Labs\"}},{\"attributeHeader\":{\"labelValue\":\"Portage\",\"primaryLabelValue\":\"Portage\"}},{\"attributeHeader\":{\"labelValue\":\"Portrait Innovations\",\"primaryLabelValue\":\"Portrait Innovations\"}},{\"attributeHeader\":{\"labelValue\":\"Prairie City Bakery\",\"primaryLabelValue\":\"Prairie City Bakery\"}},{\"attributeHeader\":{\"labelValue\":\"Prep Sportswear\",\"primaryLabelValue\":\"Prep Sportswear\"}},{\"attributeHeader\":{\"labelValue\":\"Prime Property Investors\",\"primaryLabelValue\":\"Prime Property Investors\"}},{\"attributeHeader\":{\"labelValue\":\"Primescape Solutions\",\"primaryLabelValue\":\"Primescape Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pro Computer Service\",\"primaryLabelValue\":\"Pro Computer Service\"}},{\"attributeHeader\":{\"labelValue\":\"ProFloors\",\"primaryLabelValue\":\"ProFloors\"}},{\"attributeHeader\":{\"labelValue\":\"Prommis Solutions\",\"primaryLabelValue\":\"Prommis Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PropelMG\",\"primaryLabelValue\":\"PropelMG\"}},{\"attributeHeader\":{\"labelValue\":\"Property Solutions\",\"primaryLabelValue\":\"Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Proteus Technologies\",\"primaryLabelValue\":\"Proteus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"PuroClean\",\"primaryLabelValue\":\"PuroClean\"}},{\"attributeHeader\":{\"labelValue\":\"Pyramed Health Services\",\"primaryLabelValue\":\"Pyramed Health Services\"}},{\"attributeHeader\":{\"labelValue\":\"Q Analysts\",\"primaryLabelValue\":\"Q Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"Q2ebanking\",\"primaryLabelValue\":\"Q2ebanking\"}},{\"attributeHeader\":{\"labelValue\":\"Quality Safety Edge\",\"primaryLabelValue\":\"Quality Safety Edge\"}},{\"attributeHeader\":{\"labelValue\":\"Quantech Services\",\"primaryLabelValue\":\"Quantech Services\"}},{\"attributeHeader\":{\"labelValue\":\"Quantros\",\"primaryLabelValue\":\"Quantros\"}},{\"attributeHeader\":{\"labelValue\":\"Quest CE\",\"primaryLabelValue\":\"Quest CE\"}},{\"attributeHeader\":{\"labelValue\":\"R2 Innovative Technologies\",\"primaryLabelValue\":\"R2 Innovative Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"R2integrated\",\"primaryLabelValue\":\"R2integrated\"}},{\"attributeHeader\":{\"labelValue\":\"Radiant RFID\",\"primaryLabelValue\":\"Radiant RFID\"}},{\"attributeHeader\":{\"labelValue\":\"Radiometrics\",\"primaryLabelValue\":\"Radiometrics\"}},{\"attributeHeader\":{\"labelValue\":\"RealPage\",\"primaryLabelValue\":\"RealPage\"}},{\"attributeHeader\":{\"labelValue\":\"Recommind\",\"primaryLabelValue\":\"Recommind\"}},{\"attributeHeader\":{\"labelValue\":\"RedVision Systems\",\"primaryLabelValue\":\"RedVision Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Reichardt Construction\",\"primaryLabelValue\":\"Reichardt Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Rennen International\",\"primaryLabelValue\":\"Rennen International\"}},{\"attributeHeader\":{\"labelValue\":\"Replico\",\"primaryLabelValue\":\"Replico\"}},{\"attributeHeader\":{\"labelValue\":\"ReSource Pro\",\"primaryLabelValue\":\"ReSource Pro\"}},{\"attributeHeader\":{\"labelValue\":\"Ressco\",\"primaryLabelValue\":\"Ressco\"}},{\"attributeHeader\":{\"labelValue\":\"Restaurant.com\",\"primaryLabelValue\":\"Restaurant.com\"}},{\"attributeHeader\":{\"labelValue\":\"Rising Sun\",\"primaryLabelValue\":\"Rising Sun\"}},{\"attributeHeader\":{\"labelValue\":\"Rockett Interactive\",\"primaryLabelValue\":\"Rockett Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Royal Buying Group\",\"primaryLabelValue\":\"Royal Buying Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sagent Partners\",\"primaryLabelValue\":\"Sagent Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sajan\",\"primaryLabelValue\":\"Sajan\"}},{\"attributeHeader\":{\"labelValue\":\"Sandler Partners\",\"primaryLabelValue\":\"Sandler Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Santana Sales and Marketing Group\",\"primaryLabelValue\":\"Santana Sales and Marketing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Sarah Cannon Research Institute\",\"primaryLabelValue\":\"Sarah Cannon Research Institute\"}},{\"attributeHeader\":{\"labelValue\":\"Saturna Capital\",\"primaryLabelValue\":\"Saturna Capital\"}},{\"attributeHeader\":{\"labelValue\":\"SaveOnResorts.com\",\"primaryLabelValue\":\"SaveOnResorts.com\"}},{\"attributeHeader\":{\"labelValue\":\"Savid Technologies\",\"primaryLabelValue\":\"Savid Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SAVO\",\"primaryLabelValue\":\"SAVO\"}},{\"attributeHeader\":{\"labelValue\":\"Scentsy\",\"primaryLabelValue\":\"Scentsy\"}},{\"attributeHeader\":{\"labelValue\":\"SciMedica Group\",\"primaryLabelValue\":\"SciMedica Group\"}},{\"attributeHeader\":{\"labelValue\":\"SciMetrika\",\"primaryLabelValue\":\"SciMetrika\"}},{\"attributeHeader\":{\"labelValue\":\"Secure-24\",\"primaryLabelValue\":\"Secure-24\"}},{\"attributeHeader\":{\"labelValue\":\"SecureState\",\"primaryLabelValue\":\"SecureState\"}},{\"attributeHeader\":{\"labelValue\":\"Security 101\",\"primaryLabelValue\":\"Security 101\"}},{\"attributeHeader\":{\"labelValue\":\"Security by Design\",\"primaryLabelValue\":\"Security by Design\"}},{\"attributeHeader\":{\"labelValue\":\"SeekingSitters\",\"primaryLabelValue\":\"SeekingSitters\"}},{\"attributeHeader\":{\"labelValue\":\"Segue Technologies\",\"primaryLabelValue\":\"Segue Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Select Marketing Solutions\",\"primaryLabelValue\":\"Select Marketing Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Send Word Now\",\"primaryLabelValue\":\"Send Word Now\"}},{\"attributeHeader\":{\"labelValue\":\"Sensis\",\"primaryLabelValue\":\"Sensis\"}},{\"attributeHeader\":{\"labelValue\":\"SEOmoz\",\"primaryLabelValue\":\"SEOmoz\"}},{\"attributeHeader\":{\"labelValue\":\"ShareFile\",\"primaryLabelValue\":\"ShareFile\"}},{\"attributeHeader\":{\"labelValue\":\"Sharon Young\",\"primaryLabelValue\":\"Sharon Young\"}},{\"attributeHeader\":{\"labelValue\":\"SightLine Health\",\"primaryLabelValue\":\"SightLine Health\"}},{\"attributeHeader\":{\"labelValue\":\"Sightlines\",\"primaryLabelValue\":\"Sightlines\"}},{\"attributeHeader\":{\"labelValue\":\"Silex Interiors\",\"primaryLabelValue\":\"Silex Interiors\"}},{\"attributeHeader\":{\"labelValue\":\"Single Digits\",\"primaryLabelValue\":\"Single Digits\"}},{\"attributeHeader\":{\"labelValue\":\"SingleSource Property Solutions\",\"primaryLabelValue\":\"SingleSource Property Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Sitters Etc.\",\"primaryLabelValue\":\"Sitters Etc.\"}},{\"attributeHeader\":{\"labelValue\":\"Skinit\",\"primaryLabelValue\":\"Skinit\"}},{\"attributeHeader\":{\"labelValue\":\"Skire\",\"primaryLabelValue\":\"Skire\"}},{\"attributeHeader\":{\"labelValue\":\"Skullcandy\",\"primaryLabelValue\":\"Skullcandy\"}},{\"attributeHeader\":{\"labelValue\":\"Smarthinking\",\"primaryLabelValue\":\"Smarthinking\"}},{\"attributeHeader\":{\"labelValue\":\"SmartIT Staffing\",\"primaryLabelValue\":\"SmartIT Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"SMBology\",\"primaryLabelValue\":\"SMBology\"}},{\"attributeHeader\":{\"labelValue\":\"Smile Reminder\",\"primaryLabelValue\":\"Smile Reminder\"}},{\"attributeHeader\":{\"labelValue\":\"Snap Fitness\",\"primaryLabelValue\":\"Snap Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"SnapAV\",\"primaryLabelValue\":\"SnapAV\"}},{\"attributeHeader\":{\"labelValue\":\"Snow Companies\",\"primaryLabelValue\":\"Snow Companies\"}},{\"attributeHeader\":{\"labelValue\":\"SNS Logistics\",\"primaryLabelValue\":\"SNS Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Solstice Consulting\",\"primaryLabelValue\":\"Solstice Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Sonoma Partners\",\"primaryLabelValue\":\"Sonoma Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Sorrento Capital\",\"primaryLabelValue\":\"Sorrento Capital\"}},{\"attributeHeader\":{\"labelValue\":\"Source Abroad\",\"primaryLabelValue\":\"Source Abroad\"}},{\"attributeHeader\":{\"labelValue\":\"Squarespace\",\"primaryLabelValue\":\"Squarespace\"}},{\"attributeHeader\":{\"labelValue\":\"Sriven Systems\",\"primaryLabelValue\":\"Sriven Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Starmax Resource\",\"primaryLabelValue\":\"Starmax Resource\"}},{\"attributeHeader\":{\"labelValue\":\"StarTex Power\",\"primaryLabelValue\":\"StarTex Power\"}},{\"attributeHeader\":{\"labelValue\":\"Staticworx\",\"primaryLabelValue\":\"Staticworx\"}},{\"attributeHeader\":{\"labelValue\":\"Steadfast Networks\",\"primaryLabelValue\":\"Steadfast Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Strobe Promotions\",\"primaryLabelValue\":\"Strobe Promotions\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan and Cogliano Training Centers\",\"primaryLabelValue\":\"Sullivan and Cogliano Training Centers\"}},{\"attributeHeader\":{\"labelValue\":\"Sullivan Solar Power\",\"primaryLabelValue\":\"Sullivan Solar Power\"}},{\"attributeHeader\":{\"labelValue\":\"Sunmerge Systems\",\"primaryLabelValue\":\"Sunmerge Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Surplus Sourcing Group\",\"primaryLabelValue\":\"Surplus Sourcing Group\"}},{\"attributeHeader\":{\"labelValue\":\"Syndero\",\"primaryLabelValue\":\"Syndero\"}},{\"attributeHeader\":{\"labelValue\":\"Systems Made Simple\",\"primaryLabelValue\":\"Systems Made Simple\"}},{\"attributeHeader\":{\"labelValue\":\"Talented IT\",\"primaryLabelValue\":\"Talented IT\"}},{\"attributeHeader\":{\"labelValue\":\"Tantus Technologies\",\"primaryLabelValue\":\"Tantus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Tatari Construction\",\"primaryLabelValue\":\"Tatari Construction\"}},{\"attributeHeader\":{\"labelValue\":\"T-Cellular\",\"primaryLabelValue\":\"T-Cellular\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Sales International\",\"primaryLabelValue\":\"Technical Sales International\"}},{\"attributeHeader\":{\"labelValue\":\"TekLinks\",\"primaryLabelValue\":\"TekLinks\"}},{\"attributeHeader\":{\"labelValue\":\"TeleNav\",\"primaryLabelValue\":\"TeleNav\"}},{\"attributeHeader\":{\"labelValue\":\"Telovations\",\"primaryLabelValue\":\"Telovations\"}},{\"attributeHeader\":{\"labelValue\":\"Terra Infotech\",\"primaryLabelValue\":\"Terra Infotech\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Energy Holdings\",\"primaryLabelValue\":\"Texas Energy Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"TGaS Advisors\",\"primaryLabelValue\":\"TGaS Advisors\"}},{\"attributeHeader\":{\"labelValue\":\"The Aldridge Company\",\"primaryLabelValue\":\"The Aldridge Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Archer Group\",\"primaryLabelValue\":\"The Archer Group\"}},{\"attributeHeader\":{\"labelValue\":\"The C&L Group\",\"primaryLabelValue\":\"The C&L Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Campus Special\",\"primaryLabelValue\":\"The Campus Special\"}},{\"attributeHeader\":{\"labelValue\":\"The Delta Companies\",\"primaryLabelValue\":\"The Delta Companies\"}},{\"attributeHeader\":{\"labelValue\":\"The Garden Gates\",\"primaryLabelValue\":\"The Garden Gates\"}},{\"attributeHeader\":{\"labelValue\":\"The Ignition Network\",\"primaryLabelValue\":\"The Ignition Network\"}},{\"attributeHeader\":{\"labelValue\":\"The Intersect Group\",\"primaryLabelValue\":\"The Intersect Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Media Crew\",\"primaryLabelValue\":\"The Media Crew\"}},{\"attributeHeader\":{\"labelValue\":\"The Mixx\",\"primaryLabelValue\":\"The Mixx\"}},{\"attributeHeader\":{\"labelValue\":\"The Neat Company\",\"primaryLabelValue\":\"The Neat Company\"}},{\"attributeHeader\":{\"labelValue\":\"The Sophic Group\",\"primaryLabelValue\":\"The Sophic Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Trademark Company\",\"primaryLabelValue\":\"The Trademark Company\"}},{\"attributeHeader\":{\"labelValue\":\"TheFind\",\"primaryLabelValue\":\"TheFind\"}},{\"attributeHeader\":{\"labelValue\":\"Thrillist.com\",\"primaryLabelValue\":\"Thrillist.com\"}},{\"attributeHeader\":{\"labelValue\":\"Thrustmaster of Texas\",\"primaryLabelValue\":\"Thrustmaster of Texas\"}},{\"attributeHeader\":{\"labelValue\":\"TicketNetwork.com\",\"primaryLabelValue\":\"TicketNetwork.com\"}},{\"attributeHeader\":{\"labelValue\":\"TicketZoom\",\"primaryLabelValue\":\"TicketZoom\"}},{\"attributeHeader\":{\"labelValue\":\"Torch Technologies\",\"primaryLabelValue\":\"Torch Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TowerCo\",\"primaryLabelValue\":\"TowerCo\"}},{\"attributeHeader\":{\"labelValue\":\"Trace-3\",\"primaryLabelValue\":\"Trace-3\"}},{\"attributeHeader\":{\"labelValue\":\"Tracen Technologies\",\"primaryLabelValue\":\"Tracen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"TradeKing\",\"primaryLabelValue\":\"TradeKing\"}},{\"attributeHeader\":{\"labelValue\":\"Traffiq\",\"primaryLabelValue\":\"Traffiq\"}},{\"attributeHeader\":{\"labelValue\":\"Transcript Pharmacy\",\"primaryLabelValue\":\"Transcript Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"TrueCar\",\"primaryLabelValue\":\"TrueCar\"}},{\"attributeHeader\":{\"labelValue\":\"Turbie Twist\",\"primaryLabelValue\":\"Turbie Twist\"}},{\"attributeHeader\":{\"labelValue\":\"U.S. Translation\",\"primaryLabelValue\":\"U.S. Translation\"}},{\"attributeHeader\":{\"labelValue\":\"University of Dreams\",\"primaryLabelValue\":\"University of Dreams\"}},{\"attributeHeader\":{\"labelValue\":\"US Aluminum Services\",\"primaryLabelValue\":\"US Aluminum Services\"}},{\"attributeHeader\":{\"labelValue\":\"US Lighting Tech\",\"primaryLabelValue\":\"US Lighting Tech\"}},{\"attributeHeader\":{\"labelValue\":\"USfalcon\",\"primaryLabelValue\":\"USfalcon\"}},{\"attributeHeader\":{\"labelValue\":\"uShip\",\"primaryLabelValue\":\"uShip\"}},{\"attributeHeader\":{\"labelValue\":\"Utopia\",\"primaryLabelValue\":\"Utopia\"}},{\"attributeHeader\":{\"labelValue\":\"Value Based Solutions\",\"primaryLabelValue\":\"Value Based Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"VariQ\",\"primaryLabelValue\":\"VariQ\"}},{\"attributeHeader\":{\"labelValue\":\"Varrow\",\"primaryLabelValue\":\"Varrow\"}},{\"attributeHeader\":{\"labelValue\":\"Veracity Solutions\",\"primaryLabelValue\":\"Veracity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Via Trading\",\"primaryLabelValue\":\"Via Trading\"}},{\"attributeHeader\":{\"labelValue\":\"Video Security Group\",\"primaryLabelValue\":\"Video Security Group\"}},{\"attributeHeader\":{\"labelValue\":\"VinSolutions\",\"primaryLabelValue\":\"VinSolutions\"}},{\"attributeHeader\":{\"labelValue\":\"Viverae\",\"primaryLabelValue\":\"Viverae\"}},{\"attributeHeader\":{\"labelValue\":\"VMD Systems Integrators\",\"primaryLabelValue\":\"VMD Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Vycon\",\"primaryLabelValue\":\"Vycon\"}},{\"attributeHeader\":{\"labelValue\":\"w3r Consulting\",\"primaryLabelValue\":\"w3r Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Wave2Wave Communications\",\"primaryLabelValue\":\"Wave2Wave Communications\"}},{\"attributeHeader\":{\"labelValue\":\"WebSafe Shield\",\"primaryLabelValue\":\"WebSafe Shield\"}},{\"attributeHeader\":{\"labelValue\":\"Wells Manufacturing\",\"primaryLabelValue\":\"Wells Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"White House Custom Colour\",\"primaryLabelValue\":\"White House Custom Colour\"}},{\"attributeHeader\":{\"labelValue\":\"Windamir Development\",\"primaryLabelValue\":\"Windamir Development\"}},{\"attributeHeader\":{\"labelValue\":\"Wingstop Restaurants\",\"primaryLabelValue\":\"Wingstop Restaurants\"}},{\"attributeHeader\":{\"labelValue\":\"Wireless Emporium\",\"primaryLabelValue\":\"Wireless Emporium\"}},{\"attributeHeader\":{\"labelValue\":\"Wise Men Consultants\",\"primaryLabelValue\":\"Wise Men Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Workway\",\"primaryLabelValue\":\"Workway\"}},{\"attributeHeader\":{\"labelValue\":\"Wyngate International\",\"primaryLabelValue\":\"Wyngate International\"}},{\"attributeHeader\":{\"labelValue\":\"Xirrus\",\"primaryLabelValue\":\"Xirrus\"}},{\"attributeHeader\":{\"labelValue\":\"Xymogen\",\"primaryLabelValue\":\"Xymogen\"}},{\"attributeHeader\":{\"labelValue\":\"YapStone\",\"primaryLabelValue\":\"YapStone\"}},{\"attributeHeader\":{\"labelValue\":\"Yash Solutions\",\"primaryLabelValue\":\"Yash Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Yodle\",\"primaryLabelValue\":\"Yodle\"}},{\"attributeHeader\":{\"labelValue\":\"YoungWilliams Child Support Services\",\"primaryLabelValue\":\"YoungWilliams Child Support Services\"}},{\"attributeHeader\":{\"labelValue\":\"Zebra Imaging\",\"primaryLabelValue\":\"Zebra Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Zemoga\",\"primaryLabelValue\":\"Zemoga\"}},{\"attributeHeader\":{\"labelValue\":\"Zenoss\",\"primaryLabelValue\":\"Zenoss\"}},{\"attributeHeader\":{\"labelValue\":\"Zeon Solutions\",\"primaryLabelValue\":\"Zeon Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"1 Source Consulting\",\"primaryLabelValue\":\"1 Source Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"101 Financial\",\"primaryLabelValue\":\"101 Financial\"}},{\"attributeHeader\":{\"labelValue\":\"2 Wheel Bikes\",\"primaryLabelValue\":\"2 Wheel Bikes\"}},{\"attributeHeader\":{\"labelValue\":\"6K Systems\",\"primaryLabelValue\":\"6K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"720 Strategies\",\"primaryLabelValue\":\"720 Strategies\"}},{\"attributeHeader\":{\"labelValue\":\"A.R.M. Solutions\",\"primaryLabelValue\":\"A.R.M. Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AAC Enterprises\",\"primaryLabelValue\":\"AAC Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"AArrow Advertising\",\"primaryLabelValue\":\"AArrow Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccountNow\",\"primaryLabelValue\":\"AccountNow\"}},{\"attributeHeader\":{\"labelValue\":\"adaQuest\",\"primaryLabelValue\":\"adaQuest\"}},{\"attributeHeader\":{\"labelValue\":\"Addison Search\",\"primaryLabelValue\":\"Addison Search\"}},{\"attributeHeader\":{\"labelValue\":\"Addx\",\"primaryLabelValue\":\"Addx\"}},{\"attributeHeader\":{\"labelValue\":\"Adperio\",\"primaryLabelValue\":\"Adperio\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Manufacturing Technology\",\"primaryLabelValue\":\"Advanced Manufacturing Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Advantedge Healthcare Solutions\",\"primaryLabelValue\":\"Advantedge Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"AEEC\",\"primaryLabelValue\":\"AEEC\"}},{\"attributeHeader\":{\"labelValue\":\"Affinity\",\"primaryLabelValue\":\"Affinity\"}},{\"attributeHeader\":{\"labelValue\":\"Agency Consulting Group\",\"primaryLabelValue\":\"Agency Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"AJ Riggins\",\"primaryLabelValue\":\"AJ Riggins\"}},{\"attributeHeader\":{\"labelValue\":\"Akraya\",\"primaryLabelValue\":\"Akraya\"}},{\"attributeHeader\":{\"labelValue\":\"AKT Enterprises\",\"primaryLabelValue\":\"AKT Enterprises\"}},{\"attributeHeader\":{\"labelValue\":\"ALaS Consulting\",\"primaryLabelValue\":\"ALaS Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"All American Swim Supply\",\"primaryLabelValue\":\"All American Swim Supply\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Alteris Renewables\",\"primaryLabelValue\":\"Alteris Renewables\"}},{\"attributeHeader\":{\"labelValue\":\"American Solar Electric\",\"primaryLabelValue\":\"American Solar Electric\"}},{\"attributeHeader\":{\"labelValue\":\"Anakam\",\"primaryLabelValue\":\"Anakam\"}},{\"attributeHeader\":{\"labelValue\":\"Anchor Innovation\",\"primaryLabelValue\":\"Anchor Innovation\"}},{\"attributeHeader\":{\"labelValue\":\"Angel Staffing\",\"primaryLabelValue\":\"Angel Staffing\"}},{\"attributeHeader\":{\"labelValue\":\"Angie's List\",\"primaryLabelValue\":\"Angie's List\"}},{\"attributeHeader\":{\"labelValue\":\"Anytime Fitness\",\"primaryLabelValue\":\"Anytime Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"Apparatus\",\"primaryLabelValue\":\"Apparatus\"}},{\"attributeHeader\":{\"labelValue\":\"Appliance Zone\",\"primaryLabelValue\":\"Appliance Zone\"}},{\"attributeHeader\":{\"labelValue\":\"Applied Analytics\",\"primaryLabelValue\":\"Applied Analytics\"}},{\"attributeHeader\":{\"labelValue\":\"AppRiver\",\"primaryLabelValue\":\"AppRiver\"}},{\"attributeHeader\":{\"labelValue\":\"aPriori\",\"primaryLabelValue\":\"aPriori\"}},{\"attributeHeader\":{\"labelValue\":\"Aptera Software\",\"primaryLabelValue\":\"Aptera Software\"}},{\"attributeHeader\":{\"labelValue\":\"Arc Aspicio\",\"primaryLabelValue\":\"Arc Aspicio\"}},{\"attributeHeader\":{\"labelValue\":\"Archimedes Global\",\"primaryLabelValue\":\"Archimedes Global\"}},{\"attributeHeader\":{\"labelValue\":\"Argent Associates\",\"primaryLabelValue\":\"Argent Associates\"}},{\"attributeHeader\":{\"labelValue\":\"ARGI Financial Group\",\"primaryLabelValue\":\"ARGI Financial Group\"}},{\"attributeHeader\":{\"labelValue\":\"ARK Solutions\",\"primaryLabelValue\":\"ARK Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Aromatic Fusion\",\"primaryLabelValue\":\"Aromatic Fusion\"}},{\"attributeHeader\":{\"labelValue\":\"Arona\",\"primaryLabelValue\":\"Arona\"}},{\"attributeHeader\":{\"labelValue\":\"ArrowStream\",\"primaryLabelValue\":\"ArrowStream\"}},{\"attributeHeader\":{\"labelValue\":\"Artemis Laser and Vein Center\",\"primaryLabelValue\":\"Artemis Laser and Vein Center\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendant Compliance Management\",\"primaryLabelValue\":\"Ascendant Compliance Management\"}},{\"attributeHeader\":{\"labelValue\":\"Ascendent Engineering & Safety Solutions\",\"primaryLabelValue\":\"Ascendent Engineering & Safety Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Astor & Black Custom Clothiers\",\"primaryLabelValue\":\"Astor & Black Custom Clothiers\"}},{\"attributeHeader\":{\"labelValue\":\"AT HOME PERSONAL CARE\",\"primaryLabelValue\":\"AT HOME PERSONAL CARE\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Metro Communications\",\"primaryLabelValue\":\"Atlantic Metro Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Atlantic Remodeling\",\"primaryLabelValue\":\"Atlantic Remodeling\"}},{\"attributeHeader\":{\"labelValue\":\"AtLast Fulfillment\",\"primaryLabelValue\":\"AtLast Fulfillment\"}},{\"attributeHeader\":{\"labelValue\":\"AtTask\",\"primaryLabelValue\":\"AtTask\"}},{\"attributeHeader\":{\"labelValue\":\"Aurora Networks\",\"primaryLabelValue\":\"Aurora Networks\"}},{\"attributeHeader\":{\"labelValue\":\"AutoClaims Direct\",\"primaryLabelValue\":\"AutoClaims Direct\"}},{\"attributeHeader\":{\"labelValue\":\"AvePoint\",\"primaryLabelValue\":\"AvePoint\"}},{\"attributeHeader\":{\"labelValue\":\"BabyEarth\",\"primaryLabelValue\":\"BabyEarth\"}},{\"attributeHeader\":{\"labelValue\":\"Balihoo\",\"primaryLabelValue\":\"Balihoo\"}},{\"attributeHeader\":{\"labelValue\":\"BANC3\",\"primaryLabelValue\":\"BANC3\"}},{\"attributeHeader\":{\"labelValue\":\"Bankers Healthcare Group\",\"primaryLabelValue\":\"Bankers Healthcare Group\"}},{\"attributeHeader\":{\"labelValue\":\"Beal\",\"primaryLabelValue\":\"Beal\"}},{\"attributeHeader\":{\"labelValue\":\"Behavioral Health Group\",\"primaryLabelValue\":\"Behavioral Health Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bioengineering Group\",\"primaryLabelValue\":\"Bioengineering Group\"}},{\"attributeHeader\":{\"labelValue\":\"BITadvisors\",\"primaryLabelValue\":\"BITadvisors\"}},{\"attributeHeader\":{\"labelValue\":\"Blade HQ\",\"primaryLabelValue\":\"Blade HQ\"}},{\"attributeHeader\":{\"labelValue\":\"Blaser's USA\",\"primaryLabelValue\":\"Blaser's USA\"}},{\"attributeHeader\":{\"labelValue\":\"Boon\",\"primaryLabelValue\":\"Boon\"}},{\"attributeHeader\":{\"labelValue\":\"Borrego Solar Systems\",\"primaryLabelValue\":\"Borrego Solar Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Brian Taylor International\",\"primaryLabelValue\":\"Brian Taylor International\"}},{\"attributeHeader\":{\"labelValue\":\"Bridge Energy Group\",\"primaryLabelValue\":\"Bridge Energy Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brighton Cromwell\",\"primaryLabelValue\":\"Brighton Cromwell\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Building I\",\"primaryLabelValue\":\"Building I\"}},{\"attributeHeader\":{\"labelValue\":\"Burstabit Technologies\",\"primaryLabelValue\":\"Burstabit Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Buycastings.com\",\"primaryLabelValue\":\"Buycastings.com\"}},{\"attributeHeader\":{\"labelValue\":\"Cabildo Holdings\",\"primaryLabelValue\":\"Cabildo Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Cable Links Consulting\",\"primaryLabelValue\":\"Cable Links Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Call-Em-All\",\"primaryLabelValue\":\"Call-Em-All\"}},{\"attributeHeader\":{\"labelValue\":\"CallFire\",\"primaryLabelValue\":\"CallFire\"}},{\"attributeHeader\":{\"labelValue\":\"Cambridge NanoTech\",\"primaryLabelValue\":\"Cambridge NanoTech\"}},{\"attributeHeader\":{\"labelValue\":\"Camp Bow Wow\",\"primaryLabelValue\":\"Camp Bow Wow\"}},{\"attributeHeader\":{\"labelValue\":\"Campus Habitat\",\"primaryLabelValue\":\"Campus Habitat\"}},{\"attributeHeader\":{\"labelValue\":\"Caspio\",\"primaryLabelValue\":\"Caspio\"}},{\"attributeHeader\":{\"labelValue\":\"Castor & Pollux Pet Works\",\"primaryLabelValue\":\"Castor & Pollux Pet Works\"}},{\"attributeHeader\":{\"labelValue\":\"CCG Partners\",\"primaryLabelValue\":\"CCG Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Celergo\",\"primaryLabelValue\":\"Celergo\"}},{\"attributeHeader\":{\"labelValue\":\"CFM Engineering\",\"primaryLabelValue\":\"CFM Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Chameleon Integrated Services\",\"primaryLabelValue\":\"Chameleon Integrated Services\"}},{\"attributeHeader\":{\"labelValue\":\"Charity Dynamics\",\"primaryLabelValue\":\"Charity Dynamics\"}},{\"attributeHeader\":{\"labelValue\":\"Charming Charlie\",\"primaryLabelValue\":\"Charming Charlie\"}},{\"attributeHeader\":{\"labelValue\":\"Chasing Fireflies\",\"primaryLabelValue\":\"Chasing Fireflies\"}},{\"attributeHeader\":{\"labelValue\":\"Clarabridge\",\"primaryLabelValue\":\"Clarabridge\"}},{\"attributeHeader\":{\"labelValue\":\"CLEAResult Consulting\",\"primaryLabelValue\":\"CLEAResult Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Clearlink\",\"primaryLabelValue\":\"Clearlink\"}},{\"attributeHeader\":{\"labelValue\":\"Climate Pros\",\"primaryLabelValue\":\"Climate Pros\"}},{\"attributeHeader\":{\"labelValue\":\"Cloud 9 Living\",\"primaryLabelValue\":\"Cloud 9 Living\"}},{\"attributeHeader\":{\"labelValue\":\"Clovis\",\"primaryLabelValue\":\"Clovis\"}},{\"attributeHeader\":{\"labelValue\":\"Codexis\",\"primaryLabelValue\":\"Codexis\"}},{\"attributeHeader\":{\"labelValue\":\"Cogent Fibre\",\"primaryLabelValue\":\"Cogent Fibre\"}},{\"attributeHeader\":{\"labelValue\":\"Coleman Research Group\",\"primaryLabelValue\":\"Coleman Research Group\"}},{\"attributeHeader\":{\"labelValue\":\"Collages.net\",\"primaryLabelValue\":\"Collages.net\"}},{\"attributeHeader\":{\"labelValue\":\"Comfort Medical Supply\",\"primaryLabelValue\":\"Comfort Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Commdex Consulting\",\"primaryLabelValue\":\"Commdex Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Community Impact Newspaper\",\"primaryLabelValue\":\"Community Impact Newspaper\"}},{\"attributeHeader\":{\"labelValue\":\"Compass Solutions\",\"primaryLabelValue\":\"Compass Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Conductor\",\"primaryLabelValue\":\"Conductor\"}},{\"attributeHeader\":{\"labelValue\":\"Connexion Technologies\",\"primaryLabelValue\":\"Connexion Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Consero\",\"primaryLabelValue\":\"Consero\"}},{\"attributeHeader\":{\"labelValue\":\"Consolidated Waste Management\",\"primaryLabelValue\":\"Consolidated Waste Management\"}},{\"attributeHeader\":{\"labelValue\":\"Convio\",\"primaryLabelValue\":\"Convio\"}},{\"attributeHeader\":{\"labelValue\":\"Corporate Brokers\",\"primaryLabelValue\":\"Corporate Brokers\"}},{\"attributeHeader\":{\"labelValue\":\"CoSentry\",\"primaryLabelValue\":\"CoSentry\"}},{\"attributeHeader\":{\"labelValue\":\"Cosmetic Solutions\",\"primaryLabelValue\":\"Cosmetic Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"CPX Interactive\",\"primaryLabelValue\":\"CPX Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Critical Media\",\"primaryLabelValue\":\"Critical Media\"}},{\"attributeHeader\":{\"labelValue\":\"Crystal Clear Technologies\",\"primaryLabelValue\":\"Crystal Clear Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Cubix Latin America\",\"primaryLabelValue\":\"Cubix Latin America\"}},{\"attributeHeader\":{\"labelValue\":\"Cymphonix\",\"primaryLabelValue\":\"Cymphonix\"}},{\"attributeHeader\":{\"labelValue\":\"Davinci Virtual Office Solutions\",\"primaryLabelValue\":\"Davinci Virtual Office Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Daytner Construction\",\"primaryLabelValue\":\"Daytner Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DealerSocket\",\"primaryLabelValue\":\"DealerSocket\"}},{\"attributeHeader\":{\"labelValue\":\"Dean Media Group\",\"primaryLabelValue\":\"Dean Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Debtmerica\",\"primaryLabelValue\":\"Debtmerica\"}},{\"attributeHeader\":{\"labelValue\":\"Delan Associates\",\"primaryLabelValue\":\"Delan Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Dennis Corporation\",\"primaryLabelValue\":\"Dennis Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Dexter Field Services\",\"primaryLabelValue\":\"Dexter Field Services\"}},{\"attributeHeader\":{\"labelValue\":\"Dialect Technologies\",\"primaryLabelValue\":\"Dialect Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Dice Electronics\",\"primaryLabelValue\":\"Dice Electronics\"}},{\"attributeHeader\":{\"labelValue\":\"Dicom Solutions\",\"primaryLabelValue\":\"Dicom Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Diplomat Specialty Pharmacy\",\"primaryLabelValue\":\"Diplomat Specialty Pharmacy\"}},{\"attributeHeader\":{\"labelValue\":\"DiscountElectronics.com\",\"primaryLabelValue\":\"DiscountElectronics.com\"}},{\"attributeHeader\":{\"labelValue\":\"DKW Communications\",\"primaryLabelValue\":\"DKW Communications\"}},{\"attributeHeader\":{\"labelValue\":\"DMC Construction\",\"primaryLabelValue\":\"DMC Construction\"}},{\"attributeHeader\":{\"labelValue\":\"DMS International\",\"primaryLabelValue\":\"DMS International\"}},{\"attributeHeader\":{\"labelValue\":\"Dukas Public Relations\",\"primaryLabelValue\":\"Dukas Public Relations\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalabs\",\"primaryLabelValue\":\"Dynalabs\"}},{\"attributeHeader\":{\"labelValue\":\"Dynalene\",\"primaryLabelValue\":\"Dynalene\"}},{\"attributeHeader\":{\"labelValue\":\"E&E Enterprises Global\",\"primaryLabelValue\":\"E&E Enterprises Global\"}},{\"attributeHeader\":{\"labelValue\":\"e2b Teknologies\",\"primaryLabelValue\":\"e2b Teknologies\"}},{\"attributeHeader\":{\"labelValue\":\"Earthbound Media Group\",\"primaryLabelValue\":\"Earthbound Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"eBizAutos\",\"primaryLabelValue\":\"eBizAutos\"}},{\"attributeHeader\":{\"labelValue\":\"eBridge Solutions\",\"primaryLabelValue\":\"eBridge Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"eCardio Diagnostics\",\"primaryLabelValue\":\"eCardio Diagnostics\"}},{\"attributeHeader\":{\"labelValue\":\"EcomNets\",\"primaryLabelValue\":\"EcomNets\"}},{\"attributeHeader\":{\"labelValue\":\"Eco-Products\",\"primaryLabelValue\":\"Eco-Products\"}},{\"attributeHeader\":{\"labelValue\":\"EcoTech Marine\",\"primaryLabelValue\":\"EcoTech Marine\"}},{\"attributeHeader\":{\"labelValue\":\"ELC Technologies\",\"primaryLabelValue\":\"ELC Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Merchant Solutions\",\"primaryLabelValue\":\"Elite Merchant Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Elite Recruiting Group\",\"primaryLabelValue\":\"Elite Recruiting Group\"}},{\"attributeHeader\":{\"labelValue\":\"ElJet Aviation Services\",\"primaryLabelValue\":\"ElJet Aviation Services\"}},{\"attributeHeader\":{\"labelValue\":\"eMason\",\"primaryLabelValue\":\"eMason\"}},{\"attributeHeader\":{\"labelValue\":\"EMBER\",\"primaryLabelValue\":\"EMBER\"}},{\"attributeHeader\":{\"labelValue\":\"E-merging Technologies Group\",\"primaryLabelValue\":\"E-merging Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Eminent Technology Solutions\",\"primaryLabelValue\":\"Eminent Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Enalasys\",\"primaryLabelValue\":\"Enalasys\"}},{\"attributeHeader\":{\"labelValue\":\"EndoChoice\",\"primaryLabelValue\":\"EndoChoice\"}},{\"attributeHeader\":{\"labelValue\":\"Engineering & Computer Simulations\",\"primaryLabelValue\":\"Engineering & Computer Simulations\"}},{\"attributeHeader\":{\"labelValue\":\"Epicenter Network\",\"primaryLabelValue\":\"Epicenter Network\"}},{\"attributeHeader\":{\"labelValue\":\"ERP Analysts\",\"primaryLabelValue\":\"ERP Analysts\"}},{\"attributeHeader\":{\"labelValue\":\"ERT\",\"primaryLabelValue\":\"ERT\"}},{\"attributeHeader\":{\"labelValue\":\"eTERA Consulting\",\"primaryLabelValue\":\"eTERA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Ethertronics\",\"primaryLabelValue\":\"Ethertronics\"}},{\"attributeHeader\":{\"labelValue\":\"Evolve\",\"primaryLabelValue\":\"Evolve\"}},{\"attributeHeader\":{\"labelValue\":\"Evolvent Technologies\",\"primaryLabelValue\":\"Evolvent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Evolver\",\"primaryLabelValue\":\"Evolver\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Construction\",\"primaryLabelValue\":\"Expert Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Expert Service Providers\",\"primaryLabelValue\":\"Expert Service Providers\"}},{\"attributeHeader\":{\"labelValue\":\"Extend Health\",\"primaryLabelValue\":\"Extend Health\"}},{\"attributeHeader\":{\"labelValue\":\"Extended Results\",\"primaryLabelValue\":\"Extended Results\"}},{\"attributeHeader\":{\"labelValue\":\"Fab Fours\",\"primaryLabelValue\":\"Fab Fours\"}},{\"attributeHeader\":{\"labelValue\":\"Factory 360\",\"primaryLabelValue\":\"Factory 360\"}},{\"attributeHeader\":{\"labelValue\":\"Falcon Road Maintenance Equipment\",\"primaryLabelValue\":\"Falcon Road Maintenance Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Family Marketing\",\"primaryLabelValue\":\"Family Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Fibertek\",\"primaryLabelValue\":\"Fibertek\"}},{\"attributeHeader\":{\"labelValue\":\"Findaway World\",\"primaryLabelValue\":\"Findaway World\"}},{\"attributeHeader\":{\"labelValue\":\"Finit Solutions\",\"primaryLabelValue\":\"Finit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Fisen\",\"primaryLabelValue\":\"Fisen\"}},{\"attributeHeader\":{\"labelValue\":\"Fitness Anywhere\",\"primaryLabelValue\":\"Fitness Anywhere\"}},{\"attributeHeader\":{\"labelValue\":\"Five Nines Technology Group\",\"primaryLabelValue\":\"Five Nines Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Flipswap\",\"primaryLabelValue\":\"Flipswap\"}},{\"attributeHeader\":{\"labelValue\":\"Foreground Security\",\"primaryLabelValue\":\"Foreground Security\"}},{\"attributeHeader\":{\"labelValue\":\"Forensic Fluids Laboratories\",\"primaryLabelValue\":\"Forensic Fluids Laboratories\"}},{\"attributeHeader\":{\"labelValue\":\"Franklin American Mortgage\",\"primaryLabelValue\":\"Franklin American Mortgage\"}},{\"attributeHeader\":{\"labelValue\":\"FranNet\",\"primaryLabelValue\":\"FranNet\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Group\",\"primaryLabelValue\":\"Freedom Group\"}},{\"attributeHeader\":{\"labelValue\":\"Freedom Health\",\"primaryLabelValue\":\"Freedom Health\"}},{\"attributeHeader\":{\"labelValue\":\"FTRANS\",\"primaryLabelValue\":\"FTRANS\"}},{\"attributeHeader\":{\"labelValue\":\"Furnace MFG\",\"primaryLabelValue\":\"Furnace MFG\"}},{\"attributeHeader\":{\"labelValue\":\"G5 Search Marketing\",\"primaryLabelValue\":\"G5 Search Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Galen Healthcare Solutions\",\"primaryLabelValue\":\"Galen Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GameFly\",\"primaryLabelValue\":\"GameFly\"}},{\"attributeHeader\":{\"labelValue\":\"Gasch Printing\",\"primaryLabelValue\":\"Gasch Printing\"}},{\"attributeHeader\":{\"labelValue\":\"Gatehouse Holdings\",\"primaryLabelValue\":\"Gatehouse Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"GATR Technologies\",\"primaryLabelValue\":\"GATR Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Gazelle\",\"primaryLabelValue\":\"Gazelle\"}},{\"attributeHeader\":{\"labelValue\":\"GBL Systems\",\"primaryLabelValue\":\"GBL Systems\"}},{\"attributeHeader\":{\"labelValue\":\"GeBBS Healthcare Solutions\",\"primaryLabelValue\":\"GeBBS Healthcare Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Genband\",\"primaryLabelValue\":\"Genband\"}},{\"attributeHeader\":{\"labelValue\":\"Genesis Today\",\"primaryLabelValue\":\"Genesis Today\"}},{\"attributeHeader\":{\"labelValue\":\"GetWireless\",\"primaryLabelValue\":\"GetWireless\"}},{\"attributeHeader\":{\"labelValue\":\"Glacier Bay\",\"primaryLabelValue\":\"Glacier Bay\"}},{\"attributeHeader\":{\"labelValue\":\"Global Business Consulting Services\",\"primaryLabelValue\":\"Global Business Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Goldline International\",\"primaryLabelValue\":\"Goldline International\"}},{\"attributeHeader\":{\"labelValue\":\"Goodman Networks\",\"primaryLabelValue\":\"Goodman Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Government Contract Solutions\",\"primaryLabelValue\":\"Government Contract Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"GPS Insight\",\"primaryLabelValue\":\"GPS Insight\"}},{\"attributeHeader\":{\"labelValue\":\"Great Expressions Dental Centers\",\"primaryLabelValue\":\"Great Expressions Dental Centers\"}},{\"attributeHeader\":{\"labelValue\":\"GreenLogic\",\"primaryLabelValue\":\"GreenLogic\"}},{\"attributeHeader\":{\"labelValue\":\"groSolar\",\"primaryLabelValue\":\"groSolar\"}},{\"attributeHeader\":{\"labelValue\":\"GrubHub.com\",\"primaryLabelValue\":\"GrubHub.com\"}},{\"attributeHeader\":{\"labelValue\":\"GSPANN Technologies\",\"primaryLabelValue\":\"GSPANN Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"GSS Gear\",\"primaryLabelValue\":\"GSS Gear\"}},{\"attributeHeader\":{\"labelValue\":\"Guy Brown Products\",\"primaryLabelValue\":\"Guy Brown Products\"}},{\"attributeHeader\":{\"labelValue\":\"H2 Performance Consulting\",\"primaryLabelValue\":\"H2 Performance Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"HiDef Lifestyle\",\"primaryLabelValue\":\"HiDef Lifestyle\"}},{\"attributeHeader\":{\"labelValue\":\"Hightowers Petroleum\",\"primaryLabelValue\":\"Hightowers Petroleum\"}},{\"attributeHeader\":{\"labelValue\":\"Hillard Heintze\",\"primaryLabelValue\":\"Hillard Heintze\"}},{\"attributeHeader\":{\"labelValue\":\"HoldCube\",\"primaryLabelValue\":\"HoldCube\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Oxygen\",\"primaryLabelValue\":\"Hometown Oxygen\"}},{\"attributeHeader\":{\"labelValue\":\"Hometown Telecom\",\"primaryLabelValue\":\"Hometown Telecom\"}},{\"attributeHeader\":{\"labelValue\":\"Hooah\",\"primaryLabelValue\":\"Hooah\"}},{\"attributeHeader\":{\"labelValue\":\"HSR General Engineering Contractors\",\"primaryLabelValue\":\"HSR General Engineering Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"I.T. Source\",\"primaryLabelValue\":\"I.T. Source\"}},{\"attributeHeader\":{\"labelValue\":\"i3Logic\",\"primaryLabelValue\":\"i3Logic\"}},{\"attributeHeader\":{\"labelValue\":\"Iasta\",\"primaryLabelValue\":\"Iasta\"}},{\"attributeHeader\":{\"labelValue\":\"iContact\",\"primaryLabelValue\":\"iContact\"}},{\"attributeHeader\":{\"labelValue\":\"Ignify\",\"primaryLabelValue\":\"Ignify\"}},{\"attributeHeader\":{\"labelValue\":\"IguanaMed\",\"primaryLabelValue\":\"IguanaMed\"}},{\"attributeHeader\":{\"labelValue\":\"iLuMinA Solutions\",\"primaryLabelValue\":\"iLuMinA Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"IMC Consulting\",\"primaryLabelValue\":\"IMC Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"IMVU\",\"primaryLabelValue\":\"IMVU\"}},{\"attributeHeader\":{\"labelValue\":\"imwave\",\"primaryLabelValue\":\"imwave\"}},{\"attributeHeader\":{\"labelValue\":\"InBoxer\",\"primaryLabelValue\":\"InBoxer\"}},{\"attributeHeader\":{\"labelValue\":\"Indtai\",\"primaryLabelValue\":\"Indtai\"}},{\"attributeHeader\":{\"labelValue\":\"IneoQuest Technologies\",\"primaryLabelValue\":\"IneoQuest Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Business Systems\",\"primaryLabelValue\":\"Infinity Business Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Roofing & Siding\",\"primaryLabelValue\":\"Infinity Roofing & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Infinity Technology\",\"primaryLabelValue\":\"Infinity Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Infomatics\",\"primaryLabelValue\":\"Infomatics\"}},{\"attributeHeader\":{\"labelValue\":\"Information Experts\",\"primaryLabelValue\":\"Information Experts\"}},{\"attributeHeader\":{\"labelValue\":\"Infovision Technologies\",\"primaryLabelValue\":\"Infovision Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Infoway Software\",\"primaryLabelValue\":\"Infoway Software\"}},{\"attributeHeader\":{\"labelValue\":\"Infusionsoft\",\"primaryLabelValue\":\"Infusionsoft\"}},{\"attributeHeader\":{\"labelValue\":\"Inlet Technologies\",\"primaryLabelValue\":\"Inlet Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Innex\",\"primaryLabelValue\":\"Innex\"}},{\"attributeHeader\":{\"labelValue\":\"Insignia Technology Services\",\"primaryLabelValue\":\"Insignia Technology Services\"}},{\"attributeHeader\":{\"labelValue\":\"Insurance Care Direct\",\"primaryLabelValue\":\"Insurance Care Direct\"}},{\"attributeHeader\":{\"labelValue\":\"Integrated Mortgage Solutions\",\"primaryLabelValue\":\"Integrated Mortgage Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Intekras\",\"primaryLabelValue\":\"Intekras\"}},{\"attributeHeader\":{\"labelValue\":\"Intela\",\"primaryLabelValue\":\"Intela\"}},{\"attributeHeader\":{\"labelValue\":\"Interactive Solutions (PA)\",\"primaryLabelValue\":\"Interactive Solutions (PA)\"}},{\"attributeHeader\":{\"labelValue\":\"InterCon\",\"primaryLabelValue\":\"InterCon\"}},{\"attributeHeader\":{\"labelValue\":\"Interfacial Solutions\",\"primaryLabelValue\":\"Interfacial Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Interlex Communications\",\"primaryLabelValue\":\"Interlex Communications\"}},{\"attributeHeader\":{\"labelValue\":\"International Inspirations\",\"primaryLabelValue\":\"International Inspirations\"}},{\"attributeHeader\":{\"labelValue\":\"Interra Health\",\"primaryLabelValue\":\"Interra Health\"}},{\"attributeHeader\":{\"labelValue\":\"Interspire\",\"primaryLabelValue\":\"Interspire\"}},{\"attributeHeader\":{\"labelValue\":\"InterSys Consulting\",\"primaryLabelValue\":\"InterSys Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Invizion\",\"primaryLabelValue\":\"Invizion\"}},{\"attributeHeader\":{\"labelValue\":\"ion interactive\",\"primaryLabelValue\":\"ion interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Ionic Media\",\"primaryLabelValue\":\"Ionic Media\"}},{\"attributeHeader\":{\"labelValue\":\"iovation\",\"primaryLabelValue\":\"iovation\"}},{\"attributeHeader\":{\"labelValue\":\"IP5280 Communications\",\"primaryLabelValue\":\"IP5280 Communications\"}},{\"attributeHeader\":{\"labelValue\":\"IPKeys Technologies\",\"primaryLabelValue\":\"IPKeys Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Isotech Pest Management\",\"primaryLabelValue\":\"Isotech Pest Management\"}},{\"attributeHeader\":{\"labelValue\":\"IT Authorities\",\"primaryLabelValue\":\"IT Authorities\"}},{\"attributeHeader\":{\"labelValue\":\"ITA International\",\"primaryLabelValue\":\"ITA International\"}},{\"attributeHeader\":{\"labelValue\":\"ITG Solutions\",\"primaryLabelValue\":\"ITG Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ItsHot.com\",\"primaryLabelValue\":\"ItsHot.com\"}},{\"attributeHeader\":{\"labelValue\":\"J.R. Mannes Defense Services\",\"primaryLabelValue\":\"J.R. Mannes Defense Services\"}},{\"attributeHeader\":{\"labelValue\":\"Javen Technologies\",\"primaryLabelValue\":\"Javen Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"JeffreyM Consulting\",\"primaryLabelValue\":\"JeffreyM Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"JH Global Services\",\"primaryLabelValue\":\"JH Global Services\"}},{\"attributeHeader\":{\"labelValue\":\"JKMilne Asset Management\",\"primaryLabelValue\":\"JKMilne Asset Management\"}},{\"attributeHeader\":{\"labelValue\":\"Jobs2Web\",\"primaryLabelValue\":\"Jobs2Web\"}},{\"attributeHeader\":{\"labelValue\":\"Keen Infotek\",\"primaryLabelValue\":\"Keen Infotek\"}},{\"attributeHeader\":{\"labelValue\":\"KidWise Outdoor Products\",\"primaryLabelValue\":\"KidWise Outdoor Products\"}},{\"attributeHeader\":{\"labelValue\":\"Kimball Concepts\",\"primaryLabelValue\":\"Kimball Concepts\"}},{\"attributeHeader\":{\"labelValue\":\"KnowledgeLake\",\"primaryLabelValue\":\"KnowledgeLake\"}},{\"attributeHeader\":{\"labelValue\":\"Kyriba\",\"primaryLabelValue\":\"Kyriba\"}},{\"attributeHeader\":{\"labelValue\":\"LawyerLink\",\"primaryLabelValue\":\"LawyerLink\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Flash\",\"primaryLabelValue\":\"Lead Flash\"}},{\"attributeHeader\":{\"labelValue\":\"Lead Tracking Solutions\",\"primaryLabelValue\":\"Lead Tracking Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Levelwing Media\",\"primaryLabelValue\":\"Levelwing Media\"}},{\"attributeHeader\":{\"labelValue\":\"LifeWave\",\"primaryLabelValue\":\"LifeWave\"}},{\"attributeHeader\":{\"labelValue\":\"Link America\",\"primaryLabelValue\":\"Link America\"}},{\"attributeHeader\":{\"labelValue\":\"Link Solutions\",\"primaryLabelValue\":\"Link Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Liquid Motors\",\"primaryLabelValue\":\"Liquid Motors\"}},{\"attributeHeader\":{\"labelValue\":\"Logica\",\"primaryLabelValue\":\"Logica\"}},{\"attributeHeader\":{\"labelValue\":\"LPS Integration\",\"primaryLabelValue\":\"LPS Integration\"}},{\"attributeHeader\":{\"labelValue\":\"M&S Technologies\",\"primaryLabelValue\":\"M&S Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"M2 Media Group\",\"primaryLabelValue\":\"M2 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"MacUpdate\",\"primaryLabelValue\":\"MacUpdate\"}},{\"attributeHeader\":{\"labelValue\":\"Mad*Pow\",\"primaryLabelValue\":\"Mad*Pow\"}},{\"attributeHeader\":{\"labelValue\":\"Maga Design Group\",\"primaryLabelValue\":\"Maga Design Group\"}},{\"attributeHeader\":{\"labelValue\":\"Magnuson Hotels\",\"primaryLabelValue\":\"Magnuson Hotels\"}},{\"attributeHeader\":{\"labelValue\":\"Manage Mobility\",\"primaryLabelValue\":\"Manage Mobility\"}},{\"attributeHeader\":{\"labelValue\":\"Manufacturing Technical Solutions\",\"primaryLabelValue\":\"Manufacturing Technical Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Martin Logistics\",\"primaryLabelValue\":\"Martin Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Maverick Constructors\",\"primaryLabelValue\":\"Maverick Constructors\"}},{\"attributeHeader\":{\"labelValue\":\"McDonald Hearing Aid Center\",\"primaryLabelValue\":\"McDonald Hearing Aid Center\"}},{\"attributeHeader\":{\"labelValue\":\"MED Trends\",\"primaryLabelValue\":\"MED Trends\"}},{\"attributeHeader\":{\"labelValue\":\"MedPro Rx\",\"primaryLabelValue\":\"MedPro Rx\"}},{\"attributeHeader\":{\"labelValue\":\"MedVantx\",\"primaryLabelValue\":\"MedVantx\"}},{\"attributeHeader\":{\"labelValue\":\"Merchant Warehouse\",\"primaryLabelValue\":\"Merchant Warehouse\"}},{\"attributeHeader\":{\"labelValue\":\"Mercom\",\"primaryLabelValue\":\"Mercom\"}},{\"attributeHeader\":{\"labelValue\":\"Meru Networks\",\"primaryLabelValue\":\"Meru Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Meso Group\",\"primaryLabelValue\":\"Meso Group\"}},{\"attributeHeader\":{\"labelValue\":\"Micah Group Environmental Contractors\",\"primaryLabelValue\":\"Micah Group Environmental Contractors\"}},{\"attributeHeader\":{\"labelValue\":\"MicroTech\",\"primaryLabelValue\":\"MicroTech\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium\",\"primaryLabelValue\":\"Millennium\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Medical\",\"primaryLabelValue\":\"Millennium Medical\"}},{\"attributeHeader\":{\"labelValue\":\"Millennium Pharmacy Systems\",\"primaryLabelValue\":\"Millennium Pharmacy Systems\"}},{\"attributeHeader\":{\"labelValue\":\"MindSmack.com\",\"primaryLabelValue\":\"MindSmack.com\"}},{\"attributeHeader\":{\"labelValue\":\"MMC Systems\",\"primaryLabelValue\":\"MMC Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Model Metrics\",\"primaryLabelValue\":\"Model Metrics\"}},{\"attributeHeader\":{\"labelValue\":\"Molding Box\",\"primaryLabelValue\":\"Molding Box\"}},{\"attributeHeader\":{\"labelValue\":\"Monster Scooter Parts\",\"primaryLabelValue\":\"Monster Scooter Parts\"}},{\"attributeHeader\":{\"labelValue\":\"MotionPoint\",\"primaryLabelValue\":\"MotionPoint\"}},{\"attributeHeader\":{\"labelValue\":\"Mu Sigma\",\"primaryLabelValue\":\"Mu Sigma\"}},{\"attributeHeader\":{\"labelValue\":\"MyCEO\",\"primaryLabelValue\":\"MyCEO\"}},{\"attributeHeader\":{\"labelValue\":\"myMatrixx\",\"primaryLabelValue\":\"myMatrixx\"}},{\"attributeHeader\":{\"labelValue\":\"Nashville Ticket\",\"primaryLabelValue\":\"Nashville Ticket\"}},{\"attributeHeader\":{\"labelValue\":\"National Positions\",\"primaryLabelValue\":\"National Positions\"}},{\"attributeHeader\":{\"labelValue\":\"National Sales & Supply\",\"primaryLabelValue\":\"National Sales & Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Navigator Management Partners\",\"primaryLabelValue\":\"Navigator Management Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Neighborhood Diabetes\",\"primaryLabelValue\":\"Neighborhood Diabetes\"}},{\"attributeHeader\":{\"labelValue\":\"Nerdery Interactive Labs\",\"primaryLabelValue\":\"Nerdery Interactive Labs\"}},{\"attributeHeader\":{\"labelValue\":\"NETech\",\"primaryLabelValue\":\"NETech\"}},{\"attributeHeader\":{\"labelValue\":\"NeuroNexus Technologies\",\"primaryLabelValue\":\"NeuroNexus Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Neutron Interactive\",\"primaryLabelValue\":\"Neutron Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"New Dawn Technologies\",\"primaryLabelValue\":\"New Dawn Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"New West Technologies\",\"primaryLabelValue\":\"New West Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"NII Brokerage\",\"primaryLabelValue\":\"NII Brokerage\"}},{\"attributeHeader\":{\"labelValue\":\"Nitel\",\"primaryLabelValue\":\"Nitel\"}},{\"attributeHeader\":{\"labelValue\":\"NitNeil Partners\",\"primaryLabelValue\":\"NitNeil Partners\"}},{\"attributeHeader\":{\"labelValue\":\"N-Tech Solutions\",\"primaryLabelValue\":\"N-Tech Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Nuclear Medicine Professionals\",\"primaryLabelValue\":\"Nuclear Medicine Professionals\"}},{\"attributeHeader\":{\"labelValue\":\"Nutri-Force Nutrition\",\"primaryLabelValue\":\"Nutri-Force Nutrition\"}},{\"attributeHeader\":{\"labelValue\":\"Obvius Holdings\",\"primaryLabelValue\":\"Obvius Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"Ocenture\",\"primaryLabelValue\":\"Ocenture\"}},{\"attributeHeader\":{\"labelValue\":\"oDesk\",\"primaryLabelValue\":\"oDesk\"}},{\"attributeHeader\":{\"labelValue\":\"Odyssey Systems Consulting Group\",\"primaryLabelValue\":\"Odyssey Systems Consulting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Office Remedies\",\"primaryLabelValue\":\"Office Remedies\"}},{\"attributeHeader\":{\"labelValue\":\"OHI\",\"primaryLabelValue\":\"OHI\"}},{\"attributeHeader\":{\"labelValue\":\"Online Commerce Group\",\"primaryLabelValue\":\"Online Commerce Group\"}},{\"attributeHeader\":{\"labelValue\":\"Online Rewards\",\"primaryLabelValue\":\"Online Rewards\"}},{\"attributeHeader\":{\"labelValue\":\"Ookla\",\"primaryLabelValue\":\"Ookla\"}},{\"attributeHeader\":{\"labelValue\":\"Orion Systems Integrators\",\"primaryLabelValue\":\"Orion Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"P3S\",\"primaryLabelValue\":\"P3S\"}},{\"attributeHeader\":{\"labelValue\":\"Pandigital\",\"primaryLabelValue\":\"Pandigital\"}},{\"attributeHeader\":{\"labelValue\":\"Pandora\",\"primaryLabelValue\":\"Pandora\"}},{\"attributeHeader\":{\"labelValue\":\"PanTerra Networks\",\"primaryLabelValue\":\"PanTerra Networks\"}},{\"attributeHeader\":{\"labelValue\":\"PARS Environmental\",\"primaryLabelValue\":\"PARS Environmental\"}},{\"attributeHeader\":{\"labelValue\":\"Passport Health Communications\",\"primaryLabelValue\":\"Passport Health Communications\"}},{\"attributeHeader\":{\"labelValue\":\"PayLease\",\"primaryLabelValue\":\"PayLease\"}},{\"attributeHeader\":{\"labelValue\":\"Phacil\",\"primaryLabelValue\":\"Phacil\"}},{\"attributeHeader\":{\"labelValue\":\"Phylogy\",\"primaryLabelValue\":\"Phylogy\"}},{\"attributeHeader\":{\"labelValue\":\"Physicians' Pharmaceutical\",\"primaryLabelValue\":\"Physicians' Pharmaceutical\"}},{\"attributeHeader\":{\"labelValue\":\"Platinum Solutions\",\"primaryLabelValue\":\"Platinum Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"PlaySpan\",\"primaryLabelValue\":\"PlaySpan\"}},{\"attributeHeader\":{\"labelValue\":\"Point One Technologies\",\"primaryLabelValue\":\"Point One Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Pontiflex\",\"primaryLabelValue\":\"Pontiflex\"}},{\"attributeHeader\":{\"labelValue\":\"Postmodern\",\"primaryLabelValue\":\"Postmodern\"}},{\"attributeHeader\":{\"labelValue\":\"Post-Up Stand\",\"primaryLabelValue\":\"Post-Up Stand\"}},{\"attributeHeader\":{\"labelValue\":\"Power Windows & Siding\",\"primaryLabelValue\":\"Power Windows & Siding\"}},{\"attributeHeader\":{\"labelValue\":\"Premier Integrity Solutions\",\"primaryLabelValue\":\"Premier Integrity Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Prenova\",\"primaryLabelValue\":\"Prenova\"}},{\"attributeHeader\":{\"labelValue\":\"PriceSpective\",\"primaryLabelValue\":\"PriceSpective\"}},{\"attributeHeader\":{\"labelValue\":\"Principle Solutions Group\",\"primaryLabelValue\":\"Principle Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Priority Worldwide Services\",\"primaryLabelValue\":\"Priority Worldwide Services\"}},{\"attributeHeader\":{\"labelValue\":\"Probus OneTouch\",\"primaryLabelValue\":\"Probus OneTouch\"}},{\"attributeHeader\":{\"labelValue\":\"Professional Solutions\",\"primaryLabelValue\":\"Professional Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Projectline Services\",\"primaryLabelValue\":\"Projectline Services\"}},{\"attributeHeader\":{\"labelValue\":\"Prudent Technologies\",\"primaryLabelValue\":\"Prudent Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Psychological Software Solutions\",\"primaryLabelValue\":\"Psychological Software Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Pursuit of Excellence\",\"primaryLabelValue\":\"Pursuit of Excellence\"}},{\"attributeHeader\":{\"labelValue\":\"QuoteWizard\",\"primaryLabelValue\":\"QuoteWizard\"}},{\"attributeHeader\":{\"labelValue\":\"Randa Solutions\",\"primaryLabelValue\":\"Randa Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"RBA Consulting\",\"primaryLabelValue\":\"RBA Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Re:think Group\",\"primaryLabelValue\":\"Re:think Group\"}},{\"attributeHeader\":{\"labelValue\":\"ReadyTalk\",\"primaryLabelValue\":\"ReadyTalk\"}},{\"attributeHeader\":{\"labelValue\":\"RealD\",\"primaryLabelValue\":\"RealD\"}},{\"attributeHeader\":{\"labelValue\":\"Reliance\",\"primaryLabelValue\":\"Reliance\"}},{\"attributeHeader\":{\"labelValue\":\"Remedy Roofing\",\"primaryLabelValue\":\"Remedy Roofing\"}},{\"attributeHeader\":{\"labelValue\":\"Remote Medical International\",\"primaryLabelValue\":\"Remote Medical International\"}},{\"attributeHeader\":{\"labelValue\":\"rentbits.com\",\"primaryLabelValue\":\"rentbits.com\"}},{\"attributeHeader\":{\"labelValue\":\"Restoration Cleaners\",\"primaryLabelValue\":\"Restoration Cleaners\"}},{\"attributeHeader\":{\"labelValue\":\"RetailWorks Real Estate\",\"primaryLabelValue\":\"RetailWorks Real Estate\"}},{\"attributeHeader\":{\"labelValue\":\"Reuseit\",\"primaryLabelValue\":\"Reuseit\"}},{\"attributeHeader\":{\"labelValue\":\"Reveal Imaging Technologies\",\"primaryLabelValue\":\"Reveal Imaging Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Rice & Gardner Consultants\",\"primaryLabelValue\":\"Rice & Gardner Consultants\"}},{\"attributeHeader\":{\"labelValue\":\"Right at Home\",\"primaryLabelValue\":\"Right at Home\"}},{\"attributeHeader\":{\"labelValue\":\"RigNet\",\"primaryLabelValue\":\"RigNet\"}},{\"attributeHeader\":{\"labelValue\":\"Rise Interactive\",\"primaryLabelValue\":\"Rise Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Robinson Radio\",\"primaryLabelValue\":\"Robinson Radio\"}},{\"attributeHeader\":{\"labelValue\":\"Rockfish Interactive\",\"primaryLabelValue\":\"Rockfish Interactive\"}},{\"attributeHeader\":{\"labelValue\":\"Rollins-PCI Construction\",\"primaryLabelValue\":\"Rollins-PCI Construction\"}},{\"attributeHeader\":{\"labelValue\":\"Ryla\",\"primaryLabelValue\":\"Ryla\"}},{\"attributeHeader\":{\"labelValue\":\"Safety Sam\",\"primaryLabelValue\":\"Safety Sam\"}},{\"attributeHeader\":{\"labelValue\":\"SBG Technology Solutions\",\"primaryLabelValue\":\"SBG Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SCI Consulting Services\",\"primaryLabelValue\":\"SCI Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Scott Brown Media Group\",\"primaryLabelValue\":\"Scott Brown Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"ScreeningONE\",\"primaryLabelValue\":\"ScreeningONE\"}},{\"attributeHeader\":{\"labelValue\":\"Search Technologies\",\"primaryLabelValue\":\"Search Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SecurityMetrics\",\"primaryLabelValue\":\"SecurityMetrics\"}},{\"attributeHeader\":{\"labelValue\":\"Seed Corn Advertising\",\"primaryLabelValue\":\"Seed Corn Advertising\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Helpers\",\"primaryLabelValue\":\"Senior Helpers\"}},{\"attributeHeader\":{\"labelValue\":\"Senior Market Sales\",\"primaryLabelValue\":\"Senior Market Sales\"}},{\"attributeHeader\":{\"labelValue\":\"SenSource\",\"primaryLabelValue\":\"SenSource\"}},{\"attributeHeader\":{\"labelValue\":\"Sensys Networks\",\"primaryLabelValue\":\"Sensys Networks\"}},{\"attributeHeader\":{\"labelValue\":\"SeQual Technologies\",\"primaryLabelValue\":\"SeQual Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Signature Foods\",\"primaryLabelValue\":\"Signature Foods\"}},{\"attributeHeader\":{\"labelValue\":\"SingleHop\",\"primaryLabelValue\":\"SingleHop\"}},{\"attributeHeader\":{\"labelValue\":\"SoftLayer Technologies\",\"primaryLabelValue\":\"SoftLayer Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"SoftNice\",\"primaryLabelValue\":\"SoftNice\"}},{\"attributeHeader\":{\"labelValue\":\"Sound Physicians\",\"primaryLabelValue\":\"Sound Physicians\"}},{\"attributeHeader\":{\"labelValue\":\"Source Technologies\",\"primaryLabelValue\":\"Source Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Space Micro\",\"primaryLabelValue\":\"Space Micro\"}},{\"attributeHeader\":{\"labelValue\":\"Spherexx.com\",\"primaryLabelValue\":\"Spherexx.com\"}},{\"attributeHeader\":{\"labelValue\":\"Spine & Sport\",\"primaryLabelValue\":\"Spine & Sport\"}},{\"attributeHeader\":{\"labelValue\":\"Square One Salon and Spa\",\"primaryLabelValue\":\"Square One Salon and Spa\"}},{\"attributeHeader\":{\"labelValue\":\"Stage 2 Networks\",\"primaryLabelValue\":\"Stage 2 Networks\"}},{\"attributeHeader\":{\"labelValue\":\"Standard Solar\",\"primaryLabelValue\":\"Standard Solar\"}},{\"attributeHeader\":{\"labelValue\":\"STOPS\",\"primaryLabelValue\":\"STOPS\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Micro Systems\",\"primaryLabelValue\":\"Strategic Micro Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Strategic Systems\",\"primaryLabelValue\":\"Strategic Systems\"}},{\"attributeHeader\":{\"labelValue\":\"StumbleUpon\",\"primaryLabelValue\":\"StumbleUpon\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Data Communications\",\"primaryLabelValue\":\"Summit Data Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Summit Solutions\",\"primaryLabelValue\":\"Summit Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"SwarmBuilder\",\"primaryLabelValue\":\"SwarmBuilder\"}},{\"attributeHeader\":{\"labelValue\":\"Swiftpage\",\"primaryLabelValue\":\"Swiftpage\"}},{\"attributeHeader\":{\"labelValue\":\"Synteractive\",\"primaryLabelValue\":\"Synteractive\"}},{\"attributeHeader\":{\"labelValue\":\"Tactile Systems Technology\",\"primaryLabelValue\":\"Tactile Systems Technology\"}},{\"attributeHeader\":{\"labelValue\":\"TAG Employer Services\",\"primaryLabelValue\":\"TAG Employer Services\"}},{\"attributeHeader\":{\"labelValue\":\"TalentBurst\",\"primaryLabelValue\":\"TalentBurst\"}},{\"attributeHeader\":{\"labelValue\":\"Tangoe\",\"primaryLabelValue\":\"Tangoe\"}},{\"attributeHeader\":{\"labelValue\":\"TCoombs & Associates\",\"primaryLabelValue\":\"TCoombs & Associates\"}},{\"attributeHeader\":{\"labelValue\":\"Tea Collection\",\"primaryLabelValue\":\"Tea Collection\"}},{\"attributeHeader\":{\"labelValue\":\"TEAM Companies\",\"primaryLabelValue\":\"TEAM Companies\"}},{\"attributeHeader\":{\"labelValue\":\"Team Epiphany\",\"primaryLabelValue\":\"Team Epiphany\"}},{\"attributeHeader\":{\"labelValue\":\"Technical and Project Engineering\",\"primaryLabelValue\":\"Technical and Project Engineering\"}},{\"attributeHeader\":{\"labelValue\":\"Technical Cable Applications\",\"primaryLabelValue\":\"Technical Cable Applications\"}},{\"attributeHeader\":{\"labelValue\":\"Technovant\",\"primaryLabelValue\":\"Technovant\"}},{\"attributeHeader\":{\"labelValue\":\"Tenable Network Security\",\"primaryLabelValue\":\"Tenable Network Security\"}},{\"attributeHeader\":{\"labelValue\":\"Teracore\",\"primaryLabelValue\":\"Teracore\"}},{\"attributeHeader\":{\"labelValue\":\"TeraThink\",\"primaryLabelValue\":\"TeraThink\"}},{\"attributeHeader\":{\"labelValue\":\"TerraCycle\",\"primaryLabelValue\":\"TerraCycle\"}},{\"attributeHeader\":{\"labelValue\":\"Texas Physical Therapy Specialists\",\"primaryLabelValue\":\"Texas Physical Therapy Specialists\"}},{\"attributeHeader\":{\"labelValue\":\"The Chip\",\"primaryLabelValue\":\"The Chip\"}},{\"attributeHeader\":{\"labelValue\":\"The Elf on the Shelf\",\"primaryLabelValue\":\"The Elf on the Shelf\"}},{\"attributeHeader\":{\"labelValue\":\"The Home Agency\",\"primaryLabelValue\":\"The Home Agency\"}},{\"attributeHeader\":{\"labelValue\":\"The Knowland Group\",\"primaryLabelValue\":\"The Knowland Group\"}},{\"attributeHeader\":{\"labelValue\":\"The McEvoy Administration\",\"primaryLabelValue\":\"The McEvoy Administration\"}},{\"attributeHeader\":{\"labelValue\":\"The Penna Group\",\"primaryLabelValue\":\"The Penna Group\"}},{\"attributeHeader\":{\"labelValue\":\"The PPA Group\",\"primaryLabelValue\":\"The PPA Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Retail Outsource\",\"primaryLabelValue\":\"The Retail Outsource\"}},{\"attributeHeader\":{\"labelValue\":\"The Select Group\",\"primaryLabelValue\":\"The Select Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Visionaire Group\",\"primaryLabelValue\":\"The Visionaire Group\"}},{\"attributeHeader\":{\"labelValue\":\"The Winvale Group\",\"primaryLabelValue\":\"The Winvale Group\"}},{\"attributeHeader\":{\"labelValue\":\"The1stMovement\",\"primaryLabelValue\":\"The1stMovement\"}},{\"attributeHeader\":{\"labelValue\":\"Three Pillar Global\",\"primaryLabelValue\":\"Three Pillar Global\"}},{\"attributeHeader\":{\"labelValue\":\"Titan Wireless\",\"primaryLabelValue\":\"Titan Wireless\"}},{\"attributeHeader\":{\"labelValue\":\"TMone\",\"primaryLabelValue\":\"TMone\"}},{\"attributeHeader\":{\"labelValue\":\"TMSi Logistics\",\"primaryLabelValue\":\"TMSi Logistics\"}},{\"attributeHeader\":{\"labelValue\":\"Top Flite Financial\",\"primaryLabelValue\":\"Top Flite Financial\"}},{\"attributeHeader\":{\"labelValue\":\"Total Hockey\",\"primaryLabelValue\":\"Total Hockey\"}},{\"attributeHeader\":{\"labelValue\":\"Towne Park\",\"primaryLabelValue\":\"Towne Park\"}},{\"attributeHeader\":{\"labelValue\":\"Train Signal\",\"primaryLabelValue\":\"Train Signal\"}},{\"attributeHeader\":{\"labelValue\":\"Travelers Haven\",\"primaryLabelValue\":\"Travelers Haven\"}},{\"attributeHeader\":{\"labelValue\":\"TravelNetSolutions.com\",\"primaryLabelValue\":\"TravelNetSolutions.com\"}},{\"attributeHeader\":{\"labelValue\":\"Triad Web Design\",\"primaryLabelValue\":\"Triad Web Design\"}},{\"attributeHeader\":{\"labelValue\":\"Triangle Direct Media\",\"primaryLabelValue\":\"Triangle Direct Media\"}},{\"attributeHeader\":{\"labelValue\":\"Trinity Building & Construction Management\",\"primaryLabelValue\":\"Trinity Building & Construction Management\"}},{\"attributeHeader\":{\"labelValue\":\"Triple Point Technology\",\"primaryLabelValue\":\"Triple Point Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Triplefin\",\"primaryLabelValue\":\"Triplefin\"}},{\"attributeHeader\":{\"labelValue\":\"Trissential\",\"primaryLabelValue\":\"Trissential\"}},{\"attributeHeader\":{\"labelValue\":\"True Media\",\"primaryLabelValue\":\"True Media\"}},{\"attributeHeader\":{\"labelValue\":\"True Process\",\"primaryLabelValue\":\"True Process\"}},{\"attributeHeader\":{\"labelValue\":\"TrySports\",\"primaryLabelValue\":\"TrySports\"}},{\"attributeHeader\":{\"labelValue\":\"Tucson Embedded Systems\",\"primaryLabelValue\":\"Tucson Embedded Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Tulsa Power Holdings\",\"primaryLabelValue\":\"Tulsa Power Holdings\"}},{\"attributeHeader\":{\"labelValue\":\"uMonitor (Parsam Technologies)\",\"primaryLabelValue\":\"uMonitor (Parsam Technologies)\"}},{\"attributeHeader\":{\"labelValue\":\"Underscore Marketing\",\"primaryLabelValue\":\"Underscore Marketing\"}},{\"attributeHeader\":{\"labelValue\":\"Uniguest\",\"primaryLabelValue\":\"Uniguest\"}},{\"attributeHeader\":{\"labelValue\":\"United States Medical Supply\",\"primaryLabelValue\":\"United States Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Consulting Services\",\"primaryLabelValue\":\"Universal Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"Universal Mind\",\"primaryLabelValue\":\"Universal Mind\"}},{\"attributeHeader\":{\"labelValue\":\"Universal SmartComp\",\"primaryLabelValue\":\"Universal SmartComp\"}},{\"attributeHeader\":{\"labelValue\":\"Uppercase Living\",\"primaryLabelValue\":\"Uppercase Living\"}},{\"attributeHeader\":{\"labelValue\":\"Usablenet\",\"primaryLabelValue\":\"Usablenet\"}},{\"attributeHeader\":{\"labelValue\":\"USr Healthcare\",\"primaryLabelValue\":\"USr Healthcare\"}},{\"attributeHeader\":{\"labelValue\":\"VectorCSP\",\"primaryLabelValue\":\"VectorCSP\"}},{\"attributeHeader\":{\"labelValue\":\"Veloxion\",\"primaryLabelValue\":\"Veloxion\"}},{\"attributeHeader\":{\"labelValue\":\"Venables Bell & Partners\",\"primaryLabelValue\":\"Venables Bell & Partners\"}},{\"attributeHeader\":{\"labelValue\":\"Vendormate\",\"primaryLabelValue\":\"Vendormate\"}},{\"attributeHeader\":{\"labelValue\":\"Ventureforth\",\"primaryLabelValue\":\"Ventureforth\"}},{\"attributeHeader\":{\"labelValue\":\"Veteran Corps of America\",\"primaryLabelValue\":\"Veteran Corps of America\"}},{\"attributeHeader\":{\"labelValue\":\"Veterans Enterprise Technology Solutions\",\"primaryLabelValue\":\"Veterans Enterprise Technology Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"ViaWest\",\"primaryLabelValue\":\"ViaWest\"}},{\"attributeHeader\":{\"labelValue\":\"Vinitech\",\"primaryLabelValue\":\"Vinitech\"}},{\"attributeHeader\":{\"labelValue\":\"VirTex Assembly Services\",\"primaryLabelValue\":\"VirTex Assembly Services\"}},{\"attributeHeader\":{\"labelValue\":\"Visible Technologies\",\"primaryLabelValue\":\"Visible Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Vivo\",\"primaryLabelValue\":\"Vivo\"}},{\"attributeHeader\":{\"labelValue\":\"Vology Data Systems\",\"primaryLabelValue\":\"Vology Data Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Walden Security\",\"primaryLabelValue\":\"Walden Security\"}},{\"attributeHeader\":{\"labelValue\":\"Ward Williston Oil\",\"primaryLabelValue\":\"Ward Williston Oil\"}},{\"attributeHeader\":{\"labelValue\":\"WCG\",\"primaryLabelValue\":\"WCG\"}},{\"attributeHeader\":{\"labelValue\":\"WebHouse\",\"primaryLabelValue\":\"WebHouse\"}},{\"attributeHeader\":{\"labelValue\":\"WhiteHat Security\",\"primaryLabelValue\":\"WhiteHat Security\"}},{\"attributeHeader\":{\"labelValue\":\"Windy City Limousine and Bus\",\"primaryLabelValue\":\"Windy City Limousine and Bus\"}},{\"attributeHeader\":{\"labelValue\":\"Winslow Technology Group\",\"primaryLabelValue\":\"Winslow Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"WnR\",\"primaryLabelValue\":\"WnR\"}},{\"attributeHeader\":{\"labelValue\":\"Worldwide Information Network Systems\",\"primaryLabelValue\":\"Worldwide Information Network Systems\"}},{\"attributeHeader\":{\"labelValue\":\"XpertTech\",\"primaryLabelValue\":\"XpertTech\"}},{\"attributeHeader\":{\"labelValue\":\"Yeti Coolers\",\"primaryLabelValue\":\"Yeti Coolers\"}},{\"attributeHeader\":{\"labelValue\":\"Zempleo\",\"primaryLabelValue\":\"Zempleo\"}},{\"attributeHeader\":{\"labelValue\":\".decimal\",\"primaryLabelValue\":\".decimal\"}},{\"attributeHeader\":{\"labelValue\":\"BlueDot Medical\",\"primaryLabelValue\":\"BlueDot Medical\"}},{\"attributeHeader\":{\"labelValue\":\"BluePay Processing\",\"primaryLabelValue\":\"BluePay Processing\"}},{\"attributeHeader\":{\"labelValue\":\"Bluware\",\"primaryLabelValue\":\"Bluware\"}},{\"attributeHeader\":{\"labelValue\":\"1st in Video - Music World\",\"primaryLabelValue\":\"1st in Video - Music World\"}},{\"attributeHeader\":{\"labelValue\":\"BluWater Consulting\",\"primaryLabelValue\":\"BluWater Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"3balls.com\",\"primaryLabelValue\":\"3balls.com\"}},{\"attributeHeader\":{\"labelValue\":\"3Degrees\",\"primaryLabelValue\":\"3Degrees\"}},{\"attributeHeader\":{\"labelValue\":\"Bodyartforms\",\"primaryLabelValue\":\"Bodyartforms\"}},{\"attributeHeader\":{\"labelValue\":\"BodyScapes Fitness\",\"primaryLabelValue\":\"BodyScapes Fitness\"}},{\"attributeHeader\":{\"labelValue\":\"A Place for Mom\",\"primaryLabelValue\":\"A Place for Mom\"}},{\"attributeHeader\":{\"labelValue\":\"Blue State Digital\",\"primaryLabelValue\":\"Blue State Digital\"}},{\"attributeHeader\":{\"labelValue\":\"Blue Streak Partners\",\"primaryLabelValue\":\"Blue Streak Partners\"}},{\"attributeHeader\":{\"labelValue\":\"14 West\",\"primaryLabelValue\":\"14 West\"}},{\"attributeHeader\":{\"labelValue\":\"Blurb\",\"primaryLabelValue\":\"Blurb\"}},{\"attributeHeader\":{\"labelValue\":\"1-800 We Answer\",\"primaryLabelValue\":\"1-800 We Answer\"}},{\"attributeHeader\":{\"labelValue\":\"Blytheco\",\"primaryLabelValue\":\"Blytheco\"}},{\"attributeHeader\":{\"labelValue\":\"352 Media Group\",\"primaryLabelValue\":\"352 Media Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bob Fernandez & Sons\",\"primaryLabelValue\":\"Bob Fernandez & Sons\"}},{\"attributeHeader\":{\"labelValue\":\"Body Basics Fitness Equipment\",\"primaryLabelValue\":\"Body Basics Fitness Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"49er Communications\",\"primaryLabelValue\":\"49er Communications\"}},{\"attributeHeader\":{\"labelValue\":\"Boies, Schiller & Flexner\",\"primaryLabelValue\":\"Boies, Schiller & Flexner\"}},{\"attributeHeader\":{\"labelValue\":\"7-Eleven\",\"primaryLabelValue\":\"7-Eleven\"}},{\"attributeHeader\":{\"labelValue\":\"Bojangles' Restaurants, Inc.\",\"primaryLabelValue\":\"Bojangles' Restaurants, Inc.\"}},{\"attributeHeader\":{\"labelValue\":\"Boloco\",\"primaryLabelValue\":\"Boloco\"}},{\"attributeHeader\":{\"labelValue\":\"A&C Plastics\",\"primaryLabelValue\":\"A&C Plastics\"}},{\"attributeHeader\":{\"labelValue\":\"Bonterra Consulting\",\"primaryLabelValue\":\"Bonterra Consulting\"}},{\"attributeHeader\":{\"labelValue\":\"Booksfree.com\",\"primaryLabelValue\":\"Booksfree.com\"}},{\"attributeHeader\":{\"labelValue\":\"A.B. Data\",\"primaryLabelValue\":\"A.B. Data\"}},{\"attributeHeader\":{\"labelValue\":\"A+ Mortgage Services\",\"primaryLabelValue\":\"A+ Mortgage Services\"}},{\"attributeHeader\":{\"labelValue\":\"A1 Pool Parts\",\"primaryLabelValue\":\"A1 Pool Parts\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's\",\"primaryLabelValue\":\"Aaron's\"}},{\"attributeHeader\":{\"labelValue\":\"Boston Technology\",\"primaryLabelValue\":\"Boston Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Aaron's Sales and Lease Ownership\",\"primaryLabelValue\":\"Aaron's Sales and Lease Ownership\"}},{\"attributeHeader\":{\"labelValue\":\"Bottom Line Equipment\",\"primaryLabelValue\":\"Bottom Line Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus 24-7\",\"primaryLabelValue\":\"Abacus 24-7\"}},{\"attributeHeader\":{\"labelValue\":\"Abacus Solutions Group\",\"primaryLabelValue\":\"Abacus Solutions Group\"}},{\"attributeHeader\":{\"labelValue\":\"Bowhead Technical and Professional Services\",\"primaryLabelValue\":\"Bowhead Technical and Professional Services\"}},{\"attributeHeader\":{\"labelValue\":\"ABC Security Service\",\"primaryLabelValue\":\"ABC Security Service\"}},{\"attributeHeader\":{\"labelValue\":\"Abraxas\",\"primaryLabelValue\":\"Abraxas\"}},{\"attributeHeader\":{\"labelValue\":\"Box.net\",\"primaryLabelValue\":\"Box.net\"}},{\"attributeHeader\":{\"labelValue\":\"Able Equipment Rental\",\"primaryLabelValue\":\"Able Equipment Rental\"}},{\"attributeHeader\":{\"labelValue\":\"BoxTone\",\"primaryLabelValue\":\"BoxTone\"}},{\"attributeHeader\":{\"labelValue\":\"Bracewell & Giuliani\",\"primaryLabelValue\":\"Bracewell & Giuliani\"}},{\"attributeHeader\":{\"labelValue\":\"Acadian Ambulance Service\",\"primaryLabelValue\":\"Acadian Ambulance Service\"}},{\"attributeHeader\":{\"labelValue\":\"Accent Electronic Systems Integrators\",\"primaryLabelValue\":\"Accent Electronic Systems Integrators\"}},{\"attributeHeader\":{\"labelValue\":\"Brandt Consolidated\",\"primaryLabelValue\":\"Brandt Consolidated\"}},{\"attributeHeader\":{\"labelValue\":\"Bravo Brio Restaurant Group\",\"primaryLabelValue\":\"Bravo Brio Restaurant Group\"}},{\"attributeHeader\":{\"labelValue\":\"AccuCode\",\"primaryLabelValue\":\"AccuCode\"}},{\"attributeHeader\":{\"labelValue\":\"Acronis\",\"primaryLabelValue\":\"Acronis\"}},{\"attributeHeader\":{\"labelValue\":\"BrickHouse Security\",\"primaryLabelValue\":\"BrickHouse Security\"}},{\"attributeHeader\":{\"labelValue\":\"ACTS\",\"primaryLabelValue\":\"ACTS\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgevine\",\"primaryLabelValue\":\"Bridgevine\"}},{\"attributeHeader\":{\"labelValue\":\"Brightree\",\"primaryLabelValue\":\"Brightree\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Care\",\"primaryLabelValue\":\"BrightStar Care\"}},{\"attributeHeader\":{\"labelValue\":\"Adept Consulting Services\",\"primaryLabelValue\":\"Adept Consulting Services\"}},{\"attributeHeader\":{\"labelValue\":\"BrightStar Partners\",\"primaryLabelValue\":\"BrightStar Partners\"}},{\"attributeHeader\":{\"labelValue\":\"ADG Creative\",\"primaryLabelValue\":\"ADG Creative\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Chemical Transport\",\"primaryLabelValue\":\"Advanced Chemical Transport\"}},{\"attributeHeader\":{\"labelValue\":\"Broadway Electric Service\",\"primaryLabelValue\":\"Broadway Electric Service\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Health Media\",\"primaryLabelValue\":\"Advanced Health Media\"}},{\"attributeHeader\":{\"labelValue\":\"Brooklyn Industries\",\"primaryLabelValue\":\"Brooklyn Industries\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced MarketPlace\",\"primaryLabelValue\":\"Advanced MarketPlace\"}},{\"attributeHeader\":{\"labelValue\":\"Bross Group\",\"primaryLabelValue\":\"Bross Group\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Processing and Imaging\",\"primaryLabelValue\":\"Advanced Processing and Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Brothers Air & Heat\",\"primaryLabelValue\":\"Brothers Air & Heat\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Technology Group\",\"primaryLabelValue\":\"Advanced Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"Brown Rudnick\",\"primaryLabelValue\":\"Brown Rudnick\"}},{\"attributeHeader\":{\"labelValue\":\"Advanced Waste Services\",\"primaryLabelValue\":\"Advanced Waste Services\"}},{\"attributeHeader\":{\"labelValue\":\"BRS Media\",\"primaryLabelValue\":\"BRS Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bruce Clay\",\"primaryLabelValue\":\"Bruce Clay\"}},{\"attributeHeader\":{\"labelValue\":\"Advantage Engineering & IT Solutions\",\"primaryLabelValue\":\"Advantage Engineering & IT Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Bryan Cave\",\"primaryLabelValue\":\"Bryan Cave\"}},{\"attributeHeader\":{\"labelValue\":\"Advanticom\",\"primaryLabelValue\":\"Advanticom\"}},{\"attributeHeader\":{\"labelValue\":\"Buckingham Family of Financial Services\",\"primaryLabelValue\":\"Buckingham Family of Financial Services\"}},{\"attributeHeader\":{\"labelValue\":\"Bug Doctor\",\"primaryLabelValue\":\"Bug Doctor\"}},{\"attributeHeader\":{\"labelValue\":\"AEgis Technologies Group\",\"primaryLabelValue\":\"AEgis Technologies Group\"}},{\"attributeHeader\":{\"labelValue\":\"Braxton Technologies\",\"primaryLabelValue\":\"Braxton Technologies\"}},{\"attributeHeader\":{\"labelValue\":\"Accusoft Pegasus\",\"primaryLabelValue\":\"Accusoft Pegasus\"}},{\"attributeHeader\":{\"labelValue\":\"Brazos Technology\",\"primaryLabelValue\":\"Brazos Technology\"}},{\"attributeHeader\":{\"labelValue\":\"Ace Underwriting Group\",\"primaryLabelValue\":\"Ace Underwriting Group\"}},{\"attributeHeader\":{\"labelValue\":\"Acorn Design and Manufacturing\",\"primaryLabelValue\":\"Acorn Design and Manufacturing\"}},{\"attributeHeader\":{\"labelValue\":\"Bremerton-Kitsap Airporter\",\"primaryLabelValue\":\"Bremerton-Kitsap Airporter\"}},{\"attributeHeader\":{\"labelValue\":\"Bridgelogix Corporation\",\"primaryLabelValue\":\"Bridgelogix Corporation\"}},{\"attributeHeader\":{\"labelValue\":\"Bulbs.com\",\"primaryLabelValue\":\"Bulbs.com\"}},{\"attributeHeader\":{\"labelValue\":\"Affiliate Media\",\"primaryLabelValue\":\"Affiliate Media\"}},{\"attributeHeader\":{\"labelValue\":\"Bulldog Solutions\",\"primaryLabelValue\":\"Bulldog Solutions\"}},{\"attributeHeader\":{\"labelValue\":\"Affordable Health Insurance\",\"primaryLabelValue\":\"Affordable Health Insurance\"}},{\"attributeHeader\":{\"labelValue\":\"Agility Mfg\",\"primaryLabelValue\":\"Agility Mfg\"}},{\"attributeHeader\":{\"labelValue\":\"Burkett Restaurant Equipment\",\"primaryLabelValue\":\"Burkett Restaurant Equipment\"}},{\"attributeHeader\":{\"labelValue\":\"Aircraft Cabin Systems\",\"primaryLabelValue\":\"Aircraft Cabin Systems\"}},{\"attributeHeader\":{\"labelValue\":\"C&K Systems\",\"primaryLabelValue\":\"C&K Systems\"}},{\"attributeHeader\":{\"labelValue\":\"Alice Ink\",\"primaryLabelValue\":\"Alice Ink\"}},{\"attributeHeader\":{\"labelValue\":\"C.R.I.S. Camera Services\",\"primaryLabelValue\":\"C.R.I.S. Camera Services\"}},{\"attributeHeader\":{\"labelValue\":\"All Med Medical Supply\",\"primaryLabelValue\":\"All Med Medical Supply\"}},{\"attributeHeader\":{\"labelValue\":\"c2mtech\",\"primaryLabelValue\":\"c2mtech\"}},{\"attributeHeader\":{\"labelValue\":\"All Safe Industries\",\"primaryLabelValue\":\"All Safe Industries\"}},{\"attributeHeader\":{\"labelValue\":\"All Web Leads\",\"primaryLabelValue\":\"All Web Leads\"}},{\"attributeHeader\":{\"labelValue\":\"Alliant Healthcare Products\",\"primaryLabelValue\":\"Alliant Healthcare Products\"}},{\"attributeHeader\":{\"labelValue\":\"Cadena Contracting\",\"primaryLabelValue\":\"Cadena Contracting\"}},{\"attributeHeader\":{\"labelValue\":\"Cafe Yumm!\",\"primaryLabelValue\":\"Cafe Yumm!\"}},{\"attributeHeader\":{\"labelValue\":\"Alpha Imaging\",\"primaryLabelValue\":\"Alpha Imaging\"}},{\"attributeHeader\":{\"labelValue\":\"Cal Net Technology Group\",\"primaryLabelValue\":\"Cal Net Technology Group\"}},{\"attributeHeader\":{\"labelValue\":\"AlphaMetrix Group\",\"primaryLabelValue\":\"AlphaMetrix Group\"}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[1,5992],\"offset\":[0,0],\"total\":[1,5992]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/json" } }, - "uuid": "4a6c17df-de8a-44ca-b583-c790a54d433a" + "uuid": "3fdaa09b-9e66-49c7-bd1e-978ab67e82d6" }, { - "id": "aaec3420-a697-4a07-8f9e-ede5345b2315", + "id": "892a5cdc-8e46-4f62-affe-76ee45e16510", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -45,7 +45,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_fact.f_activity.activitydate_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_opportunity.id\",\"label\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"labelName\":\"Opportunity Id\",\"attribute\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"},\"attributeName\":\"Opportunity Id\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_account.account.name\",\"label\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"},\"labelName\":\"Name\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"bbd5facc10e7d177d9cb487f55c88687452f56f4:eb44f4c901b1e522a5a1c7a305da937aada94aa974686c7792da524a9ca21006\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_fact.f_activity.activitydate_sum\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_opportunity.id\",\"label\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"labelName\":\"Opportunity Id\",\"attribute\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"},\"attributeName\":\"Opportunity Id\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_label.f_account.account.name\",\"label\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"},\"labelName\":\"Name\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"}}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"bc23fd3180d82875245d02393f89af1ddb5f8b82:db2c2e6c3d9289fd19f82f701979eef783506ae71557509ff3b00a659e215116\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -58,10 +58,10 @@ "Content-Type": "application/json" } }, - "uuid": "aaec3420-a697-4a07-8f9e-ede5345b2315" + "uuid": "892a5cdc-8e46-4f62-affe-76ee45e16510" }, { - "id": "c117267c-2df7-4907-9e62-8fb58d826829", + "id": "621601f8-8945-4832-9dc6-a013d046348a", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -69,7 +69,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -85,61 +85,61 @@ "Content-Type": "application/json" } }, - "uuid": "c117267c-2df7-4907-9e62-8fb58d826829" + "uuid": "621601f8-8945-4832-9dc6-a013d046348a" }, { - "id": "01e1eb12-30cc-4d27-b5a5-c7bb256c21db", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", + "id": "8d2f9a28-d774-412e-ad97-41477bf1251c", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=5, private", - "X-Content-Type-Options": "nosniff", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "01e1eb12-30cc-4d27-b5a5-c7bb256c21db" + "uuid": "8d2f9a28-d774-412e-ad97-41477bf1251c" }, { - "id": "8659fc7e-e99c-40d2-be69-a76656d028d6", - "name": "api_v1_entities_workspaces", + "id": "e65aaae0-7590-430f-8dbb-f86f80f918f8", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], - "Expires": "0", + "Cache-Control": "max-age=5, private", + "X-Content-Type-Options": "nosniff", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8659fc7e-e99c-40d2-be69-a76656d028d6" + "uuid": "e65aaae0-7590-430f-8dbb-f86f80f918f8" }, { - "id": "abc16609-9444-41bc-8902-917e308d9647", + "id": "bd94f582-95f4-4239-aa36-2687e8baa6a3", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects_dcce2234-9097-47e7-a165-36cdbaa2e134", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134", @@ -147,7 +147,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"}}", + "body": "{\"data\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -165,10 +165,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "abc16609-9444-41bc-8902-917e308d9647" + "uuid": "bd94f582-95f4-4239-aa36-2687e8baa6a3" }, { - "id": "72bb788c-dcae-4287-a6b9-7d183fba79b6", + "id": "ce2c650b-8353-4c38-9209-cc91d8f66229", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -192,13 +192,13 @@ "Content-Type": "application/json" } }, - "uuid": "72bb788c-dcae-4287-a6b9-7d183fba79b6" + "uuid": "ce2c650b-8353-4c38-9209-cc91d8f66229" }, { - "id": "8948554e-60c5-4fe7-a64b-6a51e7512a4d", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_be22a17d375b2a7f72b5b9db02f51dad1547dbfa034140be0ce87a41af51340e33bdbc8de7354f92194ee4dce7bef8b16e0289e3", + "id": "5acbfe21-a947-4f60-ab68-e212b5b31e68", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_363afc0ff776f4b57fecaed10b84ce35298755db9d1b7df4e755fc4e55a236bbff4c2f514353fa3b843ee16c09be9758879ceb2f", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/be22a17d375b2a7f72b5b9db02f51dad1547dbfa%3A034140be0ce87a41af51340e33bdbc8de7354f92194ee4dce7bef8b16e0289e3", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/363afc0ff776f4b57fecaed10b84ce35298755db%3A9d1b7df4e755fc4e55a236bbff4c2f514353fa3b843ee16c09be9758879ceb2f", "method": "GET" }, "response": { @@ -221,10 +221,10 @@ "Content-Type": "application/json" } }, - "uuid": "8948554e-60c5-4fe7-a64b-6a51e7512a4d" + "uuid": "5acbfe21-a947-4f60-ab68-e212b5b31e68" }, { - "id": "f233c54f-86b1-43c3-879f-fbb1e15ac34d", + "id": "ec8583fe-aac1-4b8a-ba06-10ac2438ef9f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -239,7 +239,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_account.account\",\"label\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"labelName\":\"Account\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"be22a17d375b2a7f72b5b9db02f51dad1547dbfa:034140be0ce87a41af51340e33bdbc8de7354f92194ee4dce7bef8b16e0289e3\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_account.account\",\"label\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"labelName\":\"Account\",\"attribute\":{\"id\":\"attr.f_account.account\",\"type\":\"attribute\"},\"attributeName\":\"Account\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_account.account\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"363afc0ff776f4b57fecaed10b84ce35298755db:9d1b7df4e755fc4e55a236bbff4c2f514353fa3b843ee16c09be9758879ceb2f\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -252,7 +252,7 @@ "Content-Type": "application/json" } }, - "uuid": "f233c54f-86b1-43c3-879f-fbb1e15ac34d" + "uuid": "ec8583fe-aac1-4b8a-ba06-10ac2438ef9f" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-multipleDateFilters.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-multipleDateFilters.spec.ts.json index ecf60bb822c..81d508f0e37 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-multipleDateFilters.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-multipleDateFilters.spec.ts.json @@ -1,7 +1,7 @@ { "mappings": [ { - "id": "1c70e1fa-e211-4ddb-bc6e-cfbdf8f45700", + "id": "7b3c2273-c6fd-4abd-8a73-5ba13f547275", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes_attr.f_owner.salesrep", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets", @@ -9,7 +9,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", + "body": "{\"data\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},\"included\":[{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep?include=datasets\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "1c70e1fa-e211-4ddb-bc6e-cfbdf8f45700" + "uuid": "7b3c2273-c6fd-4abd-8a73-5ba13f547275" }, { - "id": "4f5de180-3b4c-4ba2-a3cf-9b1fafa8bba9", + "id": "07079016-3e28-4621-875e-604bb5e3f6b9", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=100&metaInclude=page", @@ -51,13 +51,13 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4f5de180-3b4c-4ba2-a3cf-9b1fafa8bba9" + "uuid": "07079016-3e28-4621-875e-604bb5e3f6b9" }, { - "id": "139624b8-6ae1-4367-9e2e-aea35251662c", + "id": "f2510cfa-2ae6-4d2d-a35b-60ccc35b79a2", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", "method": "POST", "headers": { "X-GDC-TEST-NAME": { @@ -66,7 +66,7 @@ }, "bodyPatterns": [ { - "equalToJson": "{\"label\":\"label.f_owner.salesrep.ownername\"}", + "equalToJson": "{\"label\":\"label.f_owner.salesrep.ownername\",\"exactFilter\":[\"Adam Bradley\",\"Alejandro Vabiano\",\"Alexsandr Fyodr\",\"Antony\"],\"filterBy\":{\"labelType\":\"REQUESTED\"}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -74,31 +74,26 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"cbd252effc582253bfaf86e9f1178d5b\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"bfa685921d6d2df5fa4b4a0f8efb14f4\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "139624b8-6ae1-4367-9e2e-aea35251662c" + "uuid": "f2510cfa-2ae6-4d2d-a35b-60ccc35b79a2" }, { - "id": "ddabc448-d728-4b0b-b6dc-eae6231a1a13", + "id": "b034094f-c1f5-4265-9927-dd0fc0df2052", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", "method": "POST", "headers": { "X-GDC-TEST-NAME": { @@ -107,7 +102,7 @@ }, "bodyPatterns": [ { - "equalToJson": "{\"label\":\"label.f_owner.salesrep.ownername\",\"exactFilter\":[\"Adam Bradley\",\"Alejandro Vabiano\",\"Alexsandr Fyodr\",\"Antony\"],\"filterBy\":{\"labelType\":\"REQUESTED\"}}", + "equalToJson": "{\"label\":\"label.f_owner.salesrep.ownername\"}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -115,47 +110,57 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"4013dc5e3af714955ae9f1a54f276608\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"bdcad517ff360a9c155b447870e889fa\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "ddabc448-d728-4b0b-b6dc-eae6231a1a13" + "uuid": "b034094f-c1f5-4265-9927-dd0fc0df2052" }, { - "id": "d5962aff-45c2-4e17-b3bd-eee1304df9fa", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", + "id": "5ecb05fb-b5fe-4820-9e84-9cc1dca2ccd0", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_owner.salesrep.ownername&include=labels", "method": "GET" }, "response": { "status": 200, - "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", + "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_owner.salesrep.ownername%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_owner.salesrep.ownername%27&page=1&size=20\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/json" + "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d5962aff-45c2-4e17-b3bd-eee1304df9fa" + "uuid": "5ecb05fb-b5fe-4820-9e84-9cc1dca2ccd0" }, { - "id": "ea82f842-a200-411d-9a9e-1672980a7fcc", + "id": "7f38229d-9eb1-422a-b57e-edc6215efdd1", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", @@ -176,47 +181,42 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ea82f842-a200-411d-9a9e-1672980a7fcc" + "uuid": "7f38229d-9eb1-422a-b57e-edc6215efdd1" }, { - "id": "fcc34e50-b869-40ff-af5e-49e9ff5bf19a", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", + "id": "f71b3793-bbae-4541-8589-b5f8504de9c4", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?filter=labels.id%3D%3Dlabel.f_owner.salesrep.ownername&include=labels", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%270c120022-243d-4146-987c-eadfaa58b0d0%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_owner.salesrep.ownername%27&page=0&size=20\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels&filter=labels.id%3D%3D%27label.f_owner.salesrep.ownername%27&page=1&size=20\"}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%270c120022-243d-4146-987c-eadfaa58b0d0%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "fcc34e50-b869-40ff-af5e-49e9ff5bf19a" + "uuid": "f71b3793-bbae-4541-8589-b5f8504de9c4" }, { - "id": "b546aec3-855b-459f-9f02-f74b332792fd", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "fe67a432-d1fa-4194-b78b-4f3f1d941e61", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_users", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&filter=analyticalDashboard.id%3D%3D%270c120022-243d-4146-987c-eadfaa58b0d0%27&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=100&sort=title%2Casc&sort=createdAt%2Casc&metaInclude=page", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/users?page=0&size=1000", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&filter=analyticalDashboard.id%3D%3D%270c120022-243d-4146-987c-eadfaa58b0d0%27&metaInclude=page&page=0&size=100&sort=title,createdAt,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"totalCount\":2,\"users\":[{\"email\":null,\"id\":\"admin\",\"name\":null},{\"email\":\"pavel.jiranek@gooddata.com\",\"id\":\"pavel.jiranek\",\"name\":\"Pavel Jiranek\"}]}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -226,13 +226,13 @@ "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "b546aec3-855b-459f-9f02-f74b332792fd" + "uuid": "fe67a432-d1fa-4194-b78b-4f3f1d941e61" }, { - "id": "d8ab1235-5adc-4252-a4e3-dd2928f7ff8e", + "id": "850a35a8-c7f7-437b-9da6-e3d4f47d485c", "name": "api_v1_entities_notificationchannels", "request": { "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", @@ -253,10 +253,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "d8ab1235-5adc-4252-a4e3-dd2928f7ff8e" + "uuid": "850a35a8-c7f7-437b-9da6-e3d4f47d485c" }, { - "id": "fc381f2f-3a14-4d74-9484-156fc8b7640b", + "id": "5df0001c-a8da-4040-a453-434fea8976a8", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -264,7 +264,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id.useremail\",\"type\":\"label\"},{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -282,10 +282,39 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "fc381f2f-3a14-4d74-9484-156fc8b7640b" + "uuid": "5df0001c-a8da-4040-a453-434fea8976a8" }, { - "id": "6841b0a5-82f8-4d3f-9c52-e17991f228e7", + "id": "9b97fcb2-1149-4a1e-ab21-c8b2172cc185", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-12-11 19:21\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/vnd.gooddata.api+json" + } + }, + "uuid": "9b97fcb2-1149-4a1e-ab21-c8b2172cc185" + }, + { + "id": "4be7a24a-c85c-4d00-a836-bdfc53246300", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D0c120022-243d-4146-987c-eadfaa58b0d0%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -306,18 +335,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6841b0a5-82f8-4d3f-9c52-e17991f228e7" + "uuid": "4be7a24a-c85c-4d00-a836-bdfc53246300" }, { - "id": "4e668e55-aafc-4dc5-93b2-c3fd5965513a", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "f4c5eb11-7efd-49c7-96b6-117099f64b64", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_0c120022-243d-4146-987c-eadfaa58b0d0", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-11-28 09:18\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"attributeFilter\":{\"attributeElements\":{\"uris\":[\"Adam Bradley\",\"Alejandro Vabiano\",\"Alexsandr Fyodr\",\"Antony\"]},\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"569694f5c5af4307ace4b75fce3b43a4\",\"negativeSelection\":false}},{\"dateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.date\",\"type\":\"relative\"}},{\"dateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.date\",\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/af127447-1e69-44e1-9f14-2c07a1ba69a3\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -335,18 +364,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "4e668e55-aafc-4dc5-93b2-c3fd5965513a" + "uuid": "f4c5eb11-7efd-49c7-96b6-117099f64b64" }, { - "id": "bf46781b-9210-4d4a-8ebd-7b97b888e4d0", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_0c120022-243d-4146-987c-eadfaa58b0d0", + "id": "8fb8f854-a619-46fe-acc3-05ff0da59ab2", + "name": "api_v1_entities_workspaces", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", + "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},\"included\":[{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"}},{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[{\"attributeFilter\":{\"attributeElements\":{\"uris\":[\"Adam Bradley\",\"Alejandro Vabiano\",\"Alexsandr Fyodr\",\"Antony\"]},\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"569694f5c5af4307ace4b75fce3b43a4\",\"negativeSelection\":false}},{\"dateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.date\",\"type\":\"relative\"}},{\"dateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.date\",\"type\":\"relative\"}}],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/af127447-1e69-44e1-9f14-2c07a1ba69a3\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -364,10 +393,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "bf46781b-9210-4d4a-8ebd-7b97b888e4d0" + "uuid": "8fb8f854-a619-46fe-acc3-05ff0da59ab2" }, { - "id": "aac7481d-308f-4572-8b15-48359434e4ef", + "id": "b7f2cf21-0b55-4e3f-815f-c10d4521e640", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -375,7 +404,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -391,39 +420,46 @@ "Content-Type": "application/json" } }, - "uuid": "aac7481d-308f-4572-8b15-48359434e4ef" + "uuid": "b7f2cf21-0b55-4e3f-815f-c10d4521e640" }, { - "id": "8dd97896-417b-49e8-867b-53fc1934f6bf", - "name": "api_v1_entities_workspaces", + "id": "27cab9ae-6617-4310-86d9-04080f2cc41b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", - "method": "GET" + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "headers": { + "X-GDC-TEST-NAME": { + "equalTo": "Multitple-date-filters-basic-cases---It-(SEPARATE)-can-perform-common-action-when-specific-date-filter-is-set" + } + }, + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "8dd97896-417b-49e8-867b-53fc1934f6bf" + "uuid": "27cab9ae-6617-4310-86d9-04080f2cc41b" }, { - "id": "41539b0f-1a94-42f4-a451-a8f25d6f2629", + "id": "9704fccc-cd45-4622-bd02-4cad72bb7132", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -431,7 +467,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -442,10 +478,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "41539b0f-1a94-42f4-a451-a8f25d6f2629" + "uuid": "9704fccc-cd45-4622-bd02-4cad72bb7132" }, { - "id": "161fb20a-ec88-4e9d-ae43-3429fd3c2654", + "id": "81209794-7999-4387-9b11-a9274b81b40f", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -469,10 +505,10 @@ "Content-Type": "application/json" } }, - "uuid": "161fb20a-ec88-4e9d-ae43-3429fd3c2654" + "uuid": "81209794-7999-4387-9b11-a9274b81b40f" }, { - "id": "40265f8d-0ed8-4410-aa92-77651a9cae59", + "id": "6078b644-d993-4084-8cf7-c290b815111f", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -486,26 +522,27 @@ ] }, "response": { - "status": 401, - "base64Body": "L2FwcExvZ2lu", + "status": 200, + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"37be8439fcb2659f86c3370f440941026f5ec293:3a297baf8db148569c84137113a460878daa807752d7a52e481325cd686ed662\"}}}", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", - "X-Content-Type-Options": "nosniff", "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], "Expires": "0", - "Pragma": "no-cache", - "X-XSS-Protection": "0" + "X-XSS-Protection": "0", + "Content-Type": "application/json" } }, - "uuid": "40265f8d-0ed8-4410-aa92-77651a9cae59" + "uuid": "6078b644-d993-4084-8cf7-c290b815111f" }, { - "id": "15c54b5d-4c38-4939-be97-774d088045ae", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d4926c69e19cb23c7d58b9470c394fb9a36aca0ea342a8879a273cfbda46e469a93e2ac24ef62931019385d82cf23caab1bc9540", + "id": "96f59453-7847-4064-8293-c9ee3602bbce", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_37be8439fcb2659f86c3370f440941026f5ec2933a297baf8db148569c84137113a460878daa807752d7a52e481325cd686ed662", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d4926c69e19cb23c7d58b9470c394fb9a36aca0e%3Aa342a8879a273cfbda46e469a93e2ac24ef62931019385d82cf23caab1bc9540", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/37be8439fcb2659f86c3370f440941026f5ec293%3A3a297baf8db148569c84137113a460878daa807752d7a52e481325cd686ed662", "method": "GET" }, "response": { @@ -523,10 +560,10 @@ "Content-Type": "application/json" } }, - "uuid": "15c54b5d-4c38-4939-be97-774d088045ae" + "uuid": "96f59453-7847-4064-8293-c9ee3602bbce" }, { - "id": "0a30a04a-a1a4-419a-8d6c-ee3a2a141c45", + "id": "99259e54-c0d9-42e3-907a-62a05ccf9113", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?filter=createdBy.id%3D%3D%27admin%27&include=createdBy%2CmodifiedBy&page=0&size=50&sort=modifiedAt%2CcreatedAt%2Ctitle%2Cdesc&metaInclude=page", @@ -534,7 +571,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-11-28 09:09\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart with Department attribute\",\"description\":\"Column chart with Department attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b1614db1-3058-4071-a2fe-64a017d318c5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart long attribute has hyperlink\",\"description\":\"Column chart long attribute has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"localIdentifier\":\"7504986dd4854e848a7e9411789bb97c\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87c466b7-e3e0-4a1a-a45a-4ae333bce863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has many hyperlinks\",\"description\":\"Column chart has many hyperlinks\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5cc307a739034b35a8bd485dfba825d5\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"5e61d047dac64eaebcbfd102176cbdc1\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fbd134a022954e5c94d15939c96d061e\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/9a2ab62b-587a-4b16-9682-1b7962340354\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has hyperlink\",\"description\":\"Column chart has hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"localIdentifier\":\"4281a0b55f65458f98f5e11b20c6faaf\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f7a50db1-5d2d-4b1a-82e6-e1648836985c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart has not hyperlink\",\"description\":\"Column chart has not hyperlink\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"92cee6a571f64e09abe8c43055fe5dea\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddec7417e27f4921bc001317cea32e44\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"85b09ca610064d5cbb7f966efe91e09b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"908a5fcd650941f885ed768c243f4d0d\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/84d13bd9-f976-4e03-8b00-fec9497d580b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart only measures\",\"description\":\"Column chart only measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ded20bdcb90145b68711ae0c1901968d\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"953ecfafba014941ab12ec89f84d1d85\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ab408bcdfd76443984d7db17c3d5f62a\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"5daa8ff598014da2b89f626ef3c2de67\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"measureValueFilter\":{\"measure\":{\"localIdentifier\":\"d09dd3ea948e4a098fe741e03e4b90e9\"}}}],\"properties\":{\"controls\":{\"legend\":{\"position\":\"right\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/843701ee-8f24-4942-8522-872a96575f8e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table using long name metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bf992ef0637142dba774330a0851098c\",\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/1e17f8cf-aa34-4474-8dd5-c1249c688225\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"unmerge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fb53ecfb-3874-4bee-8612-afecd3fa3e04\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"No data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"localIdentifier\":\"58c6f0115c95489da76f0cff48df18d2\",\"title\":\"# Of Opportunities Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"1900-11-20 00:00\",\"to\":\"1900-12-20 23:59\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"cd73fb09abc34c4c92042ed0421a21f5\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f00bd5d5-91da-4139-9e7e-5498d9fe49b5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"many data\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_activity.activitydate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"8e79bc72230b460487232e0c67f4e2c9\",\"title\":\"Sum of Activity (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunity.id\",\"type\":\"label\"}},\"localIdentifier\":\"434ea45fa89e4a56ba2a827572a93852\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"cfc7199c9e8c4f829bb803cc28197d27\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/dcce2234-9097-47e7-a165-36cdbaa2e134\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Parent Insight\",\"description\":\"Parent Insight\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e5bd892b4d0b445fae98c549267ab9a8\",\"title\":\"Parent metric\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ce9720f3ccc642acb66d288a9adce435\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-4462-82f1-b0e01dff8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD has null value\",\"description\":\"AD has null value\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"metric_has_null_value\",\"type\":\"metric\"}}}},\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\",\"title\":\"Metric has null value\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"204473a01e6442f8a10822ff15b7a0d2\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"\",\"East Coast\",null]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2000-08-07 00:00\",\"to\":\"2022-09-07 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"CompuSci\",\"Educationly\"]}}}],\"properties\":{},\"sorts\":[{\"measureSortItem\":{\"direction\":\"desc\",\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"12f5fa008d404c5092f476a00bb1cda7\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"}}]}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"invalid insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"1ed7c5a07de94cf9ac583124b909f7bf\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"63e1799693114006adfed9e510b00a83\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"relativeDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"granularity\":\"GDC.time.year\"}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"63e1799693114006adfed9e510b00a83\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/81452cc9-558b-4b4e-a70b-0a80f3bd2924\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"big insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\"}}}},\"localIdentifier\":\"cf7c621eaf5f44f483c6ac52ca5e7fde\",\"title\":\"_Timeline [EOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"localIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"644e49c9164d4763b23b4cf7436de0ef\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/5517045e-661f-4d6b-b0b0-98030ab9f68c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"merge cells insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"5f10774f0ef24bf0abf93cacfe2a7454\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"168b0bbeefac47eeae7cdc172cd2083e\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"101\",\"102\",\"103\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e6b6e5c7d5754dda9afc4fdfa3c93d9f\",\"direction\":\"desc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3ef94acb-1e15-49ef-88d5-e9e2931be959\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Negative Insight\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"negative_metric\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4ad1cb04125348e3b106411c09054fb7\",\"title\":\"Negative Metric\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c1f236a4-b48a-4bf6-a94f-a89d5bde2fe9\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ba13041b-87bc-458c-a514-fcc0074c9973\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combine with all filter types\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"computeRatio\":false,\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"in\":{\"values\":[\"Direct Sales\"]}}}],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\",\"title\":\"Amount (Department: Direct Sales)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"localIdentifier\":\"d100a73db7ec4d418429935e53239a90\"}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"in\":{\"values\":[\"(add)ventures\",\".decimal\",\"1 Source Consulting\",\"1-800 Postcards\",\"1-800 We Answer\",\"1000Bulbs.com\",\"1-888-OhioComp\",\"101 Financial\",\"123 Exteriors\",\"14 West\",\"1Source International\",\"1st Choice Staffing & Consulting\",\"2 Wheel Bikes\",\"2HB Software Designs\",\"352 Media Group\",\"1st in Video - Music World\",\"3Degrees\",\"3E\",\"3balls.com\",\"3dCart Shopping Cart Software\",\"49er Communications\",\"4Wall Entertainment\",\"(mt) Media Temple\",\"4th Source\",\"5LINX Enterprises\",\"614 Media Group\",\"6K Systems\",\"7 Medical Systems\",\"7 Simple Machines\",\"7-Eleven\",\"720 Strategies\",\"90octane\",\"919 Marketing\",\"@properties\",\"A Main Hobbies\",\"A Place for Mom\"]}}},{\"measureValueFilter\":{\"condition\":{\"comparison\":{\"operator\":\"GREATER_THAN\",\"treatNullValuesAs\":0,\"value\":0}},\"measure\":{\"localIdentifier\":\"a27d351c047b4c7bb6f60977dc99d777\"}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"from\":\"2008-01-01 00:00\",\"to\":\"2009-01-01 23:59\"}},{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"04\"]}}}],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ba13041b-87bc-458c-a514-fcc0074c9973\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has multi metrics and multi formats\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[>=9][color=2190c0]██████████;\\n[>=8][color=2190c0]█████████░;\\n[>=7][color=2190c0]████████░░;\\n[>=6][color=2190c0]███████░░░;\\n[>=5][color=2190c0]██████░░░░;\\n[>=4][color=2190c0]█████░░░░░;\\n[>=3][color=2190c0]████░░░░░░;\\n[>=2][color=2190c0]███░░░░░░░;\\n[>=1][color=2190c0]██░░░░░░░░;\\n[color=2190c0]█░░░░░░░░░\\n\",\"localIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\"}}}},\"format\":\"[<0][red]#,#.##;\\n[<1000][green]#,0.##;\\n[>=1000][black]#,#.##\",\"localIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"title\":\"# Of Opportunities Won\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"format\":\"[<0][green]▲ #,##0.0%;\\n[=0][black]#,##0.0%;\\n[>0][red]▼ #,##0.0%\\n\",\"localIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"title\":\"Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"[BLUE][backgroundColor=aff8ef]$#,##0.00\",\"localIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"format\":\"\",\"localIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"format\":\"#,##0.0% long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long\",\"localIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"format\":\"#,##0.00 kiểm tra nghiêm khắc\",\"localIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"format\":\"[=NULL]null value; #,##0.00\",\"localIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"title\":\"Won\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\"}}],\"localIdentifier\":\"attribute\",\"totals\":[{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"79bcc8b9dc2546c7b40b9a59234637d0\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"9376f1cffa1b4b7b8f5b14d670e604e7\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"820c5beb252641049020e6026be3e40e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"7e1ab231b1104212a4e555c6811feec8\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"2a61f76ac2ae4fe2ad703e649e490dc4\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"3c00ebd0b2dc460b828ab564a06e49b1\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"28f55bd907394608845f87a046f2117e\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"34740fafafb84f3f99162cebf73590e5\",\"type\":\"sum\"},{\"attributeIdentifier\":\"201dd02a610c4575a44f7713b8f80fd4\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"},{\"attributeIdentifier\":\"50cd4fc5e04e41928d17bbebd2fb11d2\",\"measureIdentifier\":\"c38865b3568b4d7cbf80b721b34f222d\",\"type\":\"sum\"}]}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3aabb29d0ef6452ab0904fb21d7e8e6b\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d236ec6-5cf7-493e-8285-6613fde4ce18\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has AM metric\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\",\"title\":\"# Of Opportunities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\"}}}},\"localIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"title\":\"_Snapshot [EOP]\"}},{\"measure\":{\"definition\":{\"arithmeticMeasure\":{\"measureIdentifiers\":[\"fccc4446dc314fc4911315b881d2b5c4\",\"a954df386c3b40e986820c47b50c3e7f\"],\"operator\":\"sum\"}},\"format\":\"#,##0.00\",\"localIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"02ee089c502047d391c3d783c7616a7f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\"}}],\"localIdentifier\":\"columns\",\"totals\":[{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\",\"type\":\"sum\"},{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"},{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\",\"type\":\"sum\"}]}],\"filters\":[{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2005-05-20 00:00\",\"to\":\"2023-06-20 23:59\"}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"attributeLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"element\":\"Lost\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"fccc4446dc314fc4911315b881d2b5c4\"}}],\"width\":{\"value\":203}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"a954df386c3b40e986820c47b50c3e7f\"}}],\"width\":{\"value\":98}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"62b9249ce0bd4bf68a00fa04bbc19435\",\"element\":\"Direct Sales\"}},{\"totalLocatorItem\":{\"attributeIdentifier\":\"37df01ac7f3047469b075685d37bfc8c\",\"totalFunction\":\"sum\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"6cb6dc742b4545789a804a4cdaca58b9\"}}],\"width\":{\"value\":322}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"02ee089c502047d391c3d783c7616a7f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-12-11 19:14\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/343b329b-e2b0-43b2-9724-de8cd664ebac\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot segment by attribute\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e2443104dc0442dcadf04eb8a45996fe\",\"title\":\"Amount [BOP]\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"218a741d464f47c1bd6e7607ba3ca1c3\",\"title\":\"Avg. Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"073f360b71214bbcab4002517983dc1f\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"88027b1059024979a33227cfebad0638\"}}],\"localIdentifier\":\"segment\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-05-27 09:56\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Repeater\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.image\",\"type\":\"label\"}},\"localIdentifier\":\"fca86a662c8c4a7b9d7a151d02d2506c_cloned\",\"showAllValues\":true}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}},\"localIdentifier\":\"e863b33a5d0c4429b6036f1ff9576fd1\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bd48d2166d2c49168604a3abf08f514c\",\"title\":\"Amount [BOP]\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"avg._amount\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ead544213ae94facaa21e2e59e7a522e\",\"title\":\"Avg. Amount\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"654e6a7e7b1645e996377e687e4bfdcd\",\"title\":\"Probability\"}}],\"localIdentifier\":\"columns\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"529a38e734e4477086ccd9f365aa95e7\",\"showAllValues\":false}}],\"localIdentifier\":\"view\"}],\"filters\":[{\"negativeAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"notIn\":{\"values\":[\"WonderKid\"]}}}],\"properties\":{\"controls\":{\"cellImageSizing\":\"fill\",\"cellTextWrapping\":\"wrap\",\"cellVerticalAlign\":\"middle\",\"colorMapping\":[{\"color\":{\"type\":\"guid\",\"value\":\"5\"},\"id\":\"654e6a7e7b1645e996377e687e4bfdcd\"},{\"color\":{\"type\":\"guid\",\"value\":\"15\"},\"id\":\"ead544213ae94facaa21e2e59e7a522e\"},{\"color\":{\"type\":\"guid\",\"value\":\"4\"},\"id\":\"bd48d2166d2c49168604a3abf08f514c\"}],\"rowHeight\":\"large\"},\"hyperLinks\":{\"e863b33a5d0c4429b6036f1ff9576fd1\":{\"staticElementsText\":\"Show more when clicking\"}},\"inlineVisualizations\":{\"bd48d2166d2c49168604a3abf08f514c\":{\"type\":\"column\"},\"ead544213ae94facaa21e2e59e7a522e\":{\"type\":\"line\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:repeater\"},\"createdAt\":\"2024-04-09 05:05\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/7906ebea-92ef-46eb-868f-afa99792be08\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With own description\",\"description\":\"Insight description\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"578bb15ed76944a0ab9b9a712b50c239\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"c44cdd23990c43dcb8fb089163450191\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:treemap\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d9ea05ec-5036-43a0-969f-a3ddecb1ca40\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"Win Rate\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"8f22bd5c8228465dac1ff8d364c57d38\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cc722659-8411-4813-be8f-4d7fed0fe6a6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Waterfall chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"dce0ee15ed1c46d08362f44099186f47\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"50b1f058a0854ecabca2eaa8802932b8\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"total\":{\"enabled\":true,\"name\":\"Total\"}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:waterfall\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cbe62312-b02c-45a8-b641-b13ea473f0f6\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name and atribute filter\",\"description\":\"Table with stage name and atribute filter\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2af0d07e528e48e6851fac4bc4a53f5a\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"in\":{\"values\":[\"101\",\"102\",\"103\",\"104\",\"105\"]}}}],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"412214f4a680443d87cb0e1bacfebc16\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/fbcca86f-c473-446b-b316-eb4f4e5de909\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with stage name\",\"description\":\"Table with stage name\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3aa5e664735347a598ad12750e99054b\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4890d11249ff40ca83b034d90e48c97c\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/ed91a9b6-8ee1-4a70-a2cf-a1454817e538\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with order\",\"description\":\"Table with order\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"9679f525ccc74f718fdfc9d2a9f598ac\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"}},\"localIdentifier\":\"e2ce5bb42c0a4d41ad5cbd3f63a66bad\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"41ba40f9944f40738b05906ac12b36a2\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c796d21d-a705-439d-a727-23b144591617\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8f88b387-351b-479f-a7fb-e2b072c810f3\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table With MC\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"656c15e862a249e890baeb4ea9930c77\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"aeaea589c912406ab08e67d1a4246103\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"measureGroupDimension\":\"columns\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/8f88b387-351b-479f-a7fb-e2b072c810f3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table with hyperlink attribute\",\"description\":\"Table with hyperlink attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"fact.f_opportunity.oppcreateddate\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\",\"title\":\"Sum of Opp. Created (Date)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"}},\"localIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"e487c1bd8fa240e7829ba50c01786d82\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f51896d7-1a46-416b-8039-67d8af1d7651\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Transpose\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"e96c2c0d49ac4b9286079f1e1169ccd6\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"d0793f9cdd934ce290e697327f2f35fc\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{\"controls\":{\"columnHeadersPosition\":\"left\",\"measureGroupDimension\":\"rows\"}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/b69512f0-6285-4d4d-b31c-47b7b081276c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table Sales rep, Forecast category\",\"description\":\"Table Sales rep, Forecast category\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"localIdentifier\":\"df4ae84341384f6eb6bb2a66c83b7737\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"3dfd1e4c5b5d4c6693f40124b18de61f\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/63a1281d-2ad1-42b2-9577-d653cbe7562c\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Table has many rows/columns\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"3c36d9d1e52c4038b1dd8b131e89ae9d\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"localIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"132c6d7f66444dccac8da9f6e214026e\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"00855b3622a542d498d7d784f96663db\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"c1988aceaacd45e2ac0a2481cc4f1016\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"a4c4fec91dc041f0aea51152556c2eac\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/aa8db374-7a8b-4019-85df-25f47772db5d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c44d07fb-e48d-445d-87ff-5c07d8749863\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Scatter plot\",\"description\":\"Scatter plot\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90f4954501124ed39c2754bc0cc1864f\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ba1d9ac316e34438b61f6b85c9714219\",\"title\":\"Amount\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"519801e65a4d47e4b6df81fac68f5032\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:scatter\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c44d07fb-e48d-445d-87ff-5c07d8749863\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Sankey chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"32cc1107a59e4470877b9a65048cd9aa\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"e9ec10ae19fc45e888fceb310d8ba1d0\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"c572befecec64970bcecf3af3dcbdc7e\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:sankey\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/684a2cf2-3b5c-44d3-9287-61e428d0eac2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pyramid chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"90c29f6ee37c4ae5ae834dea69afbf8d\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"93177b201ea243f8b8977574e27f775a\",\"title\":\"# of Lost Opps.\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ddbfa04d44f34e60b8599e3e5fa58adb\",\"title\":\"# Of Opportunities\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pyramid\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/eb7f3b09-09e8-498b-bff5-249660ffcd6e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Pie chart multiple measures\",\"description\":\"Pie chart multiple measures\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\"}}}},\"localIdentifier\":\"3502d14f99e845d6a9b6d41ad7f434e8\",\"title\":\"Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"4faa13d8ecc24ebd9751185c60dddbc7\",\"title\":\"Win Rate\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"min\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"0194ba717d1e41e3ba6c4a3302b9a74a\",\"title\":\"Min Velocity\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:pie\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/de6092cf-d243-4987-918b-8aac3ecd26cc\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Insight has invalid interaction\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fa313ebe40ab48be83a7c53749352835\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_stage.status_id\",\"type\":\"label\"}},\"localIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"4d80e611b37c47b7bdd05778e1fe8c53\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Headline\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"best_case\",\"type\":\"metric\"}}}},\"localIdentifier\":\"2081f308ca234c069224ed6e06de9f17\",\"title\":\"Best Case\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\"}}}},\"localIdentifier\":\"827809c282fc429ca02794a68c43d544\",\"title\":\"Won\"}}],\"localIdentifier\":\"secondary_measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/6010ceaf-b8e9-4cd7-aea8-05da1f68f112\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Funnel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"d4e05a5e7b0a42dc97bdceb9dc687489\",\"title\":\"# of Activities\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}},\"localIdentifier\":\"d80716179b1f4b21998aabf210a21ac4\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:funnel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/39fc72a9-5f25-455c-92bb-f7dbde85d586\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Dependency wheel chart\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"ebf774d29af346b2915d72e74b6527a5\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"localIdentifier\":\"7d5bbdfea48a419d92e14444fa47bdb5\"}}],\"localIdentifier\":\"attribute_from\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"fa674d6055324a23bceb93f624a4844b\"}}],\"localIdentifier\":\"attribute_to\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:dependencywheel\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/75e08348-d27f-42b8-a360-41bee971fb6d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Combo chart\",\"description\":\"Combo chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_stagehistory.f_velocity\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\",\"title\":\"Sum of Velocity\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\",\"title\":\"Sum of Probability\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fbb24f15cffe4004bd97ddc4edf9adc2\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"secondary_measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"0bc0e5616dce49869ccdd555cd226d45\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"dualAxis\":true,\"primaryChartType\":\"column\",\"secondaryChartType\":\"line\",\"secondary_yaxis\":{\"measures\":[\"fbb24f15cffe4004bd97ddc4edf9adc2\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:combo2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3c05e649-7897-4a95-9c75-c043f0c39e14\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column with two measures by date\",\"description\":\"Column with two measures by date\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_probability\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"4e752df354004dcdb8cfb83bab83ae2d\",\"title\":\"Sum of Probability\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\"}}}},\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\",\"title\":\"Win Rate\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"e5d50cda90dc45f1990fb1a0c6e1ea7b\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{\"controls\":{\"secondary_yaxis\":{\"measures\":[\"fcb40268af3548c88af467851fdaa7c9\"]}}},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Column chart\",\"description\":\"Column chart\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"localIdentifier\":\"434bd601d9a2469ca2f3ed6448718528\"}}],\"localIdentifier\":\"view\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:column\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/a40866ab-5272-4f2c-9b5a-dd255b1e5d42\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Bar chart with date attribute\",\"description\":\"Bar chart with date attribute\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"ab99be8a32e245d0a3a53b80836e9afa\",\"title\":\"Sum of Amount\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}},\"localIdentifier\":\"a5e8b5ebd4b745999bf07008bfc23702\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_product.product\",\"type\":\"label\"}},\"localIdentifier\":\"7392586c334b43ea9c033873cf80bede\"}}],\"localIdentifier\":\"view\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"183795b10545490bbc6a33b481078f52\"}}],\"localIdentifier\":\"stack\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:bar\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/cf5486ba-7d55-4b4b-a77f-6aae6ad9e6eb\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\"}}}},\"localIdentifier\":\"41a51e160d7e449ab32fa1dd49cbc4cd\",\"title\":\"Amount\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:headline\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/87e5c951-0ae6-4a71-a38d-843457bdfc0b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"AD with compares\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"aggregation\":\"sum\",\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\"]}}}],\"item\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.f_amount\",\"type\":\"fact\"}}}},\"format\":\"#,##0.00\",\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\",\"title\":\"Sum of Amount: Stage Name (5)\"}}],\"localIdentifier\":\"measures\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\"}}],\"localIdentifier\":\"attribute\"},{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\"}}],\"localIdentifier\":\"columns\"}],\"filters\":[{\"positiveAttributeFilter\":{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"in\":{\"values\":[\"Interest\",\"Discovery\",\"Short List\",\"Risk Assessment\",\"Conviction\",\"Negotiation\"]}}},{\"absoluteDateFilter\":{\"dataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"from\":\"2010-02-23 00:00\",\"to\":\"2022-03-23 23:59\"}},{\"rankingFilter\":{\"measure\":{\"localIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"},\"operator\":\"TOP\",\"value\":5}}],\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":262}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":329}}}]}},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"37133a8d587f4f9faaf43444778fb37d\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/f6dc8313-c2dc-4731-b491-b5b0758738ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"USA geography attribute table\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"localIdentifier\":\"ca076ec85db5497a8846b9809760fb93\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"localIdentifier\":\"4656fee56a744d16a1cf6898dd34d5d5\"}},{\"attribute\":{\"displayForm\":{\"identifier\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"localIdentifier\":\"37594b463016459f873d106dd29d111d\"}}],\"localIdentifier\":\"attribute\"}],\"filters\":[],\"properties\":{},\"sorts\":[{\"attributeSortItem\":{\"attributeIdentifier\":\"ca076ec85db5497a8846b9809760fb93\",\"direction\":\"asc\"}}],\"version\":\"2\",\"visualizationUrl\":\"local:table\"},\"createdAt\":\"2023-11-14 15:29\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/780f3759-65cc-4489-858d-9c318ecece75\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects?include=createdBy%2CmodifiedBy&filter=createdBy.id%3D%3D%27admin%27&metaInclude=page&page=0&size=50&sort=modifiedAt,createdAt,title,desc\"},\"meta\":{\"page\":{\"size\":50,\"totalElements\":49,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -552,10 +589,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "0a30a04a-a1a4-419a-8d6c-ee3a2a141c45" + "uuid": "99259e54-c0d9-42e3-907a-62a05ccf9113" }, { - "id": "9e190e99-421d-4cb1-ac63-52a9eee9e086", + "id": "ab90421a-e0c9-4256-b8ec-5dd9160066ac", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=500", @@ -570,7 +607,7 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"cbd252effc582253bfaf86e9f1178d5b\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"},{\"title\":\"Cory Owens\",\"primaryTitle\":\"Cory Owens\"},{\"title\":\"Dale Perdadtin\",\"primaryTitle\":\"Dale Perdadtin\"},{\"title\":\"Dave Bostadt\",\"primaryTitle\":\"Dave Bostadt\"},{\"title\":\"Ellen Jones\",\"primaryTitle\":\"Ellen Jones\"},{\"title\":\"Huey Jonas\",\"primaryTitle\":\"Huey Jonas\"},{\"title\":\"Jessica Traven\",\"primaryTitle\":\"Jessica Traven\"},{\"title\":\"John Jovi\",\"primaryTitle\":\"John Jovi\"},{\"title\":\"Jon Jons\",\"primaryTitle\":\"Jon Jons\"},{\"title\":\"Lea Forbes\",\"primaryTitle\":\"Lea Forbes\"},{\"title\":\"Lisandro Martinez\",\"primaryTitle\":\"Lisandro Martinez\"},{\"title\":\"Monique Babonas\",\"primaryTitle\":\"Monique Babonas\"},{\"title\":\"Paul Gomez\",\"primaryTitle\":\"Paul Gomez\"},{\"title\":\"Paul Jacobs\",\"primaryTitle\":\"Paul Jacobs\"},{\"title\":\"Ravi Deetri\",\"primaryTitle\":\"Ravi Deetri\"},{\"title\":\"Thomas Gones\",\"primaryTitle\":\"Thomas Gones\"},{\"title\":\"Tom Stickler\",\"primaryTitle\":\"Tom Stickler\"},{\"title\":\"Trevor Deegan\",\"primaryTitle\":\"Trevor Deegan\"},{\"title\":\"Victor Crushetz\",\"primaryTitle\":\"Victor Crushetz\"}],\"paging\":{\"total\":22,\"count\":22,\"offset\":0,\"next\":null},\"cacheId\":\"bdcad517ff360a9c155b447870e889fa\"}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -588,10 +625,10 @@ "Content-Type": "application/json" } }, - "uuid": "9e190e99-421d-4cb1-ac63-52a9eee9e086" + "uuid": "ab90421a-e0c9-4256-b8ec-5dd9160066ac" }, { - "id": "aca6966a-7787-4f45-85ee-5ab07498ca70", + "id": "2ff729a2-23ef-4103-86fd-16ac5ea83657", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_collectlabelelements", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/collectLabelElements?offset=0&limit=550", @@ -606,7 +643,38 @@ }, "response": { "status": 200, - "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"4013dc5e3af714955ae9f1a54f276608\"}", + "body": "{\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"elements\":[{\"title\":\"Adam Bradley\",\"primaryTitle\":\"Adam Bradley\"},{\"title\":\"Alejandro Vabiano\",\"primaryTitle\":\"Alejandro Vabiano\"},{\"title\":\"Alexsandr Fyodr\",\"primaryTitle\":\"Alexsandr Fyodr\"},{\"title\":\"Antony\",\"primaryTitle\":\"Antony\"}],\"paging\":{\"total\":4,\"count\":4,\"offset\":0,\"next\":null},\"cacheId\":\"bfa685921d6d2df5fa4b4a0f8efb14f4\"}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/json" + } + }, + "uuid": "2ff729a2-23ef-4103-86fd-16ac5ea83657" + }, + { + "id": "023891a1-4f4c-4a92-bc39-d19cb2bd4175", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", + "request": { + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] + }, + "response": { + "status": 200, + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -619,13 +687,13 @@ "Content-Type": "application/json" } }, - "uuid": "aca6966a-7787-4f45-85ee-5ab07498ca70" + "uuid": "023891a1-4f4c-4a92-bc39-d19cb2bd4175" }, { - "id": "e4cbd042-e7a0-4ae6-b9f4-0c8f07bd24f2", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_bc64c984931ed14141bae648ef1636d1a4bf28734e02cd56d089696a6651814b2097b9484b8c506c5aac8caa87fdbd9a7d1540a5", + "id": "d389c6f7-066a-4647-a87c-6cc465b32fb0", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_243fbd2083ed799d4b87bae970fcc55cdde4361f72ae9c4790b37c09aed16e381d68f679b56c541a1b297d115b1c71ed8d10b95d", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/bc64c984931ed14141bae648ef1636d1a4bf2873%3A4e02cd56d089696a6651814b2097b9484b8c506c5aac8caa87fdbd9a7d1540a5", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/243fbd2083ed799d4b87bae970fcc55cdde4361f%3A72ae9c4790b37c09aed16e381d68f679b56c541a1b297d115b1c71ed8d10b95d", "method": "GET" }, "response": { @@ -643,10 +711,10 @@ "Content-Type": "application/json" } }, - "uuid": "e4cbd042-e7a0-4ae6-b9f4-0c8f07bd24f2" + "uuid": "d389c6f7-066a-4647-a87c-6cc465b32fb0" }, { - "id": "06d77051-0c2c-4af3-b248-d5fbbbc217f3", + "id": "8e7e4c83-8458-45d5-b193-cfdf2d081019", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -661,7 +729,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"bc64c984931ed14141bae648ef1636d1a4bf2873:4e02cd56d089696a6651814b2097b9484b8c506c5aac8caa87fdbd9a7d1540a5\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_87a053b0_3947_49f3_b0c5_de53fd01f050\",\"format\":\"$#,##0.00\",\"name\":\"Amount\"}]}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_attr.f_owner.salesrep\",\"label\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"labelName\":\"Sales Rep\",\"attribute\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\"},\"attributeName\":\"Sales Rep\",\"granularity\":null,\"primaryLabel\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"243fbd2083ed799d4b87bae970fcc55cdde4361f:72ae9c4790b37c09aed16e381d68f679b56c541a1b297d115b1c71ed8d10b95d\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -674,10 +742,10 @@ "Content-Type": "application/json" } }, - "uuid": "06d77051-0c2c-4af3-b248-d5fbbbc217f3" + "uuid": "8e7e4c83-8458-45d5-b193-cfdf2d081019" }, { - "id": "ba0f4194-3a00-413d-a7fa-3631a2d1de1a", + "id": "ac0cd913-7881-485e-916e-68fd7c3caea9", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_metrics", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?size=250&page=0", @@ -685,7 +753,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-11-28 09:09\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", + "body": "{\"data\":[{\"id\":\"6b1411d5-e253-418e-8fd3-137a9f56ea92\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MAX({fact/fact.f_timeline.timelinedate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/6b1411d5-e253-418e-8fd3-137a9f56ea92\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"768414e1-4bbe-4f01-b125-0cdc6305dc76\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT COUNT({attribute/f_opportunity.id}, {label/f_opportunitysnapshot.id}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/768414e1-4bbe-4f01-b125-0cdc6305dc76\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"87a053b0-3947-49f3-b0c5-de53fd01f050\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount\",\"description\":\"Amount metric description\",\"tags\":[\"custom_column\"],\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/87a053b0-3947-49f3-b0c5-de53fd01f050\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"8d33a0b1-cfdf-4074-a26a-4c4357774967\",\"type\":\"metric\",\"attributes\":{\"title\":\"# Of Opportunities Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/8d33a0b1-cfdf-4074-a26a-4c4357774967\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"973a14c4-acb1-45fb-ba52-5d96fa02f7ba\",\"type\":\"metric\",\"attributes\":{\"title\":\"Win Rate\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT {metric/8d33a0b1-cfdf-4074-a26a-4c4357774967} / {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/973a14c4-acb1-45fb-ba52-5d96fa02f7ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"amount_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"Amount [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/amount_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"avg._amount\",\"type\":\"metric\",\"attributes\":{\"title\":\"Avg. Amount\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_amount})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/avg._amount\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\",\"type\":\"metric\",\"attributes\":{\"title\":\"Probability\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.0%\",\"maql\":\"SELECT AVG({fact/f_opportunitysnapshot.f_probability}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/b4e3e3c7-ead3-4d69-8be4-23bcfe5ff7aa\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"best_case\",\"type\":\"metric\",\"attributes\":{\"title\":\"Best Case\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM(\\n SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Open\\\")\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/best_case\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"c5ee7836-126c-41aa-bd69-1873d379a065\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day} WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} <= {metric/6b1411d5-e253-418e-8fd3-137a9f56ea92}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/c5ee7836-126c-41aa-bd69-1873d379a065\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate})\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/snapshot_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"close_eop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Close [EOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT MAX({fact/fact.f_opportunitysnapshot.oppclosedate}) where {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/close_eop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03061626b1\",\"type\":\"metric\",\"attributes\":{\"title\":\"Parent metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03061626b1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"e519fa2a-86c3-4e32-8313-0c03062348j3\",\"type\":\"metric\",\"attributes\":{\"title\":\"Won\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT {metric/87a053b0-3947-49f3-b0c5-de53fd01f050}\\n WHERE {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/e519fa2a-86c3-4e32-8313-0c03062348j3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\",\"type\":\"metric\",\"attributes\":{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor i\",\"description\":\"Metric with long name\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"$#,##0.00\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} = {metric/c5ee7836-126c-41aa-bd69-1873d379a065}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/lorem_ipsum_dolor_sit_amet_consectetur_adipiscing_elit_sed_do_eiusmod_tempor_incididunt_ut_labore_et_dolore_magna_aliqua._ut_enim_ad_minim_veniam_quis_nostrud_exercitation_ullamco_laboris_nisi_ut_aliquip_ex_ea_commodo_consequat._duis_aute_irure_dolor_i\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"metric_has_null_value\",\"type\":\"metric\",\"attributes\":{\"title\":\"Metric has null value\",\"description\":\"Metric has null value\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT SUM({fact/f_opportunitysnapshot.f_amount}) where {label/f_owner.region_id} IN (\\\"\\\", NULL, \\\"East Coast\\\", \\\"West Coast\\\" )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/metric_has_null_value\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"negative_metric\",\"type\":\"metric\",\"attributes\":{\"title\":\"Negative Metric\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"SELECT SUM({metric/amount_bop} * -1 )\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/negative_metric\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_activities\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Activities\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT COUNT({label/f_activity.id})\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_activities\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_lost_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Lost Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76}\\n WHERE {label/f_stage.status_id} = \\\"Lost\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_lost_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"of_won_opps.\",\"type\":\"metric\",\"attributes\":{\"title\":\"# of Won Opps.\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"select {metric/768414e1-4bbe-4f01-b125-0cdc6305dc76} where {label/f_stage.status_id} = \\\"Won\\\"\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/of_won_opps.\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"opp._first_snapshot\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Opp. First Snapshot\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0.00\",\"maql\":\"select min({fact/fact.f_opportunitysnapshot.oppsnapshotdate}) by all in all other dimensions except {attribute/f_opportunity.id}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/opp._first_snapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"snapshot_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Snapshot [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_opportunitysnapshot.oppsnapshotdate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_snapshotdate_timestamp.day}\\n WHERE {fact/fact.f_opportunitysnapshot.oppsnapshotdate} >= {metric/timeline_bop}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/snapshot_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"timeline_bop\",\"type\":\"metric\",\"attributes\":{\"title\":\"_Timeline [BOP]\",\"description\":\"\",\"areRelationsValid\":true,\"createdAt\":\"2024-12-11 19:14\",\"content\":{\"format\":\"#,##0\",\"maql\":\"SELECT MIN({fact/fact.f_timeline.timelinedate})\\n BY ALL IN ALL OTHER DIMENSIONS EXCEPT {attribute/dt_timeline_timestamp.day}\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics/timeline_bop\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/metrics?page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -703,10 +771,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ba0f4194-3a00-413d-a7fa-3631a2d1de1a" + "uuid": "ac0cd913-7881-485e-916e-68fd7c3caea9" }, { - "id": "96fa384f-b039-4f07-a2f2-6824047c8d83", + "id": "8b8cdb89-f0f1-4236-bbee-9ac585de6a04", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_facts", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/facts?size=250&page=0", @@ -726,7 +794,7 @@ "X-XSS-Protection": "0" } }, - "uuid": "96fa384f-b039-4f07-a2f2-6824047c8d83" + "uuid": "8b8cdb89-f0f1-4236-bbee-9ac585de6a04" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-scatterPlot.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-scatterPlot.spec.ts.json index 7d592213924..c0d467cfe73 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-scatterPlot.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-scatterPlot.spec.ts.json @@ -1,15 +1,15 @@ { "mappings": [ { - "id": "23efbf34-0b28-4424-baaa-795da49833dc", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_0c676feec9a12d03942999e61c74002f0f47e16211d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6", + "id": "3a88a1ea-5d85-480a-9f34-d1e834cc4527", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_f2bd8b322f222ae31f125f1a735e3a14f8c67ec6bbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/0c676feec9a12d03942999e61c74002f0f47e162%3A11d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/f2bd8b322f222ae31f125f1a735e3a14f8c67ec6%3Abbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[2423890.44,14619.89656174334],[1229796.71,15851.6303926097],[1219510.1,23453.791789473686],[61200.4,15108.65382647386],[200000.0,21204.94606571188],[null,23164.952256],[null,61080.7092],[null,84288.606],[null,null],[null,8875.86],[null,null],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", + "body": "{\"data\":[[2423890.44,14619.896561743342],[1229796.71,15851.630392609699],[1219510.1,23453.791789473686],[61200.4,15108.65382647386],[200000.0,21204.94606571188],[null,23164.952256],[null,61080.7092],[null,84288.606],[null,null],[null,8875.86],[null,null],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -27,10 +27,10 @@ "Content-Type": "application/json" } }, - "uuid": "23efbf34-0b28-4424-baaa-795da49833dc" + "uuid": "3a88a1ea-5d85-480a-9f34-d1e834cc4527" }, { - "id": "4eb51da1-5142-4720-80c1-2518692da7c2", + "id": "94cdd8db-bed2-4496-9bb3-f42b45f19749", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -45,7 +45,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"0c676feec9a12d03942999e61c74002f0f47e162:11d60dfc2c8f87b1b0c85f525816c5ba21403df22bfba48a39de3435157c4af6\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}},{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"f2bd8b322f222ae31f125f1a735e3a14f8c67ec6:bbe17c2a63ea481c47e6df9abb0a6baaed3a81c8e5a94827079ba6d97fdd9aa6\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -63,10 +63,10 @@ "Content-Type": "application/json" } }, - "uuid": "4eb51da1-5142-4720-80c1-2518692da7c2" + "uuid": "94cdd8db-bed2-4496-9bb3-f42b45f19749" }, { - "id": "e184f1ed-d520-4416-80f0-b806ef1834e7", + "id": "d0f9e759-7681-4f71-a2f8-e1302d78b199", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", @@ -74,7 +74,7 @@ }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -90,10 +90,10 @@ "Content-Type": "application/json" } }, - "uuid": "e184f1ed-d520-4416-80f0-b806ef1834e7" + "uuid": "d0f9e759-7681-4f71-a2f8-e1302d78b199" }, { - "id": "f5c6062e-b26d-4713-ae4e-9577edcfa298", + "id": "c222221f-4602-48a4-b0aa-ae46a67de411", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -101,7 +101,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -112,10 +112,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f5c6062e-b26d-4713-ae4e-9577edcfa298" + "uuid": "c222221f-4602-48a4-b0aa-ae46a67de411" }, { - "id": "8045cd8c-0238-4c1b-b236-f04470efcb5c", + "id": "58fd966d-963f-40cc-9eb3-941e766043ec", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -123,7 +123,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -141,10 +141,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8045cd8c-0238-4c1b-b236-f04470efcb5c" + "uuid": "58fd966d-963f-40cc-9eb3-941e766043ec" }, { - "id": "ca9b7f3b-d074-4a9b-86f0-69fef798da52", + "id": "11dd2b70-bd8c-4e99-b128-d356a5ef3338", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_visualizationobjects_3fb464aa-4a2c-4412-8811-609e5d6e06a5", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/3fb464aa-4a2c-4412-8811-609e5d6e06a5", @@ -170,10 +170,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "ca9b7f3b-d074-4a9b-86f0-69fef798da52" + "uuid": "11dd2b70-bd8c-4e99-b128-d356a5ef3338" }, { - "id": "18c2fa2d-9550-4f51-bf03-bb26ee81be2b", + "id": "d7acf611-ea64-4ec0-b6d1-025b58d57563", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -197,18 +197,18 @@ "Content-Type": "application/json" } }, - "uuid": "18c2fa2d-9550-4f51-bf03-bb26ee81be2b" + "uuid": "d7acf611-ea64-4ec0-b6d1-025b58d57563" }, { - "id": "596d9091-6713-46d8-8f1d-c5c4d966da15", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_5508e7b85ead6c2f66257ce824e2020ccb73b605c4111382ef4d96fa32dcb4f01dc82b4c6ad674b2f356fc8989aeba6f40905828", + "id": "fd9ac2db-cd5c-4eae-b75d-58fb3fa663ec", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_58c66c3f866799000e2e454734c19342b1905d66f117dc3b9b3d5abe45f64c7c4600a067b228ea35ea66fbfb30efc9f2702bce9b", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/5508e7b85ead6c2f66257ce824e2020ccb73b605%3Ac4111382ef4d96fa32dcb4f01dc82b4c6ad674b2f356fc8989aeba6f40905828", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/58c66c3f866799000e2e454734c19342b1905d66%3Af117dc3b9b3d5abe45f64c7c4600a067b228ea35ea66fbfb30efc9f2702bce9b", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[[2423890.44,14619.89656174334],[1219510.1,23453.791789473686],[200000.0,21204.94606571188],[null,61080.7092],[null,null],[null,null],[1229796.71,15851.6303926097],[61200.4,15108.65382647386],[null,23164.952256],[null,84288.606],[null,8875.86],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", + "body": "{\"data\":[[2423890.44,14619.896561743342],[1219510.1,23453.791789473686],[200000.0,21204.94606571188],[null,61080.7092],[null,null],[null,null],[1229796.71,15851.630392609699],[61200.4,15108.65382647386],[null,23164.952256],[null,84288.606],[null,8875.86],[null,3644.0]],\"dimensionHeaders\":[{\"headerGroups\":[{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Direct Sales\",\"primaryLabelValue\":\"Direct Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}},{\"attributeHeader\":{\"labelValue\":\"Inside Sales\",\"primaryLabelValue\":\"Inside Sales\"}}]},{\"headers\":[{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2016\",\"primaryLabelValue\":\"2016\"}},{\"attributeHeader\":{\"labelValue\":\"2010\",\"primaryLabelValue\":\"2010\"}},{\"attributeHeader\":{\"labelValue\":\"2011\",\"primaryLabelValue\":\"2011\"}},{\"attributeHeader\":{\"labelValue\":\"2012\",\"primaryLabelValue\":\"2012\"}},{\"attributeHeader\":{\"labelValue\":\"2013\",\"primaryLabelValue\":\"2013\"}},{\"attributeHeader\":{\"labelValue\":\"2014\",\"primaryLabelValue\":\"2014\"}},{\"attributeHeader\":{\"labelValue\":\"2017\",\"primaryLabelValue\":\"2017\"}}]}]},{\"headerGroups\":[{\"headers\":[{\"measureHeader\":{\"measureIndex\":0}},{\"measureHeader\":{\"measureIndex\":1}}]}]}],\"grandTotals\":[],\"paging\":{\"count\":[12,2],\"offset\":[0,0],\"total\":[12,2]}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -226,10 +226,10 @@ "Content-Type": "application/json" } }, - "uuid": "596d9091-6713-46d8-8f1d-c5c4d966da15" + "uuid": "fd9ac2db-cd5c-4eae-b75d-58fb3fa663ec" }, { - "id": "64be36be-b528-43d5-a857-e37b13f80dca", + "id": "0a08dd12-3795-4881-93d7-3071a06b0e5b", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute", @@ -244,7 +244,7 @@ }, "response": { "status": 200, - "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"5508e7b85ead6c2f66257ce824e2020ccb73b605:c4111382ef4d96fa32dcb4f01dc82b4c6ad674b2f356fc8989aeba6f40905828\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"attributeHeader\":{\"localIdentifier\":\"a_f_owner.department_id\",\"label\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"labelName\":\"Department\",\"attribute\":{\"id\":\"f_owner.department_id\",\"type\":\"attribute\"},\"attributeName\":\"Department\",\"granularity\":null,\"primaryLabel\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"},\"valueType\":\"TEXT\"}},{\"attributeHeader\":{\"localIdentifier\":\"a_dt_closedate_timestamp.year\",\"label\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"labelName\":\"Closed - Year\",\"attribute\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\"},\"attributeName\":\"Closed - Year\",\"granularity\":\"YEAR\",\"primaryLabel\":{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"},\"format\":{\"locale\":\"vn-VN\",\"pattern\":\"y\"}}}],\"localIdentifier\":\"dim_0\"},{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"},{\"localIdentifier\":\"m_avg._amount\",\"format\":\"$#,##0.00\",\"name\":\"Avg. Amount\"}]}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"58c66c3f866799000e2e454734c19342b1905d66:f117dc3b9b3d5abe45f64c7c4600a067b228ea35ea66fbfb30efc9f2702bce9b\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -262,7 +262,7 @@ "Content-Type": "application/json" } }, - "uuid": "64be36be-b528-43d5-a857-e37b13f80dca" + "uuid": "0a08dd12-3795-4881-93d7-3071a06b0e5b" } ] } diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-unknownVisualization.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-unknownVisualization.spec.ts.json index 5e72e679630..517292061fc 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-unknownVisualization.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-unknownVisualization.spec.ts.json @@ -1,15 +1,15 @@ { "mappings": [ { - "id": "f0c99885-6c38-4247-b3a2-2c7e254942b8", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", + "id": "858182f3-8047-4766-bdb5-82484c2f4973", + "name": "api_v1_entities_notificationchannels", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", + "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -22,18 +22,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f0c99885-6c38-4247-b3a2-2c7e254942b8" + "uuid": "858182f3-8047-4766-bdb5-82484c2f4973" }, { - "id": "8df2d688-7f1c-4e2d-8739-9e8a13afe00b", - "name": "api_v1_entities_notificationchannels", + "id": "f7b9606e-a47b-43a9-8090-ce75ec044ea9", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_automations", "request": { - "url": "/api/v1/entities/notificationChannels?filter=%28destinationType%3D%3DSMTP+or+destinationType%3D%3DDEFAULT_SMTP+or+destinationType%3D%3DWEBHOOK%29&page=0&size=1&metaInclude=page", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&page=0&size=1&metaInclude=page", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/notificationChannels?filter=destinationType%3D%3D%27SMTP%27%2CdestinationType%3D%3D%27DEFAULT_SMTP%27%2CdestinationType%3D%3D%27WEBHOOK%27&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", + "body": "{\"data\":[],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/automations?origin=NATIVE&include=createdBy%2CmodifiedBy%2CnotificationChannel%2Crecipients%2CexportDefinitions%2CanalyticalDashboard&metaInclude=page&page=0&size=1\"},\"meta\":{\"page\":{\"size\":1,\"totalElements\":0,\"totalPages\":0,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -46,10 +46,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "8df2d688-7f1c-4e2d-8739-9e8a13afe00b" + "uuid": "f7b9606e-a47b-43a9-8090-ce75ec044ea9" }, { - "id": "cde82b1f-3808-47f8-b154-9606dba2a1a6", + "id": "2c6f5b6a-decd-4ae7-85d9-ad4e929a1125", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_attributes", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&size=250&page=0", @@ -57,7 +57,36 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_activity.subject\",\"type\":\"label\"},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.link\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id.statename\",\"type\":\"label\"},{\"id\":\"state_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"pg_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"pg_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_4a52a2124bf5c968\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_account.account\",\"type\":\"label\"},{\"id\":\"label.f_account.account.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_account.account\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_activity.activity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_activity.activity\",\"type\":\"label\"},{\"id\":\"label.f_activity.subject\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_activity.activity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunity.opportunity\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_opportunitysnapshot.oppsnapshot\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_owner.salesrep\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_owner.salesrep\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_product.product\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"label.f_product.product.name\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_product.product.name\",\"type\":\"label\"},{\"id\":\"attr.f_product.product\",\"type\":\"label\"},{\"id\":\"label.f_product.product.image\",\"type\":\"label\"},{\"id\":\"label.f_product.product.link\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_product.product\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stagehistory.stagehistory\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"sortColumn\":\"ls__id__nm_order\",\"sortDirection\":\"ASC\",\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\"},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\"},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/attr.f_stage.stagename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"county_name\",\"type\":\"attribute\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"county_name\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/county_name\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_activity_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_closedate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_oppcreated_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_snapshotdate_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.day\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfMonth\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfWeek\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"granularity\":\"DAY_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.dayOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"granularity\":\"HOUR_OF_DAY\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.hourOfDay\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minute\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"granularity\":\"MINUTE_OF_HOUR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.minuteOfHour\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.month\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"granularity\":\"MONTH_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.monthOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarter\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"granularity\":\"QUARTER_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.quarterOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.week\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"granularity\":\"WEEK_OF_YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.weekOfYear\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"granularity\":\"YEAR\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/dt_timeline_timestamp.year\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_account.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_account\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_account.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_account.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.activitytype_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.istask_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.istask_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.istask_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.priority_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.priority_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.priority_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_activity.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_activity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_activity.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_activity.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_city.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_city.id.cityname\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_city.id.cityname\",\"type\":\"label\"},{\"id\":\"f_city.id.location\",\"type\":\"label\"},{\"id\":\"f_city.id.longitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\"},{\"id\":\"f_city.id\",\"type\":\"label\"},{\"id\":\"f_city.id.latitude\",\"type\":\"label\"},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_city.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunity.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunity.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunity.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.forecastcategory_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_opportunitysnapshot.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.department_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.department_id\",\"type\":\"label\"},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.department_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_owner.region_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"f_owner.region_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_owner.region_id\",\"type\":\"label\"},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_owner.region_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_product.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_product.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_product.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stagehistory\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stagehistory.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stagehistory.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"state_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"state_id.statename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_city\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"state_id\",\"type\":\"label\"},{\"id\":\"state_id.statename\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/state_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isactive_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isactive_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isactive_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.isclosed_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.iswon_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.iswon_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.iswon_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_stage.status_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_stage\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_stage.status_id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_stage.status_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"f_timeline.id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\"},\"relationships\":{\"dataset\":{\"data\":{\"id\":\"f_timeline\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"f_timeline.id\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/f_timeline.id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"user_id\",\"type\":\"attribute\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"user_id\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_owner\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"user_id\",\"type\":\"label\"},{\"id\":\"user_id.username\",\"type\":\"label\"},{\"id\":\"user_id.useremail\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/user_id\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"attribute\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"relationships\":{\"defaultView\":{\"data\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"dataset\":{\"data\":{\"id\":\"f_product\",\"type\":\"dataset\"}},\"labels\":{\"data\":[{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes/productthatisrenamedtotestthelongattributename\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"}}}],\"included\":[{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\",\"attributes\":{\"title\":\"Sales Rep\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_owner.salesrep\"}},{\"id\":\"f_city.id.location\",\"type\":\"label\",\"attributes\":{\"title\":\"Location\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_location\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.location\"}},{\"id\":\"f_activity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"grain\":[{\"id\":\"f_activity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_activity_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_activity_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_activity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_activity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_activity\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfYear\"}},{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Department hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id.departmenthyperlink\"}},{\"id\":\"label.f_product.product.image\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Image\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_image\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"IMAGE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.image\"}},{\"id\":\"dt_closedate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfWeek\"}},{\"id\":\"f_stage.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfWeek\"}},{\"id\":\"dt_snapshotdate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute\",\"description\":\"Minute\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minute\"}},{\"id\":\"dt_timeline_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.week\"}},{\"id\":\"label.f_owner.salesrep.ownername\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_owner.salesrep.ownername\"}},{\"id\":\"dt_timeline_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarterOfYear\"}},{\"id\":\"attr.f_stage.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"Stage Name\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_stagename\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stage.stagename\"}},{\"id\":\"f_product.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Id\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_product.id\"}},{\"id\":\"user_id.username\",\"type\":\"label\",\"attributes\":{\"title\":\"User Name\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.username\"}},{\"id\":\"f_account\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Account\",\"description\":\"\",\"tags\":[\"Account\"],\"grain\":[{\"id\":\"f_account.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_account\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_account\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_account\"}},{\"id\":\"dt_activity_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfMonth\"}},{\"id\":\"f_owner.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Owner Id\",\"description\":\"Id\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.id\"}},{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename\"}},{\"id\":\"dt_timeline_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Year\",\"description\":\"Year\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.year\"}},{\"id\":\"dt_snapshotdate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.monthOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfMonth\"}},{\"id\":\"dt_closedate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.weekOfYear\"}},{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_timeline_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfWeek\"}},{\"id\":\"attr.f_product.product\",\"type\":\"label\",\"attributes\":{\"title\":\"Product\",\"description\":\"Product\",\"tags\":[\"product\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_product.product\"}},{\"id\":\"dt_snapshotdate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.weekOfYear\"}},{\"id\":\"dt_activity_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.monthOfYear\"}},{\"id\":\"dt_activity_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour\",\"description\":\"Hour\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hour\"}},{\"id\":\"dt_closedate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Year\",\"description\":\"Year\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.year\"}},{\"id\":\"f_activity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Id\",\"description\":\"Activity Id\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.id\"}},{\"id\":\"dt_snapshotdate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.minuteOfHour\"}},{\"id\":\"dt_snapshotdate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Date\",\"description\":\"Date\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.day\"}},{\"id\":\"label.f_account.account.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Name\",\"description\":\"\",\"tags\":[\"Account\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_account.account.name\"}},{\"id\":\"dt_activity_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.dayOfYear\"}},{\"id\":\"label.f_stage.stagename.order\",\"type\":\"label\",\"attributes\":{\"title\":\"Order\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_order\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.order\"}},{\"id\":\"f_city.id.latitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Latitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_latitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LATITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.latitude\"}},{\"id\":\"f_stage.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Id\",\"description\":\"Stage Id\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.id\"}},{\"id\":\"dt_timeline_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Year\",\"description\":\"Year\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minuteOfHour\"}},{\"id\":\"dt_oppcreated_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minuteOfHour\"}},{\"id\":\"f_activity.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.status_id\"}},{\"id\":\"dt_closedate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.monthOfYear\"}},{\"id\":\"state_id.statename\",\"type\":\"label\",\"attributes\":{\"title\":\"State name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"state_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id.statename\"}},{\"id\":\"dt_snapshotdate_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.dayOfWeek\"}},{\"id\":\"f_city.id.longitude\",\"type\":\"label\",\"attributes\":{\"title\":\"Longitude\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_longitude\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"GEO_LONGITUDE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.longitude\"}},{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Forecast Category\",\"description\":\"Forecast Category\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__forecastcategory_id__nm_forecastcategory\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.forecastcategory_id\"}},{\"id\":\"dt_snapshotdate_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.monthOfYear\"}},{\"id\":\"label.f_product.product.link\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Link\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_link\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.link\"}},{\"id\":\"f_city.id.cityname\",\"type\":\"label\",\"attributes\":{\"title\":\"City name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityname\"}},{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Snapshot\",\"description\":\"\",\"tags\":[\"Snapshot\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_snapshotdate_timestamp\"}},{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Created\",\"description\":\"\",\"tags\":[\"Created\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_oppcreated_timestamp\"}},{\"id\":\"dt_closedate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.quarterOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Minute\",\"description\":\"Minute\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.week\"}},{\"id\":\"county_name\",\"type\":\"label\",\"attributes\":{\"title\":\"County name\",\"description\":\"County name\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"county_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/county_name\"}},{\"id\":\"dt_oppcreated_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Date\",\"description\":\"Date\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.day\"}},{\"id\":\"dt_activity_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Minute\",\"description\":\"Minute\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.minute\"}},{\"id\":\"dt_activity_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarter\"}},{\"id\":\"dt_closedate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour\",\"description\":\"Hour\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hour\"}},{\"id\":\"dt_timeline_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Minute\",\"description\":\"Minute\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.minute\"}},{\"id\":\"f_activity.istask_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Task?\",\"description\":\"Is Task?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__istask_id__nm_istask\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.istask_id\"}},{\"id\":\"f_owner\",\"type\":\"dataset\",\"attributes\":{\"title\":\"owner\",\"description\":\"\",\"tags\":[\"owner\"],\"grain\":[{\"id\":\"f_owner.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_city\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"city_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_city.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_owner\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_owner\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_owner\"}},{\"id\":\"f_account.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Account Id\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_account.id\"}},{\"id\":\"state_id\",\"type\":\"label\",\"attributes\":{\"title\":\"State\",\"description\":\"State id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"state_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/state_id\"}},{\"id\":\"dt_snapshotdate_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Hour\",\"description\":\"Hour\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.hour\"}},{\"id\":\"f_stage.isactive_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Active?\",\"description\":\"Is Active?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__isactive_id__nm_isactive\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.isactive_id\"}},{\"id\":\"dt_closedate_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Date\",\"description\":\"Date\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.day\"}},{\"id\":\"f_city.id.cityshortname\",\"type\":\"label\",\"attributes\":{\"title\":\"City short name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_short_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityshortname\"}},{\"id\":\"label.f_product.product.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Product Name\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_product.product.name\"}},{\"id\":\"attr.f_opportunity.opportunity\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"Opportunity\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunity.opportunity\"}},{\"id\":\"dt_oppcreated_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hourOfDay\"}},{\"id\":\"f_timeline.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"Timeline\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_timeline.id\"}},{\"id\":\"label.f_stage.stagename.stagename\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage Name\",\"description\":\"\",\"tags\":[\"Stage\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_stage.stagename.stagename\"}},{\"id\":\"dt_snapshotdate_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.weekOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Hour\",\"description\":\"Hour\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.hour\"}},{\"id\":\"dt_activity_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.weekOfYear\"}},{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\",\"attributes\":{\"title\":\"SFDC URL\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_url\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.sfdcurl\"}},{\"id\":\"dt_timeline_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfMonth\"}},{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Year\",\"description\":\"Year\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.year\"}},{\"id\":\"dt_oppcreated_timestamp.weekOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Week of Year\",\"description\":\"Generic Week (W1-W53)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.weekOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.year\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Year\",\"description\":\"Year\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.year\"}},{\"id\":\"f_product\",\"type\":\"dataset\",\"attributes\":{\"title\":\"product\",\"description\":\"\",\"tags\":[\"product\"],\"grain\":[{\"id\":\"f_product.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_product\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_product\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_product\"}},{\"id\":\"dt_timeline_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.month\"}},{\"id\":\"attr.f_stagehistory.stagehistory\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History\",\"description\":\"Stage History\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_stagehistory.stagehistory\"}},{\"id\":\"dt_timeline_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.monthOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month of Year\",\"description\":\"Generic Month (M1-M12)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.monthOfYear\"}},{\"id\":\"dt_oppcreated_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.month\"}},{\"id\":\"dt_oppcreated_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.quarter\"}},{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Activity\",\"description\":\"\",\"tags\":[\"Activity\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_activity_timestamp\"}},{\"id\":\"f_opportunity\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Opportunity\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"grain\":[{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_oppcreated_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunity\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunity\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunity\"}},{\"id\":\"dt_closedate_timestamp.dayOfMonth\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Month\",\"description\":\"Generic Day of the Month (D1-D31)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfMonth\"}},{\"id\":\"f_activity.isclosed_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Closed?\",\"description\":\"Is Closed?\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__isclosed_id__nm_isclosed\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.isclosed_id\"}},{\"id\":\"dt_activity_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.quarterOfYear\"}},{\"id\":\"user_id.useremail\",\"type\":\"label\",\"attributes\":{\"title\":\"User Email\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__user_id__user_email\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id.useremail\"}},{\"id\":\"dt_oppcreated_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Created - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Created\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_oppcreated_timestamp.dayOfYear\"}},{\"id\":\"dt_snapshotdate_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarter\"}},{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Name\",\"description\":\"\",\"tags\":[\"Opportunity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_opportunity.opportunity.name\"}},{\"id\":\"dt_closedate_timestamp.minuteOfHour\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute of Hour\",\"description\":\"Generic Minute of the Hour(MI1-MI60)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minuteOfHour\"}},{\"id\":\"dt_timeline_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Date\",\"description\":\"Date\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.day\"}},{\"id\":\"f_city.id\",\"type\":\"label\",\"attributes\":{\"title\":\"City\",\"description\":\"Id\",\"tags\":[\"City\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id\"}},{\"id\":\"f_owner.region_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Region\",\"description\":\"Region\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id\"}},{\"id\":\"f_stage\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Stage\",\"description\":\"\",\"tags\":[\"Stage\"],\"grain\":[{\"id\":\"f_stage.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stage\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stage\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stage\"}},{\"id\":\"attr.f_account.account\",\"type\":\"label\",\"attributes\":{\"title\":\"Account\",\"description\":\"Account\",\"tags\":[\"Account\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_account.account\"}},{\"id\":\"dt_snapshotdate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.week\"}},{\"id\":\"f_timeline\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Timeline\",\"description\":\"\",\"tags\":[\"Timeline\"],\"grain\":[{\"id\":\"f_timeline.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_timeline_timestamp\",\"dataType\":\"TIMESTAMP_TZ\",\"target\":{\"id\":\"dt_timeline_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_timeline\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_timeline\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_timeline\"}},{\"id\":\"f_owner.region_id.regionhyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Region hyperlink\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":false,\"sourceColumn\":\"ls__region_id__nm_region\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.region_id.regionhyperlink\"}},{\"id\":\"f_city\",\"type\":\"dataset\",\"attributes\":{\"title\":\"City\",\"description\":\"City\",\"tags\":[\"City\"],\"grain\":[{\"id\":\"f_city.id\",\"type\":\"attribute\"}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_city\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_city\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_city\"}},{\"id\":\"user_id\",\"type\":\"label\",\"attributes\":{\"title\":\"User Id\",\"description\":\"\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"user_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/user_id\"}},{\"id\":\"dt_activity_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.hourOfDay\"}},{\"id\":\"dt_timeline_timestamp.quarter\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Quarter/Year\",\"description\":\"Quarter and Year (Q1/2020)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.quarter\"}},{\"id\":\"f_activity.activitytype_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity Type\",\"description\":\"Activity Type\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__activitytype_id__nm_activitytype\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.activitytype_id\"}},{\"id\":\"attr.f_opportunitysnapshot.oppsnapshot\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot\",\"description\":\"Opp. Snapshot\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_opportunitysnapshot.oppsnapshot\"}},{\"id\":\"f_stage.iswon_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Is Won?\",\"description\":\"Is Won?\",\"tags\":[\"Stage\"],\"primary\":true,\"sourceColumn\":\"ls__iswon_id__nm_iswon\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.iswon_id\"}},{\"id\":\"dt_activity_timestamp.day\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Date\",\"description\":\"Date\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.day\"}},{\"id\":\"f_opportunitysnapshot\",\"type\":\"dataset\",\"attributes\":{\"title\":\"OpportunitySnapshot\",\"description\":\"\",\"tags\":[\"OpportunitySnapshot\"],\"grain\":[{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_closedate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_owner\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"ownerid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_owner.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"dt_snapshotdate_timestamp\",\"dataType\":\"TIMESTAMP\",\"target\":{\"id\":\"dt_snapshotdate_timestamp\",\"type\":\"date\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_opportunitysnapshot\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_opportunitysnapshot\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_opportunitysnapshot\"}},{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\",\"attributes\":{\"title\":\"Product that is renamed to test the long attribute name hyperlink\",\"description\":\"\",\"tags\":[\"product\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"HYPERLINK\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\"}},{\"id\":\"f_activity.priority_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Priority\",\"description\":\"Priority\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__priority_id__nm_priority\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_activity.priority_id\"}},{\"id\":\"f_owner.department_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Department\",\"description\":\"Department\",\"tags\":[\"owner\"],\"primary\":true,\"sourceColumn\":\"ls__department_id__nm_department\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_owner.department_id\"}},{\"id\":\"dt_closedate_timestamp.week\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Week/Year\",\"description\":\"Week and Year (W52/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.week\"}},{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\",\"attributes\":{\"title\":\"Closed\",\"description\":\"\",\"tags\":[\"Closed\"],\"type\":\"DATE\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/dt_closedate_timestamp\"}},{\"id\":\"f_stagehistory\",\"type\":\"dataset\",\"attributes\":{\"title\":\"stagehistory\",\"description\":\"\",\"tags\":[\"stagehistory\"],\"grain\":[{\"id\":\"f_stagehistory.id\",\"type\":\"attribute\"}],\"referenceProperties\":[{\"identifier\":{\"id\":\"f_opportunity\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"opportunityid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_opportunity.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_stage\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"stage_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_stage.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_product\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"productid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_product.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null},{\"identifier\":{\"id\":\"f_account\",\"type\":\"dataset\"},\"multivalue\":false,\"sources\":[{\"column\":\"accountid_id\",\"dataType\":\"INT\",\"target\":{\"id\":\"f_account.id\",\"type\":\"attribute\"}}],\"sourceColumns\":null,\"sourceColumnDataTypes\":null}],\"dataSourceTableId\":\"vertica_staging-goodsales:f_stagehistory\",\"dataSourceTablePath\":[\"goodsales_aec12a0df318c7d2\",\"f_stagehistory\"],\"type\":\"NORMAL\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/datasets/f_stagehistory\"}},{\"id\":\"f_stagehistory.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Stage History Id\",\"description\":\"Stage History Id\",\"tags\":[\"stagehistory\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stagehistory.id\"}},{\"id\":\"f_opportunitysnapshot.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opp. Snapshot Id\",\"description\":\"Opp. Snapshot Id\",\"tags\":[\"OpportunitySnapshot\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunitysnapshot.id\"}},{\"id\":\"attr.f_activity.activity\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity\",\"description\":\"Activity\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"ls__id__nm_id\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/attr.f_activity.activity\"}},{\"id\":\"dt_timeline_timestamp.hour\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour\",\"description\":\"Hour\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hour\"}},{\"id\":\"label.f_activity.subject\",\"type\":\"label\",\"attributes\":{\"title\":\"Subject\",\"description\":\"\",\"tags\":[\"Activity\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_subject\",\"sourceColumnDataType\":\"STRING\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/label.f_activity.subject\"}},{\"id\":\"dt_closedate_timestamp.minute\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Minute\",\"description\":\"Minute\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.minute\"}},{\"id\":\"f_opportunity.id\",\"type\":\"label\",\"attributes\":{\"title\":\"Opportunity Id\",\"description\":\"Opportunity Id\",\"tags\":[\"Opportunity\"],\"primary\":true,\"sourceColumn\":\"id\",\"sourceColumnDataType\":\"INT\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_opportunity.id\"}},{\"id\":\"f_city.id.cityasciiname\",\"type\":\"label\",\"attributes\":{\"title\":\"City ascii name\",\"description\":\"\",\"tags\":[\"City\"],\"primary\":false,\"sourceColumn\":\"ls__id__nm_city_ascii_name\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_city.id.cityasciiname\"}},{\"id\":\"dt_snapshotdate_timestamp.quarterOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Snapshot - Quarter of Year\",\"description\":\"Generic Quarter (Q1-Q4)\",\"tags\":[\"Snapshot\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_snapshotdate_timestamp.quarterOfYear\"}},{\"id\":\"dt_activity_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Activity - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Activity\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_activity_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.hourOfDay\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Hour of Day\",\"description\":\"Generic Hour of the Day(H1-H24)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.hourOfDay\"}},{\"id\":\"dt_closedate_timestamp.dayOfYear\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Day of Year\",\"description\":\"Generic Day of the Year (D1-D366)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.dayOfYear\"}},{\"id\":\"f_stage.status_id\",\"type\":\"label\",\"attributes\":{\"title\":\"Status\",\"description\":\"Status\",\"tags\":[\"Stage\",\"attribute_image_url\"],\"primary\":true,\"sourceColumn\":\"ls__status_id__nm_status\",\"sourceColumnDataType\":\"STRING\",\"valueType\":\"TEXT\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/f_stage.status_id\"}},{\"id\":\"dt_closedate_timestamp.month\",\"type\":\"label\",\"attributes\":{\"title\":\"Closed - Month/Year\",\"description\":\"Month and Year (12/2020)\",\"tags\":[\"Closed\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_closedate_timestamp.month\"}},{\"id\":\"dt_timeline_timestamp.dayOfWeek\",\"type\":\"label\",\"attributes\":{\"title\":\"Timeline - Day of Week\",\"description\":\"Generic Day of the Week (D1-D7)\",\"tags\":[\"Timeline\"],\"primary\":true,\"sourceColumn\":\"\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/labels/dt_timeline_timestamp.dayOfWeek\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/attributes?include=labels%2CdefaultView%2Cdataset%2CattributeHierarchies&metaInclude=page&page=0&size=250\"},\"meta\":{\"page\":{\"size\":250,\"totalElements\":109,\"totalPages\":1,\"number\":0}}}", + "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", + "Referrer-Policy": "no-referrer", + "Strict-Transport-Security": "max-age=63072000; includeSubDomains", + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": [ + "Accept-Encoding", + "Origin", + "Access-Control-Request-Method", + "Access-Control-Request-Headers" + ], + "Expires": "0", + "X-XSS-Protection": "0", + "Content-Type": "application/vnd.gooddata.api+json" + } + }, + "uuid": "2c6f5b6a-decd-4ae7-85d9-ad4e929a1125" + }, + { + "id": "2393c516-a6e1-4cf9-a7eb-eeb8283cea65", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "request": { + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "method": "GET" + }, + "response": { + "status": 200, + "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-12-11 19:21\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-12-11 19:14\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -75,10 +104,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "cde82b1f-3808-47f8-b154-9606dba2a1a6" + "uuid": "2393c516-a6e1-4cf9-a7eb-eeb8283cea65" }, { - "id": "2fc2b55f-bdc5-4f0f-b540-188a232318bc", + "id": "109fbc81-2e73-47fe-925b-de38a702899c", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_filterviews", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterViews?origin=NATIVE&filter=analyticalDashboard.id%3D%3D2326d431-ccb3-405e-a3d2-394bdf276e61%3Buser.id%3D%3Dadmin&include=user%2CanalyticalDashboard", @@ -99,18 +128,18 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "2fc2b55f-bdc5-4f0f-b540-188a232318bc" + "uuid": "109fbc81-2e73-47fe-925b-de38a702899c" }, { - "id": "6e4cb9fe-5a3a-4266-9d2d-c489b56ff30f", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards", + "id": "74bdfed9-97fc-452f-b532-63d1ba36038b", + "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_2326d431-ccb3-405e-a3d2-394bdf276e61", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&size=250&page=0", + "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"04a8f9c7-cce9-4511-be2b-ea52ea80773f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"be26570e-a52c-4b54-b2d2-4f54e063b096\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"de6092cf-d243-4987-918b-8aac3ecd26cc\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"63a1281d-2ad1-42b2-9577-d653cbe7562c\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_opportunitysnapshot.forecastcategory_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/04a8f9c7-cce9-4511-be2b-ea52ea80773f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0c120022-243d-4146-987c-eadfaa58b0d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard multiple date filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"af127447-1e69-44e1-9f14-2c07a1ba69a3\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-02-13 07:31\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0c120022-243d-4146-987c-eadfaa58b0d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0de1f35f-994d-4803-b236-ae2549818104\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has not hyperlink\",\"description\":\"Dashboard column chart has not hyperlink\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"5ac2b26c-0971-47a3-bfbd-348c182eb342\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"84d13bd9-f976-4e03-8b00-fec9497d580b\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has not hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0de1f35f-994d-4803-b236-ae2549818104\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"0e0cb428-c0db-45dc-946e-65b47287a94f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with stage name\",\"description\":\"KD with stage name\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b2c3b1d2-b990-44a2-bf02-a857747a02b7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fbcca86f-c473-446b-b316-eb4f4e5de909\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name and atribute filter\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/0e0cb428-c0db-45dc-946e-65b47287a94f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"14d22840-5851-41c1-9d72-71626471813e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Repeater Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"1871b38a-de1e-439c-ba6c-2fc8aebf8111\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":38,\"gridWidth\":8}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"7906ebea-92ef-46eb-868f-afa99792be08\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Repeater\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-04-09 05:06\",\"modifiedAt\":\"2024-04-09 05:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/14d22840-5851-41c1-9d72-71626471813e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"1b35747d-d7a3-4052-9f07-a9aa93248389\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Cross filtering\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"45d8ead4-7e44-4474-a99b-8f6ce211fbfc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"localIdentifier\":\"4f134bab93a34e9994bda0f743d47fd5\",\"origin\":{\"attribute\":{\"localIdentifier\":\"be65b4c9d5cd4272a552409f70e4698a\"},\"type\":\"drillFromAttribute\"},\"target\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:52\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/1b35747d-d7a3-4052-9f07-a9aa93248389\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"2c269aba-2a5a-4d54-8bdb-bbf037645f0f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart has hyperlinks\",\"description\":\"Dashboard column chart has hyperlinks\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"58de8c31-fb59-4066-9cc1-ec6f88cd7822\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.name\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f7a50db1-5d2d-4b1a-82e6-e1648836985c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"9a2ab62b-587a-4b16-9682-1b7962340354\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart has many hyperlinks\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"productthatisrenamedtotestthelongattributename.productthatisrenamedtotestthelongattributenamehyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87c466b7-e3e0-4a1a-a45a-4ae333bce863\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart long attribute has hyperlink\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"displayForm\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"hyperlinkDisplayForm\":{\"identifier\":{\"id\":\"f_owner.department_id.departmenthyperlink\",\"type\":\"label\"}}},\"transition\":\"new-window\",\"type\":\"drillToAttributeUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute\",\"type\":\"insight\"}}]},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"973a3e7ca8fa497cb2be98bc75eb8950\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b1614db1-3058-4071-a2fe-64a017d318c5\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart with Department attribute with custom url\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2c269aba-2a5a-4d54-8bdb-bbf037645f0f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Header Tests\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c4d17586-73c4-440a-9977-f25baed90d88\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"description\":\"section 1\",\"title\":\"section 1\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2dcc56ff-5ae6-49f1-ba97-9b76000ca4a1\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"3999bcb1-696c-4587-a075-c403eef07552\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard scatter plot segmentation\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2d1ca758-3240-4984-a84e-f2492c63ce8f\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3fb464aa-4a2c-4412-8811-609e5d6e06a5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Scatter plot segment by attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-05-27 09:57\",\"modifiedAt\":\"2024-05-27 11:38\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/3999bcb1-696c-4587-a075-c403eef07552\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Insight on dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"882c3455-5c89-4577-a9c2-aa60ca875d19\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"\",\"type\":\"insight\",\"localIdentifier\":\"test_widget_local_identifier_0\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\",\"modifiedAt\":\"2024-11-28 09:18\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/46dbb7b3-468c-436f-a2ff-85fbf4e8d5ad\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"51ab79db-d7aa-44fe-ba93-404d83f071d3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Testing\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"fe0c65ba-a85d-4def-9aa1-e8f19469324e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-09-05 15:20\",\"modifiedAt\":\"2023-09-05 17:05\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/51ab79db-d7aa-44fe-ba93-404d83f071d3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"5a224af3-902c-4acd-ac75-bfa88d80e044\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"nak10bef-21a3-4909-b824-7670c6fe2032\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"38b871775be5400a98fd261a38e2cb9c\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f107b852334c4730abc4e11608530bb2\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"9bd8d6e1d80f4f15965be8a7926c590f\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"http://google.com.vn\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"AD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5a224af3-902c-4acd-ac75-bfa88d80e044\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"5c8244eb-6c86-488c-9df1-37d46e5450ed\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with table has many rows/columns\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"def1b968-bf39-48c3-9a54-0bdfddd098a5\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table has many rows/columns\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f39fae64af114ed3819a5df4636e06d6\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"aa8db374-7a8b-4019-85df-25f47772db5d\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d46ac4d-9d6c-434d-a9ae-ff61c98ce066\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight has invalid interaction\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/5c8244eb-6c86-488c-9df1-37d46e5450ed\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KPIs\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"27a1d414-e6b8-4f63-93a8-ecbdb5ebb3e8\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered filtered by date\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"attr.f_owner.salesrep\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate total\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cc722659-8411-4813-be8f-4d7fed0fe6a6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Win Rate filtered by Sales Rep\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"87e5c951-0ae6-4a71-a38d-843457bdfc0b\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Amount\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/601c81ae-0582-42f0-9f35-a4ec2a6a8497\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"61cbcfcd-efee-407f-ba3a-6c3170f50e03\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with No data\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"f1383eb6-9c7d-49b8-9fe7-8c82a05631e4\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/61cbcfcd-efee-407f-ba3a-6c3170f50e03\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"62554df1-31a8-49c7-bfed-524771a83b1a\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Readonly Date Filter\",\"description\":\"\",\"content\":{\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"readonly\"},\"filterContextRef\":{\"identifier\":{\"id\":\"84b43119-13a0-468b-a089-6b4680e25b00\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:37\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/62554df1-31a8-49c7-bfed-524771a83b1a\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6aac31b1-ba6c-40b6-b727-1c412d9e4d25\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with dependent filters\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b622164f-f036-422f-9f49-fb81bfeeb55e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":21,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"780f3759-65cc-4489-858d-9c318ecece75\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"USA geography attribute table\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-11-14 15:32\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6aac31b1-ba6c-40b6-b727-1c412d9e4d25\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"6dcf6335-92cf-4b77-981f-a1f4d0763053\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard column chart only measures\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9fb11225-7612-4570-afd0-eb38ab986eb0\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6ecba0d9-8fff-4c78-8adf-7f33cc1956c8\",\"type\":\"visualizationObject\"}},\"title\":\"Column chart only measures\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/6dcf6335-92cf-4b77-981f-a1f4d0763053\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"75a429f8-6c26-422a-8e0d-9e52981f5403\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with big insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"dbf9b9d1-5c6b-43dc-bd30-adfd5ab63158\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"5517045e-661f-4d6b-b0b0-98030ab9f68c\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"big insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/75a429f8-6c26-422a-8e0d-9e52981f5403\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7a02b8e8-8a46-4b3c-b9b8-69792793eb15\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Widget tooltips\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"364a7139-4c92-44fb-9eb4-e38b00597598\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"insight\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With Insight's description\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"description\":{\"includeMetrics\":false,\"source\":\"widget\",\"visible\":true}},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"Widget description\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d9ea05ec-5036-43a0-969f-a3ddecb1ca40\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With own description\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7a02b8e8-8a46-4b3c-b9b8-69792793eb15\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"7b2cd4c1-bb41-473a-9017-e404cbc630d2\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD using long name metric\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"cc33d910-fae6-40e4-ab6b-b38e770bb779\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"1e17f8cf-aa34-4474-8dd5-c1249c688225\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table using long name metric\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":7}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"843701ee-8f24-4942-8522-872a96575f8e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Insight using long name metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/7b2cd4c1-bb41-473a-9017-e404cbc630d2\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"8dea7e2f-315d-4d62-ad51-2ed2ab29758b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"RichText\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"2b51da8e-fe92-400f-9cf6-dc4a3c9cfea7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f00bd5d5-91da-4139-9e7e-5498d9fe49b5\",\"type\":\"visualizationObject\"}},\"title\":\"No data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"content\":\"# Title\\n\\n![Image](/image.png)\",\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"title\":\"\",\"type\":\"richText\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-23 13:06\",\"modifiedAt\":\"2024-01-23 15:47\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/8dea7e2f-315d-4d62-ad51-2ed2ab29758b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"97aca5e1-ab29-4ad9-a173-72085daf4dbf\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"ac7f493d-782f-496b-a5eb-c4b988151df6\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"2c61cc06c52d4774b26f4e2dcc3787ff\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"},{\"origin\":{\"measure\":{\"localIdentifier\":\"f68f013e09e6489b9c5adc4fe70146bf\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"transition\":\"pop-up\",\"type\":\"drillToInsight\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"f7d23e70f2c2462d8cd2627d718a9f39\"},\"type\":\"drillFromMeasure\"},\"target\":{\"identifier\":{\"id\":\"601c81ae-0582-42f0-9f35-a4ec2a6a8497\",\"type\":\"analyticalDashboard\"}},\"transition\":\"in-place\",\"type\":\"drillToDashboard\"}],\"ignoreDashboardFilters\":[{\"displayForm\":{\"identifier\":{\"id\":\"f_activity.status_id\",\"type\":\"label\"}},\"type\":\"attributeFilterReference\"}],\"insight\":{\"identifier\":{\"id\":\"a40866ab-5272-4f2c-9b5a-dd255b1e5d42\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/97aca5e1-ab29-4ad9-a173-72085daf4dbf\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a402fcdc-fa1c-49ca-be7f-dade9e75d33e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with Table Transpose\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"234e9a15-4e45-4e85-9606-0726226b1914\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b69512f0-6285-4d4d-b31c-47b7b081276c\",\"type\":\"visualizationObject\"}},\"title\":\"Table Transpose\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a402fcdc-fa1c-49ca-be7f-dade9e75d33e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"a87209e0-c53f-4a6f-abf3-17c7d8d4079e\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Target KD has null value\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"98beef1d-b7df-4c6a-acb2-4bdd59c4fad7\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridHeight\":20,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-0322-82f1-b86ky73k90f8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Target KD has null value\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/a87209e0-c53f-4a6f-abf3-17c7d8d4079e\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"abcd2251-d78d-4d6b-b088-1845b89c04ba\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with compares\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"4241e9a6-4dd0-4f61-9b4b-3d7d6ca4e165\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f6dc8313-c2dc-4731-b491-b5b0758738ae\",\"type\":\"visualizationObject\"}},\"properties\":{\"controls\":{\"columnWidths\":[{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"East Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":244}}},{\"measureColumnWidthItem\":{\"locators\":[{\"attributeLocatorItem\":{\"attributeIdentifier\":\"4a9ade0988e94b59bbb5cdb457bbbc50\",\"element\":\"West Coast\"}},{\"measureLocatorItem\":{\"measureIdentifier\":\"2fc7b14ec80241b09a1f6a1bcb51a547\"}}],\"width\":{\"value\":307}}}]}},\"title\":\"AD with compares\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/abcd2251-d78d-4d6b-b088-1845b89c04ba\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"b5f958b1-0428-41d6-b211-b4dad61d21ff\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with charts\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b6c65219-3551-413a-a59b-d128d407e556\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"39fc72a9-5f25-455c-92bb-f7dbde85d586\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Funnel chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"684a2cf2-3b5c-44d3-9287-61e428d0eac2\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Sankey chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"eb7f3b09-09e8-498b-bff5-249660ffcd6e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Pyramid chart\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"75e08348-d27f-42b8-a360-41bee971fb6d\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Dependency wheel chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"cbe62312-b02c-45a8-b641-b13ea473f0f6\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Waterfall chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b5f958b1-0428-41d6-b211-b4dad61d21ff\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"b74d3889-655f-4a0d-bc94-15b39d5e1046\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drag drop and Move\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"9498390c-ffde-4ae9-9a15-12cf4237a623\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":4}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3c05e649-7897-4a95-9c75-c043f0c39e14\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Combo chart\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Last row\"},\"items\":[{\"size\":{\"xl\":{\"gridWidth\":2}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/b74d3889-655f-4a0d-bc94-15b39d5e1046\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"c03bd065-4377-4b63-80c1-a00b00d20ddd\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Pivot Table Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"19551c0c-62a1-40ee-898b-b46b95e59074\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{\"title\":\"Pivot Table KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"343b329b-e2b0-43b2-9724-de8cd664ebac\",\"type\":\"visualizationObject\"}},\"title\":\"Table has AM metric\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"},{\"header\":{\"title\":\"Pivot Table With Multi Format Metrics KPI\"},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6d236ec6-5cf7-493e-8285-6613fde4ce18\",\"type\":\"visualizationObject\"}},\"title\":\"Table has multi metrics and multi formats\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c03bd065-4377-4b63-80c1-a00b00d20ddd\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c4e4916e-ccc2-46d1-8202-8321249ec2a3\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard Hide Filters\",\"description\":\"\",\"content\":{\"attributeFilterConfigs\":[{\"localIdentifier\":\"d37c609e20da4de9ad298e53218c2c80\",\"mode\":\"readonly\"},{\"localIdentifier\":\"8cbf790c39cb48929b76996eff7532f9\",\"mode\":\"hidden\"}],\"dateFilterConfig\":{\"filterName\":\"Date range\",\"mode\":\"hidden\"},\"filterContextRef\":{\"identifier\":{\"id\":\"35fb83f8-34eb-4b88-abf7-2900420d42af\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":11,\"gridWidth\":5}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"6010ceaf-b8e9-4cd7-aea8-05da1f68f112\",\"type\":\"visualizationObject\"}},\"title\":\"Headline\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2023-10-30 05:35\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c4e4916e-ccc2-46d1-8202-8321249ec2a3\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},{\"id\":\"c900b178-b150-4dac-b4e5-20ad5ddfe23b\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard stage name\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"57a1189b-fd26-4648-ad65-969519012d18\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"ed91a9b6-8ee1-4a70-a2cf-a1454817e538\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with stage name\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/c900b178-b150-4dac-b4e5-20ad5ddfe23b\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d1965687-f7bd-41ba-9fa2-f63793d62a62\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Parent Dashboard\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"62810bef-21a3-4909-b824-7670c6fe2dd9\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"b3b665b7-bca2-4462-82f1-b0e01dff8afe\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Parent Insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d1965687-f7bd-41ba-9fa2-f63793d62a62\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"d9c82618-36d5-4819-909b-5801888ec1ae\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to attribute url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b047e283-8982-430b-b483-b9eb9a93b98a\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"605251ff4390447f8e4b89e5873f8f9e\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"\",{\"identifier\":{\"id\":\"label.f_opportunity.opportunity.sfdcurl\",\"type\":\"label\"}},\"\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"f51896d7-1a46-416b-8039-67d8af1d7651\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with hyperlink attribute\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/d9c82618-36d5-4819-909b-5801888ec1ae\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ddb30edd-6149-473a-846d-3c7fed83106f\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Drill to custom url\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"b849e371-0df4-403a-b7f3-b5e12819e3bc\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[{\"origin\":{\"measure\":{\"localIdentifier\":\"fcb40268af3548c88af467851fdaa7c9\"},\"type\":\"drillFromMeasure\"},\"target\":{\"url\":[\"https://www.nonexistent123.com?y=\",{\"identifier\":{\"id\":\"dt_oppcreated_timestamp.year\",\"type\":\"label\"}},\"&insightId={insight_id}&dashboardId={dashboard_id}\"]},\"transition\":\"new-window\",\"type\":\"drillToCustomUrl\"}],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"d44ccdf0-01b4-4faf-a4e1-2a7c5fc05ad1\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Column with two measures by date\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ddb30edd-6149-473a-846d-3c7fed83106f\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"dfb03d5e-ba83-4105-badb-0a02e2e668ee\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with merge and unmerge insights\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"7b7d23d2-e276-46f8-a4f3-aadbe9c222ae\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"fb53ecfb-3874-4bee-8612-afecd3fa3e04\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"unmerge cells insight\",\"type\":\"insight\"}},{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"3ef94acb-1e15-49ef-88d5-e9e2931be959\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"merge cells insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/dfb03d5e-ba83-4105-badb-0a02e2e668ee\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with many data insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"c8a2d32f-bdad-41ca-a65e-914a4ed9aa0e\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"dcce2234-9097-47e7-a165-36cdbaa2e134\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"many data\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/e1e6e5fe-95bc-41b9-bd8c-d9cf5e88a5d0\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard order\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"eef9fee7-abb2-4ddf-8fe2-63268b7f21ba\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_closedate_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c796d21d-a705-439d-a727-23b144591617\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"Table with order\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/ed0a80c8-4266-4cb6-88c7-48eafbe47c1d\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}},{\"id\":\"f50c7076-1d45-4031-a4fd-564459254b12\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"KD with invalid insight\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"d2c54f5c-a39a-42e9-af8f-c0b4eedba552\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"items\":[{\"size\":{\"xl\":{\"gridWidth\":12}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"dateDataSet\":{\"identifier\":{\"id\":\"dt_activity_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"81452cc9-558b-4b4e-a70b-0a80f3bd2924\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"invalid insight\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-11-28 09:09\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/f50c7076-1d45-4031-a4fd-564459254b12\"},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":false}}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=0&size=250\",\"next\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards?metaInclude=accessInfo&page=1&size=250\"}}", + "body": "{\"data\":{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},\"included\":[{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/486d105b-c636-4c38-8180-3c48ac7cd678\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -128,39 +157,37 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "6e4cb9fe-5a3a-4266-9d2d-c489b56ff30f" + "uuid": "74bdfed9-97fc-452f-b532-63d1ba36038b" }, { - "id": "68afe853-dfa0-43c3-8afe-eb638d19f0ec", - "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f_analyticaldashboards_2326d431-ccb3-405e-a3d2-394bdf276e61", + "id": "5b8d0537-945b-4264-bece-ef47d665a48b", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { - "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", "method": "GET" }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"2326d431-ccb3-405e-a3d2-394bdf276e61\",\"type\":\"analyticalDashboard\",\"attributes\":{\"title\":\"Dashboard with unknown visualization class\",\"description\":\"\",\"content\":{\"filterContextRef\":{\"identifier\":{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}},\"layout\":{\"sections\":[{\"header\":{},\"items\":[{\"size\":{\"xl\":{\"gridHeight\":22,\"gridWidth\":6}},\"type\":\"IDashboardLayoutItem\",\"widget\":{\"configuration\":{\"hideTitle\":false},\"dateDataSet\":{\"identifier\":{\"id\":\"dt_oppcreated_timestamp\",\"type\":\"dataset\"}},\"description\":\"\",\"drills\":[],\"ignoreDashboardFilters\":[],\"insight\":{\"identifier\":{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}},\"properties\":{},\"title\":\"With unknown visualization class\",\"type\":\"insight\"}}],\"type\":\"IDashboardLayoutSection\"}],\"type\":\"IDashboardLayout\"},\"version\":\"2\"},\"createdAt\":\"2024-01-02 11:50\"},\"relationships\":{\"createdBy\":{\"data\":{\"id\":\"admin\",\"type\":\"userIdentifier\"}},\"filterContexts\":{\"data\":[{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\"}]},\"visualizationObjects\":{\"data\":[{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\"}]}},\"meta\":{\"origin\":{\"originType\":\"NATIVE\",\"originId\":\"c76e0537d0614abb0027f7c992656b964922506f\"},\"accessInfo\":{\"private\":true}}},\"included\":[{\"id\":\"486d105b-c636-4c38-8180-3c48ac7cd678\",\"type\":\"filterContext\",\"attributes\":{\"title\":\"filterContext\",\"description\":\"\",\"content\":{\"filters\":[],\"version\":\"2\"}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/filterContexts/486d105b-c636-4c38-8180-3c48ac7cd678\"}},{\"id\":\"admin\",\"type\":\"userIdentifier\",\"attributes\":{},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/userIdentifiers/admin\"}},{\"id\":\"c4121590-8e24-418e-b3d1-7e442288eb4e\",\"type\":\"visualizationObject\",\"attributes\":{\"title\":\"With unknown visualization class\",\"description\":\"\",\"content\":{\"buckets\":[{\"items\":[{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_activities\",\"type\":\"metric\"}}}},\"localIdentifier\":\"36642f1298e5430695ccb879114672f3\",\"title\":\"# of Activities\"}},{\"measure\":{\"definition\":{\"measureDefinition\":{\"filters\":[],\"item\":{\"identifier\":{\"id\":\"of_lost_opps.\",\"type\":\"metric\"}}}},\"localIdentifier\":\"bfde205f48b44c379df41fcfd03b801f\",\"title\":\"# of Lost Opps.\"}}],\"localIdentifier\":\"measures\"}],\"filters\":[],\"properties\":{},\"sorts\":[],\"version\":\"2\",\"visualizationUrl\":\"local:nonexistent\"},\"createdAt\":\"2024-01-02 11:50\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/visualizationObjects/c4121590-8e24-418e-b3d1-7e442288eb4e\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f/analyticalDashboards/2326d431-ccb3-405e-a3d2-394bdf276e61?include=filterContexts%2CcreatedBy%2CmodifiedBy%2CvisualizationObjects&metaInclude=accessInfo\"}}", + "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"},{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { - "X-Content-Type-Options": "nosniff", - "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Cache-Control": "max-age=10, private", + "X-Content-Type-Options": "nosniff", "Vary": [ "Accept-Encoding", "Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers" ], - "Expires": "0", "X-XSS-Protection": "0", - "Content-Type": "application/vnd.gooddata.api+json" + "Content-Type": "application/json" } }, - "uuid": "68afe853-dfa0-43c3-8afe-eb638d19f0ec" + "uuid": "5b8d0537-945b-4264-bece-ef47d665a48b" }, { - "id": "a580d0ff-42dd-45c6-b89c-d48669c1a8b6", + "id": "b46dca6c-2b83-4cc0-92a5-f343fddea7cc", "name": "api_v1_entities_workspaces", "request": { "url": "/api/v1/entities/workspaces?include=parent&page=0&size=100&sort=name%2Casc&metaInclude=page", @@ -168,7 +195,7 @@ }, "response": { "status": 200, - "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"71bf1d391dfd4ec1b2f7d0018b009051\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL cypress -- 2024-01-29T11:40:00.129Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/71bf1d391dfd4ec1b2f7d0018b009051\"}},{\"id\":\"659d5b4758e7497483ff647bb3caf1c9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AMIL test -- 2024-02-07T14:53:39.019Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/659d5b4758e7497483ff647bb3caf1c9\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"fe5dbc0d6eb44acfa3c8c70055e4e738\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-11-28T09:09:39.336Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/fe5dbc0d6eb44acfa3c8c70055e4e738\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":22,\"totalPages\":1,\"number\":0}}}", + "body": "{\"data\":[{\"id\":\"452ff4f155774c0e89a8f7732d4674bb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0.my_manual_test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/452ff4f155774c0e89a8f7732d4674bb\"}},{\"id\":\"6bb14fa4cb144f80864252e89be29507\",\"type\":\"workspace\",\"attributes\":{\"name\":\"0-testing\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6bb14fa4cb144f80864252e89be29507\"}},{\"id\":\"9cdae60aad5d4edda042a229d1fce506\",\"type\":\"workspace\",\"attributes\":{\"name\":\"AYE - E2E - Radial Bar Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9cdae60aad5d4edda042a229d1fce506\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"9ba564addcb94cd996dc4d8629343868\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-02T14:55:09.005Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/9ba564addcb94cd996dc4d8629343868\"}},{\"id\":\"2158e470040148c682587c588f9067fb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-03T12:05:37.108Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/2158e470040148c682587c588f9067fb\"}},{\"id\":\"51e040df5d6141e3b325d32300eb42a1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-05T04:42:56.115Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/51e040df5d6141e3b325d32300eb42a1\"}},{\"id\":\"d50710004c114df69f7ec84970fced20\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test_child -- 2024-12-11T19:14:10.581Z\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/d50710004c114df69f7ec84970fced20\"}},{\"id\":\"8c28f85af79a416ebb67710dd34e18db\",\"type\":\"workspace\",\"attributes\":{\"name\":\"empty-ws 2024-12-04T12:48:03.013Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/8c28f85af79a416ebb67710dd34e18db\"}},{\"id\":\"e2aeb364793b443582720834df254b0d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"IVAN SDK mock-handling\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e2aeb364793b443582720834df254b0d\"}},{\"id\":\"0bb495ceb5c140a6848f0bc2f23785a3\",\"type\":\"workspace\",\"attributes\":{\"name\":\"Ivan SDK test\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/0bb495ceb5c140a6848f0bc2f23785a3\"}},{\"id\":\"1a7ccea580014af6ae7e0acf6120d5ad\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ dashboard description\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/1a7ccea580014af6ae7e0acf6120d5ad\"}},{\"id\":\"ccaf54d106da43629d0dd7d9aaf387f9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ccaf54d106da43629d0dd7d9aaf387f9\"}},{\"id\":\"44db2f01216642acb771c1491d3de340\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Gauge Chart NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44db2f01216642acb771c1491d3de340\"}},{\"id\":\"79332acea8ed40efb1b531ef3872af47\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Insight to action\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/79332acea8ed40efb1b531ef3872af47\"}},{\"id\":\"f25ae71f8ef447218891f90605070bbb\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Polar, Target Gauge KPI\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f25ae71f8ef447218891f90605070bbb\"}},{\"id\":\"ae5a2a2b81cb4bfcbe41649bdd3e845a\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images [another]\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ae5a2a2b81cb4bfcbe41649bdd3e845a\"}},{\"id\":\"44bfcf2f2a4f4bd7b4982b37c9e8a1e0\",\"type\":\"workspace\",\"attributes\":{\"name\":\"KKAZ - E2E - Table with images NEW\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/44bfcf2f2a4f4bd7b4982b37c9e8a1e0\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"6eddbb13a0d243699ac0ce808603b43c\",\"type\":\"workspace\",\"attributes\":{\"name\":\"PJI e2e keep\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/6eddbb13a0d243699ac0ce808603b43c\"}},{\"id\":\"subchild_no_prefix\",\"type\":\"workspace\",\"attributes\":{\"name\":\"subchild_no_prefix\"},\"relationships\":{\"parent\":{\"data\":{\"id\":\"child_prefix_cr\",\"type\":\"workspace\"}}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/subchild_no_prefix\"}},{\"id\":\"86737175df10462285b105be0cd8987d\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tu00\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/86737175df10462285b105be0cd8987d\"}},{\"id\":\"cbaef440900b41faa0abf9669cfb1df9\",\"type\":\"workspace\",\"attributes\":{\"name\":\"tuan\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/cbaef440900b41faa0abf9669cfb1df9\"}}],\"included\":[{\"id\":\"f70fb3479dd6478b86be6573a860007e\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-03T12:05:28.568Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/f70fb3479dd6478b86be6573a860007e\"}},{\"id\":\"ee56273d707b4cf6b63e44391a7bdb91\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-05T04:42:46.516Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/ee56273d707b4cf6b63e44391a7bdb91\"}},{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f\"}},{\"id\":\"parent_prefix_pr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"parent_prefix_pr\",\"prefix\":\"PR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/parent_prefix_pr\"}},{\"id\":\"e03d5cb426bd4868b8704faf226b14f1\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-02T14:55:01.420Z\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/e03d5cb426bd4868b8704faf226b14f1\"}},{\"id\":\"child_prefix_cr\",\"type\":\"workspace\",\"attributes\":{\"name\":\"child_prefix_cr\",\"prefix\":\"CR_\"},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/child_prefix_cr\"}}],\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces?include=parent&metaInclude=page&page=0&size=100&sort=name,asc\"},\"meta\":{\"page\":{\"size\":100,\"totalElements\":27,\"totalPages\":1,\"number\":0}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -186,37 +213,41 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "a580d0ff-42dd-45c6-b89c-d48669c1a8b6" + "uuid": "b46dca6c-2b83-4cc0-92a5-f343fddea7cc" }, { - "id": "95ca66eb-5ec9-4bed-a5dd-1aa5b5898663", + "id": "455e38d1-22b3-455d-bc56-2297ed55a6c7", "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_resolvesettings", "request": { "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/resolveSettings", - "method": "GET" + "method": "POST", + "bodyPatterns": [ + { + "equalToJson": "{\"settings\":[\"DATE_FILTER_CONFIG\"]}", + "ignoreArrayOrder": false, + "ignoreExtraElements": false + } + ] }, "response": { "status": 200, - "body": "[{\"content\":{\"value\":\"America/Juneau\"},\"id\":\"timezone\",\"type\":\"TIMEZONE\"},{\"content\":{\"id\":\"\",\"type\":\"theme\"},\"id\":\"activeTheme\",\"type\":\"ACTIVE_THEME\"},{\"content\":{\"id\":\"\",\"type\":\"colorPalette\"},\"id\":\"activeColorPalette\",\"type\":\"ACTIVE_COLOR_PALETTE\"},{\"content\":{\"enabled\":false,\"logoUrl\":\"\"},\"id\":\"whiteLabeling\",\"type\":\"WHITE_LABELING\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"locale\",\"type\":\"LOCALE\"},{\"content\":{\"value\":\"en-US\"},\"id\":\"metadataLocale\",\"type\":\"METADATA_LOCALE\"},{\"content\":{\"value\":\"vn-VN\"},\"id\":\"formatLocale\",\"type\":\"FORMAT_LOCALE\"},{\"content\":{\"value\":\"\"},\"id\":\"mapboxToken\",\"type\":\"MAPBOX_TOKEN\"},{\"content\":{\"value\":\"Monday\"},\"id\":\"weekStart\",\"type\":\"WEEK_START\"},{\"content\":{\"value\":false},\"id\":\"showHiddenCatalogItems\",\"type\":\"SHOW_HIDDEN_CATALOG_ITEMS\"},{\"content\":{\"overrides\":[]},\"id\":\"operatorOverrides\",\"type\":\"OPERATOR_OVERRIDES\"},{\"content\":{\"value\":true},\"id\":\"timezoneValidation\",\"type\":\"TIMEZONE_VALIDATION_ENABLED\"},{\"content\":{\"org\":\"\",\"token\":\"\"},\"id\":\"openAiConfig\",\"type\":\"OPENAI_CONFIG\"},{\"content\":{\"value\":false},\"id\":\"enableFileAnalytics\",\"type\":\"ENABLE_FILE_ANALYTICS\"},{\"content\":{\"defaultCron\":\"0 0 * * * ?\",\"defaultTimezone\":\"Etc/UTC\"},\"id\":\"alert\",\"type\":\"ALERT\"},{\"content\":{\"thousand\":\",\",\"decimal\":\".\"},\"id\":\"separators\",\"type\":\"SEPARATORS\"}]", + "body": "[{\"content\":{\"config\":null},\"id\":\"dateFilterConfig\",\"type\":\"DATE_FILTER_CONFIG\"}]", "headers": { + "X-Content-Type-Options": "nosniff", + "Pragma": "no-cache", "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", - "Cache-Control": "max-age=10, private", - "X-Content-Type-Options": "nosniff", - "Vary": [ - "Accept-Encoding", - "Origin", - "Access-Control-Request-Method", - "Access-Control-Request-Headers" - ], + "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate", + "Vary": ["Origin", "Access-Control-Request-Method", "Access-Control-Request-Headers"], + "Expires": "0", "X-XSS-Protection": "0", "Content-Type": "application/json" } }, - "uuid": "95ca66eb-5ec9-4bed-a5dd-1aa5b5898663" + "uuid": "455e38d1-22b3-455d-bc56-2297ed55a6c7" }, { - "id": "f00608c3-518d-4368-901a-53a5779acd34", + "id": "376f0f81-67b1-46c5-9ffe-be6101dce262", "name": "api_v1_entities_workspaces_c76e0537d0614abb0027f7c992656b964922506f", "request": { "url": "/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions", @@ -224,7 +255,7 @@ }, "response": { "status": 200, - "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-11-28T09:09:31.236Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":false,\"approximateCountAvailable\":false,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", + "body": "{\"data\":{\"id\":\"c76e0537d0614abb0027f7c992656b964922506f\",\"type\":\"workspace\",\"attributes\":{\"name\":\"E2E_SDK_cypress_test -- 2024-12-11T19:14:01.268Z\"},\"meta\":{\"config\":{\"dataSamplingAvailable\":true,\"approximateCountAvailable\":true,\"showAllValuesOnDatesAvailable\":true},\"permissions\":[\"MANAGE\",\"ANALYZE\",\"EXPORT\",\"EXPORT_TABULAR\",\"EXPORT_PDF\",\"CREATE_AUTOMATION\",\"CREATE_FILTER_VIEW\",\"VIEW\"]}},\"links\":{\"self\":\"https://staging-automation.dev-latest.stg11.panther.intgdc.com/api/v1/entities/workspaces/c76e0537d0614abb0027f7c992656b964922506f?include=parent&metaInclude=config%2Cpermissions\"}}", "headers": { "Referrer-Policy": "no-referrer", "Strict-Transport-Security": "max-age=63072000; includeSubDomains", @@ -235,10 +266,10 @@ "Content-Type": "application/vnd.gooddata.api+json" } }, - "uuid": "f00608c3-518d-4368-901a-53a5779acd34" + "uuid": "376f0f81-67b1-46c5-9ffe-be6101dce262" }, { - "id": "d728611d-7d50-4230-b435-93ff9c067769", + "id": "5482ab03-ba34-4f16-99f7-2146852f71dd", "name": "api_v1_profile", "request": { "url": "/api/v1/profile", @@ -262,7 +293,7 @@ "Content-Type": "application/json" } }, - "uuid": "d728611d-7d50-4230-b435-93ff9c067769" + "uuid": "5482ab03-ba34-4f16-99f7-2146852f71dd" } ] } diff --git a/libs/sdk-ui-tests/backstop/backstop-cleanup-artifacts.cjs b/libs/sdk-ui-tests/backstop/backstop-cleanup-artifacts.cjs new file mode 100644 index 00000000000..6b783f50960 --- /dev/null +++ b/libs/sdk-ui-tests/backstop/backstop-cleanup-artifacts.cjs @@ -0,0 +1,81 @@ +/** + * Process backstop output results. + * + * Adjust config so that the html report is correctly displayed and contains only failed tests. + * + * For "passed" tests, remove the screenshot from output to minimize artifact size + * (when test passes, they're identical to reference images so no need to archive them). + * + * For "failed" tests, keep the screenshot from test output and also copy reference + * image to output. + * + **/ +const fs = require("fs"); +const path = require("path"); + +const currentDir = __dirname; +const references = "reference"; + +console.log(`Cleaning artifacts from ${currentDir}/output`); + +const outputPath = path.join(currentDir, "output"); +const htmlReportPath = path.join(outputPath, "html-report"); +const outputConfig = path.join(htmlReportPath, "config.js"); + +if (!fs.existsSync(outputConfig)) { + console.log("No backstop output, skipping cleanup of test artifacts"); + process.exit(1); +} + +// this will be the newly added directory to output, to which we copy +// reference screenshots for failed tests +const referenceDirectory = path.join(outputPath, references); +fs.mkdirSync(referenceDirectory, { recursive: true }); + +const configData = fs.readFileSync(outputConfig, "utf8"); + +// the config json we're interested in is wrapped with report({...}); +const configJson = configData.slice("report(".length, -2); +const data = JSON.parse(configJson); + +data.tests.forEach((test) => { + if (test.status === "pass") { + const testFile = test.pair?.test; + const testFilePath = path.join(htmlReportPath, testFile); + + if (fs.existsSync(testFilePath)) { + fs.unlinkSync(testFilePath); + } + } else if (test.status === "fail") { + const referenceFile = test.pair?.reference; + const referencePath = path.join(htmlReportPath, referenceFile); + const baseReferenceFilename = path.basename(referencePath); + const destReference = path.join(referenceDirectory, baseReferenceFilename); + + if (fs.existsSync(referencePath)) { + fs.copyFileSync(referencePath, destReference); + } + } else { + console.log(`Processing "${test.pair?.label}", unrecognized test status: "${test.status}"`); + } +}); + +const updatedTests = data.tests + .filter((test) => test.status === "fail") + .map((test) => ({ + ...test, + pair: { + ...test.pair, + reference: test.pair?.reference?.replace(`../../${references}`, `../${references}`), + }, + })); + +const replacedConfig = { + ...data, + tests: updatedTests, +}; +const stringified = JSON.stringify(replacedConfig, null, 2); + +// replace original config with adjusted one +const result = `report(${stringified});`; +fs.writeFileSync(outputConfig, result, "utf8"); diff --git a/libs/sdk-ui-tests/backstop/reference/storybook_12_UI_Kit_Dropdown_-_themed_0_document_0_desktop.png b/libs/sdk-ui-tests/backstop/reference/storybook_12_UI_Kit_Dropdown_-_themed_0_document_0_desktop.png deleted file mode 100644 index ef51475fca7..00000000000 Binary files a/libs/sdk-ui-tests/backstop/reference/storybook_12_UI_Kit_Dropdown_-_themed_0_document_0_desktop.png and /dev/null differ diff --git a/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_full-featured_button_0_document_0_desktop.png b/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_full-featured_button_0_document_0_desktop.png index e28e7ffcdcf..0f0ff51645c 100644 Binary files a/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_full-featured_button_0_document_0_desktop.png and b/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_full-featured_button_0_document_0_desktop.png differ diff --git a/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_themed_0_document_0_desktop.png b/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_themed_0_document_0_desktop.png index 81afb7bccb6..75a4bd7f312 100644 Binary files a/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_themed_0_document_0_desktop.png and b/libs/sdk-ui-tests/backstop/reference/storybook_15_Ui_UiButton_-_themed_0_document_0_desktop.png differ diff --git a/libs/sdk-ui-tests/backstop/run-backstop-compose.sh b/libs/sdk-ui-tests/backstop/run-backstop-compose.sh index 51578cd9c90..3c52c58b028 100755 --- a/libs/sdk-ui-tests/backstop/run-backstop-compose.sh +++ b/libs/sdk-ui-tests/backstop/run-backstop-compose.sh @@ -3,10 +3,8 @@ # Absolute root dir .. for the docker volumes ROOT_DIR=$(echo $(cd $(dirname $0)/.. && pwd -P)) -if [[ "$GITHUB_ACTIONS" != "true" ]]; then - export USER_UID=$(id -u) - export USER_GID=$(id -g) -fi +export USER_UID=$(id -u) +export USER_GID=$(id -g) cd $ROOT_DIR diff --git a/libs/sdk-ui-tests/stories/visual-regression/kit/Dropdown/Dropdown.tsx b/libs/sdk-ui-tests/stories/visual-regression/kit/Dropdown/Dropdown.tsx index 40e6d584807..f8c3b4898f4 100644 --- a/libs/sdk-ui-tests/stories/visual-regression/kit/Dropdown/Dropdown.tsx +++ b/libs/sdk-ui-tests/stories/visual-regression/kit/Dropdown/Dropdown.tsx @@ -1,4 +1,4 @@ -// (C) 2019-2020 GoodData Corporation +// (C) 2019-2024 GoodData Corporation import React, { CSSProperties } from "react"; import { withIntl } from "@gooddata/sdk-ui"; import { @@ -150,4 +150,4 @@ const WithIntl = withIntl(DropdownExamples, undefined, customMessages); storiesOf(`${UiKit}/Dropdown`) .add("full-featured", () => , { screenshot: true }) - .add("themed", () => wrapWithTheme(), { screenshot: true }); + .add("themed", () => wrapWithTheme()); diff --git a/libs/sdk-ui/src/base/localization/bundles/en-US.json b/libs/sdk-ui/src/base/localization/bundles/en-US.json index d7835b4224f..99ebd42cf66 100644 --- a/libs/sdk-ui/src/base/localization/bundles/en-US.json +++ b/libs/sdk-ui/src/base/localization/bundles/en-US.json @@ -19,6 +19,11 @@ "comment": "A global semantic search button label in the main menu", "limit": 0 }, + "gs.header.notifications": { + "value": "Notifications", + "comment": "A global notifications button label in the main menu", + "limit": 0 + }, "gs.header.logout": { "value": "Logout", "comment": "",